/* ═══════════════════════════════════════════
   Bongvip Premium Landing Page - Design System
   ═══════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  /* Colors */
  --bg-primary: #0a0f1a;
  --bg-secondary: #0d1b2a;
  --bg-card: rgba(13, 27, 42, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --bg-glass-border: rgba(255, 255, 255, 0.1);
  
  --green-primary: #0d7a3a;
  --green-dark: #064e25;
  --green-light: #14a74d;
  
  --gold-primary: #FFD700;
  --gold-dark: #F4A100;
  --gold-light: #FFE44D;
  --gold-text: #E8D5A3;
  
  --coral: #FF4E3A;
  --coral-dark: #E63E2C;
  
  --navy-dark: #060d18;
  --navy-medium: #0a1628;
  
  --text-primary: #F5F5F5;
  --text-secondary: rgba(245, 245, 245, 0.7);
  --text-muted: rgba(245, 245, 245, 0.4);
  
  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Orbitron', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;
  
  /* Shadows */
  --shadow-glow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
  --shadow-glow-green: 0 0 30px rgba(13, 122, 58, 0.4);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  
  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset & Base ─── */
*, *::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(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ─── Container ─── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ─── Section Title ─── */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-primary), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-2px);
}

.btn-cta {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: white;
  font-size: 1.1rem;
  padding: 16px 40px;
  box-shadow: 0 4px 20px rgba(13, 122, 58, 0.4);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(13, 122, 58, 0.6);
}

.btn-pulse {
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(255, 215, 0, 0.6); }
}

/* ─── Glassmorphism Card ─── */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}
.glass-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), inset 0 0 30px rgba(255, 215, 0, 0.03);
  transform: translateY(-4px);
}

/* ─── Scroll Animation Classes ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  transition: background var(--transition-base);
}
.navbar.scrolled {
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-width);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
}
.nav-logo .logo-bong {
  color: var(--text-primary);
}
.nav-logo .logo-vip {
  color: var(--gold-primary);
}
.nav-logo .logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.08);
}
.nav-links .live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
  margin-right: 4px;
  animation: blink 1.5s ease-in-out infinite;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-actions .btn {
  white-space: nowrap;
  padding: 8px 20px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--navy-medium) 50%, var(--bg-secondary) 100%);
  padding-top: 70px;
}

/* Particle Background */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particle-float 8s ease-in-out infinite;
}
.particle:nth-child(1) { width: 4px; height: 4px; background: var(--gold-primary); top: 20%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { width: 6px; height: 6px; background: var(--green-light); top: 60%; left: 20%; animation-delay: 1s; animation-duration: 9s; }
.particle:nth-child(3) { width: 3px; height: 3px; background: var(--gold-light); top: 30%; left: 50%; animation-delay: 2s; animation-duration: 6s; }
.particle:nth-child(4) { width: 5px; height: 5px; background: var(--green-primary); top: 70%; left: 70%; animation-delay: 3s; animation-duration: 8s; }
.particle:nth-child(5) { width: 4px; height: 4px; background: var(--gold-primary); top: 40%; left: 85%; animation-delay: 4s; animation-duration: 10s; }
.particle:nth-child(6) { width: 3px; height: 3px; background: var(--green-light); top: 80%; left: 40%; animation-delay: 1.5s; animation-duration: 7s; }
.particle:nth-child(7) { width: 5px; height: 5px; background: var(--gold-dark); top: 15%; left: 65%; animation-delay: 2.5s; animation-duration: 9s; }
.particle:nth-child(8) { width: 4px; height: 4px; background: var(--green-primary); top: 55%; left: 90%; animation-delay: 0.5s; animation-duration: 8s; }

@keyframes particle-float {
  0% { opacity: 0; transform: translateY(0) translateX(0); }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-120px) translateX(40px); }
}

/* Hero Glow Orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow.glow-1 {
  width: 400px; height: 400px;
  background: rgba(13, 122, 58, 0.15);
  top: 10%; left: -5%;
}
.hero-glow.glow-2 {
  width: 300px; height: 300px;
  background: rgba(255, 215, 0, 0.08);
  bottom: 10%; right: 10%;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(13, 122, 58, 0.2);
  border: 1px solid rgba(13, 122, 58, 0.3);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-light);
  margin-bottom: 20px;
}
.hero-badge svg { width: 14px; height: 14px; }

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat {
  text-align: center;
}
.hero-stat .stat-value {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-primary);
}
.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-visual {
  flex: 1;
  max-width: 520px;
  position: relative;
}
.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

/* Partner Strip */
.partner-strip {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}
.partner-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.partner-strip img {
  height: 60px;
  border-radius: 8px;
  max-width: 100%;
}
.partner-strip .partner-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 20px;
  white-space: nowrap;
}

