/* =========================================================
   GOLDEX CASINO - Site 20
   Luxury Gold & Deep Blue Theme
========================================================= */

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

:root {
  /* Core palette - Deep Luxury */
  --c-bg: #070a12;
  --c-bg-alt: #0d1117;
  --c-card: #111827;
  --c-card-hover: #1f2937;

  /* Primary - Gold (from Goldex logo) */
  --c-gold: #CEA236;
  --c-gold-dark: #a88520;
  --c-gold-light: #FFECA7;

  /* Accent - Warm Gold */
  --c-accent: #d4a83a;
  --c-accent-dark: #b8922e;
  --c-accent-light: #edd98b;

  /* Typography */
  --c-white: #f9fafb;
  --c-text: #9ca3af;
  --c-muted: rgba(156, 163, 175, 0.8);
  --c-dim: rgba(156, 163, 175, 0.5);

  /* Borders */
  --b-line: rgba(206, 162, 54, 0.1);
  --b-active: rgba(206, 162, 54, 0.3);
  --b-glow: rgba(206, 162, 54, 0.15);

  /* Gradients */
  --g-gold: linear-gradient(135deg, #CEA236 0%, #FFECA7 50%, #d4a83a 100%);
  --g-gold-soft: linear-gradient(135deg, #CEA236 0%, #edd98b 100%);
  --g-card: linear-gradient(180deg, rgba(17, 24, 39, 0.98) 0%, rgba(7, 10, 18, 1) 100%);
  --g-hero: linear-gradient(90deg, #070a12 0%, #0d1117 50%, #070a12 100%);
  --g-dark: linear-gradient(180deg, #0d1117 0%, #070a12 100%);

  /* Shadows */
  --sh-gold: 0 4px 24px rgba(206, 162, 54, 0.25);
  --sh-lift: 0 12px 40px rgba(0, 0, 0, 0.4);

  /* Spacing */
  --gap-xs: 4px;
  --gap-sm: 8px;
  --gap-md: 12px;
  --gap-lg: 16px;
  --gap-xl: 20px;
  --gap-2x: 24px;
  --gap-3x: 32px;
  --gap-4x: 40px;
  --gap-5x: 48px;
  --gap-6x: 64px;

  /* Radius */
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-full: 9999px;

  /* Layout */
  --container-w: 1200px;
  --nav-h: 68px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--c-bg);
  background-image:
    radial-gradient(ellipse 60% 40% at 10% -10%, rgba(206, 162, 54, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 95% 110%, rgba(212, 168, 58, 0.03) 0%, transparent 40%);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ========== CONTAINER ========== */
.container {
  width: min(var(--container-w), calc(100% - var(--gap-3x)));
  margin-inline: auto;
}

/* ========== PROMO BAR ========== */
.promo-bar {
  background: var(--g-gold);
  padding: var(--gap-sm) 0;
  text-align: center;
}

.promo-bar__msg {
  font-size: 13px;
  font-weight: 700;
  color: #070a12 !important;
  display: inline-flex;
  align-items: center;
  gap: var(--gap-sm);
}

.promo-bar__msg i { color: #1f2937; }

/* ========== SITE NAV ========== */
.site-nav {
  background: rgba(7, 10, 18, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--b-line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

/* Brand Link */
.brand-link {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
}

.brand-link__img {
  height: 28px;
  width: auto;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
}

.nav-link {
  padding: var(--gap-md) var(--gap-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-muted);
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link--active { color: var(--c-gold); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-muted);
  padding: var(--gap-md) var(--gap-lg);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
}

.dropdown__toggle:hover {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.04);
}

.dropdown__arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.dropdown:hover .dropdown__arrow { transform: rotate(180deg); }

.dropdown__list {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: rgba(7, 10, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--b-active);
  border-radius: var(--r-md);
  padding: var(--gap-sm) 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  box-shadow: var(--sh-lift);
  z-index: 200;
}

.dropdown:hover .dropdown__list {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown__item {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
  padding: var(--gap-md) var(--gap-xl);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
  transition: all 0.15s ease;
  white-space: nowrap;
}

.dropdown__item i {
  width: 16px;
  text-align: center;
  color: var(--c-gold);
  font-size: 12px;
}

.dropdown__item:hover {
  color: var(--c-white);
  background: rgba(206, 162, 54, 0.06);
}

/* Mobile CTAs in nav */
.nav-menu__mobile-cta {
  display: none;
  padding: var(--gap-lg);
  border-top: 1px solid var(--b-line);
  margin-top: var(--gap-lg);
  gap: var(--gap-md);
}

/* Nav Actions */
.site-nav__btns {
  display: flex;
  align-items: center;
  gap: var(--gap-md);
}

/* ========== MOBILE MENU ========== */
.mobile-menu { display: none; }

.mobile-menu.is-visible {
  display: block;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  height: calc(100dvh - var(--nav-h));
  z-index: 99;
  background: var(--c-bg-alt);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px 20px 36px;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.mobile-menu__link {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-full);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-text);
}

.mobile-menu__link:active {
  color: var(--c-white);
  background: rgba(206, 162, 54, 0.12);
}

.mobile-menu__btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* Burger Button */
.burger-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--b-line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger-btn__bar {
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.burger-btn.is-open .burger-btn__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger-btn.is-open .burger-btn__bar:nth-child(2) { opacity: 0; }
.burger-btn.is-open .burger-btn__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-full);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--gold {
  background: var(--g-gold);
  color: #070a12 !important;
  box-shadow: var(--sh-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(206, 162, 54, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--c-gold) !important;
  border: 2px solid var(--c-gold);
}

.btn--outline:hover {
  background: var(--c-gold);
  color: #070a12 !important;
}

.btn--soft {
  background: var(--g-gold-soft);
  color: var(--c-white) !important;
  box-shadow: 0 4px 20px rgba(212, 168, 58, 0.3);
}

.btn--soft:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 168, 58, 0.4);
}

.btn--dark {
  background: var(--g-dark);
  color: var(--c-white) !important;
  border: 1px solid var(--b-line);
}

.btn--dark:hover { border-color: var(--b-active); }

/* ========== INTRO SECTION ========== */
.intro-section {
  padding: var(--gap-5x) 0 var(--gap-4x);
  background: var(--g-hero);
}

.intro-section__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--gap-4x);
  align-items: center;
}

.intro-section__media { order: 2; }

.intro-section__media img {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.intro-section__text { order: 1; }

.intro-section__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: var(--gap-sm) var(--gap-lg);
  background: rgba(206, 162, 54, 0.08);
  border: 1px solid var(--b-line);
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: var(--gap-xl);
}

.intro-section__tag i { color: var(--c-gold-light); }

.intro-section__h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--c-white);
  margin-bottom: var(--gap-xl);
  letter-spacing: -0.025em;
}

.intro-section__h1 em {
  font-style: normal;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.intro-section__lead {
  font-size: 17px;
  color: var(--c-muted);
  margin-bottom: var(--gap-3x);
  max-width: 520px;
}

.intro-section__btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-lg);
}

/* ========== METRICS ROW ========== */
.metrics-row {
  padding: var(--gap-2x) 0;
  border-top: 1px solid var(--b-line);
  border-bottom: 1px solid var(--b-line);
  background: rgba(7, 10, 18, 0.6);
}

.metrics-row__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-2x);
}

