/* ===== GOLDZINO CASINO - BRAND DESIGN SYSTEM ===== */
/* Brand: Black #0a0a0a + Gold #C9A84C / #D4AF37 / #FFD700 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== ACCESSIBILITY ===== */
/* Skip to main content link */
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 99999;
  background: var(--gold-primary, #C9A84C);
  color: #000;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 8px;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Focus styles for keyboard navigation */
*:focus-visible {
  outline: 2px solid #C9A84C;
  outline-offset: 3px;
  border-radius: 2px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --gold-primary: #C9A84C;
  --gold-bright: #FFD700;
  --gold-dark: #A07830;
  --gold-light: #E8C97A;
  --gold-gradient: linear-gradient(135deg, #C9A84C 0%, #FFD700 50%, #C9A84C 100%);
  --gold-gradient-v: linear-gradient(180deg, #FFD700 0%, #C9A84C 100%);

  /* Dark Palette */
  --black: #000000;
  --black-deep: #050505;
  --black-rich: #0a0a0a;
  --black-card: #111111;
  --black-panel: #161616;
  --black-border: #1e1e1e;
  --black-hover: #1a1a1a;

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #B8B8B8;
  --text-muted: #777777;
  --text-gold: #C9A84C;

  /* Accents */
  --accent-red: #C0392B;
  --accent-green: #27AE60;

  /* Sizes */
  --header-height: 72px;
  --mobile-header: 60px;
  --section-pad: 80px;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 32px;

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-gold: 0 0 20px rgba(201, 168, 76, 0.3);
  --shadow-gold-strong: 0 0 40px rgba(201, 168, 76, 0.5);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-deep: 0 8px 48px rgba(0, 0, 0, 0.8);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black-rich);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-bright); }
ul { list-style: none; }
button { cursor: pointer; font-family: 'Inter', sans-serif; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

.gold-text { color: var(--gold-primary); }
.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-strong);
  color: var(--black);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
}
.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--text-primary);
}

.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ===== HEADER ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(5, 5, 5, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.8);
  border-bottom-color: rgba(201, 168, 76, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.logo-text span { color: var(--gold-primary); }

/* Desktop Nav */
.nav-desktop { display: flex; align-items: center; gap: 4px; }
.nav-desktop a {
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold-primary);
  background: rgba(201, 168, 76, 0.08);
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 10px; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--mobile-header);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform var(--transition-slow);
}
.nav-mobile.open {
  display: flex;
  transform: translateX(0);
}
.nav-mobile a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.nav-mobile a:hover,
.nav-mobile a.active {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.3);
  color: var(--gold-primary);
}

.mobile-cta-group {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.mobile-cta-group .btn { flex: 1; justify-content: center; }

/* ===== PAGE OFFSET ===== */
.page-content { padding-top: var(--header-height); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(5,5,5,0.92) 0%,
    rgba(5,5,5,0.7) 60%,
    rgba(5,5,5,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 20px; }
.hero p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat-item { text-align: left; }
.hero-stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 16px auto;
  border-radius: 2px;
}

/* ===== SECTIONS ===== */
section { padding: var(--section-pad) 0; }
.section-dark { background: var(--black-deep); }
.section-card { background: var(--black-card); }
.section-panel { background: var(--black-panel); }

/* ===== CARDS ===== */
.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.card-body { padding: 24px; }
.card-header { padding: 20px 24px; border-bottom: 1px solid var(--black-border); }

/* ===== GRID LAYOUTS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--border-radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.25);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

/* ===== BONUS CARD ===== */
.bonus-card {
  background: linear-gradient(135deg, var(--black-card) 0%, rgba(201, 168, 76, 0.05) 100%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.bonus-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201, 168, 76, 0.4);
}
.bonus-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 12px 0;
}
.bonus-type {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--black-rich) 0%, rgba(5,5,5,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold-primary); }
.breadcrumb-sep { color: var(--text-muted); }