/* Live Button Floating */
.live-float-btn {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  border-radius: 30px;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 20px rgba(255, 78, 58, 0.4);
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
}
.live-float-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 30px rgba(255, 78, 58, 0.6);
}
.live-float-btn img {
  height: 20px;
}
.live-float-btn .live-indicator {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   SPORTS SECTION
   ═══════════════════════════════════════════ */
.sports-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
}
.sports-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.sport-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 16px;
  background: linear-gradient(180deg, rgba(13, 122, 58, 0.15) 0%, rgba(6, 78, 37, 0.25) 40%, rgba(10, 15, 26, 0.95) 100%);
  border: 1px solid rgba(13, 122, 58, 0.2);
  transition: all var(--transition-base);
}
.sport-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 30px rgba(13, 122, 58, 0.3);
  transform: translateY(-6px);
}
.sport-card img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 85%;
  object-fit: contain;
  transition: transform var(--transition-base);
}
.sport-card:hover img {
  transform: translate(-50%, -55%) scale(1.05);
}
.sport-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 1;
}
.sport-card .card-provider {
  position: relative;
  z-index: 2;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.cockfight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 500px;
  margin: 0 auto 32px;
}
.cockfight-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 122, 58, 0.2), rgba(6, 78, 37, 0.3));
  border: 1px solid rgba(13, 122, 58, 0.3);
  cursor: pointer;
  transition: all var(--transition-base);
}
.cockfight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(13, 122, 58, 0.3);
}
.cockfight-card img {
  height: 80%;
  object-fit: contain;
}
.cockfight-card .card-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  white-space: nowrap;
}

.section-cta {
  text-align: center;
  margin-top: 20px;
}

/* ═══════════════════════════════════════════
   PROMOTIONS SECTION
   ═══════════════════════════════════════════ */
.promo-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.promo-highlight {
  text-align: center;
  margin-bottom: 30px;
}
.promo-highlight .promo-value {
  font-family: var(--font-accent);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promo-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 24px;
}

.promo-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.promo-slide {
  min-width: 100%;
  padding: 0 4px;
}
.promo-slide img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform var(--transition-base);
}
.promo-slide img:hover {
  transform: scale(1.02);
}

.promo-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
.promo-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}
.promo-arrow:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: var(--gold-primary);
}
.promo-dots {
  display: flex;
  gap: 8px;
}
.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-glass-border);
  cursor: pointer;
  transition: all var(--transition-base);
}
.promo-dot.active {
  background: var(--gold-primary);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.promo-banner-deposit {
  margin-top: 24px;
  text-align: center;
}
.promo-banner-deposit img {
  max-height: 200px;
  border-radius: 12px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   CASINO SECTION
   ═══════════════════════════════════════════ */
.casino-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.casino-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.casino-tab {
  padding: 10px 24px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  cursor: pointer;
  transition: all var(--transition-base);
}
.casino-tab:hover, .casino-tab.active {
  color: var(--gold-primary);
  border-color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.08);
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.casino-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  transition: all var(--transition-base);
  text-align: center;
}
.casino-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.casino-card .card-image {
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(13, 122, 58, 0.05), rgba(6, 78, 37, 0.1));
}
.casino-card .card-image img {
  height: 90%;
  object-fit: contain;
  transition: transform var(--transition-base);
}
.casino-card:hover .card-image img {
  transform: scale(1.08);
}

.casino-card .card-info {
  padding: 16px;
}
.casino-card .card-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.casino-card .btn-play {
  padding: 8px 20px;
  font-size: 0.8rem;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  color: white;
  border-radius: 20px;
  font-weight: 600;
  transition: all var(--transition-base);
  display: inline-block;
}
.casino-card:hover .btn-play {
  box-shadow: 0 4px 16px rgba(13, 122, 58, 0.4);
}

/* ═══════════════════════════════════════════
   APP DOWNLOAD SECTION
   ═══════════════════════════════════════════ */
.app-section {
  padding: var(--section-padding);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 122, 58, 0.1), transparent);
  pointer-events: none;
}

.app-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.app-visual {
  flex: 1;
  max-width: 400px;
  position: relative;
}
.app-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.app-info {
  flex: 1;
}
.app-info .section-title {
  text-align: left;
}
.app-info .app-description {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.app-stat {
  padding: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: 12px;
  text-align: center;
}
.app-stat .stat-number {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
}
.app-stat .stat-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.app-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  border-radius: 12px;
  color: var(--text-primary);
  transition: all var(--transition-base);
}
.download-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.08);
}
.download-btn svg { width: 28px; height: 28px; }
.download-btn .dl-text {
  display: flex;
  flex-direction: column;
}
.download-btn .dl-small {
  font-size: 0.7rem;
  color: var(--text-muted);
}
.download-btn .dl-big {
  font-size: 0.95rem;
  font-weight: 700;
}

/* ═══════════════════════════════════════════
   TRUST SECTION
   ═══════════════════════════════════════════ */
.trust-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.trust-card {
  padding: 32px 24px;
  text-align: center;
  border-radius: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--bg-glass-border);
  transition: all var(--transition-base);
}
.trust-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.trust-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(13, 122, 58, 0.2), rgba(255, 215, 0, 0.1));
}
.trust-icon svg {
  width: 30px;
  height: 30px;
  color: var(--gold-primary);
}

