/* ============================================
   Wonder Luck Casino - Main Stylesheet
   Brand Colors: Dark Navy + Gold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&family=Great+Vibes&display=swap');

:root {
  --bg-primary: #0B1A2E;
  --bg-secondary: #0F2440;
  --bg-tertiary: #132D52;
  --bg-card: #0E2035;
  --gold: #C8A960;
  --gold-light: #E2CC8B;
  --gold-dark: #A08838;
  --gold-gradient: linear-gradient(135deg, #C8A960, #E2CC8B, #C8A960);
  --white: #FFFFFF;
  --text-muted: #94A3B8;
  --text-light: #CBD5E1;
  --border: #1E3A5F;
  --success: #22C55E;
  --warning: #F59E0B;
  --danger: #EF4444;
  --info: #3B82F6;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-brand: 'Great Vibes', cursive;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 20px rgba(200, 169, 96, 0.15);
  --transition: all 0.3s ease;
  --max-width: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200, 169, 96, 0.15);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-family: var(--font-brand);
  font-size: 1.8rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
  background: rgba(200, 169, 96, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  font-family: var(--font-body);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: var(--bg-primary);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--bg-primary);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: rgba(200, 169, 96, 0.1);
  color: var(--gold-light);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.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.active {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 14px 20px;
  color: var(--text-light);
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover {
  color: var(--gold);
  background: rgba(200, 169, 96, 0.08);
}

.mobile-nav .btn {
  margin-top: 10px;
  text-align: center;
}

.mobile-cta {
  display: none;
  margin-left: 8px;
}

/* ============ HERO SECTIONS ============ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200, 169, 96, 0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero Variant B - centered */
.hero-centered {
  text-align: center;
}

.hero-centered .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-centered .hero-actions {
  justify-content: center;
}

.hero-centered p {
  margin-left: auto;
  margin-right: auto;
}

/* Hero Variant C - with side image */
.hero-split .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-split .hero-content {
  flex: 1;
}

.hero-split .hero-visual {
  flex: 0 0 420px;
  position: relative;
  z-index: 2;
}

.hero-split .hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
}

/* ============ SECTIONS ============ */
section {
  padding: 80px 0;
}

section:nth-child(even) {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-header h2 span {
  color: var(--gold);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

.section-header-left {
  text-align: left;
  margin-bottom: 40px;
}

.section-header-left h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header-left h2 span {
  color: var(--gold);
}

.section-header-left p {
  color: var(--text-muted);
  max-width: 600px;
}

h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.seo-text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
}

.seo-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin: 40px 0 16px;
}

.seo-text h3 {
  font-size: 1.35rem;
  color: var(--gold);
  margin: 30px 0 12px;
}

.seo-text p {
  margin-bottom: 16px;
}

.seo-text ul,
.seo-text ol {
  margin: 16px 0;
  padding-left: 24px;
}

.seo-text ul {
  list-style: disc;
}

.seo-text ol {
  list-style: decimal;
}

.seo-text li {
  margin-bottom: 8px;
  color: var(--text-light);
}

.seo-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-text a:hover {
  color: var(--gold-light);
}

.seo-text strong {
  color: var(--white);
}

/* ============ 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: 24px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* ============ CARDS ============ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 96, 0.3);
  box-shadow: var(--shadow-gold);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 96, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 1.5rem;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-img {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 20px 0 0;
}

/* Game Card */
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.game-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.game-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.game-card:hover .game-card-img img {
  transform: scale(1.05);
}

.game-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.game-card-info {
  padding: 16px;
}

.game-card-info h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.game-card-info p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.game-card-info .rating {
  color: var(--gold);
  font-size: 0.85rem;
}

/* Feature Card */
.feature-card {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-tertiary));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Bonus Card */
.bonus-card {
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.bonus-card.featured {
  border-color: var(--gold);
}

.bonus-card-header {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-card));
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.bonus-card.featured .bonus-card-header {
  background: linear-gradient(135deg, rgba(200, 169, 96, 0.15), rgba(200, 169, 96, 0.05));
}

.bonus-card-header .bonus-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.bonus-card-header h3 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.bonus-card-header h3 span {
  color: var(--gold);
}

.bonus-card-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.bonus-card-body {
  padding: 24px;
}

.bonus-card-body ul {
  margin: 0;
}

.bonus-card-body li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 58, 95, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.bonus-card-body li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
}

.bonus-card-footer {
  padding: 0 24px 24px;
}

/* ============ TABLES ============ */
/* Table Style A - Classic */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: 30px 0;
}

.table-a {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table-a thead {
  background: var(--bg-tertiary);
}

.table-a th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.table-a td {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  color: var(--text-light);
}

.table-a tbody tr {
  transition: var(--transition);
}

.table-a tbody tr:hover {
  background: rgba(200, 169, 96, 0.05);
}

.table-a .highlight {
  color: var(--gold);
  font-weight: 600;
}

/* Table Style B - Striped */
.table-b {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table-b thead {
  background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-card));
}

.table-b th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: var(--white);
  border-bottom: 2px solid var(--gold);
}

.table-b td {
  padding: 14px 20px;
  color: var(--text-light);
}

.table-b tbody tr:nth-child(odd) {
  background: rgba(15, 36, 64, 0.5);
}

.table-b tbody tr:nth-child(even) {
  background: rgba(19, 45, 82, 0.3);
}

.table-b tbody tr:hover {
  background: rgba(200, 169, 96, 0.08);
}