/* ===== TABLES ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--black-card);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.data-table thead {
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, rgba(201,168,76,0.05) 100%);
  border-bottom: 2px solid rgba(201,168,76,0.3);
}
.data-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-primary);
}
.data-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--black-border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.data-table td:first-child { color: var(--text-primary); font-weight: 500; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(201,168,76,0.03); }

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}

/* Badge in table */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold-primary); }
.badge-green { background: rgba(39,174,96,0.15); color: var(--accent-green); }
.badge-red { background: rgba(192,57,43,0.15); color: var(--accent-red); }

/* ===== CHART WRAPPERS ===== */
.chart-wrapper {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--border-radius);
  padding: 28px;
}
.chart-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.chart-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -14px;
  margin-bottom: 20px;
}

/* Bar Chart */
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-item { display: flex; align-items: center; gap: 12px; }
.bar-label { width: 110px; font-size: 0.85rem; color: var(--text-secondary); flex-shrink: 0; text-align: right; }
.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 4px;
  animation: barGrow 1.2s ease-out forwards;
  transform-origin: left;
}
@keyframes barGrow { from { width: 0 !important; } }
.bar-val { width: 40px; font-size: 0.85rem; color: var(--gold-primary); font-weight: 600; }

/* Donut/Pie SVG Chart */
.donut-chart-wrap { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.donut-svg { flex-shrink: 0; }
.donut-legend { display: flex; flex-direction: column; gap: 12px; }
.legend-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ===== STAR RATING ===== */
.star-rating { display: flex; align-items: center; gap: 4px; color: var(--gold-primary); font-size: 1.1rem; }
.star-rating .score { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-left: 8px; }

/* ===== GAME CARD ===== */
.game-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-gold);
}
.game-thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, rgba(201,168,76,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}
.game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-info { padding: 14px 16px; }
.game-name { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.game-provider { font-size: 0.8rem; color: var(--text-muted); }
.game-rtp { font-size: 0.8rem; color: var(--gold-primary); font-weight: 500; }

/* ===== PAYMENT LOGO GRID ===== */
.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.payment-logo {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.payment-logo:hover {
  border-color: rgba(201,168,76,0.3);
  color: var(--gold-primary);
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 10px;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  gap: 16px;
}
.faq-question span { flex: 1; }

.faq-icon {
  width: 24px;
  height: 24px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold-primary);
  transition: none;
}
.faq-item.open .faq-icon { transform: none; }

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-item.open .faq-answer { display: block; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== AUTHOR BLOCK ===== */
.author-card {
  background: linear-gradient(135deg, var(--black-panel) 0%, rgba(201,168,76,0.03) 100%);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(201,168,76,0.3);
  flex-shrink: 0;
}
.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.author-role {
  font-size: 0.8rem;
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.author-bio { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== FOOTER ===== */
#site-footer {
  background: var(--black-deep);
  border-top: 1px solid var(--black-border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { margin-bottom: 16px; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.85rem; color: var(--text-muted); }
.footer-legal a:hover { color: var(--text-secondary); }

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gambling-warning {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== INFO BOXES ===== */
.info-box {
  background: rgba(201,168,76,0.06);
  border-left: 3px solid var(--gold-primary);
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin: 24px 0;
}
.info-box p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }

/* ===== PROS/CONS ===== */
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-box, .cons-box {
  background: var(--black-card);
  border-radius: var(--border-radius);
  padding: 24px;
}
.pros-box { border: 1px solid rgba(39,174,96,0.2); }
.cons-box { border: 1px solid rgba(192,57,43,0.2); }
.pros-box h4, .cons-box h4 { margin-bottom: 16px; font-size: 1rem; }
.pros-box h4 { color: var(--accent-green); }
.cons-box h4 { color: var(--accent-red); }
.pros-list, .cons-list { display: flex; flex-direction: column; gap: 10px; }
.pros-list li, .cons-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text-secondary); }
.pros-list li::before { content: '✓'; color: var(--accent-green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cons-list li::before { content: '✗'; color: var(--accent-red); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ===== STEP LIST ===== */
.steps-list { display: flex; flex-direction: column; gap: 20px; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--black);
  flex-shrink: 0;
}
.step-body h4 { margin-bottom: 6px; }
.step-body p { color: var(--text-secondary); font-size: 0.9rem; }

/* ===== SEONLINE SEO ARTICLE ===== */
.seo-article { max-width: 860px; }
.seo-article h2, .seo-article h3 { margin-top: 36px; margin-bottom: 14px; }
.seo-article p { color: var(--text-secondary); margin-bottom: 18px; line-height: 1.8; }
.seo-article ul, .seo-article ol { color: var(--text-secondary); padding-left: 20px; margin-bottom: 18px; }
.seo-article li { margin-bottom: 8px; line-height: 1.7; }
.seo-article a { color: var(--gold-primary); border-bottom: 1px solid transparent; }
.seo-article a:hover { border-bottom-color: var(--gold-primary); }

/* ===== STAT NUMBERS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-box {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--border-radius);
  padding: 28px 16px;
  transition: var(--transition);
}
.stat-box:hover { border-color: rgba(201,168,76,0.3); }
.stat-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box .label { font-size: 0.85rem; color: var(--text-muted); }

/* ===== TABS ===== */
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--black-border);
  margin-bottom: 32px;
  overflow-x: auto;
}
.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: -1px;
}
.tab-btn.active, .tab-btn:hover {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== RATING BAR ===== */
.rating-breakdown { display: flex; flex-direction: column; gap: 12px; }
.rating-row { display: flex; align-items: center; gap: 12px; }
.rating-cat { width: 120px; font-size: 0.9rem; color: var(--text-secondary); }
.rating-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.rating-fill { height: 100%; background: var(--gold-gradient); border-radius: 3px; transition: width 1s ease-out; }
.rating-score { width: 36px; text-align: right; font-size: 0.85rem; color: var(--gold-primary); font-weight: 600; }

/* ===== APP BADGES ===== */
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 10px;
  padding: 12px 20px;
  transition: var(--transition);
}
.app-badge:hover {
  border-color: rgba(201,168,76,0.3);
}
.app-badge-icon { font-size: 1.5rem; }
.app-badge-text { line-height: 1.3; }
.app-badge-text small { display: block; font-size: 0.7rem; color: var(--text-muted); }
.app-badge-text strong { font-size: 1rem; color: var(--text-primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --header-height: var(--mobile-header);
    --section-pad: 52px;
  }

  .nav-desktop, .header-actions .btn-outline, .header-actions .btn-ghost { display: none; }
  .menu-toggle { display: flex; }
  .header-actions { flex-shrink: 0; gap: 8px; }
  .header-actions .btn-gold { display: flex; padding: 8px 12px; font-size: 0.8rem; white-space: nowrap; }
  .header-inner { gap: 8px; }
  .logo { min-width: 0; flex-shrink: 1; }
  .logo-text { font-size: 1.1rem; }

  .hero { min-height: 70vh; }
  .hero-bg::after {
    background: linear-gradient(0deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.7) 100%);
  }
  .hero-stats { gap: 24px; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .author-card { flex-direction: column; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .donut-chart-wrap { flex-direction: column; }

  .section-header { margin-bottom: 36px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }

  .data-table { font-size: 0.85rem; }
  .data-table th, .data-table td { padding: 12px 14px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .container { padding: 0 16px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--black-card); }
::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-primary); }

/* ===== MISC ===== */
.text-center { text-align: center; }
.text-gold { color: var(--gold-primary); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.gap-12 { gap: 12px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.w-full { width: 100%; }
.container-narrow { max-width: 780px; margin: 0 auto; }

/* Gold glow pulse animation */
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 15px rgba(201,168,76,0.3); }
  50% { box-shadow: 0 0 30px rgba(201,168,76,0.6); }
}
.gold-pulse { animation: goldPulse 2.5s ease-in-out infinite; }

/* Shimmer */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.shimmer {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-bright) 50%, var(--gold-dark) 100%);
  background-size: 200% auto;
  animation: shimmer 2.5s linear infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
