/* ============================================================
   BEJOCASINO — PREMIUM DESIGN SYSTEM
   Modern Online Casino UI / 2024
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  /* Gold Palette */
  --gold-100: #fff8e1;
  --gold-200: #ffe082;
  --gold-300: #ffd54f;
  --gold-400: #ffca28;
  --gold-500: #e6b800;
  --gold-600: #c9a227;
  --gold-700: #a07d1c;
  --gold-800: #7a5c10;
  --gold-glow: rgba(201, 162, 39, 0.35);
  --gold-glow-sm: rgba(201, 162, 39, 0.15);

  /* Dark Palette */
  --bg-base: #050507;
  --bg-surface: #0c0c10;
  --bg-elevated: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c28;
  --bg-overlay: rgba(5, 5, 7, 0.85);

  /* Border */
  --border-subtle: rgba(255,255,255,0.05);
  --border-default: rgba(255,255,255,0.08);
  --border-gold: rgba(201,162,39,0.3);
  --border-gold-strong: rgba(201,162,39,0.6);

  /* Text */
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b8;
  --text-muted: #606078;
  --text-gold: #c9a227;
  --text-gold-light: #e6c84a;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #c9a227 0%, #e6c84a 50%, #c9a227 100%);
  --grad-gold-h: linear-gradient(90deg, #a07d1c 0%, #e6c84a 50%, #a07d1c 100%);
  --grad-dark: linear-gradient(135deg, #0c0c10 0%, #050507 100%);
  --grad-card: linear-gradient(145deg, #16161f 0%, #111118 100%);
  --grad-hero: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,162,39,0.12) 0%, transparent 70%);
  --grad-glow: radial-gradient(circle at center, rgba(201,162,39,0.2) 0%, transparent 60%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 30px rgba(201,162,39,0.2);
  --shadow-gold-sm: 0 0 15px rgba(201,162,39,0.15);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--duration-base) var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--border-gold); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-600); }

/* ---- Container ---- */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ---- Section Spacing ---- */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 110px 0; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display-1 { font-family: 'Playfair Display', serif; font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -1px; }
.display-2 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 4.5vw, 54px); font-weight: 800; line-height: 1.1; }
.heading-1 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; }
.heading-2 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 700; line-height: 1.2; }
.heading-3 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; line-height: 1.3; }
.text-gold { color: var(--text-gold); }
.text-muted { color: var(--text-secondary); }
.text-center { text-align: center; }

/* Gold text gradient */
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--duration-base) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease);
}
.btn:hover::before { opacity: 1; }

/* Primary Gold Button */
.btn-primary {
  background: var(--grad-gold);
  color: #0a0800;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary::before { background: linear-gradient(135deg, #e6c84a 0%, #c9a227 100%); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,162,39,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  color: #0a0800;
}
.btn-primary:active { transform: translateY(0); }

/* Secondary Outline Button */
.btn-secondary {
  background: transparent;
  color: var(--text-gold);
  border: 1.5px solid var(--border-gold-strong);
  backdrop-filter: blur(8px);
}
.btn-secondary::before { background: rgba(201,162,39,0.08); }
.btn-secondary:hover {
  border-color: var(--gold-600);
  color: var(--text-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-sm);
}

/* Ghost Button */
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--text-primary); border-color: var(--border-default); }

/* Size Variants */
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 16px; font-weight: 700; }
.btn-xl { padding: 20px 52px; font-size: 17px; font-weight: 800; letter-spacing: 0.5px; }
.btn-icon { padding: 10px; width: 40px; height: 40px; justify-content: center; border-radius: var(--radius-md); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--duration-slow) var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg), var(--shadow-gold-sm);
  transform: translateY(-4px);
}