/* Table Style C - Bordered with Rating */
.table-c {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  font-size: 0.95rem;
}

.table-c thead th {
  padding: 12px 18px;
  text-align: left;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table-c tbody tr {
  background: var(--bg-card);
  transition: var(--transition);
}

.table-c tbody tr:hover {
  transform: translateX(4px);
}

.table-c td {
  padding: 16px 18px;
  color: var(--text-light);
}

.table-c td:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.table-c td:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Table Style D - Comparison */
.table-d {
  width: 100%;
  border-collapse: collapse;
}

.table-d th,
.table-d td {
  padding: 14px 16px;
  text-align: center;
  border: 1px solid var(--border);
}

.table-d thead th {
  background: var(--bg-tertiary);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.table-d thead th:first-child {
  text-align: left;
}

.table-d td:first-child {
  text-align: left;
  color: var(--white);
  font-weight: 500;
}

.table-d td {
  color: var(--text-light);
}

.table-d .check {
  color: var(--success);
  font-size: 1.2rem;
}

.table-d .cross {
  color: var(--danger);
  font-size: 1.2rem;
}

.table-d tbody tr:hover {
  background: rgba(200, 169, 96, 0.04);
}

/* ============ CHARTS ============ */
.chart-container {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 30px 0;
  width: 100%;
  overflow-x: hidden;
}

.chart-container h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.chart-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.chart-canvas-wrap.wide {
  max-width: 100%;
}

/* ============ STATS ============ */
.stats-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ============ RATING ============ */
.rating-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 96, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--gold);
}

/* ============ PROS/CONS ============ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 30px 0;
}

.pros-list h3 {
  color: var(--success);
}

.cons-list h3 {
  color: var(--danger);
}

.pros-list li,
.cons-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(30, 58, 95, 0.4);
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pros-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.cons-list li::before {
  content: '✗';
  color: var(--danger);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============ STEPS ============ */
.steps {
  counter-reset: step;
}

.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-start;
}

.step-num {
  counter-increment: step;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  font-family: var(--font-heading);
}

.step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ============ VIP TIERS ============ */
.vip-tier {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.vip-tier.current {
  border-color: var(--gold);
}

.vip-tier:hover {
  transform: translateY(-4px);
}

.vip-tier .tier-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.vip-tier h3 {
  color: var(--gold);
  margin-bottom: 8px;
}

.vip-tier .tier-points {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============ FAQ / ACCORDION ============ */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============ AUTHOR ============ */
.author-box {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-tertiary));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 50px 0;
}

.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.author-info .author-role {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.author-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============ BREADCRUMB ============ */
.breadcrumb {
  padding: 100px 0 0;
  font-size: 0.85rem;
}

.breadcrumb-list {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.breadcrumb-list li a {
  color: var(--gold);
}

.breadcrumb-list .sep {
  color: var(--text-muted);
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial-card .stars {
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  color: var(--text-light);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-card .author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card .author-date {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============ FORMS ============ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 96, 0.15);
}

.form-control::placeholder {
  color: var(--text-muted);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
}

.form-card h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 8px;
}

.form-card .form-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.form-divider {
  text-align: center;
  color: var(--text-muted);
  margin: 20px 0;
  position: relative;
}

.form-divider::before,
.form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 20px);
  height: 1px;
  background: var(--border);
}

.form-divider::before {
  left: 0;
}

.form-divider::after {
  right: 0;
}

/* ============ BADGES & TAGS ============ */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-gold {
  background: rgba(200, 169, 96, 0.15);
  color: var(--gold);
}

.badge-green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
}

.badge-red {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--info);
}

/* ============ PROGRESS BAR ============ */
.progress-bar {
  background: var(--bg-tertiary);
  border-radius: 10px;
  height: 12px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gold-gradient);
  border-radius: 10px;
  transition: width 1s ease;
}

/* ============ PAYMENT ICONS ============ */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.payment-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.payment-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.payment-item .payment-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.payment-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.payment-item p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============ APP MOCKUP ============ */
.app-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 12px;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.app-mockup-screen {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--bg-secondary);
}

.app-mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-family: var(--font-brand);
  font-size: 2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  padding: 5px 0;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-payments {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-payments span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--danger);
  border-radius: 50%;
  color: var(--danger);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.disclaimer {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 24px 0;
}

.disclaimer p {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* ============ SCROLL TO TOP ============ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 20px;
  z-index: 10000;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  color: var(--text-muted);
  font-size: 0.85rem;
  flex: 1;
}

.cookie-inner a {
  color: var(--gold);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold), var(--gold-light));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-cta {
    display: block;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-split .container {
    flex-direction: column;
  }

  .hero-split .hero-visual {
    flex: auto;
    max-width: 400px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {

  /* Hide Login button on mobile to prevent hamburger overflow */
  .header-actions .btn-outline {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  html {
    font-size: 15px;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .stats-row {
    gap: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .bonus-card-header h3 {
    font-size: 1.4rem;
  }

  .step-item {
    gap: 16px;
  }

  .step-num {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .form-card {
    padding: 28px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-5 {
    grid-template-columns: 1fr;
  }

  .header-actions .btn-outline {
    display: none;
  }

  .stats-row {
    flex-direction: column;
  }

  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============ UTILITY ============ */
.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--text-muted);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.pt-20 {
  padding-top: 20px;
}

.gap-40 {
  gap: 40px;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.inline-block {
  display: inline-block;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.w-full {
  width: 100%;
}