:root {
  --cr-bg: #070b16;
  --cr-bg-soft: #0b1120;
  --cr-surface: #0f172a;
  --cr-surface-2: #141f37;
  --cr-surface-3: #1a2742;
  --cr-line: rgba(159, 177, 211, 0.18);
  --cr-line-strong: rgba(255, 216, 55, 0.38);
  --cr-text: #f7f9ff;
  --cr-muted: #aeb9d0;
  --cr-yellow: #ffd82f;
  --cr-yellow-2: #ffad0a;
  --cr-blue: #6ed9ff;
  --cr-green: #55e39a;
  --cr-danger: #ff7b7b;
  --cr-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --cr-radius-xl: 32px;
  --cr-radius-lg: 24px;
  --cr-radius-md: 16px;
  --cr-header-height: 78px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--cr-header-height) + 24px);
}

body.cr-template {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--cr-text);
  background:
    radial-gradient(circle at 7% 15%, rgba(48, 86, 170, 0.18), transparent 31rem),
    radial-gradient(circle at 92% 48%, rgba(255, 187, 24, 0.08), transparent 26rem),
    var(--cr-bg);
}

body.cr-template::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

body.cr-template a {
  color: inherit;
  text-decoration: none;
}

body.cr-template button,
body.cr-template a {
  -webkit-tap-highlight-color: transparent;
}

body.cr-template button:focus-visible,
body.cr-template a:focus-visible,
body.cr-template summary:focus-visible {
  outline: 3px solid var(--cr-blue);
  outline-offset: 4px;
}

body.cr-template.modal-open {
  overflow: hidden;
}

body.cr-template h1,
body.cr-template h2,
body.cr-template h3,
body.cr-template p,
body.cr-template ul,
body.cr-template ol {
  margin-top: 0;
}

body.cr-template h1,
body.cr-template h2,
body.cr-template h3 {
  color: var(--cr-text);
  letter-spacing: -0.035em;
}

body.cr-template h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

body.cr-template h3 {
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.15;
}

body.cr-template p {
  margin-bottom: 20px;
  color: var(--cr-muted);
}

.site-shell {
  min-height: 100vh;
}

.site-container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10001;
  padding: 10px 14px;
  border-radius: 10px;
  color: #080b13 !important;
  background: var(--cr-yellow);
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Header */
body.cr-template .site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: var(--cr-header-height);
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 22, 0.84);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

body.cr-template .header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 125px;
  height: 50px;
  object-fit: contain;
}

body.cr-template .main-nav {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  display: flex;
  justify-content: center;
  background: transparent;
  box-shadow: none;
}

body.cr-template .main-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

body.cr-template .main-nav__list li {
  margin: 0;
}

body.cr-template .main-nav__list a {
  display: block;
  padding: 11px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--cr-muted);
  transition: color 0.2s ease, background 0.2s ease;
}

body.cr-template .main-nav__list a:hover {
  color: var(--cr-text);
  background: rgba(255, 255, 255, 0.07);
}

body.cr-template .main-nav__list a::after {
  display: none;
}

body.cr-template .header-cta,
body.cr-template .registr-btn {
  min-width: auto;
  height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 216, 47, 0.46);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  color: #171004;
  background: linear-gradient(135deg, #ffe45e, #ffb20f);
  box-shadow: 0 8px 24px rgba(255, 184, 19, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.cr-template .header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 184, 19, 0.3);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--cr-line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 3px;
  background: var(--cr-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Breadcrumbs */
body.cr-template .breadcrumbs {
  margin: 0 auto;
  padding-block: 18px;
  color: var(--cr-muted);
}

body.cr-template .breadcrumbs ol {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

body.cr-template .breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.cr-template .breadcrumbs li + li::before {
  content: "/";
  color: rgba(255, 255, 255, 0.28);
}

body.cr-template .breadcrumbs a:hover {
  color: var(--cr-yellow);
}

/* Hero */
body.cr-template .play-section {
  width: 100%;
  margin: 0 0 96px;
  position: relative;
}

.game-hero__stage {
  position: relative;
  min-height: min(860px, calc(100svh - var(--cr-header-height)));
  overflow: hidden;
  isolation: isolate;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: #10182b;
}

body.cr-template .hero-media,
body.cr-template .play-section .bg-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

body.cr-template .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 8, 18, 0.92) 0%, rgba(5, 9, 20, 0.7) 43%, rgba(5, 8, 18, 0.16) 72%),
    linear-gradient(0deg, rgba(4, 7, 15, 0.9) 0%, transparent 40%, rgba(4, 7, 15, 0.22) 100%);
}

