@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-tertiary: #141414;
  --bg-card: #1a1a1a;
  --bg-card-hover: #222222;
  --yellow: #FFCC00;
  --yellow-light: #FFE066;
  --yellow-dark: #D4A800;
  --yellow-gradient: linear-gradient(135deg, #FFCC00, #FFE066, #FFCC00);
  --green: #00C853;
  --red: #FF1744;
  --blue: #2979FF;
  --info: #00B0FF;
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-muted: #777777;
  --border-color: #2a2a2a;
  --border-light: #333333;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.5);
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h1 span, h2 span { color: var(--yellow); }

a { color: var(--yellow); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--yellow-light); }
p { margin-bottom: 16px; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 70px 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: var(--radius); font-weight: 700;
  font-size: 0.95rem; cursor: pointer; transition: var(--transition);
  border: none; text-decoration: none; gap: 8px; font-family: var(--font-heading);
  text-transform: uppercase; letter-spacing: 1px;
}
.btn-yellow { background: var(--yellow); color: #000; }
.btn-yellow:hover { background: var(--yellow-light); color: #000; transform: translateY(-2px); box-shadow: 0 6px 25px rgba(255,204,0,0.3); }
.btn-outline { background: transparent; color: var(--text-primary); border: 2px solid var(--border-light); }
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.w-full { width: 100%; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(0,0,0,0.95); border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.8); }
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.logo img { height: 32px; width: auto; }
.main-nav { display: flex; gap: 4px; }
.main-nav a {
  color: var(--text-secondary); font-size: 0.85rem; font-weight: 500;
  padding: 6px 12px; border-radius: var(--radius); transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--yellow); background: rgba(255,204,0,0.08); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.mobile-cta { display: none !important; }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 22px; position: relative; z-index: 1001;
}
.hamburger span {
  display: block; width: 100%; height: 2px; background: var(--text-primary);
  position: absolute; left: 0; transition: var(--transition);
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  height: calc(100vh - 68px);
  background: var(--bg-primary);
  z-index: 999; padding: 20px;
  overflow-y: auto;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text-secondary); padding: 14px 16px; font-size: 1rem;
  border-radius: var(--radius); font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--yellow); background: rgba(255,204,0,0.08); }

/* ---------- BREADCRUMB ---------- */
.breadcrumb { padding: 80px 0 0; background: var(--bg-primary); }
.breadcrumb-list { display: flex; align-items: center; gap: 0; padding: 14px 0; font-size: 0.85rem; }
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--yellow); }
.breadcrumb-list li:last-child { color: var(--yellow); }
.breadcrumb-list .sep { color: var(--text-muted); margin: 0 8px; }

/* ---------- HERO VARIANTS ---------- */
.hero {
  padding: 120px 0 80px; background: var(--bg-primary);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,204,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { margin-bottom: 16px; }
.hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 600px; margin-bottom: 24px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Split */
.hero-split .hero-split-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
}
.hero-split

/* Hero Centered */
.hero-centered { text-align: center; }
.hero-centered p { margin-left: auto; margin-right: auto; }
.hero-centered .hero-actions { justify-content: center; }

/* ---------- SECTION HEADERS ---------- */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 12px auto 0; }
.section-header-left { margin-bottom: 30px; }
.section-header-left p { color: var(--text-muted); margin-top: 8px; }

/* ---------- BADGE ---------- */
.badge {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
}
.badge-yellow { background: rgba(255,204,0,0.15); color: var(--yellow); border: 1px solid rgba(255,204,0,0.3); }
.badge-green { background: rgba(0,200,83,0.15); color: var(--green); }
.badge-live { background: var(--red); color: #fff; animation: pulse 2s infinite; }

@keyframes pulse { 0%,100%{ opacity:1 } 50%{ opacity:0.7 } }

/* ---------- GRIDS ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ---------- CARDS ---------- */
.card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 28px; transition: var(--transition);
}
.card:hover { border-color: var(--border-light); transform: translateY(-3px); box-shadow: var(--shadow); }

.sport-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.sport-card:hover { border-color: var(--yellow); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(255,204,0,0.1); }
.sport-card-icon {
  height: 100px; display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; background: var(--bg-tertiary);
}
.sport-card-info { padding: 16px; text-align: center; }
.sport-card-info h3 { font-size: 1rem; margin-bottom: 4px; }
.sport-card-info span { font-size: 0.8rem; color: var(--text-muted); }

.feature-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 30px; text-align: center; transition: var(--transition);
}
.feature-card:hover { border-color: var(--yellow); }
.feature-card .icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }

