/* =============================================
   BETMGM SPORTSBOOK – MAIN STYLESHEET
   ============================================= */

:root {
  --gold: #C8A84B;
  --gold-light: #E8C87A;
  --gold-dark: #9A7A2A;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --dark4: #2A2A2A;
  --gray: #888888;
  --gray-light: #BBBBBB;
  --white: #FFFFFF;
  --green: #00C853;
  --red: #FF3D3D;
  --blue: #1565C0;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 24px rgba(200,168,75,0.25);
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }

.gold { color: var(--gold); }

/* =============================================
   AGE VERIFICATION MODAL
   ============================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.97);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay[style*="display: none"],
.modal-overlay[style*="display:none"] {
  pointer-events: none;
}

.modal-box {
  background: var(--dark2);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 520px; width: 100%;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.modal-box .modal-logo {
  font-size: 2rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.modal-box h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.modal-box p {
  color: var(--gray-light);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.modal-buttons {
  display: flex; gap: 16px; flex-direction: column; margin-bottom: 24px;
}

.btn-yes {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none; border-radius: 8px;
  padding: 16px 32px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-yes:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-no {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--dark4);
  border-radius: 8px;
  padding: 14px 32px;
  font-size: 0.9rem;
  cursor: pointer; transition: var(--transition);
}
.btn-no:hover { border-color: var(--gray); color: var(--white); }

.modal-disclaimer {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 0 !important;
}

/* =============================================
   STATE BAR
   ============================================= */
.state-bar {
  background: var(--dark2);
  border-bottom: 1px solid #2a2a2a;
  padding: 0 16px;
  display: flex; align-items: center; gap: 10px;
  position: sticky; top: 0; z-index: 900;
  height: 40px;
  overflow: hidden;
}

.state-bar-label {
  font-size: 0.68rem;
  color: var(--gray);
  white-space: nowrap;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.state-pills {
  display: flex; gap: 5px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
  padding: 6px 0;
}
.state-pills::-webkit-scrollbar { display: none; }

.state-pill {
  background: var(--dark3);
  border: 1px solid var(--dark4);
  color: var(--gray-light);
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 0.72rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  white-space: nowrap; flex-shrink: 0;
}
.state-pill:hover, .state-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.state-bar-info {
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .state-bar-label { display: none; }
  .state-bar-info  { display: none; }
  .state-pills { flex: 1; justify-content: flex-start; }
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--dark);
  border-bottom: 2px solid var(--gold);
  position: sticky; top: 40px; z-index: 800;
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 16px;
  display: flex; align-items: center; gap: 16px;
  height: 56px;
}