body.cr-template .hero-content {
  width: min(1130px, calc(100% - 40px));
  min-height: inherit;
  padding: clamp(76px, 10vw, 138px) 0 68px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 320px;
  align-items: end;
  gap: 50px;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  max-width: 1130px;
}

body.cr-template .hero-copy,
body.cr-template .play-section .box {
  width: 100%;
  max-width: 760px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--cr-radius-xl);
  color: var(--cr-text);
  background: linear-gradient(145deg, rgba(9, 16, 31, 0.92), rgba(11, 20, 39, 0.78));
  box-shadow: var(--cr-shadow);
  backdrop-filter: blur(22px) saturate(130%);
}

.eyebrow,
.section-kicker,
.toc__eyebrow {
  margin: 0 0 12px !important;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cr-yellow) !important;
}

body.cr-template .hero-copy .title {
  max-width: 640px;
  margin: 0;
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

body.cr-template .hero-copy .text {
  margin-top: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cr-text);
}

body.cr-template .hero-copy .text h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

body.cr-template .hero-copy .text p {
  max-width: 680px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #d7deed;
}

.hero-facts {
  margin: 28px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--cr-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
}

.hero-facts li {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-facts strong {
  font-size: 18px;
  line-height: 1.2;
  color: var(--cr-text);
}

.hero-facts span {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--cr-muted);
}

body.cr-template .hero-actions,
body.cr-template .box-actions {
  align-self: end;
  width: 100%;
  max-width: 320px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--cr-radius-lg);
  background: rgba(8, 14, 29, 0.9);
  box-shadow: var(--cr-shadow);
  backdrop-filter: blur(20px) saturate(130%);
}

.hero-actions__label {
  margin: 0 0 4px !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  color: var(--cr-text) !important;
}

.hero-actions__note {
  margin: 2px 0 0 !important;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  color: var(--cr-muted) !important;
}

body.cr-template .hero-actions .btn-gray,
body.cr-template .hero-actions .btn-yellow,
body.cr-template .game-modal .btn-yellow {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.cr-template .hero-actions .btn-gray {
  color: var(--cr-text);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

body.cr-template .hero-actions .btn-yellow,
body.cr-template .game-modal .btn-yellow {
  color: #171004;
  background: linear-gradient(135deg, var(--cr-yellow), var(--cr-yellow-2));
  box-shadow: 0 12px 28px rgba(255, 184, 14, 0.22);
}

body.cr-template .hero-actions .btn-gray:hover,
body.cr-template .hero-actions .btn-yellow:hover {
  transform: translateY(-2px);
}

.play-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: currentColor;
}

.play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
  transform: translate(-35%, -50%);
  filter: invert(1);
}

body.cr-template .play-section .iframe {
  display: none;
  width: 100%;
  background: #050913;
}

body.cr-template .play-section .iframe.show {
  display: block;
}

body.cr-template .game-frame iframe,
body.cr-template .play-section .iframe iframe {
  display: block;
  width: 100%;
  height: calc(100svh - var(--cr-header-height));
  border: 0;
}

body.cr-template .play-section.is-playing .game-hero__stage {
  display: none;
}