/* Glass Card */
.card-glass {
  background: rgba(22, 22, 31, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   BADGES & TAGS
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-gold { background: var(--grad-gold); color: #0a0800; }
.badge-hot { background: linear-gradient(135deg, #ff4444, #ff6b6b); color: white; }
.badge-new { background: linear-gradient(135deg, #00c853, #69f0ae); color: #003300; }
.badge-popular { background: linear-gradient(135deg, #7c4dff, #b388ff); color: white; }
.badge-outline { background: transparent; border: 1px solid var(--border-gold); color: var(--text-gold); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: linear-gradient(90deg, #080808 0%, #0f0f0f 50%, #080808 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
}
.top-bar-item i { color: var(--gold-600); font-size: 11px; }
.top-bar-item a:hover { color: var(--text-gold); }
.top-bar-divider { width: 1px; height: 14px; background: var(--border-subtle); }
.top-bar-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease);
}
.top-bar-lang:hover { border-color: var(--border-gold); color: var(--text-gold); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 8, 10, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--duration-base) var(--ease);
}
.main-header.scrolled {
  background: rgba(5, 5, 7, 0.98);
  border-bottom-color: var(--border-gold);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 68px;
}
.header-logo {
  flex-shrink: 0;
  margin-right: 32px;
}
.header-logo img {
  height: 44px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.3));
  transition: filter var(--duration-base) var(--ease);
}
.header-logo:hover img { filter: drop-shadow(0 0 20px rgba(201,162,39,0.5)); }

/* Main Nav */
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--duration-base) var(--ease);
  white-space: nowrap;
}
.nav-link i { font-size: 11px; opacity: 0.7; }
.nav-link:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--text-gold); }
.nav-link.affiliate-link {
  color: var(--text-gold);
  background: rgba(201,162,39,0.08);
  border: 1px solid var(--border-gold);
}
.nav-link.affiliate-link:hover {
  background: rgba(201,162,39,0.15);
  box-shadow: var(--shadow-gold-sm);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--duration-base) var(--ease);
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease);
}
.dropdown-item i { width: 18px; text-align: center; color: var(--gold-600); font-size: 13px; }
.dropdown-item:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }
.dropdown-divider { height: 1px; background: var(--border-subtle); margin: 6px 0; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--bg-surface);
  height: clamp(200px, 35vw, 500px);
}
.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}
.slide:first-child {
  opacity: 1;
  z-index: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.slide-link { display: block; }

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--text-gold);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease);
  z-index: 10;
}
.slider-btn:hover {
  background: rgba(201,162,39,0.2);
  box-shadow: var(--shadow-gold);
  transform: translateY(-50%) scale(1.1);
}
.slider-btn-prev { left: 20px; }
.slider-btn-next { right: 20px; }

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease);
}
.slider-dot.active {
  width: 24px;
  background: var(--gold-600);
  box-shadow: 0 0 8px var(--gold-glow);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(90deg, var(--bg-surface) 0%, var(--bg-elevated) 50%, var(--bg-surface) 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0;
  overflow: hidden;
}
.stats-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-right: 1px solid var(--border-subtle);
  position: relative;
  transition: background var(--duration-base) var(--ease);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,162,39,0.04); }
.stat-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,162,39,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-600);
  flex-shrink: 0;
  border: 1px solid rgba(201,162,39,0.15);
}
.stat-content {}
.stat-number {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  display: block;
  letter-spacing: -0.5px;
}
.stat-number span { color: var(--text-gold); }
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 3px;
  display: block;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gold);
  margin-bottom: 14px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--grad-gold-h);
}
.section-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease);
  cursor: pointer;
}
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease);
}
.category-card::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  transition: all var(--duration-slow) var(--ease);
}
.category-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), var(--shadow-gold-sm);
}
.category-card:hover::before { transform: scaleX(1); }
.category-card:hover::after { opacity: 1.5; transform: scale(1.3); }
.cat-icon-wrap {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(201,162,39,0.12) 0%, rgba(201,162,39,0.04) 100%);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--gold-600);
  margin-bottom: 22px;
  transition: all var(--duration-base) var(--ease);
  position: relative;
  z-index: 1;
}
.category-card:hover .cat-icon-wrap {
  background: linear-gradient(135deg, rgba(201,162,39,0.25) 0%, rgba(201,162,39,0.1) 100%);
  border-color: rgba(201,162,39,0.5);
  box-shadow: 0 0 20px rgba(201,162,39,0.2);
}
.cat-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.cat-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.cat-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}
.cat-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.cat-feature i { color: var(--gold-600); font-size: 11px; width: 14px; }

