/* =====================================================
   LUCKERA CASINO – Main Stylesheet
   Color palette: Deep black, warm gold, emerald green,
   mahogany brown, cream ivory
   ===================================================== */

:root {
  --black:       #0A0A0A;
  --black-mid:   #111111;
  --black-soft:  #181818;
  --dark:        #1A1510;
  --dark-card:   #1E1A14;
  --mahogany:    #3A2318;
  --mahogany-lt: #5A3A29;
  --gold:        #D1A94A;
  --gold-lt:     #E8C96A;
  --gold-dk:     #A07830;
  --gold-pale:   #F2E0A8;
  --emerald:     #1F7A53;
  --emerald-lt:  #2FA870;
  --cream:       #F2E8D8;
  --cream-dim:   #D8C1A1;
  --silver:      #B8B8B8;
  --white:       #FFFFFF;
  --text-main:   #E8D8C0;
  --text-muted:  #9A8B78;
  --border:      rgba(209,169,74,0.2);
  --shadow-gold: 0 0 30px rgba(209,169,74,0.15);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.5);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;
  --trans:       0.3s ease;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --font-elegant:'Cormorant Garamond', Georgia, serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--gold); transition: color var(--trans); }
a:hover { color: var(--gold-lt); }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--cream); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); color: var(--gold-lt); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); color: var(--cream); }
h4 { font-size: 1rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; }
p  { color: var(--text-main); font-size: 0.97rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 50%, var(--gold-dk) 100%);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(209,169,74,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-lt) 0%, var(--gold) 50%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(209,169,74,0.5);
  color: var(--black);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(209,169,74,0.1);
  transform: translateY(-2px);
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(209,169,74,0.5);
  font-size: 0.88rem;
  padding: 10px 22px;
}
.btn-outline-gold:hover {
  background: rgba(209,169,74,0.1);
  border-color: var(--gold);
  color: var(--gold-lt);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADER ===== */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--mahogany), var(--mahogany-lt));
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}
.unique-tag {
  background: linear-gradient(135deg, var(--emerald) 0%, #0d5a3e 100%);
  color: var(--gold-lt);
  border-color: rgba(31,122,83,0.4);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-desc {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

/* ===== SECTION BACKGROUNDS ===== */
.section-standard {
  padding: 80px 0;
  background: var(--black-mid);
  position: relative;
}
.section-dark {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D1A94A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.unique-section {
  background: linear-gradient(180deg, var(--dark) 0%, #0D1A15 100%);
}
.jackpot-section {
  background: linear-gradient(180deg, var(--black-mid) 0%, #16100A 100%);
}
.strip-dark {
  padding: 0;
  background: linear-gradient(135deg, var(--mahogany) 0%, var(--dark) 60%, var(--black) 100%);
}

/* ===================================================
   HEADER — PREMIUM REDESIGN
   =================================================== */

/* Gold top accent line */
.header-topline {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-dk) 20%, var(--gold-lt) 50%, var(--gold-dk) 80%, transparent 100%);
  animation: shimmer-line 3s ease-in-out infinite;
}
@keyframes shimmer-line {
  0%, 100% { opacity: 0.7; }
  50%       { opacity: 1; }
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(10,8,6,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(209,169,74,0.15);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(10,8,6,0.98);
  box-shadow: 0 4px 40px rgba(0,0,0,0.7), 0 1px 0 rgba(209,169,74,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}

/* --- Logo --- */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}
.logo-img {
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  mix-blend-mode: screen;
  transition: filter var(--trans);
}
.logo-wrap:hover .logo-img { filter: brightness(1.15); }

/* MGA badge next to logo */
.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--mahogany), var(--dark));
  border: 1px solid rgba(209,169,74,0.3);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 50px;
  white-space: nowrap;
}
.logo-badge i { font-size: 0.65rem; color: var(--emerald-lt); }

/* --- Navigation --- */
.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: 2px;
  align-items: center;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--cream-dim);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.025em;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px; left: 13px; right: 13px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.nav-link:hover { color: var(--gold-lt); background: rgba(209,169,74,0.07); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold-lt); }
.nav-icon { font-size: 0.75rem; opacity: 0.7; }

