:root {
  --bg: #0B0B0B;
  --surface: #151515;
  --text: #FAFAFA;
  --muted: #A3A3A3;
  --primary: #DC2626;
  --secondary: #FACC15;
  --accent: #16A34A;
  --border: rgba(250, 250, 250, 0.12);
  --kw-military: military;
  --kw-tactical: tactical;
  --kw-ops: ops;
  --kw-secure: secure;
  --font-condensed: "Arial Narrow", "Helvetica Condensed", "Franklin Gothic Medium", "Segoe UI", sans-serif;
  --font-mono: "Consolas", "Lucida Console", "Courier New", monospace;
  --font-body: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --max: 1200px;
  --nav-h: 52px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, rgba(22, 163, 74, 0.08) 0%, var(--bg) 38%, rgba(220, 38, 38, 0.06) 100%),
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(22, 163, 74, 0.1), transparent 55%);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  padding-bottom: calc(var(--nav-h) + 8px);
}

body::before {
  content: var(--kw-military) " " var(--kw-tactical);
  position: fixed;
  inset: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 47px,
      rgba(22, 163, 74, 0.04) 47px,
      rgba(22, 163, 74, 0.04) 48px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 47px,
      rgba(250, 250, 250, 0.025) 47px,
      rgba(250, 250, 250, 0.025) 48px
    );
  opacity: 0.9;
}

body::after {
  content: var(--kw-ops) " " var(--kw-secure);
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 12% 85%, rgba(22, 163, 74, 0.12), transparent 42%),
    radial-gradient(circle at 88% 15%, rgba(220, 38, 38, 0.08), transparent 40%);
}

body > * {
  position: relative;
  z-index: 1;
}

body.nav-locked {
  overflow: hidden;
}

body.no-nav {
  padding-bottom: 0;
}

body.no-nav .cookie-banner {
  bottom: 0;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
}

.offer-card__logo-wrap img,
img.offer-card__logo {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

a {
  color: var(--accent);
}

.is-hidden {
  display: none !important;
}

.disclosure {
  background: rgba(250, 250, 250, 0.96);
  color: #1a1a1a;
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1.45;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.disclosure__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.disclosure__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  fill: #1a1a1a;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--surface);
  height: var(--nav-h);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}

.bottom-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
  margin-right: 4px;
}

.bottom-nav__brand img {
  width: 28px;
  height: 26px;
  object-fit: contain;
}

.bottom-nav__brand span {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: none;
}

@media (min-width: 480px) {
  .bottom-nav__brand span {
    display: inline;
  }
}

.bottom-nav__links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  list-style: none;
  gap: 2px;
}

.bottom-nav__links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  color: var(--muted);
  padding: 4px 6px;
  min-width: 44px;
  transition: color 0.2s ease;
}

.bottom-nav__links a:hover {
  color: var(--text);
}

.bottom-nav__links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.bottom-nav__links span {
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bottom-nav__more {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 8px;
  min-width: 44px;
}

.bottom-nav__more svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.bottom-nav__more span {
  font-size: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.nav-link--desktop-only {
  display: flex;
}

@media (max-width: 768px) {
  .nav-link--mobile-hidden {
    display: none !important;
  }

  .bottom-nav__more {
    display: flex;
  }
}

.nav-overlay {
  display: none;
}

@media (max-width: 768px) {
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-overlay.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  .nav-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.88);
  }

  .nav-overlay__panel {
    position: absolute;
    bottom: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 16px 20px 20px;
  }

  .nav-overlay__panel ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    list-style: none;
  }

  .nav-overlay__panel a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--text);
    font-size: 10px;
    font-family: var(--font-mono);
    text-transform: uppercase;
    padding: 10px 6px;
    background: rgba(250, 250, 250, 0.04);
    border: 1px solid var(--border);
  }

  .nav-overlay__panel svg {
    width: 20px;
    height: 20px;
    fill: var(--accent);
  }
}

.site-footer {
  background: var(--surface);
  color: rgba(250, 250, 250, 0.88);
  padding: 48px 24px 32px;
  margin-top: 48px;
  border-top: 1px solid var(--border);
}

.site-footer a {
  color: var(--secondary);
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__brand .brand__name {
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.footer__brand img {
  width: 36px;
  height: 33px;
  object-fit: contain;
}

.footer__text {
  font-size: 13px;
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--muted);
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 20px 0 24px;
}

.footer__badges a,
.footer__badges span {
  display: inline-flex;
  align-items: center;
}

.footer__badges img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 20px;
  font-size: 13px;
}