.trust-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.trust-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.trust-badge {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(13, 122, 58, 0.1), rgba(255, 215, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.trust-badge svg {
  width: 40px;
  height: 40px;
  color: var(--gold-primary);
  flex-shrink: 0;
}
.trust-badge p {
  font-size: 0.95rem;
  color: var(--gold-text);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--gold-text);
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.footer-col a:hover {
  color: var(--gold-primary);
}

.footer-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.payment-icon {
  height: 28px;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}
.payment-icon:hover {
  opacity: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom .responsible {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom .responsible svg {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
}

/* ═══════════════════════════════════════════
   POPUP / MODAL
   ═══════════════════════════════════════════ */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-card {
  width: 420px;
  max-width: 90vw;
  background: linear-gradient(145deg, rgba(13, 27, 42, 0.95), rgba(10, 15, 26, 0.98));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.1);
  transform: scale(0.9) translateY(20px);
  transition: transform var(--transition-smooth);
}
.popup-overlay.show .popup-card {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-secondary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.popup-close:hover {
  background: rgba(255, 78, 58, 0.3);
  color: white;
}

.popup-header {
  text-align: center;
  margin-bottom: 28px;
}
.popup-header .popup-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(244, 161, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-header .popup-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-primary);
}
.popup-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.popup-header p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  position: relative;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  outline: none;
}
.form-group input::placeholder {
  color: var(--text-muted);
}
.form-group input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}
.form-group .input-icon {
  position: absolute;
  left: 14px;
  bottom: 14px;
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}
.form-group input:focus ~ .input-icon,
.form-group input:focus + .input-icon {
  color: var(--gold-primary);
}

.popup-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #1a1a1a;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}
.popup-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.5);
}
.popup-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.popup-footer {
  text-align: center;
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.popup-success {
  text-align: center;
  padding: 20px 0;
}
.popup-success .success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-success .success-icon svg {
  width: 32px;
  height: 32px;
  color: white;
}
.popup-success h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.popup-success p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════
   STICKY MOBILE CTA
   ═══════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  padding: 12px 16px;
  background: rgba(10, 15, 26, 0.95);
  backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  gap: 10px;
  align-items: center;
}
.sticky-cta .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE - TABLET
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  .nav-actions .btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  
  .hero .container { flex-direction: column; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: 2.8rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 350px; }
  
  .sports-grid { grid-template-columns: repeat(3, 1fr); }
  .casino-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  
  .app-content { flex-direction: column; text-align: center; }
  .app-info .section-title { text-align: center; }
  .app-buttons { justify-content: center; }
  
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE - MOBILE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .section-title { font-size: 1.8rem; }
  
  .nav-actions .btn {
    padding: 6px 10px;
    font-size: 0.7rem;
  }
  .nav-logo {
    font-size: 1.3rem;
  }
  .nav-logo .logo-icon {
    width: 30px;
    height: 30px;
  }
  
  .hero-title { font-size: 2.2rem; }
  .hero-description { font-size: 1rem; }
  .hero-stats { gap: 24px; }
  .hero-stat .stat-value { font-size: 1.3rem; }
  
  .sports-grid { 
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .sport-card { aspect-ratio: 3/4.5; }
  .sports-grid .sport-card:last-child {
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
  }
  
  .cockfight-grid { 
    grid-template-columns: 1fr 1fr; 
    max-width: 100%;
  }
  
  .promo-highlight .promo-value { font-size: 1.6rem; }
  
  .casino-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .casino-tabs { gap: 6px; }
  .casino-tab { padding: 8px 16px; font-size: 0.8rem; }
  
  .app-visual { max-width: 300px; margin: 0 auto; }
  .app-stat .stat-number { font-size: 1.4rem; }
  
  .trust-grid { 
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .trust-card { padding: 24px 16px; }
  
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .live-float-btn { bottom: 24px; right: 16px; padding: 8px 16px; font-size: 0.8rem; }
  
  .partner-strip .container {
    flex-wrap: wrap;
    gap: 8px;
  }
  .partner-strip img { height: 40px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  
  .sports-grid { grid-template-columns: 1fr 1fr; }
  
  .casino-grid { grid-template-columns: 1fr 1fr; }
  
  .trust-grid { grid-template-columns: 1fr; }
  
  .app-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .app-buttons { flex-direction: column; }
  .download-btn { justify-content: center; }
  
  .popup-card { padding: 28px 20px; }
}

/* ─── Mobile Nav Menu ─── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(10, 15, 26, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all var(--transition-fast);
}
.mobile-nav a:hover, .mobile-nav a.active {
  color: var(--gold-primary);
  background: rgba(255, 215, 0, 0.08);
}
.mobile-nav .mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav .mobile-nav-actions .btn {
  width: 100%;
  justify-content: center;
}