/* Content layout */
.content-layout {
  padding-bottom: 110px;
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.toc {
  position: sticky;
  top: calc(var(--cr-header-height) + 24px);
}

.toc__inner {
  padding: 24px;
  border: 1px solid var(--cr-line);
  border-radius: var(--cr-radius-lg);
  background: rgba(13, 20, 38, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.toc h2 {
  margin: 0 0 18px !important;
  font-size: 22px !important;
  line-height: 1.15;
}

.toc nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toc nav a {
  position: relative;
  padding: 9px 10px 9px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cr-muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.toc nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cr-yellow);
  transform: translateY(-50%);
}

.toc nav a:hover {
  color: var(--cr-text);
  background: rgba(255, 255, 255, 0.055);
}

.article-content {
  min-width: 0;
}

.content-card {
  position: relative;
  margin: 0 0 28px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--cr-line);
  border-radius: var(--cr-radius-xl);
  background:
    linear-gradient(145deg, rgba(18, 29, 52, 0.86), rgba(11, 18, 34, 0.92));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.content-card::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(78, 127, 219, 0.12);
  filter: blur(1px);
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.section-number {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--cr-line-strong);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  color: #161005;
  background: linear-gradient(135deg, var(--cr-yellow), var(--cr-yellow-2));
  box-shadow: 0 10px 24px rgba(255, 184, 15, 0.16);
}

.section-heading h2 {
  max-width: 760px;
}

.table-wrap {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--cr-line);
  border-radius: 18px;
  background: rgba(4, 9, 20, 0.34);
}

body.cr-template .table-wrap table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
  color: var(--cr-text);
}

body.cr-template .table-wrap th,
body.cr-template .table-wrap td {
  padding: 15px 18px;
  border: 0;
  border-bottom: 1px solid var(--cr-line);
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
  vertical-align: middle;
}

body.cr-template .table-wrap tr:last-child th,
body.cr-template .table-wrap tr:last-child td {
  border-bottom: 0;
}

body.cr-template .table-wrap thead th {
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #171004;
  background: linear-gradient(90deg, var(--cr-yellow), #ffc020);
}

body.cr-template .overview-table tbody th {
  width: 35%;
  font-weight: 750;
  color: var(--cr-muted);
}

body.cr-template .overview-table tbody td {
  font-weight: 750;
  color: var(--cr-text);
}

body.cr-template .table-wrap tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.feature-panel {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid var(--cr-line);
  border-radius: var(--cr-radius-lg);
  background: rgba(7, 13, 27, 0.5);
}

.feature-panel--accent {
  background:
    linear-gradient(160deg, rgba(255, 216, 47, 0.085), rgba(7, 13, 27, 0.52) 44%);
  border-color: rgba(255, 216, 47, 0.2);
}

.feature-panel ul,
.content-card ul {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.feature-panel li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.58;
  color: #c7d0e2;
}

.feature-panel li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--cr-yellow);
  transform: rotate(45deg);
  box-shadow: 0 0 14px rgba(255, 216, 47, 0.35);
}

.feature-panel p {
  font-size: 14px;
  line-height: 1.68;
}

.feature-panel p:last-child,
.content-card > p:last-child {
  margin-bottom: 0;
}

.editorial-image {
  position: relative;
  z-index: 1;
  margin: 0 0 30px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--cr-line);
  border-radius: var(--cr-radius-lg);
  background: #090e1b;
}

.editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.editorial-image img {
  width: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.editorial-image:hover img {
  transform: scale(1.025);
}

.steps-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  position: relative;
  min-height: 108px;
  padding: 20px 18px 18px 62px;
  border: 1px solid var(--cr-line);
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #ced6e6;
  background: rgba(6, 11, 23, 0.46);
  counter-increment: steps;
}

.steps-list li::before {
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  color: #171004;
  background: var(--cr-yellow);
}

.section-cta {
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
}