.footer__links a {
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__meta {
  font-size: 12px;
  color: rgba(250, 250, 250, 0.55);
  line-height: 1.55;
}

.footer__company {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(250, 250, 250, 0.45);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(11, 11, 11, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.is-hidden {
  display: none !important;
}

.age-gate__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  max-width: 420px;
  width: 100%;
  padding: 28px 24px;
  text-align: center;
}

.age-gate__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.age-gate__title {
  font-family: var(--font-condensed);
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--text);
}

.age-gate__text {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.age-gate__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.age-gate__actions button {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid var(--border);
}

.btn-confirm {
  background: var(--primary);
  color: var(--text);
  border-color: var(--primary) !important;
}

.btn-decline {
  background: transparent;
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 2px solid var(--accent);
  padding: 14px 20px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}

.cookie-banner__text {
  flex: 1 1 280px;
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
}

.cookie-banner__actions button {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid var(--border);
}

#cookie-accept {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}

#cookie-reject {
  background: transparent;
  color: var(--text);
}

.page-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px 24px;
}

.legal-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  padding: 32px 28px;
}

.legal-content h1 {
  font-family: var(--font-condensed);
  font-size: 28px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  color: var(--text);
}

.legal-content h2 {
  font-family: var(--font-condensed);
  font-size: 18px;
  margin: 24px 0 10px;
  letter-spacing: 0.03em;
  color: var(--text);
}

.legal-content p,
.legal-content li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-content li {
  margin-bottom: 6px;
}

.contact-form {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  max-width: 480px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  border-radius: 2px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 22px;
  background: var(--primary);
  color: var(--text);
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

.form-error {
  color: var(--primary);
  font-size: 13px;
}

.contact-success {
  margin-top: 20px;
  padding: 18px 20px;
  background: rgba(22, 163, 74, 0.12);
  border-left: 3px solid var(--accent);
  font-size: 14px;
  color: var(--text);
}

.decor-img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.rtp-figure,
figure.roulette-visual,
.slots-rail figure,
.pay-tile figure {
  overflow: hidden;
  max-width: 100%;
}

@media (max-width: 375px) {
  .decor-img {
    max-height: 200px;
  }
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

@keyframes ops-pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

.tactical-mark {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
  animation: ops-pulse 2.4s ease-in-out infinite;
}

.secure-rail {
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.page-hero-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px 40px;
  text-align: center;
  position: relative;
}

.page-hero-strip h1 {
  font-family: var(--font-condensed);
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.page-hero-strip p {
  color: var(--muted);
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}

.error-page {
  text-align: center;
  padding: 80px 24px;
}

.error-page h1 {
  font-family: var(--font-condensed);
  font-size: 72px;
  color: var(--primary);
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

.error-page a {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  background: var(--primary);
  padding: 12px 24px;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 300px;
  padding: 60px 24px 80px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.3), rgba(21, 21, 21, 0.95)),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(22, 163, 74, 0.15), transparent 60%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 14px,
      rgba(22, 163, 74, 0.04) 14px,
      rgba(22, 163, 74, 0.04) 15px
    );
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.hero__title {
  font-family: var(--font-condensed);
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  background: var(--primary);
  padding: 12px 24px;
  border-radius: 2px;
}

.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.hero__wave svg {
  display: block;
  width: 100%;
  height: 48px;
}

@media (max-width: 768px) {
  .hero {
    padding: 32px 20px 48px;
    min-height: 260px;
  }

  .hero__wave svg {
    height: 32px;
  }
}

.offers {
  position: relative;
  padding: 56px 24px;
  background-color: var(--surface);
  background-image:
    linear-gradient(rgba(11, 11, 11, 0.78), rgba(11, 11, 11, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.offers .section-label {
  text-align: center;
}

.offers__title {
  font-family: var(--font-condensed);
  font-size: 30px;
  color: var(--text);
  text-align: center;
  margin-bottom: 10px;
}

.offers__intro {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 560px;
  margin: 0 auto 36px;
}

.offers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.offer-card {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.12);
}

.offer-card__logo-wrap {
  background: #fff;
  width: 280px;
  height: 120px;
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.offer-card__body {
  padding: 18px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card__name {
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  color: #ffd700;
  margin-bottom: 8px;
}

.offer-card__bonus {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.offer-card__terms {
  font-size: 11px;
  color: rgba(224, 224, 224, 0.55);
  margin-bottom: 14px;
}

.offer-card__cta {
  width: 100%;
  padding: 13px 22px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.04em;
  font-family: var(--font-mono);
  text-transform: uppercase;
  margin-top: auto;
  text-decoration: none;
  text-align: center;
  display: block;
  box-sizing: border-box;
}

.offer-card__cta:hover {
  box-shadow: 0 0 14px rgba(34, 197, 94, 0.35);
  color: #ffffff;
}

@media (max-width: 480px) {
  .offer-card__logo-wrap {
    width: 220px;
    height: 94px;
  }

  .offer-card__logo-wrap img,
  img.offer-card__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}

.info-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 24px 8px;
  display: grid;
  gap: 28px;
}

.info-section h2 {
  font-family: var(--font-condensed);
  font-size: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.info-section p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
}

.info-section .topic-cta {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  background: var(--primary);
  padding: 10px 16px;
  border-radius: 2px;
}

#info-1 {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
}

#info-1 .stat-panel {
  display: grid;
  gap: 10px;
}

#info-1 .stat-panel div {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 12px 14px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

#info-1 .stat-panel strong {
  display: block;
  font-size: 18px;
  color: var(--secondary);
  margin-top: 4px;
}

@media (max-width: 768px) {
  #info-1 {
    grid-template-columns: 1fr;
  }
}

#info-2 {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), var(--surface));
  padding: 32px 28px;
  border-left: 3px solid var(--primary);
}

#info-2 .checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
  list-style: none;
}