.metric-box { text-align: center; }

.metric-box__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.2;
  display: block;
}

.metric-box__num--gold { color: var(--c-gold); }

.metric-box__txt {
  font-size: 13px;
  color: var(--c-dim);
  margin-top: var(--gap-xs);
  display: block;
}

/* ========== SECTION HEADER ========== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--gap-2x);
}

.section-header__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-white);
  display: flex;
  align-items: center;
  gap: var(--gap-md);
}

.section-header__title i { color: var(--c-gold); }

.section-header__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  transition: color 0.2s;
}

.section-header__link:hover { color: var(--c-gold-light); }

/* ========== GAMES SHOWCASE ========== */
.games-showcase { padding: var(--gap-5x) 0; }

.games-showcase__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap-lg);
}

.game-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-card);
  border: 1px solid var(--b-line);
  transition: all 0.25s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--b-active);
  box-shadow: var(--sh-lift);
}

.game-card__visual { position: relative; overflow: hidden; }

.game-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.game-card__badge {
  position: absolute;
  top: var(--gap-sm);
  left: var(--gap-sm);
  padding: 4px 10px;
  background: var(--g-gold);
  border-radius: var(--r-xs);
  font-size: 10px;
  font-weight: 700;
  color: #070a12 !important;
  text-transform: uppercase;
}

.game-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.game-card:hover .game-card__hover { opacity: 1; }

.game-card__actions { display: flex; gap: var(--gap-sm); }

.game-card__btn {
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
}

.game-card__btn--play {
  background: var(--g-gold);
  color: #070a12 !important;
}

.game-card__btn--demo {
  background: transparent;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
}

.game-card__meta { padding: var(--gap-md); }

.game-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--gap-xs);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.game-card__rtp {
  font-size: 11px;
  color: var(--c-dim);
  display: block;
}

/* ========== PROVIDERS BAND ========== */
.providers-band {
  padding: var(--gap-4x) 0;
  background: var(--c-card);
}

