/* ============================================================
   LuckyVega – Main Stylesheet
   Fonts: Syne (headings) + DM Sans (body)
   Palette: Deep Indigo #1a0a3c / Violet #6c2eb9 / Gold #f5c518 / White
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-dark:     #0e0622;
  --bg-card:     #19093a;
  --bg-card2:    #1f0d47;
  --violet:      #6c2eb9;
  --violet-light:#9b5de5;
  --violet-deep: #3d1570;
  --gold:        #f5c518;
  --gold-light:  #ffe066;
  --white:       #ffffff;
  --text-muted:  #a89bc9;
  --text-body:   #d8cfee;
  --accent:      #ff7f3f;
  --border:      rgba(108,46,185,0.35);
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 8px 40px rgba(108,46,185,0.25);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.45);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --header-h:    72px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

img { max-width: 100%; display: block; }

ul { list-style: none; }

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  padding: 14px 30px;
  text-decoration: none;
  letter-spacing: .03em;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  color: var(--bg-dark);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(245,197,24,.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,197,24,.5);
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}
.btn--outline {
  background: transparent;
  border-color: var(--violet-light);
  color: var(--white);
}
.btn--outline:hover {
  background: var(--violet-deep);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,.25);
  color: var(--text-muted);
  font-size: .85rem;
  padding: 8px 18px;
}
.btn--ghost:hover { border-color: var(--violet-light); color: var(--white); }
.btn--sm { padding: 10px 22px; font-size: .85rem; }
.btn--lg { padding: 16px 38px; font-size: 1.05rem; }

/* ─── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: rgba(14,6,34,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}
.header__logo:hover { color: var(--gold); }
.logo-icon {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text strong { color: var(--gold); }

.header__nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
.header__nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 50px;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.header__nav a:hover,
.header__nav a.active {
  color: var(--gold);
  background: rgba(245,197,24,.08);
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(14,6,34,.97);
  backdrop-filter: blur(14px);
  z-index: 850;
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.mobile-nav a:hover { color: var(--gold); background: rgba(245,197,24,.05); }

/* ─── AGE GATE ──────────────────────────────────────────────── */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(5,2,18,.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate__box {
  background: linear-gradient(160deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 80px rgba(108,46,185,.4);
  animation: popIn .4s cubic-bezier(.34,1.56,.64,1) both;
}
.age-gate__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--bg-dark);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(245,197,24,.4);
}
.age-gate__box h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.age-gate__box p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: .95rem;
  line-height: 1.6;
}
.age-gate__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.age-gate__note {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.age-gate__note a { font-size: .8rem; }
.age-gate.hidden { display: none; }

/* ─── COOKIE BANNER ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8000;
  width: calc(100% - 32px);
  max-width: 780px;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  box-shadow: var(--shadow);
  display: none;
  animation: slideUp .4s ease both;
}
.cookie-banner.visible { display: flex; }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}
.cookie-banner__inner p {
  flex: 1;
  font-size: .88rem;
  color: var(--text-muted);
  min-width: 200px;
}
.cookie-banner__inner p i { color: var(--gold); margin-right: 6px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-h);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,46,185,.5) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(245,197,24,.12) 0%, transparent 60%),
    var(--bg-dark);
}

/* Geometric background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(108,46,185,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(108,46,185,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at center, transparent 30%, var(--bg-dark) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  max-width: 680px;
}

.hero__disclaimer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.3);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero__title .accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}
.hero__subtitle strong { color: var(--white); }

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat__num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat__label {
  font-size: .8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 500;
}

/* floating coins */
.hero__coins {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.coin {
  position: absolute;
  font-size: 2.4rem;
  opacity: .18;
  animation: floatCoin linear infinite;
}
.coin--1 { left: 70%; top: 20%; animation-duration: 7s; animation-delay: 0s; }
.coin--2 { left: 82%; top: 55%; animation-duration: 9s; animation-delay: 1.5s; font-size: 3rem; }
.coin--3 { left: 60%; top: 70%; animation-duration: 11s; animation-delay: .5s; }
.coin--4 { left: 88%; top: 30%; animation-duration: 8s; animation-delay: 3s; font-size: 2rem; }
.coin--5 { left: 75%; top: 85%; animation-duration: 10s; animation-delay: 2s; font-size: 1.8rem; }

@keyframes floatCoin {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

/* ─── DISCLAIMER STRIP ──────────────────────────────────────── */
.disclaimer-strip {
  background: linear-gradient(90deg, rgba(245,197,24,.08) 0%, rgba(108,46,185,.1) 100%);
  border-top: 1px solid rgba(245,197,24,.2);
  border-bottom: 1px solid rgba(245,197,24,.2);
  padding: 16px 0;
}
.disclaimer-strip__inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.disclaimer-strip__inner i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.disclaimer-strip__inner p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.disclaimer-strip__inner p strong { color: var(--white); }

/* ─── SECTIONS ──────────────────────────────────────────────── */
.section { padding: 90px 0; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.section-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-cta { text-align: center; margin-top: 40px; }

/* ─── GAMES PREVIEW ─────────────────────────────────────────── */
.games-preview { background: var(--bg-dark); }

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.game-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(245,197,24,.2);
}

.game-card__thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Slots thumb */
.game-thumb-slots {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d0025 0%, #1a0550 50%, #2d0a6e 100%);
}
.slot-reel {
  width: 68px;
  height: 90px;
  background: linear-gradient(180deg, rgba(255,255,255,.06) 0%, rgba(255,255,255,.02) 100%);
  border: 2px solid rgba(108,46,185,.6);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  box-shadow: inset 0 0 20px rgba(108,46,185,.3), 0 0 20px rgba(108,46,185,.2);
  animation: reelPulse 3s ease-in-out infinite;
}
.slot-reel:nth-child(2) { animation-delay: .4s; }
.slot-reel:nth-child(3) { animation-delay: .8s; }
@keyframes reelPulse {
  0%,100% { box-shadow: inset 0 0 20px rgba(108,46,185,.3), 0 0 20px rgba(108,46,185,.2); }
  50%      { box-shadow: inset 0 0 30px rgba(245,197,24,.3), 0 0 30px rgba(245,197,24,.25); }
}

/* Cards thumb */
.game-thumb-cards {
  display: flex;
  gap: -6px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #001a0a 0%, #003318 50%, #00501e 100%);
}
.card-preview {
  width: 56px;
  height: 80px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a2e;
  box-shadow: 0 4px 16px rgba(0,0,0,.5);
  margin: 0 -4px;
  transition: transform var(--transition);
}
.card-preview--red { color: #c0392b; }
.game-thumb-cards:hover .card-preview:nth-child(1) { transform: rotate(-8deg) translateY(-6px); }
.game-thumb-cards:hover .card-preview:nth-child(2) { transform: translateY(-12px); }
.game-thumb-cards:hover .card-preview:nth-child(3) { transform: rotate(8deg) translateY(-6px); }

/* overlay */
.game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,6,34,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.game-card:hover .game-card__overlay { opacity: 1; }

/* badge */
.game-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.game-badge--hot {
  background: linear-gradient(135deg, #ff4f4f, #ff8c00);
  color: var(--white);
}
.game-badge--new {
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  color: var(--white);
}

.game-card__info { padding: 22px 24px 24px; }
.game-card__info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-family: var(--font-head);
}
.game-card__info p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}
.game-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.game-meta i { color: var(--gold); }
.tag-free {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--bg-dark);
  font-family: var(--font-head);
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .72rem;
  letter-spacing: .06em;
}

/* ─── BONUSES ────────────────────────────────────────────────── */
.bonuses {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card2) 50%, var(--bg-dark) 100%);
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--gold));
}
.bonus-card:hover {
  border-color: var(--violet-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bonus-card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.bonus-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.bonus-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.bonus-disclaimer {
  font-size: .75rem;
  color: var(--text-muted);
  font-style: italic;
  opacity: .7;
}

.bonuses-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(245,197,24,.06);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.bonuses-notice i { color: var(--gold); font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }
.bonuses-notice p { font-size: .88rem; color: var(--text-muted); line-height: 1.6; }
.bonuses-notice p strong { color: var(--white); }

/* ─── WHY US ─────────────────────────────────────────────────── */
.why-us {
  background: var(--bg-dark);
}
.section-header--light h2 { color: var(--white); }

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all var(--transition);
}
.feature-item:hover {
  border-color: var(--violet-light);
  transform: translateY(-3px);
}
.feature-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-item__text h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: var(--font-head);
  font-weight: 700;
}
.feature-item__text p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── COMPLIANCE ─────────────────────────────────────────────── */
.compliance {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}
.regulators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.regulator-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
  text-decoration: none;
}
.regulator-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245,197,24,.12);
}
.regulator-card__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.regulator-card__info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--white);
}
.regulator-card__info p {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.4;
}
.regulator-link {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__logo { margin-bottom: 16px; }
.footer__brand p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-badge {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer__nav h4,
.footer__legal h4,
.footer__contact h4 {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__nav ul,
.footer__legal ul { display: flex; flex-direction: column; gap: 8px; }
.footer__nav a,
.footer__legal a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__nav a:hover,
.footer__legal a:hover { color: var(--gold); }

.footer__contact p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.footer__contact i { color: var(--violet-light); margin-top: 4px; flex-shrink: 0; }
.footer__contact a { color: var(--text-muted); }
.footer__contact a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer__bottom p {
  font-size: .8rem;
  color: var(--text-muted);
}
.footer__disclaimer {
  font-size: .78rem;
  max-width: 800px;
  line-height: 1.6;
}

/* ─── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,46,185,.4) 0%, transparent 70%), var(--bg-dark);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero__badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,197,24,.1);
  border: 1px solid rgba(245,197,24,.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.page-hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

/* ─── PROSE (legal pages) ──────────────────────────────────── */
.prose-section {
  padding: 72px 0;
}
.prose-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 52px;
  max-width: 860px;
  margin: 0 auto;
}
.prose-box h2 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
  color: var(--gold);
}
.prose-box h2:first-child { margin-top: 0; }
.prose-box p {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 14px;
}
.prose-box ul {
  list-style: disc;
  margin: 0 0 16px 22px;
}
.prose-box ul li {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.8;
  margin-bottom: 6px;
}
.prose-box strong { color: var(--white); }
.prose-box a { color: var(--gold); }
.prose-box .updated {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* ─── GAMES PAGE ─────────────────────────────────────────────── */
.games-full { padding: 72px 0; }
.games-full__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}
.game-full-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition);
}
.game-full-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(245,197,24,.15);
}
.game-full-card__preview {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.game-full-card__body { padding: 28px; }
.game-full-card__body h2 { font-size: 1.5rem; margin-bottom: 10px; }
.game-full-card__body p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.game-full-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.gtag {
  font-size: .76rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* ─── GAME PLAY AREA ─────────────────────────────────────────── */
.game-play-area {
  background: var(--bg-card2);
  border: 2px solid var(--border);
  border-radius: 20px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

/* SLOT MACHINE */
.slot-machine {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 500px;
}
.slot-machine__header {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}
.slot-machine__reels {
  display: flex;
  gap: 12px;
}
.slot-machine__reel {
  width: 80px;
  height: 100px;
  background: linear-gradient(180deg, #1a0040 0%, #0d0028 100%);
  border: 2px solid var(--violet);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  box-shadow: inset 0 0 20px rgba(108,46,185,.4);
  transition: transform .1s;
  user-select: none;
}
.slot-machine__reels.spinning .slot-machine__reel {
  animation: spinReel .1s linear infinite;
}
@keyframes spinReel {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-4px); }
  75%  { transform: translateY(4px); }
  100% { transform: translateY(0); }
}
.slot-machine__balance {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--text-muted);
}
.slot-machine__balance span {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 800;
}
.slot-machine__result {
  font-family: var(--font-head);
  font-size: 1rem;
  min-height: 28px;
  font-weight: 700;
  color: var(--gold);
}
.slot-machine__btn {
  font-size: 1.1rem;
  padding: 16px 48px;
}
.slot-machine__disclaimer {
  font-size: .78rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.5;
}

/* BLACKJACK */
.blackjack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 560px;
}
.blackjack__header { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--gold); }
.blackjack__table { width: 100%; }
.bj-zone { margin-bottom: 18px; }
.bj-zone__label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.bj-cards {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.bj-card {
  width: 52px;
  height: 72px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a2e;
  box-shadow: 0 3px 10px rgba(0,0,0,.4);
  animation: cardDeal .2s ease both;
}
.bj-card--red { color: #c0392b; }
.bj-card--hidden { background: linear-gradient(135deg, var(--violet-deep), var(--violet)); color: transparent; font-size: 0; }
@keyframes cardDeal {
  from { transform: scale(.8) translateY(-10px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.bj-score {
  font-family: var(--font-head);
  font-size: .9rem;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 700;
}
.blackjack__status {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  min-height: 28px;
  color: var(--gold);
}
.blackjack__balance { font-family: var(--font-head); font-size: 1rem; color: var(--text-muted); }
.blackjack__balance span { color: var(--gold); font-size: 1.3rem; font-weight: 800; }
.blackjack__controls { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.blackjack__disclaimer { font-size: .78rem; color: var(--text-muted); max-width: 380px; text-align: center; line-height: 1.5; }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-section { padding: 72px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); font-size: .95rem; line-height: 1.7; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.contact-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--violet-deep), var(--violet));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item__text h4 { font-size: .9rem; margin-bottom: 4px; font-family: var(--font-head); }
.contact-item__text p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; }
.contact-item__text a { color: var(--text-muted); }
.contact-item__text a:hover { color: var(--gold); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-dark);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .92rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--violet-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
}
.form-success i { font-size: 2rem; display: block; margin-bottom: 12px; }

/* ─── RULES PAGE ─────────────────────────────────────────────── */
.rules-tabs { padding: 72px 0; }
.tabs__nav {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tab-btn:hover { border-color: var(--violet-light); color: var(--white); }
.tab-btn.active {
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  border-color: transparent;
  color: var(--white);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.rules-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.rules-card h2 { font-size: 1.4rem; margin-bottom: 20px; }
.rules-card h3 { font-size: 1.1rem; margin: 24px 0 10px; color: var(--gold); }
.rules-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.8; margin-bottom: 12px; }
.rules-card ul { list-style: none; margin-bottom: 16px; }
.rules-card ul li {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}
.rules-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.rules-card .rules-notice {
  background: rgba(245,197,24,.07);
  border: 1px solid rgba(245,197,24,.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 20px;
}
.rules-card .rules-notice p { color: var(--text-muted); margin-bottom: 0; font-size: .85rem; }
.rules-card .rules-notice strong { color: var(--gold); }

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes popIn {
  from { transform: scale(.7); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateX(-50%) translateY(20px); opacity: 0; }
  to   { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .header__nav, .header__cta { display: none; }
  .hamburger { display: flex; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__stats { gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .prose-box { padding: 28px 20px; }
  .games-full__grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; }
}

/* --- mobile overflow guard (auto) --- */
html {
  overflow-x: clip;
}
body {
  overflow-x: clip;
  max-width: 100%;
}
img,
video,
svg {
  max-width: 100%;
  height: auto;
}
.container,
[class*="container"],
[class*="inner"] {
  max-width: 100%;
}
[class*="grid"] {
  min-width: 0;
}
@media (max-width: 767px) {
  .site-header,
  .header,
  [class*="header"] {
    max-width: 100%;
    min-width: 0;
  }
  nav,
  [class*="nav"] {
    flex-wrap: wrap;
  }
  table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }
}