/* --- CTA buttons in header --- */
.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.btn-ghost-header {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1.5px solid rgba(209,169,74,0.35);
  color: var(--cream-dim);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-ghost-header:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  background: rgba(209,169,74,0.07);
}
.header-play-btn {
  font-size: 0.87rem;
  padding: 9px 20px;
  white-space: nowrap;
  box-shadow: 0 0 18px rgba(209,169,74,0.25);
}
.header-play-btn:hover {
  box-shadow: 0 0 28px rgba(209,169,74,0.45);
  transform: translateY(-1px);
}

/* --- Burger button --- */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid rgba(209,169,74,0.25);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 10px;
  margin-left: auto;
  transition: border-color var(--trans);
}
.burger:hover { border-color: var(--gold); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}
/* Burger open state — X */
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Mobile nav --- */
.mobile-nav {
  display: none;
  background: rgba(10,8,6,0.98);
  border-top: 1px solid rgba(209,169,74,0.12);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-nav.open {
  display: block;
  max-height: 600px;
}
.mobile-nav-inner {
  padding: 16px 20px 24px;
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.mobile-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-main);
  font-size: 0.97rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
}
.mobile-link i { width: 18px; text-align: center; color: var(--gold); font-size: 0.9rem; }
.mobile-link:hover { color: var(--gold-lt); background: rgba(209,169,74,0.08); }
.mobile-nav-cta { border-top: 1px solid rgba(209,169,74,0.1); padding-top: 16px; }
.mobile-nav-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.mobile-nav-note i { color: var(--emerald-lt); }

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
  background: var(--black);
  min-height: 500px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* Баннер справа, в натуральных пропорциях, не растягивается */
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Тёмный градиент слева — текст читаемый, баннер виден справа */
  background: linear-gradient(
    100deg,
    rgba(10,10,10,1.0)  0%,
    rgba(10,10,10,0.95) 30%,
    rgba(10,10,10,0.80) 50%,
    rgba(10,10,10,0.30) 75%,
    rgba(10,10,10,0.10) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 50px;
  padding-bottom: 60px;
}

@media (max-width: 900px) {
  .hero-bg {
    background-position: center center;
    background-size: cover;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10,10,10,0.97) 0%,
      rgba(10,10,10,0.85) 50%,
      rgba(10,10,10,0.97) 100%
    );
  }
  .hero {
    min-height: 480px;
  }
}
@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }
  .hero-bg {
    background-size: cover;
    background-position: 65% center;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31,122,83,0.25);
  border: 1px solid rgba(31,122,83,0.5);
  color: var(--emerald-lt);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--cream-dim);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 600px;
}
.hero-sub strong { color: var(--gold-lt); }
.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-badges-row span {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 500;
}
.hero-badges-row span i { color: var(--gold); }
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ===== INFO STRIP ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}
.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 28px 20px;
  background: var(--dark-card);
  text-align: center;
  transition: background var(--trans);
}
.info-card:hover { background: var(--mahogany); }
.info-card i { font-size: 1.5rem; color: var(--gold); }
.info-card strong { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold-lt); }
.info-card span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.col-text p { margin-bottom: 1rem; }
.col-text p:last-child { margin-bottom: 0; }

/* ===== CHECK LIST ===== */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 1.2rem 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text-main);
}
.check-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* ===== TABLES ===== */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.87rem;
}
.info-table caption {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  text-align: left;
  padding-bottom: 10px;
  font-weight: 600;
}
.info-table thead tr {
  background: linear-gradient(135deg, var(--mahogany), var(--mahogany-lt));
}
.info-table th {
  padding: 12px 16px;
  color: var(--gold-lt);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}
.info-table td {
  padding: 11px 16px;
  color: var(--text-main);
  border-bottom: 1px solid rgba(58,35,24,0.4);
  vertical-align: middle;
}
.info-table tbody tr { background: rgba(26,21,16,0.6); transition: background var(--trans); }
.info-table tbody tr:hover { background: rgba(58,35,24,0.4); }
.info-table tbody tr:nth-child(even) { background: rgba(30,26,20,0.8); }
.info-table tbody tr:nth-child(even):hover { background: rgba(58,35,24,0.4); }
.bonus-table-wrap { overflow-x: auto; margin-top: 2rem; }

/* ===== BONUS SECTION ===== */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 2rem;
}
.bonus-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bonus-card:hover {
  border-color: var(--gold-dk);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.bonus-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--dark-card) 0%, rgba(58,35,24,0.6) 100%);
  box-shadow: var(--shadow-gold);
}
.bonus-ribbon {
  position: absolute;
  top: -1px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}