.providers-band__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap-3x);
  align-items: center;
}

.provider-logo {
  height: 30px;
  display: flex;
  align-items: center;
}

.provider-logo img {
  height: 30px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: all 0.25s ease;
}

.provider-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

/* ========== ARTICLE SECTION ========== */
.article-section { padding: var(--gap-5x) 0; }

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--gap-3x);
  align-items: start;
}

/* ========== TEXT BLOCK ========== */
.text-block {
  background: var(--c-card);
  border: 1px solid var(--b-line);
  border-radius: var(--r-lg);
  padding: var(--gap-3x);
}

.text-block__h {
  font-size: 24px;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: var(--gap-2x);
  line-height: 1.3;
}

.text-block__content {
  color: var(--c-text);
  line-height: 1.75;
}

.text-block__content h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-white);
  margin: var(--gap-3x) 0 var(--gap-lg);
}

.text-block__content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-white);
  margin: var(--gap-2x) 0 var(--gap-md);
}

.text-block__content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
  margin: var(--gap-xl) 0 var(--gap-md);
}

.text-block__content p { margin-bottom: var(--gap-lg); }

.text-block__content ul,
.text-block__content ol {
  margin: var(--gap-lg) 0;
  padding-left: var(--gap-2x);
}

.text-block__content ul { list-style: disc; }
.text-block__content ol { list-style: decimal; }

.text-block__content li { margin-bottom: var(--gap-sm); }

.text-block__content a {
  color: var(--c-gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.text-block__content a:hover { border-color: var(--c-gold); }

.text-block__content strong {
  color: var(--c-white);
  font-weight: 600;
}

.text-block__content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--gap-2x) 0;
}

.text-block__content th,
.text-block__content td {
  padding: var(--gap-md) var(--gap-lg);
  text-align: left;
  border-bottom: 1px solid var(--b-line);
}

.text-block__content th {
  background: rgba(206, 162, 54, 0.06);
  color: var(--c-white);
  font-weight: 700;
  font-size: 13px;
}

.text-block__content td { font-size: 14px; }

/* ========== PROMO BOX ========== */
.promo-box {
  position: relative;
  background: var(--c-card);
  border: 1px solid var(--b-line);
  border-radius: var(--r-lg);
  padding: var(--gap-2x);
  padding-top: var(--gap-3x);
  margin: var(--gap-3x) 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--gap-xl);
  align-items: center;
}

.promo-box__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-sm);
  padding: var(--gap-xs) var(--gap-md);
  background: var(--g-gold);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 700;
  color: #070a12 !important;
  text-transform: uppercase;
  position: absolute;
  top: calc(-1 * var(--gap-md));
  left: var(--gap-xl);
}

.promo-box__icon {
  width: 52px;
  height: 52px;
  background: rgba(206, 162, 54, 0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--c-gold);
}

.promo-box__body { flex: 1; }

.promo-box__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: var(--gap-xs);
}

.promo-box__desc {
  font-size: 14px;
  color: var(--c-muted);
}

.promo-box__btn {
  padding: 12px 22px;
  background: var(--g-gold);
  border-radius: var(--r-full);
  font-size: 14px;
  font-weight: 700;
  color: #070a12 !important;
  display: inline-flex;
  align-items: center;
  gap: var(--gap-sm);
  transition: all 0.2s ease;
}

.promo-box__btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
}

.promo-box--highlight {
  border-color: var(--c-gold);
  background: linear-gradient(135deg, rgba(206, 162, 54, 0.04) 0%, var(--c-card) 100%);
}

.promo-box--highlight .promo-box__icon {
  background: rgba(206, 162, 54, 0.1);
  color: var(--c-gold-light);
}

.promo-box--accent {
  border-color: var(--b-active);
  background: linear-gradient(135deg, rgba(212, 168, 58, 0.04) 0%, var(--c-card) 100%);
}

/* ========== TWO COL LAYOUT ========== */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--gap-2x);
  align-items: start;
}

.two-col-layout__main { min-width: 0; }

.two-col-layout__side {
  position: sticky;
  top: calc(var(--nav-h) + var(--gap-xl));
}

/* ========== WINNERS FEED ========== */
.winners-feed {
  background: var(--c-card);
  border: 1px solid var(--b-line);
  border-radius: var(--r-lg);
  padding: var(--gap-xl);
  position: sticky;
  top: calc(var(--nav-h) + var(--gap-xl));
}

.winners-feed__head {
  display: flex;
  align-items: center;
  gap: var(--gap-sm);
  margin-bottom: var(--gap-xl);
  padding-bottom: var(--gap-lg);
  border-bottom: 1px solid var(--b-line);
}

