: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;
}

:root {
  --kw-military: military;
  --kw-tactical: tactical;
  --kw-ops: ops;
  --kw-secure: secure;
}

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

.roulette-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 40px;
  margin-bottom: 36px;
  text-align: center;
  position: relative;
}

.roulette-hero::after {
  content: var(--kw-tactical);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary);
  font-size: 0;
}

.roulette-hero h1 {
  font-family: var(--font-condensed);
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 10px;
}

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

.roulette-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.roulette-col h2 {
  font-family: var(--font-condensed);
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text);
}

.roulette-col p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.roulette-col ul {
  list-style: none;
  margin: 16px 0;
}

.roulette-col li {
  font-size: 14px;
  color: var(--muted);
  padding: 10px 0 10px 20px;
  border-left: 2px solid var(--accent);
  margin-bottom: 8px;
}

.roulette-visual {
  margin-top: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 12px;
}

.roulette-visual figcaption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

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