/* ============================================================
   PROMOTIONS
   ============================================================ */
.promotions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.promo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease);
}
.promo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  transition: opacity var(--duration-base) var(--ease);
}
.promo-card:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.6), var(--shadow-gold-sm); }
.promo-card img { width: 100%; display: block; }
.promo-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}
.promo-card-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.promo-card-body p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 12px; }

/* ============================================================
   GAMES GRID
   ============================================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease);
  position: relative;
  cursor: pointer;
}
.game-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-gold-sm);
}
.game-thumb {
  position: relative;
  padding-top: 80%;
  background: var(--bg-elevated);
  overflow: hidden;
}
.game-thumb-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(145deg, #1a1a28, #0e0e18);
  transition: transform var(--duration-slow) var(--ease);
}
.game-card:hover .game-thumb-bg { transform: scale(1.05); }
.game-thumb-icon {
  font-size: 32px;
  color: var(--gold-600);
  filter: drop-shadow(0 0 8px rgba(201,162,39,0.3));
}
.game-thumb-name {
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
  padding: 0 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.game-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease);
  z-index: 3;
}
.game-card:hover .game-overlay { opacity: 1; }
.game-info {
  padding: 10px 12px;
  background: linear-gradient(to bottom, var(--bg-card), var(--bg-elevated));
}
.game-name {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}
.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.game-provider-tag { font-size: 10px; color: var(--text-muted); }
.game-rtp { font-size: 10px; color: var(--text-gold); font-weight: 600; }

/* ============================================================
   PROVIDERS
   ============================================================ */
.providers-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.provider-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--duration-base) var(--ease);
  cursor: pointer;
}
.provider-chip i { color: var(--gold-600); font-size: 14px; }
.provider-chip:hover {
  border-color: var(--border-gold);
  color: var(--text-gold);
  background: rgba(201,162,39,0.06);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-sm);
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  transition: all var(--duration-slow) var(--ease);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform var(--duration-slow) var(--ease);
}
.why-card:hover { border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-lg), var(--shadow-gold-sm); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold-600);
  margin-bottom: 20px;
}
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(201,162,39,0.08) 0%, rgba(0,0,0,0) 60%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 17px; color: var(--text-secondary); margin-bottom: 36px; position: relative; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   SEO CONTENT BLOCK
   ============================================================ */