body.cr-template .main-button {
  width: auto;
  min-width: 220px;
  min-height: 52px;
  margin: 0;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  color: #171004;
  background: linear-gradient(135deg, var(--cr-yellow), var(--cr-yellow-2));
  box-shadow: 0 13px 30px rgba(255, 184, 15, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.cr-template .main-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 36px rgba(255, 184, 15, 0.28);
}

body.cr-template .casino-table th,
body.cr-template .casino-table td {
  width: auto;
}

body.cr-template .casino-table tbody th {
  font-weight: 800;
  color: var(--cr-text);
}

body.cr-template .casino-table tbody td {
  color: var(--cr-muted);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.compact-card {
  height: 100%;
}

.section-heading--compact h2 {
  font-size: clamp(28px, 3vw, 38px);
}

.compact-card--verified {
  border-color: rgba(85, 227, 154, 0.26);
  background:
    linear-gradient(145deg, rgba(22, 55, 50, 0.42), rgba(11, 18, 34, 0.94));
}

.compact-card--verified .section-number {
  border-color: rgba(85, 227, 154, 0.35);
  background: linear-gradient(135deg, #8af1bc, var(--cr-green));
  box-shadow: 0 10px 24px rgba(85, 227, 154, 0.14);
}

body.cr-template .faq {
  margin-top: 28px;
}

.faq__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

body.cr-template .faq__item {
  margin: 0;
  padding: 0;
  border: 1px solid var(--cr-line);
  border-radius: 16px;
  background: rgba(5, 10, 21, 0.43);
  transition: border-color 0.2s ease, background 0.2s ease;
}

body.cr-template .faq__item[open] {
  border-color: rgba(255, 216, 47, 0.25);
  background: rgba(18, 27, 47, 0.76);
}

body.cr-template .faq__item summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--cr-text);
}

body.cr-template .faq__item summary::-webkit-details-marker {
  display: none;
}

body.cr-template .faq__item summary::before,
body.cr-template .faq__item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--cr-yellow);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

body.cr-template .faq__item summary::after {
  transform: translateY(-50%) rotate(90deg);
}

body.cr-template .faq__item[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

body.cr-template .faq__item > div {
  padding: 0 58px 20px 22px;
}

body.cr-template .faq__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

body.cr-template .updated-block {
  margin: 0;
  padding: 0;
}

body.cr-template .updated-block__box {
  width: 100%;
  max-width: none;
  min-height: 56px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--cr-line);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 750;
  color: var(--cr-muted);
  background: rgba(10, 16, 30, 0.72);
}

.updated-block__box span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cr-green);
  box-shadow: 0 0 14px rgba(85, 227, 154, 0.5);
}

/* Footer */
body.cr-template .site-footer {
  padding: 0;
  border-top: 1px solid var(--cr-line);
  background:
    radial-gradient(circle at 20% 10%, rgba(55, 91, 163, 0.17), transparent 28rem),
    #060a14;
}

body.cr-template .footer__main {
  margin: 0 auto;
  padding: 68px 0 54px;
  display: grid;
  grid-template-columns: 1fr auto 200px;
  align-items: start;
  gap: 52px;
}

.footer__brand a {
  display: inline-flex;
}

.footer__brand img {
  width: 230px;
  height: 100px;
  object-fit: contain;
  object-position: left center;
}

.footer__brand p {
  margin: 10px 0 0 !important;
  font-size: 13px;
  font-weight: 700;
  color: var(--cr-muted) !important;
}

.footer__trust {
  display: grid;
  grid-template-columns: repeat(2, 96px);
  gap: 10px;
}

.footer__trust a {
  height: 62px;
  padding: 4px;
  border: 1px solid var(--cr-line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
}

.footer__trust img {
  max-width: 88px;
  max-height: 48px;
  object-fit: contain;
}

body.cr-template .footer-nav p {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cr-yellow);
}

body.cr-template .footer-nav__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
}

body.cr-template .footer-nav__list a {
  font-size: 14px;
  font-weight: 700;
  color: var(--cr-muted);
}

body.cr-template .footer-nav__list a:hover {
  color: var(--cr-text);
}

body.cr-template .footer__bottom {
  padding: 20px 0 calc(20px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--cr-line);
  display: block;
  font-size: 12px;
  color: #7f8ba3;
  background: rgba(0, 0, 0, 0.12);
}

/* Game modal */
body.cr-template .game-modal {
  background: var(--cr-bg);
}

body.cr-template .game-modal .close-btn {
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  font-size: 25px;
  line-height: 1;
  color: var(--cr-text);
  background: rgba(7, 11, 22, 0.9);
}

body.cr-template .game-modal .bottom {
  height: 76px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: var(--cr-bg-soft);
}