#info-2 .checklist li {
  font-size: 14px;
  padding: 12px 14px;
  background: rgba(250, 250, 250, 0.03);
  border: 1px solid var(--border);
}

#info-3 {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}

#info-3 .info-rail {
  background: rgba(22, 163, 74, 0.15);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 16px 8px;
}

#info-3 .info-body {
  padding: 28px 24px;
}

@media (max-width: 600px) {
  #info-3 {
    grid-template-columns: 1fr;
  }

  #info-3 .info-rail {
    writing-mode: horizontal-tb;
    transform: none;
    padding: 10px 16px;
  }
}

#info-4 {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
}

#info-4::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 8px,
      rgba(22, 163, 74, 0.08) 8px,
      rgba(22, 163, 74, 0.08) 9px
    );
  pointer-events: none;
}

#info-4 .criteria-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

#info-4 .criteria-cards div {
  padding: 14px;
  border: 1px solid var(--border);
  font-size: 13px;
  background: rgba(250, 250, 250, 0.02);
}

#info-4 .criteria-cards strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  #info-4 .criteria-cards {
    grid-template-columns: 1fr;
  }
}

#info-5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 28px;
  background:
    linear-gradient(160deg, var(--surface), rgba(21, 21, 21, 0.8)),
    radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.1), transparent 50%);
  border-top: 2px solid var(--primary);
}

#info-5 .wheel-diagram {
  aspect-ratio: 1;
  max-width: 220px;
  margin: 0 auto;
  border-radius: 50%;
  border: 3px solid var(--border);
  background:
    conic-gradient(
      var(--primary) 0deg 30deg,
      var(--surface) 30deg 60deg,
      var(--primary) 60deg 90deg,
      var(--surface) 90deg 120deg,
      var(--primary) 120deg 150deg,
      var(--surface) 150deg 180deg,
      var(--primary) 180deg 210deg,
      var(--surface) 210deg 240deg,
      var(--primary) 240deg 270deg,
      var(--surface) 270deg 300deg,
      var(--primary) 300deg 330deg,
      var(--surface) 330deg 360deg
    );
  position: relative;
}

#info-5 .wheel-diagram::after {
  content: "";
  position: absolute;
  inset: 30%;
  background: var(--bg);
  border-radius: 50%;
  border: 2px solid var(--border);
}

@media (max-width: 768px) {
  #info-5 {
    grid-template-columns: 1fr;
  }
}

#info-6 {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px;
}

#info-6 .pay-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 16px 0;
}

#info-6 .pay-grid div {
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-size: 14px;
  background: rgba(22, 163, 74, 0.06);
}

#info-6 .pay-grid strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 6px;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  #info-6 .pay-grid {
    grid-template-columns: 1fr;
  }
}

#info-7 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
  background: linear-gradient(90deg, rgba(22, 163, 74, 0.08), transparent);
  border-right: 3px solid var(--accent);
}

#info-7 .slot-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#info-7 .slot-features span {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  background: var(--surface);
}

#info-8 {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px dashed var(--border);
  text-align: center;
}

#info-8 blockquote {
  font-family: var(--font-condensed);
  font-size: 20px;
  color: var(--secondary);
  margin: 16px auto;
  max-width: 480px;
  line-height: 1.4;
}

#info-9 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
}

#info-9 .steps-list {
  counter-reset: step;
  list-style: none;
  margin-top: 12px;
}

#info-9 .steps-list li {
  counter-increment: step;
  padding: 12px 12px 12px 44px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

#info-9 .steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#info-9 .live-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(220, 38, 38, 0.08);
  text-align: center;
}

#info-9 .live-badge span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #info-9 {
    grid-template-columns: 1fr;
  }
}

#info-10 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
}

#info-10 .game-col {
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
}

#info-10 .game-col h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  #info-10 {
    grid-template-columns: 1fr;
  }
}