.seo-block {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 44px;
}
.seo-block h2 { font-size: 24px; font-weight: 700; margin-bottom: 20px; color: var(--text-gold); }
.seo-block h3 { font-size: 18px; font-weight: 600; margin: 28px 0 12px; }
.seo-block p { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 16px; }
.seo-block ul { margin-bottom: 16px; }
.seo-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}
.seo-block ul li::before { content: '✦'; color: var(--gold-600); font-size: 10px; margin-top: 4px; flex-shrink: 0; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(180deg, rgba(201,162,39,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--grad-gold-h);
  opacity: 0.4;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.page-hero p { font-size: 16px; color: var(--text-secondary); margin-bottom: 16px; max-width: 600px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--duration-fast) var(--ease); }
.breadcrumb a:hover { color: var(--text-gold); }
.breadcrumb .sep { color: var(--border-default); }
.breadcrumb .current { color: var(--text-gold); }

/* ============================================================
   GAME DETAIL PAGE
   ============================================================ */
.game-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.game-detail-main {}
.game-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 24px;
}
.game-header-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.game-thumb-box {
  width: 180px;
  height: 140px;
  background: linear-gradient(145deg, #1a1a28, #0e0e18);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 44px;
  color: var(--gold-600);
}
.game-thumb-box span { font-size: 11px; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.game-header-info { flex: 1; }
.game-header-info h1 { font-size: 28px; font-weight: 800; margin-bottom: 6px; }
.game-provider-line { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.game-provider-line i { color: var(--gold-600); }
.game-stats-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.game-stat-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  text-align: center;
  min-width: 90px;
}
.game-stat-box .val { font-size: 20px; font-weight: 800; display: block; line-height: 1; margin-bottom: 4px; }
.game-stat-box .val.gold { color: var(--text-gold); }
.game-stat-box .lbl { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; }
.game-action-row { display: flex; gap: 10px; flex-wrap: wrap; }

/* Sidebar */
.game-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.sidebar-card.gold-border { border-color: var(--border-gold); background: linear-gradient(145deg, rgba(201,162,39,0.06), var(--bg-card)); }
.sidebar-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 16px; color: var(--text-gold); }
.info-rows {}
.info-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
.info-row:last-child { border-bottom: none; }
.info-row .lbl { color: var(--text-muted); }
.info-row .val { color: var(--text-primary); font-weight: 600; }
.info-row .val.gold { color: var(--text-gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.form-card, .info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.form-card h2, .info-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; }
.form-control {
  width: 100%;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all var(--duration-base) var(--ease);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold-600);
  background: rgba(201,162,39,0.04);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.08);
}
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control option { background: var(--bg-card); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-check input[type="checkbox"] { margin-top: 2px; accent-color: var(--gold-600); }
.form-check label { font-size: 13px; color: var(--text-secondary); }
.form-check label a { color: var(--text-gold); }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 24px; }
.ci-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-600);
  flex-shrink: 0;
}
.ci-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.ci-text p, .ci-text a { font-size: 14px; color: var(--text-secondary); }
.ci-text a:hover { color: var(--text-gold); }

/* ============================================================
   AFFILIATE PAGE
   ============================================================ */
.affiliate-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.affiliate-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.affiliate-form-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 28px; color: var(--text-gold); }
.affiliate-benefits-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.affiliate-benefits-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }
.benefit-row { display: flex; gap: 16px; margin-bottom: 22px; }
.benefit-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold-600);
  flex-shrink: 0;
}
.benefit-text h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.benefit-text p { font-size: 13px; color: var(--text-secondary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--duration-base) var(--ease);
}
.faq-item.open { border-color: var(--border-gold); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: color var(--duration-fast) var(--ease);
  user-select: none;
}
.faq-q:hover { color: var(--text-gold); }
.faq-q i { color: var(--gold-600); transition: transform var(--duration-base) var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { padding: 0 22px 18px; font-size: 14px; color: var(--text-secondary); line-height: 1.8; display: none; }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   PAYMENT METHODS
   ============================================================ */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.payment-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--duration-base) var(--ease);
}
.payment-card:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: var(--shadow-gold-sm); }
.payment-icon { font-size: 28px; color: var(--gold-600); margin-bottom: 10px; }
.payment-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.payment-time { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--duration-base) var(--ease);
}
.about-stat-card:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.about-stat-num { font-size: 36px; font-weight: 900; display: block; margin-bottom: 6px; }
.about-stat-lbl { font-size: 13px; color: var(--text-secondary); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--duration-base) var(--ease);
}
.team-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.team-avatar {
  width: 72px;
  height: 72px;
  background: rgba(201,162,39,0.1);
  border: 2px solid rgba(201,162,39,0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold-600);
  margin: 0 auto 16px;
}
.team-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   SITEMAP
   ============================================================ */
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.sitemap-col h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.sitemap-col ul li a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--duration-fast) var(--ease);
}
.sitemap-col ul li a:hover { color: var(--text-gold); padding-left: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  margin-top: 80px;
}
.footer-top {
  padding: 60px 0 40px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand {}
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; filter: drop-shadow(0 0 10px rgba(201,162,39,0.2)); }
.footer-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; max-width: 300px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.footer-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 11px;
  color: var(--text-muted);
}
.footer-badge i { color: var(--gold-600); }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: all var(--duration-base) var(--ease);
}
.social-btn:hover { background: rgba(201,162,39,0.12); border-color: var(--border-gold); color: var(--text-gold); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-secondary); transition: color var(--duration-fast) var(--ease); }
.footer-links a:hover { color: var(--text-gold); }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; }
.footer-contact-item i { color: var(--gold-600); width: 16px; text-align: center; }
.footer-contact-item a:hover { color: var(--text-gold); }

