/* =========================================================
   GagnantPremium.com – Premium Sports Betting Comparator
   Color Palette:
   --gold-light:   #f0c96a
   --gold:         #d4a843
   --gold-dark:    #b88a28
   --dark-900:     #0a0c10
   --dark-800:     #10131a
   --dark-700:     #161b26
   --dark-600:     #1e2433
   --dark-500:     #252d40
   --text-primary: #f0f2f8
   --text-muted:   #8892a8
   --success:      #2ecc71
   --danger:       #e74c3c
   ========================================================= */

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

:root {
  --gold-light: #f0c96a;
  --gold: #d4a843;
  --gold-dark: #b88a28;
  --dark-900: #0a0c10;
  --dark-800: #10131a;
  --dark-700: #161b26;
  --dark-600: #1e2433;
  --dark-500: #252d40;
  --text-primary: #f0f2f8;
  --text-secondary: #c8d0e0;
  --text-muted: #8892a8;
  --success: #2ecc71;
  --danger: #e74c3c;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--dark-900);
  color: var(--text-primary);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  display: block;
}

/* =========================================================
   AGE GATE
   ========================================================= */

.agegate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 10, 16, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.agegate-overlay.hidden {
  display: none;
}

.agegate-card {
  background: linear-gradient(145deg, var(--dark-700), var(--dark-600));
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,168,67,0.08);
  animation: agegate-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes agegate-in {
  from { opacity: 0; transform: scale(0.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.agegate-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.agegate-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.agegate-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  width: 72px;
  height: 72px;
  line-height: 72px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(212,168,67,0.4);
}

.agegate-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.agegate-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.agegate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.agegate-confirm {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #000;
  border: none;
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.agegate-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.4);
}

.agegate-deny {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(136, 146, 168, 0.3);
  padding: 0.875rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}

.agegate-deny:hover {
  border-color: var(--danger);
  color: var(--danger);
}

.agegate-legal {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* DENIED */
.denied-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-900);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.denied-overlay.visible {
  display: flex;
}

.denied-card {
  text-align: center;
  max-width: 400px;
}

.denied-icon {
  font-size: 4rem;
  color: var(--danger);
  margin-bottom: 1rem;
  display: block;
}

.denied-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.denied-card p {
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.denied-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: linear-gradient(135deg, var(--dark-700), var(--dark-600));
  border-top: 1px solid rgba(212,168,67,0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  min-width: 280px;
}

.cookie-text strong {
  color: var(--text-primary);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #000;
  border: none;
  padding: 0.625rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,168,67,0.35);
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(136,146,168,0.3);
  padding: 0.625rem 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text-secondary);
}

/* =========================================================
   NAVBAR
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 12, 16, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(212,168,67,0.15), 0 4px 24px rgba(0,0,0,0.3);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1875rem;
  color: var(--text-primary);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(212,168,67,0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-900);
}

.hero-bg-anim {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,67,0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46,204,113,0.1) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
  animation-delay: -3s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -6s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-40px) scale(1.05); }
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,67,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,67,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 8rem 2rem 6rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.25);
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(46,204,113,0); }
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: clamp(1rem, 2vw, 1.1875rem);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9375rem 2rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  display: inline-block;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,168,67,0.4);
  color: #000;
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9375rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
  display: inline-block;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: scroll-hint 2.5s ease-in-out infinite;
}

.hero-scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes scroll-hint {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

/* =========================================================
   SECTION COMMONS
   ========================================================= */

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 660px;
  margin: 0 auto;
}

/* =========================================================
   PLATFORMS SECTION
   ========================================================= */

.platforms-section {
  background: linear-gradient(180deg, var(--dark-900) 0%, var(--dark-800) 100%);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.platform-card {
  background: linear-gradient(145deg, var(--dark-700), var(--dark-600));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border-color: rgba(212,168,67,0.3);
}

.platform-card--first {
  border-color: rgba(212,168,67,0.25);
  box-shadow: 0 8px 40px rgba(212,168,67,0.12);
  transform: translateY(-8px);
}

.platform-card--first:hover {
  transform: translateY(-16px);
  box-shadow: 0 32px 80px rgba(212,168,67,0.2);
}

.platform-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}

.platform-ribbon--1 {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #000;
}