body.cr-template .game-modal .btn-yellow {
  position: static;
  height: 52px;
  animation: none;
}

@media (max-width: 1100px) {
  body.cr-template .header__inner {
    gap: 18px;
  }

  body.cr-template .main-nav__list a {
    padding-inline: 10px;
    font-size: 13px;
  }

  body.cr-template .hero-content {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 28px;
  }

  .content-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
  }

  .toc__inner {
    padding: 20px 16px;
  }

  .feature-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  body.cr-template .footer__main {
    grid-template-columns: 1fr auto;
  }

  body.cr-template .footer-nav {
    grid-column: 1 / -1;
  }

  body.cr-template .footer-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 860px) {
  :root {
    --cr-header-height: 72px;
  }

  .site-container {
    width: min(100% - 32px, 720px);
  }

  body.cr-template .header__inner {
    grid-template-columns: auto 1fr auto;
  }

  body.cr-template .header-cta {
    justify-self: end;
    padding-inline: 14px;
    font-size: 12px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }

  body.cr-template .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    width: min(330px, calc(100vw - 32px));
    height: auto;
    padding: 12px;
    display: none;
    border: 1px solid var(--cr-line);
    border-radius: 18px;
    background: rgba(9, 15, 29, 0.98);
    box-shadow: var(--cr-shadow);
    backdrop-filter: blur(20px);
  }

  body.cr-template .main-nav.is-open {
    display: block;
  }

  body.cr-template .main-nav__list {
    display: grid;
    gap: 4px;
  }

  body.cr-template .main-nav__list a {
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
  }

  body.cr-template .hero-content {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 24px;
  }

  body.cr-template .hero-actions,
  body.cr-template .box-actions {
    max-width: 520px;
    justify-self: start;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions__label,
  .hero-actions__note {
    grid-column: 1 / -1;
  }

  .content-layout {
    display: block;
  }

  .toc {
    position: static;
    margin-bottom: 26px;
  }

  .toc__inner {
    padding: 20px;
  }

  .toc h2 {
    margin-bottom: 14px !important;
  }

  .toc nav {
    padding-bottom: 4px;
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .toc nav::-webkit-scrollbar {
    display: none;
  }

  .toc nav a {
    flex: 0 0 auto;
    padding: 10px 14px 10px 24px;
    border: 1px solid var(--cr-line);
    background: rgba(255, 255, 255, 0.035);
  }

  .steps-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body.cr-template {
    font-size: 15px;
  }

  .site-container {
    width: calc(100% - 28px);
  }

  body.cr-template .site-header {
    height: var(--cr-header-height);
  }

  .brand img {
    width: 92px;
    height: 40px;
  }

  body.cr-template .header__inner {
    gap: 10px;
  }

  body.cr-template .header-cta {
    height: 40px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  body.cr-template .breadcrumbs {
    padding-block: 13px;
  }

  body.cr-template .play-section {
    margin-bottom: 64px;
  }

  .game-hero__stage {
    min-height: 0;
  }

  body.cr-template .hero-media img {
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(4, 7, 15, 0.94) 0%, rgba(5, 8, 18, 0.62) 58%, rgba(4, 7, 15, 0.28) 100%);
  }

  body.cr-template .hero-content {
    min-height: calc(100svh - var(--cr-header-height) - 46px);
    padding: 76px 0 36px;
  }

  body.cr-template .hero-copy,
  body.cr-template .play-section .box {
    max-width: none;
    padding: 24px 20px;
    border-radius: 24px;
  }

  body.cr-template .hero-copy .title {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1;
    text-align: left;
  }

  body.cr-template .hero-copy .text {
    margin-top: 22px;
  }

  body.cr-template .hero-copy .text h2 {
    font-size: 21px;
  }

  body.cr-template .hero-copy .text p {
    font-size: 14px;
    line-height: 1.62;
  }

  .hero-facts {
    margin-top: 22px;
    padding-top: 18px;
    gap: 10px;
  }

  .hero-facts strong {
    font-size: 15px;
  }

  .hero-facts span {
    font-size: 10px;
  }

  body.cr-template .hero-actions,
  body.cr-template .box-actions {
    max-width: none;
    padding: 18px;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .hero-actions__label,
  .hero-actions__note {
    grid-column: auto;
  }

  body.cr-template .hero-actions .btn-gray,
  body.cr-template .hero-actions .btn-yellow {
    height: 52px;
  }

  body.cr-template .game-frame iframe,
  body.cr-template .play-section .iframe iframe {
    height: calc(100svh - var(--cr-header-height));
  }

  .content-layout {
    padding-bottom: 72px;
  }

  .toc__inner {
    border-radius: 18px;
  }

  .content-card {
    margin-bottom: 20px;
    padding: 24px 18px;
    border-radius: 24px;
  }

  .section-heading {
    margin-bottom: 24px;
    gap: 13px;
  }

  .section-number {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 11px;
  }

  body.cr-template h2,
  .section-heading--compact h2 {
    font-size: 29px;
    line-height: 1.1;
  }

  body.cr-template h3 {
    font-size: 23px;
  }

  .feature-panel {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .feature-panel li {
    padding-left: 21px;
    font-size: 13px;
  }

  .table-wrap {
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }

  body.cr-template .overview-table thead {
    display: none;
  }

  body.cr-template .overview-table table,
  body.cr-template .overview-table tbody {
    display: block;
  }

  body.cr-template .overview-table tbody {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.cr-template .overview-table tr {
    min-width: 0;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid var(--cr-line);
    border-radius: 14px;
    background: rgba(5, 10, 21, 0.5) !important;
  }

  body.cr-template .overview-table tbody th,
  body.cr-template .overview-table tbody td {
    width: 100%;
    padding: 0;
    border: 0;
    display: block;
    overflow-wrap: anywhere;
  }

  body.cr-template .overview-table tbody th {
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  body.cr-template .overview-table tbody td {
    font-size: 13px;
    line-height: 1.35;
  }

  .editorial-image {
    margin-inline: -18px;
    border-inline: 0;
    border-radius: 0;
  }

  .editorial-image img {
    min-height: 180px;
  }

  .steps-list li {
    min-height: 0;
  }

  .section-cta,
  body.cr-template .main-button {
    width: 100%;
  }

  body.cr-template .casino-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  body.cr-template .casino-table table,
  body.cr-template .casino-table tbody {
    display: block;
  }

  body.cr-template .casino-table tbody {
    display: grid;
    gap: 12px;
  }

  body.cr-template .casino-table tr {
    padding: 10px 14px;
    display: block;
    border: 1px solid var(--cr-line);
    border-radius: 16px;
    background: rgba(5, 10, 21, 0.52) !important;
  }

  body.cr-template .casino-table th,
  body.cr-template .casino-table td {
    width: 100%;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid var(--cr-line);
    display: grid;
    grid-template-columns: minmax(98px, 36%) 1fr;
    gap: 12px;
    align-items: start;
    font-size: 13px;
  }

  body.cr-template .casino-table tr > :last-child {
    border-bottom: 0;
  }

  body.cr-template .casino-table th::before,
  body.cr-template .casino-table td::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--cr-yellow);
  }

  .info-grid {
    gap: 20px;
  }

  body.cr-template .faq__item summary {
    padding: 18px 50px 18px 18px;
    font-size: 14px;
  }

  body.cr-template .faq__item summary::before,
  body.cr-template .faq__item summary::after {
    right: 19px;
  }

  body.cr-template .faq__item > div {
    padding: 0 18px 18px;
  }

  body.cr-template .footer__main {
    padding: 48px 0 38px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  body.cr-template .footer-nav {
    grid-column: auto;
  }

  .footer__trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.cr-template .footer-nav__list {
    flex-direction: column;
  }

  body.cr-template .footer__bottom {
    padding-inline: 0;
    text-align: center;
  }
}

@media (max-width: 430px) {
  body.cr-template .header-cta {
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.cr-template .hero-content {
    padding-top: 52px;
  }

  body.cr-template .overview-table tbody {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