.winners-feed__dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.winners-feed__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
}

.winners-feed__items {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.winner-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: var(--gap-md);
  align-items: center;
  padding: var(--gap-md);
  background: rgba(255, 255, 255, 0.015);
  border-radius: var(--r-sm);
  transition: all 0.3s ease;
}

.winner-item.is-new {
  animation: winner-in 0.4s ease;
  background: rgba(206, 162, 54, 0.06);
}

@keyframes winner-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.winner-item__img {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  object-fit: cover;
}

.winner-item__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-white);
}

.winner-item__game {
  font-size: 11px;
  color: var(--c-dim);
}

.winner-item__sum {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-gold);
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: var(--gap-5x) 0;
  background: var(--c-card);
}

.faq-section__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-white);
  text-align: center;
  margin-bottom: var(--gap-4x);
}

.faq-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-lg);
  align-items: start;
}

.faq-item {
  background: var(--c-bg);
  border: 1px solid var(--b-line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--gap-xl);
  text-align: left;
  cursor: pointer;
}

.faq-item__trigger h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-white);
  padding-right: var(--gap-lg);
}

.faq-item__icon {
  color: var(--c-gold);
  font-size: 14px;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-item__icon { transform: rotate(180deg); }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-item__body { max-height: 400px; }

.faq-item__body p {
  padding: 0 var(--gap-xl) var(--gap-xl);
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.7;
}

/* ========== SITE FOOTER ========== */
.site-footer {
  background: var(--c-bg-alt);
  padding: var(--gap-5x) 0 var(--gap-3x);
  border-top: 1px solid var(--b-line);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: var(--gap-4x);
  margin-bottom: var(--gap-4x);
  padding-bottom: var(--gap-3x);
  border-bottom: 1px solid var(--b-line);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.site-footer__brand img {
  height: 28px;
  width: auto;
}

.site-footer__brand span {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-white);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-3x);
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--gap-md);
}

.site-footer__heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: var(--gap-sm);
}

.site-footer__col a {
  font-size: 13px;
  color: var(--c-muted);
  transition: color 0.2s;
}

.site-footer__col a:hover { color: var(--c-gold); }

.site-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-md);
  align-items: center;
}

.site-footer__payments img {
  height: 26px;
  width: auto;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.site-footer__payments img:hover { opacity: 1; }

.site-footer__bottom { text-align: center; }

.site-footer__copy {
  font-size: 13px;
  color: var(--c-dim);
  margin-bottom: var(--gap-sm);
}

.site-footer__legal {
  font-size: 12px;
  color: var(--c-dim);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

.site-footer__legal a { color: var(--c-gold); }

/* ========== STICKY CTA ========== */
.sticky-cta {
  position: fixed;
  bottom: var(--gap-xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 90;
  transition: all 0.3s ease;
}

.sticky-cta.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}

/* ========== NOT FOUND (404) ========== */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gap-5x) 0;
}

.not-found__inner { text-align: center; }

.not-found__num {
  font-size: clamp(80px, 15vw, 130px);
  font-weight: 900;
  background: var(--g-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--gap-lg);
}

.not-found__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: var(--gap-md);
}

.not-found__text {
  font-size: 16px;
  color: var(--c-muted);
  margin-bottom: var(--gap-3x);
  max-width: 380px;
  margin-inline: auto;
}

.not-found__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gap-md);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .two-col-layout { grid-template-columns: 1fr; }
  .two-col-layout__side { position: static; }

  .intro-section__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .intro-section__media { order: 1; }
  .intro-section__text { order: 2; }
  .intro-section__lead { margin-inline: auto; }
  .intro-section__btns { justify-content: center; }

  .games-showcase__grid { grid-template-columns: repeat(4, 1fr); }

  .article-layout { grid-template-columns: 1fr; }
  .winners-feed { position: static; }

  .site-footer__top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer__nav { grid-template-columns: repeat(2, 1fr); }
  .site-footer__payments { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-menu,
  .site-nav__btns { display: none; }

  .burger-btn { display: flex; }

  .metrics-row__grid { grid-template-columns: repeat(2, 1fr); }
  .games-showcase__grid { grid-template-columns: repeat(3, 1fr); }
  .faq-section__grid { grid-template-columns: 1fr; }

  .promo-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .promo-box__btn {
    width: 100%;
    justify-content: center;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
  }
}

@media (max-width: 480px) {
  .games-showcase__grid { grid-template-columns: repeat(2, 1fr); }
  .intro-section__h1 { font-size: 26px; }
  .text-block { padding: var(--gap-xl); }
  .text-block__h { font-size: 20px; }
}