.header-logo a {
  display: flex; flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.logo-bet {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.5px;
  display: inline;
}

.logo-mgm {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem; font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: 0.5px;
  display: inline;
}

.logo-tagline {
  font-size: 0.55rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

@media (max-width: 600px) {
  .logo-tagline { display: none; }
  .logo-bet, .logo-mgm { font-size: 1.1rem; }
}

.main-nav {
  display: flex; gap: 4px; margin-left: 32px;
}

.main-nav a {
  color: var(--gray-light);
  font-size: 0.85rem; font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover {
  color: var(--gold);
  background: rgba(200,168,75,0.1);
}

.header-cta {
  margin-left: auto;
  display: flex; gap: 10px;
}

.btn-login {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.btn-login:hover { background: rgba(200,168,75,0.1); }

.btn-register {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: var(--black);
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.85rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}
.btn-register:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.hamburger {
  display: none;
  background: none; border: 1px solid var(--dark4);
  color: var(--white); font-size: 1.1rem;
  cursor: pointer; margin-left: auto;
  width: 36px; height: 36px;
  border-radius: 6px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  border-top: 1px solid var(--dark4);
  padding: 12px 16px 16px;
}
.mobile-nav a {
  color: var(--gray-light);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  font-weight: 500;
}
.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav-auth {
  display: flex; gap: 8px; padding-top: 12px;
}
.btn-login-mobile {
  flex: 1;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px;
  border-radius: 7px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}
.btn-register-mobile {
  flex: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  padding: 10px !important;
  border-radius: 7px;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  display: block;
}

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }
  .header-inner { height: 52px; padding: 0 14px; gap: 10px; }
  .btn-login, .btn-register { padding: 7px 14px; font-size: 0.78rem; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 600px;
  display: flex; flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 80px 24px 120px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,168,75,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200,168,75,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0A0A0A 0%, #1A1010 50%, #0A0A1A 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(200,168,75,0.03) 60px, rgba(200,168,75,0.03) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(200,168,75,0.03) 60px, rgba(200,168,75,0.03) 61px);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,168,75,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1rem; font-weight: 800;
  cursor: pointer; transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(200,168,75,0.4); }

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.btn-hero-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.hero-legal {
  font-size: 0.72rem;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

.hero-odds-ticker {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(200,168,75,0.1);
  border-top: 1px solid rgba(200,168,75,0.3);
  display: flex; align-items: center;
  overflow: hidden;
  height: 44px;
}

.ticker-label {
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem; font-weight: 800;
  padding: 0 16px;
  height: 100%;
  display: flex; align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.ticker-track {
  display: flex; gap: 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  padding: 0 32px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--gray-light);
  border-right: 1px solid rgba(200,168,75,0.2);
  display: flex; align-items: center; height: 44px;
}

.ticker-item span { color: var(--gold); margin-left: 8px; }
.ticker-item.positive span { color: var(--green); }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar {
  background: var(--dark2);
  border-bottom: 1px solid var(--dark4);
  padding: 16px 24px;
  overflow-x: auto;
}

.trust-grid {
  max-width: 1400px; margin: 0 auto;
  display: flex; gap: 0;
  min-width: max-content;
}

.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 20px;
  border-right: 1px solid var(--dark4);
  flex-shrink: 0;
}
.trust-item:last-child { border-right: none; }

.trust-icon { font-size: 1.3rem; flex-shrink: 0; }

.trust-text {
  font-size: 0.75rem;
  line-height: 1.3;
  color: var(--gray-light);
  white-space: nowrap;
}
.trust-text strong { color: var(--white); display: block; font-size: 0.78rem; }

/* Hide scrollbar on trust bar */
.trust-bar::-webkit-scrollbar { display: none; }
.trust-bar { -ms-overflow-style: none; scrollbar-width: none; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  padding: 64px 24px 40px;
  max-width: 700px; margin: 0 auto;
}

.section-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--gray-light);
  font-size: 1rem;
}

.section-header.light h2 { color: var(--gold); }

/* =============================================
   SPORTS SECTION
   ============================================= */
.sports-section {
  background: var(--black);
  padding-bottom: 64px;
}

.sports-grid {
  max-width: 1400px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.sport-card {
  background: var(--dark2);
  border: 1px solid var(--dark4);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.sport-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
}

.sport-nfl::before { background: linear-gradient(90deg, #013369, #D50A0A); }
.sport-nba::before { background: linear-gradient(90deg, #17408B, #C9082A); }
.sport-mlb::before { background: linear-gradient(90deg, #002D72, #D50A0A); }
.sport-nhl::before { background: linear-gradient(90deg, #000000, #A2AAAD); }
.sport-soccer::before { background: linear-gradient(90deg, #006400, #00A36C); }
.sport-college::before { background: linear-gradient(90deg, #8B0000, #FFD700); }
.sport-mma::before { background: linear-gradient(90deg, #1a1a1a, #D50A0A); }
.sport-golf::before { background: linear-gradient(90deg, #2d5a27, #8BC34A); }
.sport-tennis::before { background: linear-gradient(90deg, #FFC107, #E65100); }

.sport-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.sport-icon { font-size: 2.2rem; margin-bottom: 12px; }
.sport-card h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
}
.sport-card p {
  font-size: 0.84rem;
  color: var(--gray-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.sport-markets {
  display: inline-block;
  background: rgba(200,168,75,0.12);
  border: 1px solid rgba(200,168,75,0.3);
  color: var(--gold);
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-sport {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.85rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-sport:hover { opacity: 0.85; }

/* =============================================
   LIVE BETTING SECTION
   ============================================= */
.live-section {
  background: var(--dark2);
  padding: 64px 24px;
  border-top: 1px solid var(--dark4);
  border-bottom: 1px solid var(--dark4);
}

.live-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
}

.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,61,61,0.15);
  border: 1px solid var(--red);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.live-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.live-content h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem; font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.live-content p {
  color: var(--gray-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.live-features { list-style: none; margin-bottom: 32px; }
.live-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-light);
  border-bottom: 1px solid var(--dark4);
  display: flex; gap: 10px;
}

.btn-live {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-live:hover { background: #cc3030; transform: translateY(-2px); }

.live-board {
  background: var(--dark3);
  border: 1px solid var(--dark4);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.live-board-title {
  background: var(--red);
  color: var(--white);
  padding: 12px 20px;
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.live-game {
  padding: 16px 20px;
  border-bottom: 1px solid var(--dark4);
}

.live-game-sport {
  font-size: 0.72rem;
  color: var(--gray);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
}

.live-game-teams {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}

.lg-team {
  flex: 1;
  font-size: 0.88rem; font-weight: 700;
  display: flex; justify-content: space-between;
}

.lg-score {
  color: var(--gold);
  font-size: 1rem; font-weight: 800;
}

.lg-vs {
  font-size: 0.72rem;
  color: var(--red);
  font-weight: 700;
  white-space: nowrap;
  padding: 0 8px;
}

.live-game-odds {
  display: flex; gap: 8px; flex-wrap: wrap;
}

.odds-btn {
  flex: 1;
  background: var(--dark4);
  border: 1px solid #333;
  color: var(--white);
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  text-align: center;
  min-width: 80px;
}
.odds-btn span { color: var(--gold); display: block; font-size: 0.9rem; font-weight: 700; }
.odds-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.odds-btn:hover span { color: var(--black); }

.live-more {
  padding: 14px 20px;
  text-align: center;
  color: var(--gold);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
}

@media (max-width: 900px) {
  .live-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================
   PROMOTIONS SECTION
   ============================================= */
.promos-section {
  background: var(--black);
  padding-bottom: 64px;
}

.promos-grid {
  max-width: 1400px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.promo-card {
  background: var(--dark2);
  border: 1px solid var(--dark4);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}

.promo-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.promo-featured {
  border-color: var(--gold) !important;
  background: linear-gradient(135deg, var(--dark2) 0%, rgba(200,168,75,0.06) 100%);
}

.promo-ribbon {
  position: absolute; top: -1px; right: 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.68rem; font-weight: 800;
  padding: 4px 12px;
  border-radius: 0 0 6px 6px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.promo-icon { font-size: 2rem; margin-bottom: 12px; }

.promo-card h3 {
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 12px;
  color: var(--white);
}

.promo-card > p {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.promo-terms-list {
  list-style: none;
  margin-bottom: 20px;
}
.promo-terms-list li {
  font-size: 0.8rem;
  color: var(--gray-light);
  padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 16px;
  position: relative;
}
.promo-terms-list li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--gold);
}

.btn-promo {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 12px;
  border-radius: 7px;
  font-size: 0.88rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn-promo:hover { opacity: 0.88; }

.promo-fine {
  font-size: 0.68rem;
  color: var(--gray);
  line-height: 1.5;
}

/* =============================================
   HOW TO BET SECTION
   ============================================= */
.how-section {
  background: var(--dark2);
  padding-bottom: 64px;
  border-top: 1px solid var(--dark4);
  border-bottom: 1px solid var(--dark4);
}

.steps-grid {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: flex-start; gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  background: var(--dark3);
  border: 1px solid var(--dark4);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  flex: 1; min-width: 220px; max-width: 280px;
  text-align: center;
  position: relative;
}

.step-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 0.8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

.step-icon { font-size: 2rem; margin: 8px 0 12px; }

.step-card h3 {
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.8rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  align-self: center;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .step-arrow { display: none; }
}

.bet-types-section {
  max-width: 1200px; margin: 48px auto 0;
  padding: 0 24px;
}

.bet-types-section h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 32px;
  color: var(--gold);
  text-transform: uppercase;
}

.bet-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.bet-type {
  background: var(--dark3);
  border: 1px solid var(--dark4);
  border-radius: var(--radius);
  padding: 20px;
}

.bet-type h4 {
  color: var(--gold);
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 8px;
}

.bet-type p {
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-bottom: 12px;
  line-height: 1.6;
}

.bet-example {
  background: rgba(200,168,75,0.08);
  border-left: 3px solid var(--gold);
  padding: 10px 14px;
  font-size: 0.75rem;
  color: var(--gray-light);
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
}

/* =============================================
   PAYMENTS SECTION
   ============================================= */
.payments-section {
  background: var(--black);
  padding-bottom: 64px;
}

.payments-grid {
  max-width: 1000px; margin: 0 auto 24px;
  padding: 0 24px;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center;
}

.payment-item {
  background: var(--dark2);
  border: 1px solid var(--dark4);
  border-radius: 8px;
  padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
  min-width: 130px;
}
.payment-item:hover { border-color: var(--gold); }

.pay-icon { font-size: 1.2rem; }

.payments-note {
  max-width: 800px; margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.6;
}

/* =============================================
   RESPONSIBLE GAMING SECTION
   ============================================= */
.responsible-section {
  background: var(--dark2);
  padding: 0 24px 64px;
  border-top: 1px solid var(--dark4);
}

.responsible-inner {
  max-width: 1200px; margin: 0 auto;
}

.responsible-header {
  text-align: center;
  padding: 64px 0 40px;
}

.resp-icon { font-size: 3rem; margin-bottom: 16px; }

.responsible-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem; font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.responsible-header p {
  color: var(--gray-light);
  max-width: 600px; margin: 0 auto;
}

.resp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.resp-card {
  background: var(--dark3);
  border: 1px solid var(--dark4);
  border-radius: var(--radius);
  padding: 20px;
}

.resp-card h3 {
  color: var(--gold);
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 8px;
}

.resp-card p {
  font-size: 0.82rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.resp-hotlines {
  background: var(--dark3);
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 40px;
}

.resp-hotlines h3 {
  color: var(--red);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.hotlines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.hotline {
  background: var(--dark4);
  border-radius: 8px;
  padding: 16px;
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--gray-light);
}
.hotline strong { color: var(--white); display: block; margin-bottom: 4px; }

.resp-signs {
  background: rgba(255,61,61,0.07);
  border: 1px solid rgba(255,61,61,0.3);
  border-radius: var(--radius);
  padding: 28px;
}

.resp-signs h3 {
  color: var(--red);
  margin-bottom: 12px;
  font-size: 1rem;
}

.resp-signs p {
  color: var(--gray-light);
  font-size: 0.84rem;
  margin-bottom: 16px;
}

.resp-signs ul {
  list-style: none;
}

.resp-signs li {
  font-size: 0.84rem;
  color: var(--gray-light);
  padding: 6px 0 6px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.resp-signs li::before {
  content: '⚠';
  position: absolute; left: 0;
  font-size: 0.75rem;
  color: var(--red);
}

/* =============================================
   LICENSES SECTION
   ============================================= */
.licenses-section {
  background: var(--black);
  padding-bottom: 64px;
}

.licenses-grid {
  max-width: 1400px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.license-card {
  background: var(--dark2);
  border: 1px solid var(--dark4);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
}

.license-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.lic-state-flag {
  font-size: 2rem;
  margin-bottom: 8px;
}

.lic-state-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.lic-number {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  font-family: monospace;
  background: rgba(200,168,75,0.1);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 16px;
}

.lic-details { display: flex; flex-direction: column; gap: 6px; }

.lic-row {
  display: flex; justify-content: space-between; gap: 12px;
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding-bottom: 6px;
}

.lic-row span { color: var(--gray); flex-shrink: 0; }
.lic-row strong { color: var(--gray-light); text-align: right; }
.status-active { color: var(--green) !important; }

.license-address {
  max-width: 1400px; margin: 32px auto 0;
  padding: 16px 24px;
  background: var(--dark2);
  border: 1px solid var(--dark4);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--gray-light);
  text-align: center;
  margin-left: 24px; margin-right: 24px;
}

/* =============================================
   TERMS SECTION
   ============================================= */
.terms-section {
  background: var(--dark2);
  border-top: 1px solid var(--dark4);
  padding: 64px 24px;
}

.terms-inner {
  max-width: 1200px; margin: 0 auto;
}

.terms-inner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.terms-effective {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 40px;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.terms-block {
  background: var(--dark3);
  border: 1px solid var(--dark4);
  border-radius: var(--radius);
  padding: 20px;
}

.terms-block h3 {
  color: var(--gold);
  font-size: 0.88rem; font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.terms-block p {
  font-size: 0.8rem;
  color: var(--gray-light);
  line-height: 1.7;
}

.terms-full-link {
  font-size: 0.82rem;
  color: var(--gray);
}
.terms-full-link a {
  color: var(--gold);
  text-decoration: underline;
}

/* =============================================
   PRIVACY SECTION
   ============================================= */
.privacy-section {
  background: var(--black);
  padding: 64px 24px;
  border-top: 1px solid var(--dark4);
}

.privacy-inner {
  max-width: 960px; margin: 0 auto;
}

.privacy-inner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.privacy-content h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin: 28px 0 10px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.privacy-content p {
  font-size: 0.83rem;
  color: var(--gray-light);
  line-height: 1.8;
}

/* =============================================
   GLOBAL DISCLAIMER
   ============================================= */
.global-disclaimer {
  background: #0d0d0d;
  border-top: 2px solid #333;
  padding: 32px 24px;
}

.disclaimer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}

.disclaimer-inner p {
  font-size: 0.73rem;
  color: #666;
  line-height: 1.7;
}

.disclaimer-inner p strong { color: #999; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  border-top: 2px solid var(--gold);
}

.footer-main {
  max-width: 860px; margin: 0 auto;
  padding: 56px 24px 40px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 0;
}

/* Brand */
.footer-brand { margin-bottom: 20px; }

.footer-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem; font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.65rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}

/* Divider */
.footer-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}

/* Nav links */
.footer-nav {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 6px 4px;
  margin-bottom: 28px;
}
.footer-nav a {
  color: var(--gray-light);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 2px 4px;
}
.footer-nav a:hover { color: var(--gold); }
.footer-dot {
  color: var(--dark4);
  font-size: 1rem;
  line-height: 1;
  user-select: none;
}

/* Badges */
.footer-badges {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 8px;
  margin-bottom: 24px;
}
.footer-badge {
  background: var(--dark3);
  border: 1px solid var(--dark4);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.68rem; font-weight: 600;
  color: var(--gray-light);
}

/* Problem gambling */
.footer-problem {
  font-size: 0.78rem;
  color: var(--gray-light);
  margin-bottom: 20px;
  background: rgba(255,61,61,0.07);
  border: 1px solid rgba(255,61,61,0.2);
  border-radius: 8px;
  padding: 10px 20px;
  line-height: 1.6;
}
.footer-problem strong { color: var(--red); }

/* Meta */
.footer-meta {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 4px 20px;
  margin-bottom: 16px;
}
.footer-meta span {
  font-size: 0.7rem; color: var(--gray);
}

/* Copy */
.footer-copy {
  font-size: 0.65rem;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid var(--dark4);
  padding-top: 16px;
  margin-top: 4px;
  width: 100%;
}

/* =============================================
   RESPONSIVE UTILITIES
   ============================================= */
@media (max-width: 640px) {
  .hero { padding: 48px 16px 100px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .section-header { padding: 40px 16px 24px; }
  .sports-grid, .promos-grid, .bet-types-grid, .resp-grid,
  .licenses-grid, .terms-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
}

/* =============================================
   AUTH MODAL
   ============================================= */
.auth-modal-overlay {
  position: fixed; inset: 0; z-index: 9800;
  background: rgba(0,0,0,0.88);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.auth-modal-box {
  background: var(--dark2);
  border: 1px solid var(--dark4);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 460px;
  position: relative;
  max-height: 95vh;
  overflow-y: auto;
  animation: authFadeIn 0.3s ease;
}

@keyframes authFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(-16px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.auth-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: var(--dark4); border: none;
  color: var(--gray-light); font-size: 1rem;
  width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer; z-index: 2; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.auth-modal-close:hover { background: var(--dark3); color: var(--white); }

/* Tabs */
.auth-tabs {
  display: flex; border-bottom: 1px solid var(--dark4);
}

.auth-tab {
  flex: 1; padding: 16px;
  background: none; border: none;
  color: var(--gray); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.auth-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.auth-tab:hover:not(.active) { color: var(--gray-light); }

/* Form */
.auth-form {
  padding: 24px;
}

.auth-form-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem; font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.auth-form-sub {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-light);
  margin-bottom: 20px;
  line-height: 1.5;
}
.auth-form-sub strong { color: var(--gold); }

.auth-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}

.auth-field {
  margin-bottom: 14px;
}

.auth-field label {
  display: block;
  font-size: 0.75rem; font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-hint {
  color: var(--gray); font-weight: 400;
  text-transform: none; letter-spacing: 0;
}

.auth-field input,
.auth-field select {
  width: 100%;
  background: var(--dark3);
  border: 1px solid var(--dark4);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 7px;
  font-size: 0.88rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.auth-field input::placeholder { color: #555; }
.auth-field select option { background: var(--dark3); }
.auth-field input:focus,
.auth-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200,168,75,0.15);
}
.auth-field input.error { border-color: var(--red); }

.auth-pw-wrap { position: relative; }
.auth-pw-wrap input { padding-right: 42px; }
.auth-pw-toggle {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  font-size: 1rem; opacity: 0.5;
  transition: var(--transition);
}
.auth-pw-toggle:hover { opacity: 1; }

.auth-check {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 12px;
}
.auth-check input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0;
  margin-top: 2px; cursor: pointer;
  accent-color: var(--gold);
}
.auth-check label {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.5;
  cursor: pointer;
}
.auth-check a { color: var(--gold); text-decoration: underline; }

.auth-error {
  background: rgba(255,61,61,0.1);
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.8rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

.auth-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.95rem; font-weight: 800;
  cursor: pointer; transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.auth-submit-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.auth-submit-btn:active { transform: scale(0.98); }

.auth-switch-text {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 8px;
}
.auth-switch-text a { color: var(--gold); font-weight: 600; }

.auth-forgot {
  text-align: center;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.auth-legal {
  text-align: center;
  font-size: 0.68rem;
  color: var(--gray);
  line-height: 1.5;
}

/* Success screen */
.auth-success { text-align: center; }
.auth-success-icon { font-size: 3rem; margin-bottom: 16px; }
.auth-success h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem; color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.auth-success p {
  color: var(--gray-light);
  font-size: 0.88rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* =============================================
   HEADER USER BLOCK
   ============================================= */
.header-user {
  margin-left: auto;
  display: flex; align-items: center; gap: 12px;
}

.header-user-info {
  display: flex; align-items: center; gap: 10px;
}

.header-user-avatar {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: 50%;
  font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.header-user-details {
  display: flex; flex-direction: column;
  line-height: 1.2;
}

.header-user-name {
  font-size: 0.82rem; font-weight: 700;
  color: var(--white);
}

.header-user-email {
  font-size: 0.68rem;
  color: var(--gray);
  max-width: 140px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.btn-logout {
  background: transparent;
  border: 1px solid var(--dark4);
  color: var(--gray-light);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.78rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.btn-logout:hover { border-color: var(--red); color: var(--red); }

@media (max-width: 900px) {
  .header-user { display: none !important; }
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: #141414;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.7);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.cookie-banner-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 20px 24px;
  display: flex; align-items: center; gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner-title {
  font-size: 1rem; font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
}

.cookie-banner-text {
  flex: 1; min-width: 260px;
}

.cookie-banner-text p {
  font-size: 0.78rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.cookie-banner-actions {
  display: flex; gap: 10px; flex-wrap: wrap; flex-shrink: 0;
  align-items: center;
}

.cookie-btn-settings {
  background: transparent;
  border: 1px solid var(--gray);
  color: var(--gray-light);
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.cookie-btn-settings:hover { border-color: var(--gold); color: var(--gold); }

.cookie-btn-decline {
  background: transparent;
  border: 1px solid var(--dark4);
  color: var(--gray-light);
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 0.8rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.cookie-btn-decline:hover { border-color: var(--gray); }

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: var(--black);
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.82rem; font-weight: 800;
  cursor: pointer; transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cookie-btn-accept:hover { opacity: 0.88; }

/* =============================================
   COOKIE PREFERENCES MODAL
   ============================================= */
.cookie-modal-overlay {
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,0.85);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}

.cookie-modal-box {
  background: var(--dark2);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  max-width: 600px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 0;
}

.cookie-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--dark4);
  position: sticky; top: 0;
  background: var(--dark2);
  z-index: 1;
}

.cookie-modal-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  text-transform: uppercase;
}

.cookie-modal-close {
  background: none; border: none;
  color: var(--gray); font-size: 1.1rem;
  cursor: pointer; padding: 4px 8px;
  border-radius: 4px; transition: var(--transition);
}
.cookie-modal-close:hover { color: var(--white); background: var(--dark4); }

.cookie-modal-intro {
  font-size: 0.8rem;
  color: var(--gray-light);
  padding: 16px 24px;
  border-bottom: 1px solid var(--dark4);
  line-height: 1.6;
}

.cookie-category {
  padding: 16px 24px;
  border-bottom: 1px solid var(--dark4);
}

.cookie-cat-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; margin-bottom: 10px;
}

.cookie-cat-header strong {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 3px;
}

.cookie-cat-desc {
  font-size: 0.75rem;
  color: var(--gray);
}

.cookie-cat-detail {
  font-size: 0.76rem;
  color: var(--gray);
  line-height: 1.6;
}

.cookie-toggle.always-on {
  font-size: 0.68rem; font-weight: 700;
  color: var(--green);
  background: rgba(0,200,83,0.1);
  border: 1px solid rgba(0,200,83,0.3);
  padding: 4px 10px; border-radius: 12px;
  white-space: nowrap; flex-shrink: 0;
}

/* Toggle Switch */
.toggle-switch {
  position: relative; display: inline-block;
  width: 44px; height: 24px; flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: var(--dark4);
  border-radius: 24px;
  cursor: pointer; transition: 0.3s;
  border: 1px solid #444;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 2px; top: 2px;
  background: var(--gray);
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: rgba(200,168,75,0.2); border-color: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); background: var(--gold); }

.cookie-modal-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px;
  border-top: 1px solid var(--dark4);
  flex-wrap: wrap; gap: 12px;
  position: sticky; bottom: 0;
  background: var(--dark2);
}

.cookie-modal-footer a {
  font-size: 0.78rem;
  color: var(--gold);
  text-decoration: underline;
}

.cookie-modal-btns { display: flex; gap: 10px; }

/* =============================================
   COOKIE POLICY SECTION
   ============================================= */
.cookie-policy-section {
  background: var(--dark2);
  padding: 64px 24px;
  border-top: 1px solid var(--dark4);
}

.cookie-policy-inner {
  max-width: 960px; margin: 0 auto;
}

.cookie-policy-inner h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.cp-block {
  margin-bottom: 28px;
}

.cp-block h3 {
  color: var(--white);
  font-size: 1rem; font-weight: 700;
  margin: 0 0 10px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}

.cp-block h4 {
  color: var(--gold-light);
  font-size: 0.9rem; font-weight: 700;
  margin: 14px 0 6px;
}

.cp-block p {
  font-size: 0.83rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 8px;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