.platform-ribbon--2 {
  background: linear-gradient(135deg, #6b7280, #9ca3af);
  color: #000;
}

.platform-ribbon--3 {
  background: linear-gradient(135deg, #92400e, #b45309);
  color: #fff;
}

.platform-card-inner {
  padding: 3rem 1.5rem 1.5rem;
}

.platform-logo-wrap {
  position: relative;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.platform-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.platform-logo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.platform-score {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.platform-stars {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 1.125rem;
}

.star-full { color: var(--gold); }
.star-half { color: var(--gold); }
.star-empty { color: var(--dark-500); }

.platform-reviews {
  font-size: 0.8125rem;
  color: var(--success);
  font-weight: 600;
  margin-left: auto;
}

.platform-bonus-block {
  background: rgba(212,168,67,0.07);
  border: 1px solid rgba(212,168,67,0.18);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.platform-bonus-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.platform-bonus-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
}

.platform-feature {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-check {
  color: var(--success);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.platform-payments {
  margin-bottom: 1.25rem;
}

.payment-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
}

.payment-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pay-icon {
  display: inline-block;
  height: 24px;
  width: auto;
  object-fit: contain;
}

.btn-cta-platform {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.9375rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #000;
  letter-spacing: 0.03em;
}

.btn-cta-platform:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.4);
  color: #000;
}

.btn-cta-silver {
  background: linear-gradient(135deg, #4b5563, #9ca3af);
  color: #000;
}

.btn-cta-silver:hover {
  box-shadow: 0 8px 24px rgba(156,163,175,0.3);
}

.btn-cta-bronze {
  background: linear-gradient(135deg, #78350f, #d97706);
  color: #fff;
}

.btn-cta-bronze:hover {
  box-shadow: 0 8px 24px rgba(217,119,6,0.35);
  color: #fff;
}

.platform-disclaimer {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.platforms-disclaimer {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: rgba(231,76,60,0.08);
  border: 1px solid rgba(231,76,60,0.2);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.7;
}

/* =========================================================
   WHY SECTION
   ========================================================= */

.why-section {
  background: var(--dark-800);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: linear-gradient(145deg, var(--dark-700), var(--dark-600));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.why-card:hover {
  border-color: rgba(212,168,67,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.why-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(212,168,67,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--text-primary);
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =========================================================
   RESPONSIBLE SECTION
   ========================================================= */

.responsible-section {
  background: var(--dark-900);
}

.responsible-banner {
  background: linear-gradient(135deg, rgba(212,168,67,0.08), rgba(212,168,67,0.04));
  border: 1px solid rgba(212,168,67,0.25);
  border-radius: var(--radius-xl);
  padding: 3rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.responsible-icon {
  flex-shrink: 0;
}

.responsible-content {
  flex: 1;
  min-width: 260px;
}

.responsible-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.875rem;
}

.responsible-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.responsible-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.responsible-links a {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(212,168,67,0.1);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: all var(--transition);
}

.responsible-links a:hover {
  background: rgba(212,168,67,0.2);
  color: var(--gold-light);
}

.btn-responsible {
  display: inline-block;
  white-space: nowrap;
  align-self: center;
  padding: 0.875rem 1.75rem;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.btn-responsible:hover {
  background: var(--gold);
  color: #000;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {
  background: var(--dark-800);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: linear-gradient(145deg, var(--dark-700), var(--dark-600));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(212,168,67,0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-arrow {
  font-size: 0.75rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.75;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: var(--dark-900);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-disclaimer-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--danger);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.875rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-nav-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-nav-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  text-align: center;
}

.footer-legal-text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--dark-500);
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */

.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   SUBPAGE COMMON
   ========================================================= */

.subpage-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--dark-800), var(--dark-900));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.subpage-hero-label {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.subpage-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.subpage-hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.subpage-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(212,168,67,0.08);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-md);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
}

.subpage-back-btn:hover {
  background: rgba(212,168,67,0.16);
  color: var(--gold-light);
  transform: translateX(-3px);
}

.subpage-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.subpage-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin: 2.5rem 0 0.875rem;
  color: var(--gold-light);
}

.subpage-content h2:first-child {
  margin-top: 0;
}

.subpage-content p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.subpage-content ul, .subpage-content ol {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.subpage-content li {
  margin-bottom: 0.5rem;
}

.subpage-content a {
  color: var(--gold);
  text-decoration: underline;
}

.subpage-content strong {
  color: var(--text-primary);
}

.subpage-warning-box {
  background: rgba(231,76,60,0.08);
  border: 1px solid rgba(231,76,60,0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.subpage-warning-box p {
  color: #f87171;
  margin-bottom: 0;
}

.subpage-info-box {
  background: rgba(212,168,67,0.06);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.subpage-info-box p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .platform-card--third {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,12,16,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(212,168,67,0.15);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-toggle {
    display: flex;
  }

  .navbar-container {
    padding: 0.875rem 1.25rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hero-stat-divider {
    display: none;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .platform-card--first {
    transform: none;
  }

  .platform-card--first:hover {
    transform: translateY(-8px);
  }

  .platform-card--third {
    max-width: 100%;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .responsible-banner {
    flex-direction: column;
    padding: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .section-container {
    padding: 3.5rem 1.25rem;
  }

  .subpage-content {
    padding: 3rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .cookie-inner {
    padding: 1rem 1.25rem;
    gap: 1rem;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .agegate-card {
    padding: 2rem 1.5rem;
  }

  .hero-content {
    padding: 7rem 1.25rem 5rem;
  }

  .responsible-banner {
    padding: 1.5rem;
  }
}