/* Footer Bottom */
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copyright { font-size: 13px; color: var(--text-muted); }
.footer-copyright strong { color: var(--text-secondary); }
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 12px; color: var(--text-muted); transition: color var(--duration-fast) var(--ease); }
.footer-bottom-links a:hover { color: var(--text-gold); }
.footer-payments { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border-subtle); }
.footer-payments span { font-size: 12px; color: var(--text-muted); margin-right: 4px; }
.payment-icon-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
}
.footer-disclaimer {
  padding: 16px 0;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-disclaimer a { color: var(--text-muted); text-decoration: underline; }
.footer-disclaimer strong { color: var(--text-secondary); }

/* ============================================================
   LIVE SUPPORT WIDGET
   ============================================================ */
.live-support-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--grad-gold);
  color: #0a0800;
  font-weight: 700;
  font-size: 13px;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 30px rgba(201,162,39,0.4);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease);
  text-decoration: none;
}
.live-support-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,162,39,0.55);
  color: #0a0800;
}
.live-support-btn .pulse {
  width: 8px;
  height: 8px;
  background: #00e676;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(0,230,118,0); }
}

/* Scroll Top */
.scroll-top-btn {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--text-gold);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base) var(--ease);
  z-index: 998;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: rgba(201,162,39,0.15); transform: translateY(-2px); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.divider { height: 1px; background: var(--border-subtle); margin: 40px 0; }
.divider-gold { background: linear-gradient(90deg, transparent, var(--border-gold), transparent); }
.text-right { text-align: right; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-1 { margin-top: 6px; }
.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 20px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 6px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 20px; }
.mb-4 { margin-bottom: 32px; }
.w-full { width: 100%; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,0.3); }
  50% { box-shadow: 0 0 0 10px rgba(201,162,39,0); }
}

.animate-fade-up { animation: fadeInUp 0.6s var(--ease) both; }
.animate-fade { animation: fadeIn 0.5s var(--ease) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* Shimmer loading */
.shimmer {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .games-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .game-detail-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .affiliate-layout { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .main-nav, .header-actions .btn-secondary { display: none; }
  .mobile-menu-btn { display: flex; }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
  .promotions-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 44px 24px; }
  .seo-block { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .game-header-row { flex-direction: column; }
  .game-thumb-box { width: 100%; height: 120px; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .about-stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { flex: 0 0 100%; border-right: none; }
  .stat-item:nth-child(odd) { border-right: none; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .header-logo img { height: 36px; }
  .live-support-btn span { display: none; }
  .live-support-btn { padding: 12px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .about-stats-grid { grid-template-columns: 1fr; }
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  flex-direction: column;
  padding: 24px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.mobile-nav-close { width: 40px; height: 40px; background: var(--bg-elevated); border: 1px solid var(--border-default); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--text-primary); font-size: 18px; cursor: pointer; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; flex: 1; overflow-y: auto; }
.mobile-nav-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease);
}
.mobile-nav-item a i { color: var(--gold-600); width: 20px; text-align: center; }
.mobile-nav-item a:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }

/* ============================================================
   GAME THUMB IMAGE FIX
   ============================================================ */
.game-thumb .game-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}
.game-card:hover .game-thumb .game-thumb-img {
  transform: scale(1.06);
}
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease);
  z-index: 3;
}
.game-card:hover .game-overlay { opacity: 1; }
