/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #d4a847;
  --gold-light: #e8c96a;
  --gold-dark: #b8922e;
  --gold-shine: #f5d76e;
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card-hover: #1c1c1c;
  --bg-surface: #111111;
  --text: #ffffff;
  --text-muted: #8a8a8a;
  --text-light: #b3b3b3;
  --border: rgba(212, 168, 71, 0.12);
  --border-subtle: rgba(255,255,255,0.06);
  --gold-gradient: linear-gradient(135deg, #b8922e 0%, #d4a847 25%, #f5d76e 50%, #d4a847 75%, #b8922e 100%);
  --gold-glow: 0 0 40px rgba(212, 168, 71, 0.15);
  --card-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { display: flex; align-items: center; }

.logo-img {
  height: 48px;
  width: auto;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
}

.anna-badge {
  background: #111;
  color: #fff;
  padding: 2px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
}

.anna-badge-sm {
  background: #111;
  color: #fff;
  padding: 2px 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-left: 6px;
}

.nav { display: flex; gap: 32px; }
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}
.nav a:hover { color: var(--gold); }

.nav-btn { display: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 50px rgba(212, 168, 71, 0.3);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(212, 168, 71, 0.4);
}
.btn-outline-gold:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 71, 0.05);
}

.btn-sm { padding: 10px 24px; font-size: 14px; border-radius: 10px; }
.btn-lg { padding: 18px 44px; font-size: 18px; }
.btn-xl { padding: 22px 60px; font-size: 20px; border-radius: 16px; }

.pulse-btn {
  animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 168, 71, 0.2); }
  50% { box-shadow: 0 0 40px rgba(212, 168, 71, 0.4); }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gold-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: var(--gold);
  top: -100px;
  left: -100px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: var(--gold-light);
  bottom: -50px;
  right: -50px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 71, 0.08);
  border: 1px solid rgba(212, 168, 71, 0.25);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 600;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 4px;
}

.anna-inline {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 4px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 8px;
  margin-left: 8px;
  vertical-align: middle;
}

.hero-tagline {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
}

.stat-number {
  display: block;
  font-size: 30px;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.trust-badges {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-badges i { color: var(--gold); font-size: 12px; }

/* ===== PHONE MOCKUP ===== */
.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 300px;
  height: 620px;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 10px;
  border: 2px solid rgba(212, 168, 71, 0.2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 60px rgba(212, 168, 71, 0.08);
  position: relative;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  border-radius: 36px;
  overflow: hidden;
}

.app-preview { height: 100%; display: flex; flex-direction: column; }

.app-header-preview {
  text-align: center;
  padding: 36px 16px 12px;
  border-bottom: 1px solid var(--border);
}

.app-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
}

.app-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ef4444;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 16px;
  letter-spacing: 1px;
}

.app-live-badge i { font-size: 8px; animation: blink 1s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.app-content-preview {
  flex: 1;
  padding: 4px 12px;
  overflow: hidden;
}

.match-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
  border: 1px solid var(--border-subtle);
}

.match-card.mini { padding: 10px 12px; }

.match-league {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
}

.team-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(212, 168, 71, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.score-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.live-score {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
}

.vs {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 800;
}

.odds-row { display: flex; gap: 6px; }

.odd {
  flex: 1;
  text-align: center;
  padding: 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.gold-odd {
  background: rgba(212, 168, 71, 0.12);
  color: var(--gold);
  border: 1px solid rgba(212, 168, 71, 0.25);
}

.app-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.nav-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 10px;
  color: var(--text-muted);
}

.nav-icon i { font-size: 16px; }
.nav-icon.active { color: var(--gold); }

/* Floating cards */
.floating-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--card-shadow);
  animation: float 3s ease-in-out infinite;
}

.floating-card i { color: var(--gold); }

.card-1 { top: 80px; right: -20px; animation-delay: 0s; }
.card-2 { bottom: 100px; left: -30px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== SECTIONS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(212, 168, 71, 0.08);
  border: 1px solid rgba(212, 168, 71, 0.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 18px;
}

/* ===== FEATURES ===== */
.features {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s;
  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: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.feature-card:hover::before { opacity: 1; }

.feature-card.featured {
  border-color: rgba(212, 168, 71, 0.2);
  background: linear-gradient(180deg, rgba(212, 168, 71, 0.05) 0%, var(--bg-card) 100%);
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 71, 0.08);
  border: 1px solid rgba(212, 168, 71, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
  padding: 120px 0;
  background: var(--bg-surface);
  position: relative;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
}

.step {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 36px 32px;
  width: 260px;
  border: 1px solid var(--border-subtle);
  text-align: center;
  position: relative;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.step-connector {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connector-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
}

.download-cta {
  text-align: center;
}

.app-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.app-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.app-meta i { color: var(--gold); font-size: 12px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: var(--bg-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--border);
  transform: translateY(-2px);
}

.stars {
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  gap: 3px;
  font-size: 14px;
}

.testimonial-card > p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 168, 71, 0.1);
  border: 1px solid rgba(212, 168, 71, 0.2);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links { display: flex; gap: 24px; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
  color: #444;
  font-size: 13px;
  margin-bottom: 4px;
}

/* ===== OVERLAY ===== */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.overlay.active { display: flex; }

.loading-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(212, 168, 71, 0.1);
}

.spinner {
  width: 56px;
  height: 56px;
  border: 3px solid rgba(212, 168, 71, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 24px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loading-card p {
  font-size: 17px;
  color: var(--text-muted);
}

/* ===== PERMISSION MODALS ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  z-index: 1100;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.modal-overlay.active { display: flex; }

.modal-card {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 40px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 0 100px rgba(212, 168, 71, 0.08);
}

.modal-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(212, 168, 71, 0.1);
  border: 2px solid rgba(212, 168, 71, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--gold);
}

.modal-icon.denied {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
  color: #ef4444;
}

.modal-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}

.modal-card > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.modal-list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.modal-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-light);
}

.modal-list li i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.how-to-box {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 28px;
}

.how-to-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.how-to-box ol {
  padding-left: 20px;
  color: var(--text-light);
  font-size: 14px;
  line-height: 2;
}

.how-to-box ol li::marker {
  color: var(--gold);
  font-weight: 700;
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.btn-ghost:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-stats { justify-content: center; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; }
  .trust-badges { justify-content: center; flex-wrap: wrap; }
  .hero-image { margin-top: 20px; }
  .floating-card { display: none; }
}

@media (max-width: 768px) {
  .hero-text h1 { font-size: 48px; }
  .anna-inline { font-size: 22px; padding: 3px 16px; letter-spacing: 5px; }
  .hero-image { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 16px; }
  .step-connector { width: 2px; height: 30px; }
  .connector-line { width: 2px !important; height: 100%; }
  .nav { display: none; }
  .nav-btn { display: inline-flex; }
  .section-title { font-size: 30px; }
  .btn-xl { padding: 18px 40px; font-size: 18px; }
  .footer-content { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 24px; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 36px; letter-spacing: 2px; }
  .anna-inline { font-size: 18px; padding: 2px 12px; letter-spacing: 3px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .step { width: 100%; }
  .container { padding: 0 16px; }
}