.bonus-icon { font-size: 2rem; color: var(--gold); }
.bonus-card h3 { color: var(--cream); font-size: 1.2rem; }
.bonus-amount {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-lt);
  font-weight: 700;
}
.bonus-card p { color: var(--text-muted); font-size: 0.88rem; flex: 1; }

/* ===== GAMES ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 2rem;
}
.game-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  position: relative;
  text-align: center;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.game-card:hover {
  border-color: var(--gold-dk);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.game-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-lt));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.game-icon { font-size: 2.2rem; color: var(--gold); }
.game-card h3 { color: var(--cream); }
.game-card p { color: var(--text-muted); font-size: 0.82rem; }

.games-categories { margin-top: 1.5rem; }
.games-categories h3 { color: var(--gold); margin-bottom: 1rem; font-size: 1rem; }
.cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cat-tags span {
  background: rgba(58,35,24,0.5);
  border: 1px solid var(--border);
  color: var(--cream-dim);
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--trans);
}
.cat-tags span:hover { background: var(--mahogany); color: var(--gold); border-color: var(--gold-dk); }

/* ===== LIVE CASINO ===== */
.live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.live-card {
  background: rgba(26,21,16,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--trans);
}
.live-card:hover { border-color: var(--gold-dk); transform: translateY(-4px); }
.live-icon { font-size: 2rem; color: var(--gold); }
.live-card h3 { color: var(--cream); }
.live-card p { color: var(--text-muted); font-size: 0.88rem; }
.live-card ul { display: flex; flex-direction: column; gap: 6px; }
.live-card ul li {
  font-size: 0.82rem;
  color: var(--cream-dim);
  padding-left: 14px;
  position: relative;
}
.live-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== JACKPOT TICKER ===== */
.jackpot-ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 2.5rem;
}
.ticker-item {
  background: linear-gradient(135deg, var(--mahogany) 0%, var(--dark-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ticker-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt), var(--gold-dk));
}
.ticker-name {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.ticker-val {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-lt);
  font-weight: 700;
}

/* ===== PAYMENT GRID ===== */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 1.5rem;
}
.pay-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: all var(--trans);
  cursor: default;
}
.pay-card:hover { border-color: var(--gold-dk); background: var(--mahogany); }
.pay-card i { font-size: 1.6rem; color: var(--gold); }
.pay-card span { font-size: 0.8rem; color: var(--cream-dim); font-weight: 500; }

/* ===== PROVIDERS ===== */
.providers-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 2rem;
}
.providers-list span {
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--cream-dim);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all var(--trans);
  cursor: default;
}
.providers-list span:hover { background: var(--mahogany); color: var(--gold); border-color: var(--gold-dk); }