.bonus-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.bonus-card:hover { border-color: var(--yellow); }
.bonus-card.featured { border-color: var(--yellow); position: relative; }
.bonus-card.featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow-gradient);
}
.bonus-card-header {
  padding: 24px; text-align: center;
  background: linear-gradient(180deg, rgba(255,204,0,0.08) 0%, transparent 100%);
}
.bonus-card-header h3 { font-size: 1.6rem; }
.bonus-card-header h3 span { color: var(--yellow); }
.bonus-card-header p { color: var(--text-muted); margin: 0; }
.bonus-badge {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; background: var(--yellow); color: #000;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.bonus-card-body { padding: 0 24px; }
.bonus-card-body ul { padding: 0; }
.bonus-card-body li { padding: 8px 0; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); font-size: 0.9rem; }
.bonus-card-body li:last-child { border-bottom: none; }
.bonus-card-footer { padding: 20px 24px; }

.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 28px;
}
.testimonial-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card p { font-style: italic; color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 16px; }
.testimonial-author { display: flex; justify-content: space-between; align-items: center; }
.testimonial-author strong { color: var(--text-primary); }
.testimonial-author span { color: var(--text-muted); font-size: 0.8rem; }

/* ---------- STATS ROW ---------- */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding: 30px 0;
}
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 800; color: var(--yellow); display: block; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ---------- TABLES ---------- */
.table-wrapper { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-color); }

/* Table A: Clean minimal */
.table-a { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table-a thead { background: var(--bg-tertiary); }
.table-a th { padding: 14px 16px; text-align: left; color: var(--yellow); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.table-a td { padding: 14px 16px; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); }
.table-a tbody tr:hover { background: rgba(255,204,0,0.03); }
.table-a tbody tr:last-child td { border-bottom: none; }

/* Table B: Striped dark */
.table-b { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table-b thead { background: var(--yellow); }
.table-b th { padding: 14px 16px; text-align: left; color: #000; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.table-b td { padding: 14px 16px; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); }
.table-b tbody tr:nth-child(even) { background: var(--bg-tertiary); }
.table-b tbody tr:hover { background: rgba(255,204,0,0.05); }

/* Table C: Bordered with yellow accents */
.table-c { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table-c thead { background: linear-gradient(135deg, #1a1a00, #1a1a1a); }
.table-c th { padding: 14px 16px; text-align: left; color: var(--yellow); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid var(--yellow); white-space: nowrap; }
.table-c td { padding: 14px 16px; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); }
.table-c tbody tr:hover { background: rgba(255,204,0,0.04); }

/* Table D: Comparison */
.table-d { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.table-d thead { background: var(--bg-card); }
.table-d th { padding: 14px 16px; text-align: center; color: var(--text-primary); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; border-bottom: 2px solid var(--border-light); white-space: nowrap; }
.table-d th:first-child { text-align: left; }
.table-d td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); }
.table-d td:first-child { text-align: left; font-weight: 600; color: var(--text-primary); }
.table-d tbody tr:hover { background: rgba(255,204,0,0.04); }

/* Rating bar */
.rating-bar { background: var(--bg-tertiary); border-radius: 4px; overflow: hidden; height: 8px; }

/* ---------- CHART ---------- */
.chart-container {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 28px;
}
.chart-container h3 { font-size: 1rem; margin-bottom: 20px; text-align: center; }
.chart-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.chart-canvas-wrap.wide { max-width: 100%; }

/* ---------- PROS & CONS ---------- */
.pros-cons {
  background: var(--bg-card); border-radius: var(--radius-lg);
  padding: 28px; border: 1px solid var(--border-color);
}
.pros-cons h3 { margin-bottom: 16px; }
.pros-cons ul { padding: 0; }
.pros-cons li { padding: 8px 0; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); font-size: 0.9rem; }
.pros-cons li:last-child { border-bottom: none; }
.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid var(--red); }

/* ---------- STEPS ---------- */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step-item { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
  background: var(--yellow); color: #000; display: flex; align-items: center;
  justify-content: center; font-weight: 800; font-family: var(--font-heading); font-size: 1.2rem;
}
.step-content h3 { margin-bottom: 6px; font-size: 1.05rem; }
.step-content p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---------- VIP TIERS ---------- */
.vip-tiers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.vip-tier {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); overflow: hidden; text-align: center;
}
.vip-tier-header { padding: 20px 12px; }
.vip-tier-header h3 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.vip-tier-header span { font-size: 0.75rem; opacity: 0.8; }
.vip-tier ul { padding: 16px 12px; }
.vip-tier li { padding: 6px 0; font-size: 0.8rem; color: var(--text-muted); border-bottom: 1px solid var(--border-color); }
.vip-tier li:last-child { border-bottom: none; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; padding: 18px 20px; background: none; border: none;
  color: var(--text-primary); font-size: 1rem; font-weight: 600; text-align: left;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); transition: var(--transition);
}
.faq-question:hover { color: var(--yellow); }
.faq-icon { font-size: 1.4rem; color: var(--yellow); transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 20px 18px; color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ---------- AUTHOR BOX ---------- */
.author-box {
  display: flex; gap: 24px; align-items: center;
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 28px; margin-top: 40px;
}
.author-avatar { width: 90px; height: 90px; min-width: 90px; border-radius: 50%; overflow: hidden; border: 2px solid var(--yellow); }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-info h4 { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 4px; }
.author-role { color: var(--yellow); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.author-info p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---------- FORMS ---------- */
.form-card {
  background: var(--bg-card); border: 1px solid var(--border-color);
  border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 480px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; color: var(--text-primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px; background: var(--bg-tertiary);
  border: 1px solid var(--border-color); border-radius: var(--radius);
  color: var(--text-primary); font-size: 0.95rem; font-family: var(--font-body);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(255,204,0,0.1); }
.form-group input::placeholder { color: var(--text-muted); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- SEO TEXT ---------- */
.seo-text { max-width: 900px; }
.seo-text h2 { font-size: 1.6rem; margin: 32px 0 16px; }
.seo-text h2:first-child { margin-top: 0; }
.seo-text h3 { font-size: 1.2rem; margin: 24px 0 12px; text-transform: none; }
.seo-text p { color: var(--text-secondary); line-height: 1.8; }
.seo-text a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.seo-text a:hover { color: var(--yellow-light); }
.legal-text h2 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--yellow); }
.legal-text h2:first-child { margin-top: 0; }
.legal-text h3 { font-size: 1.1rem; margin: 20px 0 10px; text-transform: none; }
.legal-text p, .legal-text li { color: var(--text-secondary); line-height: 1.8; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-secondary); border-top: 1px solid var(--border-color);
  padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo-text {
  font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800;
  color: var(--text-primary); text-transform: lowercase; margin-bottom: 12px;
}
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer-col h4 { font-size: 0.85rem; color: var(--yellow); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 0.9rem; padding: 4px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--yellow); padding-left: 4px; }
.disclaimer {
  border-top: 1px solid var(--border-color); padding: 20px 0;
  display: flex; align-items: center; gap: 16px;
}
.age-badge {
  background: var(--red); color: #fff; font-weight: 800; font-size: 0.8rem;
  padding: 6px 10px; border-radius: var(--radius); min-width: 40px; text-align: center;
}
.disclaimer p { color: var(--text-muted); font-size: 0.8rem; margin: 0; }
.footer-bottom {
  border-top: 1px solid var(--border-color); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; margin: 0; }
.footer-payments { display: flex; gap: 8px; font-size: 0.8rem; color: var(--text-muted); }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--bg-tertiary); border-top: 1px solid var(--border-color);
  padding: 16px 0; display: none;
}
.cookie-banner.show { display: block; }
.cookie-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.cookie-inner p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.cookie-inner a { color: var(--yellow); }

