:root {
  --color-primary: #c6215e;
  --color-background: #fafafa;
  --color-accent: #ffc107;
  --color-text: #212529;
  --color-header: #0d6efd;
  --container-max-width: 1200px;
  --container-padding: 16px;
  --container-vertical-padding: 16px;
  --heading-align: left;
  --heading-margin-bottom: 16px;
  --block-spacing: 32px;
  --font-size-base: 1.25rem;
  --font-size-sm: 1rem;
  --font-size-lg: 1.25rem;
  --heading-h1-size: 2rem;
  --heading-h2-size: 1.5rem;
  --heading-h3-size: 1.5rem;
}
body {margin: 0; overflow-x: hidden;}
html {overflow-x: hidden;
background: var(--color-background);}
.xhyk2jp-root {
  width: 100%;
  background: #4f021f;
  color: var(--color-text);
  box-sizing: border-box;
  margin-bottom: var(--block-spacing);
  overflow-x: hidden;
}
.xhyk2jp-container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-vertical-padding) var(--container-padding);
  display: flex;
  flex-direction: row;
  gap: 3.2vw;
  box-sizing: border-box;
}
.xhyk2jp-left {
  flex: 1 1 340px;
  max-width: 420px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}
.xhyk2jp-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.xhyk2jp-logo-box {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.4rem;
  box-shadow: none;
  padding: 0;
}
.xhyk2jp-logo-img {
  width: 100%;
  object-fit: contain;
  display: block;
  margin: 0;
  background: none;
  border-radius: 0;
}
.xhyk2jp-title {
  text-align: center;
  font-size: var(--heading-h1-size);
  font-weight: 700;
  color: var(--color-header);
  margin: 0 0 var(--heading-margin-bottom) 0;
  line-height: 1.2;
  word-break: break-word;
}
.xhyk2jp-info-list {
  display: flex;
  flex-direction: row;
  gap: 1.2em;
  margin-top: 0.3em;
  margin-bottom: 0.1em;
}
.xhyk2jp-info-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 14px 0 rgba(35,51,72,0.07);
  border: 1.5px solid var(--color-primary);
  min-height: 80px;
  padding: 1.2em 1.35em 0em 1.35em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-center;
  gap: 0.18em;
}
.xhyk2jp-info-label {
  color: var(--color-text);
  font-size: var(--font-size-sm);
  font-weight: 500;
  margin-bottom: 0.16em;
  opacity: 0.74;
  letter-spacing: 0.01em;
}
.xhyk2jp-info-value {
  color: var(--color-header);
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 0.1em;
  letter-spacing: 0.01em;
}
.xhyk2jp-right {
  min-width: 0;
  align-items: center;
}
.xhyk2jp-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(28,33,46,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #171727;
  min-width: 0;
  min-height: 0;
}
.xhyk2jp-bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7.5px) brightness(0.9);
  transition: filter 0.4s;
  pointer-events: none;
  user-select: none;
  display: block;
  max-width: 100%;
}
.xhyk2jp-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,32,53,0.15) 0%, rgba(26,26,37,0.25) 100%);
  pointer-events: none;
}
.xhyk2jp-btn-group {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  z-index: 2;
}
@media (max-width: 700px) {
  .xhyk2jp-btn-group {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.xhyk2jp-demo-btn,
.xhyk2jp-real-btn {
  text-align: center;
  border: none;
  cursor: pointer;
  padding: 0.92em 2.3em;
  border-radius: 17px;
  font-size: var(--font-size-lg);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  transition: box-shadow 0.2s, background 0.15s, transform 0.12s;
  box-shadow: 0 2px 12px 0 rgba(23, 24, 40, 0.09);
  background: var(--color-primary);
  text-decoration: none;
  min-width: 185px;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.xhyk2jp-demo-btn:hover {
  background: var(--color-accent);
  transform: translateY(-2px) scale(1.02);
}
.xhyk2jp-real-btn {
  background: var(--color-accent);
}
.xhyk2jp-real-btn:hover,
.xhyk2jp-animated-btn:hover {
  background: var(--color-primary);
  box-shadow: 0 6px 14px 0 rgba(23,22,90,0.13);
  transform: translateY(-2px) scale(1.02);
}
.xhyk2jp-animated-btn {
  animation: xhyk2jp-pulse 1.8s infinite;
}
@keyframes xhyk2jp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(90, 160, 70, 0.17), 0 2px 12px 0 rgba(23,24,40,0.09);}
  60% { box-shadow: 0 0 0 8px rgba(56,160,70,0.10), 0 2px 12px 0 rgba(23,24,40,0.09);}
  100% { box-shadow: 0 0 0 0 rgba(90, 160, 70, 0.17), 0 2px 12px 0 rgba(23,24,40,0.09);}
}
.xhyk2jp-animated-btn {
  animation: xhyk2jp-shine 2.9s infinite, xhyk2jp-pulse 1.8s infinite;
  background: linear-gradient(90deg,var(--color-accent) 30%,var(--color-primary) 75%);
  background-size: 200% 100%;
  position: relative;
}
@keyframes xhyk2jp-shine {
  0% { background-position-x: 0%; }
  40% { background-position-x: 90%; }
  58% { background-position-x: 100%; }
  100% { background-position-x: 0%; }
}
.xhyk2jp-animated-btn::after {
  content: "";
  position: absolute;
  left: -60px;
  top: 0;
  width: 45px;
  height: 100%;
  background: linear-gradient(101deg,rgba(255,255,255,0.11) 0%,rgba(255,255,255,0.99) 42%,rgba(255,255,255,0.11) 70%);
  opacity: 0;
  pointer-events: none;
  transform: skew(-21deg,0);
  animation: xhyk2jp-glimmer 2.9s infinite;
}
@keyframes xhyk2jp-glimmer {
  0% { left: -60px; opacity: 0;}
  36% { opacity: 0;}
  44% { left: 95%; opacity: 0.96;}
  48% { left: 115%; opacity: 0;}
  100% { left: 115%; opacity: 0;}
}
.xhyk2jp-modal {
  display: none;
  position: fixed;
  z-index: 56;
  inset: 0;
  background: rgba(18,19,23,0.89);
  backdrop-filter: blur(10px);
  transition: opacity 0.35s;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
}
.xhyk2jp-modal.active {
  display: flex;
  animation: xhyk2jp-fadein .5s;
}
@keyframes xhyk2jp-fadein { from { opacity: 0; } to { opacity: 1; } }
.xhyk2jp-modal-box {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: min(100vw, 85%);
  max-width: 96vw;
  border-radius: 19px;
  overflow: hidden;
  background: var(--color-background);
  box-shadow: 0 10px 44px -8px rgba(18,19,32,0.18);
  position: relative;
  min-width: 0;
  min-height: 0;
}
.xhyk2jp-modal-close {
  appearance: none;
  position: absolute;
  top: 20px;
  right: 18px;
  background: #181B23;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 10px 2px rgba(28,32,39,0.11);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.14s, transform 0.14s;
}
.xhyk2jp-modal-close:hover {
  background: var(--color-accent);
  transform: scale(1.08);
}
.xhyk2jp-iframe {
  display: block;
  width: 100%;
  border: 0;
  aspect-ratio: 16/9;
  background: #0b1120;
  transition: height 0.2s;
  min-height: 390px;
  max-height: 68vh;
}
.xhyk2jp-modal-real {
  margin: 0 auto;
  margin-bottom: 32px;
  margin-top: 18px;
  display: block;
  width: auto;
  min-width: 200px;
  max-width: 92vw;
}
@media (max-width: 1100px) {
  .xhyk2jp-container {
    flex-direction: column;
    gap: 2.3rem;
    max-width: 98vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .xhyk2jp-left,
  .xhyk2jp-right {
    max-width: 100vw;
    width: 100%;
  }
  .xhyk2jp-right {
    margin-top: 0.5rem;
  }
  .xhyk2jp-info-list {
    gap: 0.9em;
    margin-bottom: 0.04em;
  }
}
@media (max-width: 700px) {
  .xhyk2jp-container {
    flex-direction: column;
    gap: 1.7rem;
    max-width: 100vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .xhyk2jp-left {
    max-width: 100vw;
    width: 100%;
    gap: 0.7rem;
  }
  .xhyk2jp-logo-wrap {
    gap: 0;
  }
  .xhyk2jp-logo-box {
    width: auto;
    height: auto;
  }
  .xhyk2jp-logo-img {
    width: 100%;
  }
  .xhyk2jp-title {
    font-size: var(--heading-h1-size);
    margin-bottom: 0.2rem;
  }
  .xhyk2jp-modal-box {
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
    height: 100dvh;
    min-height: 100dvh;
  }
  .xhyk2jp-modal {
    background: rgba(16,16,25,0.99);
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    min-width: 0;
    min-height: 0;
    box-sizing: border-box;
  }
  .xhyk2jp-iframe {
    min-height: calc(100dvh - 120px - 6.8vw);
    max-height: calc(100dvh - 120px - 6.8vw);
    aspect-ratio: unset;
    height: calc(100dvh - 120px - 6.8vw);
  }
  .xhyk2jp-modal-close {
    left: 50%;
    right: unset;
    top: 18px;
    transform: translateX(-50%);
    background: #191c24;
    font-size: 2.1rem;
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    z-index: 4;
  }
  .xhyk2jp-modal-real {
    margin-bottom: 14px;
    margin-top: 17px;
    max-width: 96vw;
    min-width: 170px;
    font-size: var(--font-size-base);
  }
  .xhyk2jp-info-list {
    flex-direction: column;
    gap: 0.8em;
    margin-top: 0.1em;
  }
  .xhyk2jp-info-item {
    min-width: unset;
    max-width: 360px;
    padding: 1em 1em 0.85em 1em;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .xhyk2jp-container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .xhyk2jp-logo-img {
    width: 100%;
  }
  .xhyk2jp-bgimg {
    min-height: 168px;
  }
  .xhyk2jp-visual {
    border-radius: 9px;
  }
  .xhyk2jp-modal-box {
    border-radius: 0;
    height: 100dvh;
    min-width: 0;
  }
  .xhyk2jp-demo-btn,
  .xhyk2jp-real-btn {
    font-size: var(--font-size-base);
    min-width: 130px;
    padding: 0.82em 1.1em;
    word-break: break-word;
    border-radius: 17px;
  }
  .xhyk2jp-info-item {
    padding: 0.85em 0.8em 0.7em 0.8em;
    min-height: 60px;
    font-size: var(--font-size-base);
  }
}
.ckrgame-section_5lrq9 {
  max-width: var(--container-max-width);
  margin: 0 auto var(--block-spacing) auto;
  padding: var(--container-vertical-padding) var(--container-padding);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.ckrgame-title_swl30 {
  color: var(--color-header);
  font-size: var(--heading-h2-size);
  text-align: var(--heading-align);
  margin-bottom: var(--heading-margin-bottom);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.ckrgame-mainbody_x3kz1 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.ckrgame-article_69tmq {
  flex: 2 1 370px;
  color: var(--color-text);
  font-size: var(--font-size-base);
  line-height: 1.7;
  font-weight: 400;
}
.ckrgame-article_69tmq p {
  margin: 0 0 1.25em 0;
}
.ckrgame-imagebox_7ac4r {
  width: 100%;
  margin: 0 0 1.5em 0;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #2a292f;
  border: 1.5px solid var(--color-accent);
}
.ckrgame-img_uv8cx {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  background: #23222a;
}
.ckrgame-aside_mc7pj {
  flex: 1 1 285px;
  background: #fafafa;
  border-radius: 16px;
  padding: 32px 28px 20px 28px;
  box-shadow: 0 4px 18px rgba(255,186,48,0.08);
  align-self: flex-start;
  border: 1.5px solid var(--color-accent);
}
.ckrgame-asidehead_yvmid {
  margin: 0 0 18px 0;
  font-size: var(--heading-h3-size);
  color: var(--color-header);
  font-weight: 600;
  text-align: left;
}
.ckrgame-table_bml6n {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: var(--font-size-base);
  background: transparent;
}
.ckrgame-table_bml6n th,
.ckrgame-table_bml6n td {
  padding: 12px 10px 12px 0;
  border: none;
  transition: color 0.2s, background 0.2s;
}
.ckrgame-table_bml6n th {
  color: var(--color-primary);
  text-align: left;
  font-weight: 500;
  width: 48%;
  font-size: var(--font-size-sm);
  letter-spacing: 0.02em;
  vertical-align: top;
  background: transparent;
}
.ckrgame-table_bml6n td {
  color: var(--color-text);
  font-weight: 400;
  font-size: var(--font-size-sm);
  vertical-align: top;
  background: transparent;
}
.ckrgame-table_bml6n tr {
  background: transparent;
  border-bottom: 1px solid rgba(255,186,48,0.18);
  transition: background 0.2s;
}
.ckrgame-table_bml6n tr:hover {
  background: rgba(255,186,48,0.09);
}
.ckrgame-table_bml6n tr:last-child {
  border-bottom: none;
}
.ckrgame-highlight_xeipw {
  color: var(--color-accent);
  font-weight: 600;
}
.ckrgame-bonuscards_yq4ct {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ckrgame-bonuscard_2zsej {
  background: var(--color-background);
  border: 1.5px solid var(--color-accent);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255,186,48,0.04);
  padding: 18px 20px 17px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.ckrgame-bonuscard_2zsej:hover {
  box-shadow: 0 4px 18px rgba(255,186,48,0.17);
  border-color: var(--color-primary);
}
.ckrgame-bonuscardtitle_vuwgx {
  font-size: var(--font-size-lg);
  color: var(--color-header);
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.ckrgame-bonuscarddesc_1jhsz {
  color: var(--color-text);
  font-size: var(--font-size-base);
  line-height: 1.5;
  margin-bottom: 16px;
}
.ckrgame-bonuscardlink_sk498 {
  display: flex;
  width: 100%;
  justify-content: center;
  text-decoration: none;
}
.ckrgame-bonuscardbtn_90iz7 {
  color: #fff;
  background: var(--color-accent);
  font-size: var(--font-size-base);
  padding: 10px 26px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.12s;
  min-width: 165px;
  text-align: center;
}
.ckrgame-bonuscardbtn_90iz7:hover,
.ckrgame-bonuscardbtn_90iz7:focus {
  background: var(--color-primary);
  color: #fff;
}

@media (max-width: 950px) {
  .ckrgame-mainbody_x3kz1 {
    flex-direction: column;
    gap: 32px;
  }
  .ckrgame-aside_mc7pj {
    padding: 22px 12px 12px 12px;
  }
}
@media (max-width: 600px) {
  .ckrgame-section_5lrq9 {
    padding: 20px 5vw;
    border-radius: 16px;
  }
  .ckrgame-aside_mc7pj {
    padding: 16px 6vw 10px 6vw;
    border-radius: 12px;
  }
  .ckrgame-imagebox_7ac4r {
    border-radius: 10px;
  }
  .ckrgame-bonuscards_yq4ct {
    gap: 12px;
  }
  .ckrgame-bonuscard_2zsej {
    padding: 14px 10px 13px 10px;
    border-radius: 8px;
  }
  .ckrgame-bonuscardbtn_90iz7 {
    width: 100%;
    padding: 10px 0;
    min-width: 0;
  }
}
.rtp-block-245gb {
  width: 100%;
  background: var(--color-background);
  margin-bottom: var(--block-spacing);
}
.rtp-container-245gb {
  max-width: var(--container-max-width);
  padding: var(--container-vertical-padding) var(--container-padding);
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.rtp-heading-245gb {
  color: var(--color-header);
  font-size: var(--heading-h3-size);
  text-align: var(--heading-align);
  margin-bottom: var(--heading-margin-bottom);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.rtp-content-245gb {
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.rtp-highlight-245gb {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-width: 220px;
  max-width: 260px;
  background: #632e42;
  border-radius: 1.2rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px 0 rgba(255, 186, 100, 0.12);
  align-items: flex-start;
  flex: 0 0 auto;
}
.rtp-value-box-245gb {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}
.rtp-value-title-245gb {
  color: #fff;
  font-size: var(--font-size-sm);
  opacity: 0.65;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.rtp-value-number-245gb {
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.rtp-description-245gb {
  flex: 1;
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.7rem 2rem;
  box-shadow: 0 1px 8px 0 rgba(240, 186, 100, 0.06);
}
.rtp-description-245gb ul {
  list-style: disc inside;
  padding-left: 1.1em;
  margin: 0.7em 0 0.7em 0.1em;
  color: var(--color-text);
}
.rtp-description-245gb li {
  margin-bottom: 0.4em;
  font-size: var(--font-size-base);
}
@media (max-width: 900px) {
  .rtp-content-245gb {
    flex-direction: column;
    gap: 1.5rem;
  }
  .rtp-highlight-245gb {
    max-width: 100%;
    min-width: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.2rem 2.5rem;
    padding: 1.2rem 1rem;
  }
  .rtp-value-box-245gb {
    min-width: 110px;
  }
}
@media (max-width: 600px) {
  .rtp-container-245gb {
    padding: calc(var(--container-vertical-padding) * 0.6) calc(var(--container-padding) * 0.6);
  }
  .rtp-description-245gb {
    padding: 1.1rem 1rem;
  }
  .rtp-highlight-245gb {
    padding: 1rem 0.6rem;
  }
}
.chicken-road-rules-section {
  width: 100%;
  background: var(--color-background);
  margin-bottom: var(--block-spacing);
}
.chicken-road-rules-container {
  max-width: var(--container-max-width);
  padding: var(--container-vertical-padding) var(--container-padding);
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.chicken-road-rules-heading {
  color: var(--color-header);
  font-size: var(--heading-h3-size);
  font-weight: 700;
  margin-bottom: var(--heading-margin-bottom);
  text-align: var(--heading-align);
  letter-spacing: -0.01em;
}
.chicken-road-rules-layout {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1.2fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "important steps"
    "tips steps";
}
.chicken-road-rules-important {
  grid-area: important;
  background: rgb(255 255 255);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.chicken-road-icon {
  font-size: 2.3rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}
.chicken-road-rules-h4 {
  color: var(--color-header);
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}
.chicken-road-rules-lead {
  color: var(--color-text);
  font-size: var(--font-size-base);
  line-height: 1.55;
  margin-bottom: 0;
  font-weight: 400;
}
.chicken-road-rules-steps {
  grid-area: steps;
  background: rgba(0,0,0,0.01);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  min-width: 0;
}
.chicken-road-step {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.chicken-road-step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.chicken-road-step-icon {
  font-size: 2rem;
  line-height: 1;
  color: var(--color-accent);
  margin-top: 0.15rem;
  min-width: 2rem;
  text-align: center;
}
.chicken-road-step-title {
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: var(--color-header);
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.chicken-road-step-text {
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: 1.6;
}
.chicken-road-rules-tips {
  grid-area: tips;
  background: rgb(255 255 211);
  border-radius: 16px;
  padding: 1.7rem 1.3rem;
  margin-top: 0;
}
.chicken-road-tips-list {
  margin: 0.8rem 0 0 1.1rem;
  padding: 0;
  list-style: disc;
  color: var(--color-text);
  font-size: var(--font-size-base);
  line-height: 1.55;
}
.chicken-road-tips-list li {
  margin-bottom: 0.5rem;
}
.chicken-road-tips-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .chicken-road-rules-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "important"
      "steps"
      "tips";
    gap: 1.8rem;
  }
}
@media (max-width: 650px) {
  .chicken-road-rules-container {
    padding: calc(var(--container-vertical-padding) * 0.7) var(--container-padding);
  }
  .chicken-road-rules-important, .chicken-road-rules-steps, .chicken-road-rules-tips {
    padding: 1.1rem 0.9rem;
  }
}
@media (max-width: 490px) {
  .chicken-road-rules-heading {
    font-size: calc(var(--heading-h3-size) * 0.97);
  }
  .chicken-road-step-title {
    font-size: calc(var(--font-size-lg) * 0.96);
  }
  .chicken-road-step-text, .chicken-road-tips-list, .chicken-road-rules-lead {
    font-size: calc(var(--font-size-base) * 0.97);
  }
}
.chickenroad-tips-card {
  width: 100%;
  background: var(--color-background);
  box-shadow: 0 8px 38px 0 rgba(50, 57, 80, 0.08), 0 1.5px 6px 0 rgba(60, 66, 87, 0.03);
  border-radius: 24px;
  margin: 0 auto;
  overflow: hidden;
}
.chickenroad-tips-container {
  max-width: var(--container-max-width);
  padding: var(--container-vertical-padding) var(--container-padding);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.chickenroad-tips-title {
  font-size: var(--heading-h3-size);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-accent);
  text-align: var(--heading-align);
  margin-bottom: var(--heading-margin-bottom);
}
.chickenroad-tips-badge {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(94deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 12px;
  padding: 0.32em 1em 0.32em 0.82em;
  box-shadow: 0 2px 9px 0 rgba(60,105,255,0.05);
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
  width: fit-content;
}

.chickenroad-tips-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.chickenroad-tips-section-title {
  font-size: var(--font-size-lg);
  color: var(--color-header);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

/* Quick Tips */
.chickenroad-tips-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}
.chickenroad-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.78em;
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: 1.6;
}
.chickenroad-tip-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.5em;
  height: 1.5em;
}

/* Winning Strategies */
.chickenroad-strategy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}
.chickenroad-strategy-card {
  background: #fafbfc;
  border-radius: 18px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  padding: 1.1rem 1.3rem 1.1rem 1.05rem;
  box-shadow: 0 1.5px 16px 0 rgba(80,92,125,0.04);
  flex: 1 1 210px;
  max-width: 360px;
}
.chickenroad-strategy-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
}
.chickenroad-strategy-title {
  font-size: 1.06em;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.12em;
}
.chickenroad-strategy-text {
  font-size: var(--font-size-base);
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.5;
}

/* Common Mistakes */
.chickenroad-mistakes-block {
  background: #FFFDF7;
  border: 1.5px solid #FFDD91;
  border-radius: 15px;
  padding: 1.05rem 1.2rem 1.1rem 1.2rem;
  color: #955B00;
  box-shadow: 0 2px 13px 0 rgba(255,181,40,0.06);
}
.chickenroad-mistakes-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin-bottom: 0.7em;
}
.chickenroad-mistakes-icon {
  display: inline-flex;
  vertical-align: middle;
}
.chickenroad-mistakes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65em;
}
.chickenroad-mistakes-list li {
  position: relative;
  font-size: var(--font-size-base);
  font-weight: 500;
  padding-left: 1.25em;
  line-height: 1.5;
}
.chickenroad-mistakes-list li:before {
  content: "!";
  position: absolute;
  left: 0;
  top: 0;
  color: #FFA600;
  background: #FFF3CC;
  width: 1.1em;
  height: 1.1em;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1em;
}

/* Fun Fact */
.chickenroad-funfact-block {
  display: flex;
  align-items: center;
  gap: 0.9em;
  background: #F2FFD9;
  border-radius: 13px;
  padding: 0.95em 1.1em;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: #213900;
  margin-top: 0.1em;
}
.chickenroad-funfact-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.5em;
  height: 1.5em;
}
.chickenroad-funfact-highlight {
  color: var(--color-accent);
  font-weight: 700;
  padding: 0 0.1em;
}

@media (max-width: 900px) {
  .chickenroad-strategy-grid {
    flex-direction: column;
    gap: 1.07rem;
  }
  .chickenroad-strategy-card {
    max-width: unset;
  }
}

@media (max-width: 600px) {
  .chickenroad-tips-container {
    gap: 1.7rem;
    padding: calc(var(--container-vertical-padding) * 0.8) calc(var(--container-padding) * 0.7);
  }
  .chickenroad-strategy-card {
    padding: 0.98rem 1rem 0.92rem 0.93rem;
  }
}
.faq-chicken-road-section {
  background: var(--color-background);
  width: 100%;
  margin-bottom: var(--block-spacing);
}

.faq-chicken-road-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-vertical-padding) var(--container-padding);
}

.faq-chicken-road-heading {
  color: var(--color-header);
  font-size: var(--heading-h2-size);
  text-align: var(--heading-align);
  margin-bottom: var(--heading-margin-bottom);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.faq-chicken-road-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-chicken-road-item {
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 0;
  background: none;
}

.faq-chicken-road-question {
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: var(--color-primary);
  font-size: var(--font-size-lg);
  font-weight: 600;
  padding: 1.1em 0;
  transition: color 0.18s;
  text-align: left;
  position: relative;
}

.faq-chicken-road-question[aria-expanded="true"] {
  color: var(--color-accent);
}

.faq-chicken-road-question::after {
  content: '';
  margin-left: auto;
  width: 1em;
  height: 1em;
  display: block;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23757D8A" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6 9l6 6 6-6"/></svg>') no-repeat center center;
  background-size: 1em 1em;
  transform: rotate(0deg);
  transition: transform 0.25s;
}

.faq-chicken-road-question[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.faq-chicken-road-answer {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  font-size: var(--font-size-base);
  color: var(--color-text);
  transition: max-height 0.35s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.18s, visibility 0.18s;
  padding-left: 0.1em;
  padding-right: 0.1em;
  will-change: max-height;
}

.faq-chicken-road-item.open .faq-chicken-road-answer {
  opacity: 1;
  visibility: visible;
  max-height: 500px;
  padding-bottom: 1.2em;
  transition: max-height 0.35s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.18s, visibility 0.18s;
}

@media (max-width: 600px) {
  .faq-chicken-road-heading {
    font-size: calc(var(--heading-h2-size) * 0.93);
  }
  .faq-chicken-road-question {
    font-size: var(--font-size-base);
    padding: 1em 0;
  }
}
.chicken-road-casino-block {
  width: 100%;
  background: var(--color-background);
  color: var(--color-text);
  margin-bottom: var(--block-spacing);
}
.chicken-road-casino-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-vertical-padding) var(--container-padding);
}
.chicken-road-casino-title {
  color: var(--color-header);
  text-align: var(--heading-align);
  font-size: var(--heading-h3-size);
  font-weight: 700;
  margin-bottom: var(--heading-margin-bottom);
  letter-spacing: -0.01em;
  line-height: 1.18;
}
.chicken-road-casino-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.chicken-road-casino-text-block {
  flex: 1 1 340px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
}
.chicken-road-casino-paragraph {
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-bottom: 1.3em;
}
.chicken-road-casino-link {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.2s;
}
.chicken-road-casino-link:hover,
.chicken-road-casino-link:focus {
  color: var(--color-primary);
}
@media (max-width: 900px) {
  .chicken-road-casino-content {
    flex-direction: column;
    gap: 2rem;
  }
  .chicken-road-casino-text-block {
    min-width: 0;
  }
}
.footer-chkroad2025 {
  color: var(--color-text);
  background: #000;
  width: 100%;
}
.footer-container-chkroad2025 {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: var(--container-vertical-padding) var(--container-padding);
}
.footer-heading-chkroad2025 {
  color: var(--color-header);
  text-align: var(--heading-align);
  font-size: var(--heading-h2-size);
  margin-bottom: var(--heading-margin-bottom);
  letter-spacing: 0.01em;
  font-weight: 600;
}
.footer-content-chkroad2025 {
  display: block;
  width: 100%;
  margin-bottom: var(--block-spacing);
}
.footer-slotinfo-chkroad2025 {
  display: block;
  width: 100%;
  margin-bottom: 2.2rem;
}
.footer-slotlogo-chkroad2025 {
  display: block;
  margin-bottom: 1rem;
}
.footer-desc-chkroad2025 {
  font-size: var(--font-size-base);
  color: var(--color-text);
  margin: 0;
  line-height: 1.55;
}
.footer-legality-chkroad2025 {
  display: block;
  width: 100%;
  margin-bottom: 1.6rem;
}
.footer-license-chkroad2025 {
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  margin-bottom: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.footer-player-chkroad2025 {
  display: block;
  width: 100%;
}
.footer-trustlogo-chkroad2025 {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1rem;
}
.footer-protect-chkroad2025 {
  font-size: var(--font-size-sm);
  color: var(--color-text);
  vertical-align: middle;
}
.footer-bottom-chkroad2025 {
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: var(--font-size-sm);
  color: #b4b8c2;
  text-align: left;
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media (min-width: 600px) {
  .footer-content-chkroad2025 {
    display: table;
    table-layout: fixed;
    width: 100%;
  }
  .footer-slotinfo-chkroad2025,
  .footer-legality-chkroad2025 {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    margin-bottom: 0;
  }
  .footer-slotinfo-chkroad2025 {
    padding-right: 2.5rem;
  }
  .footer-legality-chkroad2025 {
    padding-left: 2.5rem;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
}
@media (max-width: 599px) {
  .footer-slotinfo-chkroad2025,
  .footer-legality-chkroad2025 {
    padding: 0;
    border: none;
    margin-bottom: 1.6rem;
  }
  .footer-legality-chkroad2025 {
    margin-bottom: 0;
  }
  .footer-bottom-chkroad2025 {
    text-align: left;
    font-size: var(--font-size-sm);
    padding-top: 1.2rem;
  }
}
.game-action-btn-m84jcq1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 168px;
  max-width: 92vw;
  padding: 14px 30px 14px 18px;
  background: var(--color-primary);
  color: #fff;
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: 44px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.20);
  cursor: pointer;
  z-index: 50;
  text-decoration: none;
  transition: background 0.18s;
  will-change: transform;
  animation: game-action-btn-pulse-m84jcq1 1.4s infinite;
  border: none;
}

.game-action-btn-m84jcq1__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.game-action-btn-m84jcq1__label {
  display: block;
  line-height: 1.12;
  letter-spacing: .02em;
}

@keyframes game-action-btn-pulse-m84jcq1 {
  0% {
    box-shadow: 0 6px 28px rgba(0,0,0,0.18), 0 0 0 0 rgba(0,0,0,0.12);
    transform: translateX(-50%) scale(1);
  }
  55% {
    box-shadow: 0 6px 28px rgba(0,0,0,0.14), 0 0 0 7px rgba(44,150,255,0.13);
    transform: translateX(-50%) scale(1.08);
  }
  100% {
    box-shadow: 0 6px 28px rgba(0,0,0,0.20), 0 0 0 0 rgba(0,0,0,0.12);
    transform: translateX(-50%) scale(1);
  }
}

@media (min-width: 769px) {
  .game-action-btn-m84jcq1 {
    display: none;
  }
}