/* ===== SECURITY GRID ===== */
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sec-card {
  background: rgba(26,21,16,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--trans);
}
.sec-card:hover { border-color: var(--gold-dk); transform: translateY(-4px); }
.sec-card i { font-size: 2rem; color: var(--gold); margin-bottom: 14px; display: block; }
.sec-card h3 { color: var(--cream); margin-bottom: 10px; }
.sec-card p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== VIP LEVELS ===== */
.vip-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 2rem;
}
.vip-card {
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vip-card:hover { transform: translateY(-6px); }
.vip-icon { font-size: 2rem; margin-bottom: 4px; }
.vip-card h3 { font-size: 1.2rem; }
.vip-card p { font-size: 0.78rem; color: var(--text-muted); }
.vip-card ul { display: flex; flex-direction: column; gap: 6px; }
.vip-card ul li { font-size: 0.8rem; }
.bronze { background: linear-gradient(160deg, #2A1F14, #1A150E); border-color: #CD7F32; }
.bronze .vip-icon, .bronze h3 { color: #CD7F32; }
.bronze ul li { color: #CD7F32; }
.silver { background: linear-gradient(160deg, #1E2025, #131519); border-color: #C0C0C0; }
.silver .vip-icon, .silver h3 { color: #C0C0C0; }
.silver ul li { color: #C0C0C0; }
.gold { background: linear-gradient(160deg, #2A2010, #1A1508); border-color: var(--gold); }
.gold .vip-icon, .gold h3 { color: var(--gold-lt); }
.gold ul li { color: var(--gold); }
.platinum { background: linear-gradient(160deg, #1A1F2A, #101318); border-color: #E5E4E2; }
.platinum .vip-icon, .platinum h3 { color: #E5E4E2; }
.platinum ul li { color: #E5E4E2; }
.diamond { background: linear-gradient(160deg, #0D1A25, #080F15); border-color: #B9F2FF; }
.diamond .vip-icon, .diamond h3 { color: #B9F2FF; }
.diamond ul li { color: #B9F2FF; }

/* ===== TOURNAMENTS ===== */
.tournament-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tourn-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--trans);
}
.tourn-card:hover { border-color: var(--gold-dk); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.tourn-card.active { border-color: var(--emerald-lt); }
.tourn-badge {
  display: inline-block;
  background: var(--emerald);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 50px;
  width: fit-content;
}
.tourn-badge.upcoming { background: var(--mahogany-lt); }
.tourn-badge.special { background: linear-gradient(135deg, var(--gold-dk), var(--gold)); color: var(--black); }
.tourn-card h3 { color: var(--cream); }
.tourn-prize { font-family: var(--font-serif); font-size: 1.4rem; color: var(--gold-lt); font-weight: 700; }
.tourn-card p { color: var(--text-muted); font-size: 0.88rem; flex: 1; }
.tourn-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.tourn-meta span { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.tourn-meta i { color: var(--gold); }

/* ===== MOBILE FEATURES ===== */
.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-list li { display: flex; align-items: flex-start; gap: 16px; }
.feature-list li i { font-size: 1.4rem; color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.feature-list li div strong { display: block; color: var(--cream); margin-bottom: 4px; }
.feature-list li div p { font-size: 0.87rem; color: var(--text-muted); }
.app-btns { display: flex; gap: 16px; margin-top: 1.5rem; flex-wrap: wrap; }
.app-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--trans);
}
.app-btn i { font-size: 1.2rem; color: var(--gold); }
.app-btn:hover { border-color: var(--gold); background: var(--mahogany); color: var(--cream); }

/* ===== LUCK METER ===== */
.luck-index-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.luck-features p { color: var(--text-main); margin-bottom: 1rem; }
.luck-features p em { color: var(--gold); font-style: italic; }
.luck-meter-wrap { display: flex; flex-direction: column; gap: 24px; align-items: center; }
.luck-meter { text-align: center; }
.meter-circle {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
}
.meter-circle svg { transform: rotate(-90deg); }
.meter-bg {
  fill: none;
  stroke: rgba(58,35,24,0.5);
  stroke-width: 10;
}
.meter-fill {
  fill: none;
  stroke: url(#goldGrad);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 339.3;
  stroke-dashoffset: 339.3;
  transition: stroke-dashoffset 2s ease;
}
.meter-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.meter-value span {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--gold-lt);
  font-weight: 700;
  line-height: 1;
}
.meter-value small {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.meter-labels {
  display: flex;
  justify-content: space-between;
  width: 180px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== CRYPTO ===== */
.crypto-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 1.5rem;
}
.crypto-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.crypto-card:hover { border-color: var(--gold-dk); transform: translateY(-4px); }
.crypto-icon { font-size: 2.4rem; width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.crypto-btc { background: rgba(247,147,26,0.15); color: #F7931A; }
.crypto-eth { background: rgba(98,126,234,0.15); color: #627EEA; }
.crypto-usdt { background: rgba(38,161,123,0.15); color: #26A17B; }
.crypto-ltc { background: rgba(190,190,190,0.15); color: #BEBEBE; }
.crypto-card h3 { color: var(--cream); font-size: 1.1rem; }
.crypto-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== STRATEGY TOOL ===== */
.strategy-tool {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.strat-params h3, .strat-result h3 { color: var(--gold); margin-bottom: 1.2rem; }
.strat-inputs { display: flex; flex-direction: column; gap: 18px; }
.strat-row { display: flex; flex-direction: column; gap: 8px; }
.strat-row label { font-size: 0.88rem; color: var(--cream-dim); font-weight: 500; }
.strat-row input[type="range"] {
  -webkit-appearance: none;
  height: 5px;
  background: linear-gradient(to right, var(--gold) 0%, var(--mahogany-lt) 100%);
  border-radius: 5px;
  outline: none;
}
.strat-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 2px solid var(--black);
}
.strat-row select {
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  outline: none;
  cursor: pointer;
}
.strat-row select:focus { border-color: var(--gold); }
.range-val {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}
.strat-output {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  min-height: 80px;
  margin-bottom: 16px;
}
.strat-output p { color: var(--text-muted); font-size: 0.88rem; }
.strat-output .result-line { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
.strat-output .result-line i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.strat-output .result-line span { font-size: 0.9rem; color: var(--cream); }

/* ===== AWARDS ===== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.award-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.award-card:hover { border-color: var(--gold-dk); transform: translateY(-4px); }
.award-year {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--mahogany);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}
.award-icon { font-size: 2.5rem; }
.award-icon.gold { color: var(--gold-lt); }
.award-icon.silver { color: #C0C0C0; }
.award-icon.bronze { color: #CD7F32; }
.award-card h3 { color: var(--cream); font-size: 1.05rem; }
.award-card p { color: var(--text-muted); font-size: 0.83rem; }

/* ===== RESPONSIBLE GAMING ===== */
.rg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rg-card {
  background: rgba(13,26,21,0.7);
  border: 1px solid rgba(31,122,83,0.3);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: all var(--trans);
}
.rg-card:hover { border-color: var(--emerald-lt); transform: translateY(-4px); }
.rg-card i { font-size: 1.8rem; color: var(--emerald-lt); display: block; margin-bottom: 12px; }
.rg-card h3 { color: var(--cream); margin-bottom: 10px; }
.rg-card p { color: var(--text-muted); font-size: 0.87rem; }

/* ===== REGISTRATION STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 2.5rem;
}
.step-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  transition: all var(--trans);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.step-card:hover { border-color: var(--gold-dk); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(209,169,74,0.15);
  font-weight: 900;
  position: absolute;
  top: 8px;
  left: 14px;
  line-height: 1;
}
.step-card i { font-size: 2rem; color: var(--gold); }
.step-card h3 { color: var(--cream); }
.step-card p { color: var(--text-muted); font-size: 0.88rem; }
.reg-cta { text-align: center; padding: 2rem 0; }
.cta-note { color: var(--text-muted); font-size: 0.82rem; margin-top: 10px; }

/* ===== SUPPORT GRID ===== */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.support-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: all var(--trans);
}
.support-card:hover { border-color: var(--gold-dk); transform: translateY(-4px); }
.support-card i { font-size: 2rem; color: var(--gold); }
.support-card h3 { color: var(--cream); }
.support-card p { color: var(--text-muted); font-size: 0.87rem; flex: 1; }

/* ===== FAQ ===== */
.faq-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.faq-col { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--dark-card);
  color: var(--cream);
  font-size: 0.93rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background var(--trans), color var(--trans);
}
.faq-q:hover { background: var(--mahogany); color: var(--gold); }
.faq-q[aria-expanded="true"] { background: var(--mahogany); color: var(--gold-lt); }
.faq-q i { flex-shrink: 0; color: var(--gold); transition: transform var(--trans); }
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 16px 20px;
  background: rgba(26,21,16,0.6);
  border-top: 1px solid var(--border);
}
.faq-a p { color: var(--text-muted); font-size: 0.9rem; }
.faq-a.open { display: block; }

/* ===================================================
   FOOTER — PREMIUM REDESIGN
   =================================================== */

/* Gold divider with diamond */
.footer-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  margin: 0;
  background: var(--dark);
}
.footer-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dk), transparent);
}
.footer-divider-diamond {
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0.7;
  animation: pulse-diamond 3s ease-in-out infinite;
}
@keyframes pulse-diamond {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.2); }
}

/* Footer CTA banner */
.footer-cta-banner {
  background: linear-gradient(135deg, var(--mahogany) 0%, #2A1A0E 50%, var(--dark) 100%);
  border-bottom: 1px solid rgba(209,169,74,0.15);
  padding: 32px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-cta-text h3 {
  font-size: 1.4rem;
  color: var(--gold-lt);
  margin-bottom: 6px;
}
.footer-cta-text p { color: var(--cream-dim); font-size: 0.93rem; }
.footer-cta-text strong { color: var(--gold-lt); }
.footer-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
  box-shadow: 0 0 30px rgba(209,169,74,0.3);
}

/* Main footer body */
.footer-body {
  background: linear-gradient(180deg, #0F0B07 0%, var(--black) 100%);
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(209,169,74,0.1);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

/* Brand column */
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-wrap { display: inline-flex; }
.footer-logo {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  mix-blend-mode: screen;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.7;
  max-width: 280px;
}

/* Trust badges */
.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ftrust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,20,10,0.7);
  border: 1px solid rgba(209,169,74,0.2);
  border-radius: 8px;
  padding: 8px 12px;
  transition: border-color var(--trans);
}
.ftrust-badge:hover { border-color: var(--gold-dk); }
.ftrust-badge > i {
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}
.ftrust-badge > span {
  font-size: 0.72rem;
  color: var(--cream-dim);
  line-height: 1.3;
  font-weight: 500;
}
.ftrust-18 .badge-18 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gold-dk);
  background: rgba(58,35,24,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

/* Social links */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(209,169,74,0.25);
  background: rgba(30,20,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-btn:hover {
  border-color: var(--gold);
  background: rgba(209,169,74,0.12);
  color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(209,169,74,0.2);
}

/* Footer columns */
.footer-col-title {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col-title i { font-size: 0.85rem; opacity: 0.8; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.87rem;
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-links li a i { font-size: 0.6rem; color: var(--gold-dk); transition: color 0.2s ease; }
.footer-links li a:hover { color: var(--gold-lt); padding-left: 4px; }
.footer-links li a:hover i { color: var(--gold-lt); }

/* Payments strip */
.footer-payments-strip {
  background: rgba(6,5,3,0.9);
  padding: 22px 0;
  border-bottom: 1px solid rgba(209,169,74,0.08);
}
.fp-title {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.fp-title i { color: var(--gold-dk); }
.pay-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pay-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(26,21,16,0.9);
  border: 1px solid rgba(209,169,74,0.14);
  color: var(--cream-dim);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.pay-chip i { color: var(--gold); font-size: 0.85rem; }
.pay-chip:hover { border-color: var(--gold-dk); background: rgba(58,35,24,0.4); }

/* Footer bottom legal bar */
.footer-bottom-bar {
  background: var(--black);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal { flex: 1; min-width: 260px; }
.footer-legal p {
  font-size: 0.77rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 4px;
}
.footer-legal a { color: var(--gold-dk); font-size: 0.77rem; }
.footer-legal a:hover { color: var(--gold); }
.footer-copy { text-align: right; flex-shrink: 0; }
.footer-copy p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }
.footer-copy strong { color: var(--cream-dim); }
.footer-license { font-size: 0.72rem !important; color: rgba(154,139,120,0.6) !important; }

/* ===== FLOATING CTA ===== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.floating-cta .btn {
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 40px rgba(209,169,74,0.3);
}

/* ===== DECORATIVE DIVIDERS ===== */
.section-standard::after,
.section-dark::after {
  content: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--mahogany-lt); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dk); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .live-grid { grid-template-columns: repeat(2, 1fr); }
  .jackpot-ticker { grid-template-columns: repeat(2, 1fr); }
  .vip-levels { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .info-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .burger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .mobile-grid { grid-template-columns: 1fr; }
  .luck-index-wrap { grid-template-columns: 1fr; }
  .strategy-tool { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .rg-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .tournament-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: repeat(3, 1fr); }
  .crypto-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
  /* Footer responsive */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .logo-badge { display: none; }
}

@media (max-width: 640px) {
  .section-standard, .section-dark { padding: 56px 0; }
  .hero-content { padding-top: 40px; padding-bottom: 60px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .bonus-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: 1fr; }
  .jackpot-ticker { grid-template-columns: 1fr; }
  .vip-levels { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .rg-grid { grid-template-columns: 1fr; }
  .security-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .crypto-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-badges-row { gap: 8px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .floating-cta { bottom: 12px; right: 12px; left: 12px; }
  .floating-cta .btn { width: 100%; justify-content: center; }
  /* Footer small */
  .footer-bottom-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-copy { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-trust { justify-content: center; }
  .footer-cta-inner { text-align: center; align-items: center; }
  .footer-cta-btn { width: 100%; justify-content: center; }
  .footer-divider { padding: 0 20px; }
}

/* ===== ANIMATIONS ===== */
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(209,169,74,0.2); }
  50% { box-shadow: 0 0 40px rgba(209,169,74,0.4); }
}
.btn-gold { animation: goldPulse 3s ease-in-out infinite; }
.btn-gold:hover { animation: none; }

@keyframes tickerCount {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.ticker-val { animation: tickerCount 0.3s ease; }

/* ===== SECTION BANNERS ===== */

/* Полноширинный баннер-фон — идёт ДО .container внутри секции */
.section-banner {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  display: block;
  line-height: 0;
}
.section-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.section-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.10) 0%,
    rgba(10,10,10,0.50) 55%,
    rgba(26,21,16,1.00) 100%
  );
  pointer-events: none;
}

/* Инлайн-баннер внутри .container */
.inline-banner {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: block;
  line-height: 0;
}
.inline-banner-wide {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.inline-banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  max-height: 260px;
  object-fit: cover;
}
.inline-banner:hover .inline-banner-img {
  transform: scale(1.02);
}

/* Мобильный баннер */
.mobile-banner-wrap {
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: block;
  line-height: 0;
  max-height: 420px;
}
.mobile-banner-img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 900px) {
  .section-banner { height: 220px; }
}
@media (max-width: 640px) {
  .section-banner { height: 150px; }
  .inline-banner-img { max-height: 180px; }
  .mobile-banner-wrap,
  .mobile-banner-img { max-height: 280px; }
}

/* Секции с баннером сверху — убираем верхний паддинг */
.section-dark:has(.section-banner),
.section-standard:has(.section-banner) {
  padding-top: 0;
}
/* Фоллбэк для браузеров без :has() */
.section-has-banner {
  padding-top: 0 !important;
}
.rtp-lab-intro { margin-bottom: 2.5rem; }
.rtp-bars-wrap { margin-top: 2rem; }
.rtp-bars-title {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.4rem;
  font-family: var(--font-serif);
}
.rtp-bars { display: flex; flex-direction: column; gap: 14px; }
.rtp-bar-row {
  display: grid;
  grid-template-columns: 200px 1fr 64px;
  align-items: center;
  gap: 16px;
}
.rtp-label { font-size: 0.87rem; color: var(--cream-dim); font-weight: 500; }
.rtp-track {
  height: 12px;
  background: rgba(58,35,24,0.5);
  border-radius: 6px;
  overflow: hidden;
}
.rtp-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  transition: width 1.4s cubic-bezier(0.4,0,0.2,1);
}
.rtp-fill-low {
  background: linear-gradient(90deg, #7a3a18, #c06030);
}
.rtp-pct {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-lt);
  text-align: right;
}
@media (max-width: 640px) {
  .rtp-bar-row { grid-template-columns: 1fr 80px; }
  .rtp-label { grid-column: 1 / -1; margin-bottom: -6px; }
}

/* ===== HEATMAP ===== */
.heatmap-wrap { margin-top: 1rem; }
.heatmap-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 1.4rem;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.legend-dot {
  width: 14px; height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}
.legend-dot.cold  { background: #1a2a3a; border: 1px solid #2a4a6a; }
.legend-dot.warm  { background: #2a3a1a; border: 1px solid #4a6a2a; }
.legend-dot.hot   { background: #6a3a00; border: 1px solid #c07020; }
.legend-dot.fire  { background: #8a2000; border: 1px solid #e04010; }
.heatmap-grid-wrap { overflow-x: auto; }
.heatmap-table {
  display: grid;
  gap: 3px;
  min-width: 620px;
  width: 100%;
}
.heatmap-header-row,
.heatmap-data-row {
  display: grid;
  gap: 3px;
}
.heatmap-header-row { grid-template-columns: 140px repeat(12, 1fr); margin-bottom: 4px; }
.heatmap-data-row   { grid-template-columns: 140px repeat(12, 1fr); }
.hm-hour-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-align: center;
  padding: 4px 2px;
}
.hm-cat-label {
  font-size: 0.75rem;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  padding-right: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hm-cell {
  height: 32px;
  border-radius: 4px;
  cursor: default;
  transition: transform 0.15s, filter 0.15s;
  position: relative;
}
.hm-cell:hover { transform: scale(1.15); filter: brightness(1.3); z-index: 2; }
.hm-cell.cold  { background: #1a2a3a; }
.hm-cell.warm  { background: #2d4a1a; }
.hm-cell.hot   { background: #7a4200; }
.hm-cell.fire  { background: linear-gradient(135deg, #a03010, #e06020); box-shadow: 0 0 8px rgba(220,80,20,0.4); }
.heatmap-note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.heatmap-note i { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