/* ---------- SCROLL TOP ---------- */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--yellow); color: #000; border: none;
  font-size: 1.3rem; cursor: pointer; opacity: 0; visibility: hidden;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 4px 15px rgba(255,204,0,0.4); }

/* ---------- ANIMATIONS ---------- */
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ---------- LIVE INDICATOR ---------- */
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); display: inline-block; animation: pulse 1.5s infinite; margin-right: 6px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .mobile-cta { display: inline-flex !important; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .vip-tiers { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2.2rem; }
}
@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; }
  .hero-split .hero-split-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-split
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .vip-tiers { grid-template-columns: 1fr 1fr; }
  section { padding: 50px 0; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; text-align: center; }
  .cookie-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .vip-tiers { grid-template-columns: 1fr; }
  h1 { font-size: 1.6rem; }
  .stat-num { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}


/* Fix Hero Background Stacking */
.hero .container {
  position: relative;
  z-index: 2;
}


/* Hero Full Background Applied */
.hero-image {
  position: absolute; right: 0; left: 0; top: 0; bottom: 0;
  width: 100%; height: 100%; z-index: 0;
  opacity: 0.15;
  object-fit: cover;
  object-position: center;
}


/* Mobile Adaptations */
@media (max-width: 768px) {
  .header-actions .btn-outline { 
    display: none !important; 
  }
  .header-actions .btn-yellow:not(.mobile-cta) {
    display: none !important;
  }
}

.chart-container {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden;
}

.chart-canvas-wrap {
  width: 100% !important;
}

canvas {
  max-width: 100% !important;
  height: auto !important;
}
