/* ========================================
   BetElite - Premium Betting Platform
   Dark Theme with Gold Accents
   Mobile-First + Ultra Visual Effects
   ======================================== */

:root {
  --bg-primary: #060911;
  --bg-secondary: #0d1117;
  --bg-card: #141922;
  --bg-card-hover: #1c2333;
  --bg-glass: rgba(20, 25, 34, 0.65);

  --gold-primary: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --gold-gradient: linear-gradient(135deg, #f59e0b, #f97316, #ef4444);
  --gold-gradient-soft: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  --gold-glow: 0 0 20px rgba(245, 158, 11, 0.3), 0 0 60px rgba(245, 158, 11, 0.1);

  --green: #10b981;
  --green-dark: #059669;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --red: #ef4444;
  --cyan: #06b6d4;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --border-color: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(245, 158, 11, 0.15);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 30px rgba(245, 158, 11, 0.2);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 64px;
  --mobile-cta-height: 68px;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

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;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

ul { list-style: none; }

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

input, select, textarea {
  font-family: inherit;
  font-size: 16px;
  outline: none;
  -webkit-appearance: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

/* ========== TYPOGRAPHY ========== */
.text-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.08);
  color: var(--gold-primary);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 158, 11, 0.15);
  backdrop-filter: blur(8px);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-secondary);
  font-size: clamp(0.92rem, 2vw, 1.08rem);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  min-height: 44px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: var(--shadow-gold);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: none;
}

.btn-primary:hover::after {
  animation: btn-shimmer 0.6s ease forwards;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(245, 158, 11, 0.35);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

@keyframes btn-shimmer {
  to { transform: translateX(100%); }
}

.btn-outline {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: #000;
}

.btn-ghost {
  color: var(--text-primary);
  border-color: var(--border-light);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(245, 158, 11, 0.06);
}

.btn-sm { padding: 8px 20px; font-size: 0.85rem; min-height: 38px; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; min-height: 52px; }
.btn-full { width: 100%; justify-content: center; }

.btn-pulse {
  animation: cta-pulse 2.5s infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(245, 158, 11, 0.2); }
  50% { box-shadow: 0 4px 40px rgba(245, 158, 11, 0.45); }
}

/* ========== PRELOADER ========== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-ring {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-light);
  border-top-color: var(--gold-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ========== HEADER ========== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition-base);
}

#header.scrolled {
  background: rgba(6, 9, 17, 0.88);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 400;
  z-index: 1001;
}

.logo i {
  color: var(--gold-primary);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.4));
}

.logo strong {
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links a {
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.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); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-1 {
  width: 450px;
  height: 450px;
  background: var(--gold-primary);
  top: -8%;
  right: -8%;
  opacity: 0.12;
  animation: glow-drift 8s ease-in-out infinite alternate;
}

.hero-glow-2 {
  width: 350px;
  height: 350px;
  background: var(--purple);
  bottom: -5%;
  left: -8%;
  opacity: 0.08;
  animation: glow-drift 10s ease-in-out infinite alternate-reverse;
}

.hero-glow-3 {
  width: 200px;
  height: 200px;
  background: var(--cyan);
  top: 40%;
  left: 50%;
  opacity: 0.05;
  animation: glow-drift 12s ease-in-out infinite alternate;
}

@keyframes glow-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(30px, -20px) scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.15);
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(245, 158, 11, 0); }
  50% { box-shadow: 0 0 20px rgba(245, 158, 11, 0.1); }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Stats bar with animated gradient border */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(139, 92, 246, 0.3), rgba(245, 158, 11, 0.3));
  background-size: 200% 200%;
  animation: gradient-rotate 4s ease infinite;
  padding: 1px;
}

@keyframes gradient-rotate {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-stats-inner {
  display: contents;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 22px 16px;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
}

.hero-stat:first-child {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.hero-stat:last-child {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.hero-stat-number {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.hero-stat-divider {
  display: none;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
  color: var(--text-muted);
  font-size: 1.1rem;
  padding: 8px;
  display: block;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* ========== TICKER ========== */
.ticker {
  background: linear-gradient(90deg, var(--bg-secondary), rgba(245, 158, 11, 0.03), var(--bg-secondary));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  padding: 11px 0;
  position: relative;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-secondary), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-secondary), transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: scroll-ticker 25s linear infinite;
}

.ticker-content {
  display: flex;
  gap: 36px;
  padding: 0 18px;
}

.ticker-content span {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.ticker-content span i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

@keyframes scroll-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== FEATURES ========== */
.features {
  padding: 60px 0;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 28px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.08);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.2rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ========== ABOUT ========== */
.about {
  background: var(--bg-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.about-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.about-highlight:hover {
  background: rgba(245, 158, 11, 0.03);
}

.about-highlight-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.about-highlight h4 {
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.about-highlight p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-main {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 44px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: center;
  overflow: hidden;
  transition: all var(--transition-base);
}

.about-card-main:hover {
  border-color: var(--border-glow);
  box-shadow: var(--gold-glow);
}

.about-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.about-card-content {
  position: relative;
  z-index: 2;
}

.about-card-content i {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 18px;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.3));
}

.about-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.about-card-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-floating-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(20, 25, 34, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
  box-shadow: var(--shadow-md);
}

.floating-badge i {
  color: var(--gold-primary);
}

.badge-1 { top: 10%; left: -5%; animation-delay: 0s; }
.badge-2 { bottom: 18%; right: -2%; animation-delay: 1.3s; }
.badge-3 { top: 5%; right: -2%; animation-delay: 2.6s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ========== SPORTS ========== */
.sports {
  background: var(--bg-secondary);
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sport-card {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.sport-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.04), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.sport-card:hover::after { opacity: 1; }

.sport-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 30px rgba(245, 158, 11, 0.05);
}

.sport-card-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 5.5rem;
  opacity: 0.03;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.sport-card:hover .sport-card-bg { opacity: 0.06; }

.sport-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.sport-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.sport-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.sport-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-primary);
  transition: gap var(--transition-fast);
  position: relative;
  z-index: 1;
}

.sport-card:hover .sport-card-link {
  gap: 10px;
}

/* ========== CASINO ========== */
.casino {
  background: var(--bg-primary);
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.casino-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.casino-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-md);
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.casino-card:hover::before { opacity: 1; }

.casino-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
  background: var(--bg-card-hover);
}

.casino-card-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: transform var(--transition-base);
}

.casino-card:hover .casino-card-icon {
  transform: scale(1.1);
}

.casino-card h3 {
  font-size: 0.92rem;
  font-weight: 600;
}

.casino-card .casino-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.casino-cta {
  text-align: center;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  background: var(--bg-secondary);
}

.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}

.step {
  flex: 1;
  max-width: 320px;
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition-base);
}

.step:hover {
  transform: translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(245, 158, 11, 0.05);
}

.step-number {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.82rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.step-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.08);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 14px auto 18px;
  border: 1px solid rgba(245, 158, 11, 0.12);
}

.step h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  color: var(--gold-primary);
  font-size: 1rem;
  opacity: 0.35;
  padding-top: 60px;
}

/* ========== PROMOTIONS ========== */
.promotions {
  background: var(--bg-primary);
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.promo-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.promo-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.promo-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.promo-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========== PAYMENTS ========== */
.payments {
  background: var(--bg-secondary);
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.payment-card img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.payment-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

.payment-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(245, 158, 11, 0.05);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--bg-primary);
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  touch-action: pan-y;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: 100%;
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--gold-primary);
  opacity: 0.12;
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold-primary);
  font-size: 1rem;
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: #000;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: left;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all var(--transition-base);
}

.slider-dot.active {
  background: var(--gold-primary);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

/* ========== FAQ ========== */
.faq {
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-glow);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition-fast);
  gap: 12px;
  min-height: 56px;
}

.faq-item.active .faq-question {
  color: var(--gold-primary);
}

.faq-question i {
  font-size: 0.8rem;
  transition: transform var(--transition-base);
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--gold-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Split Layout */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}

/* Visual Panel (Left) */
.contact-visual {
  position: relative;
  padding: 48px 40px;
  background: linear-gradient(160deg, #0f1520 0%, #141922 50%, rgba(245, 158, 11, 0.06) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-visual-bg {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-visual-content {
  position: relative;
  z-index: 1;
}

.contact-visual h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin: 14px 0;
}

.contact-visual-content > p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-trust-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.contact-trust-item i {
  color: var(--gold-primary);
  font-size: 0.85rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 8px;
  flex-shrink: 0;
}

.contact-visual-cta .btn {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.2);
  background: #25d366;
  color: #fff;
  border: none;
}

.contact-visual-cta .btn:hover {
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

/* Form Panel (Right) */
.contact-split .contact-form-wrapper {
  padding: 0;
  border-radius: 0;
  background: none;
  animation: none;
}

.contact-split .contact-form {
  padding: 40px 36px;
  background: var(--bg-card);
  border-radius: 0;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 24px;
}

.contact-form-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.contact-form-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.form-group {
  position: relative;
  margin-bottom: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 16px;
  transition: all var(--transition-fast);
  min-height: 50px;
}

.form-group input::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.08);
}

.form-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.form-group input:focus ~ i,
.form-group select:focus ~ i { color: var(--gold-primary); }

.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-secondary); color: var(--text-primary); }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.contact-form.submitted {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  text-align: center;
}

.form-success-icon {
  font-size: 2.8rem;
  color: var(--green);
  margin-bottom: 14px;
  animation: success-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes success-pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.form-success h3 { font-size: 1.4rem; margin-bottom: 10px; }
.form-success p { color: var(--text-secondary); max-width: 320px; font-size: 0.9rem; }

/* Bottom Contact Strip */
.contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 8px 12px;
}

.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  flex: 1;
  justify-content: center;
}

.contact-strip-item:hover {
  background: rgba(245, 158, 11, 0.04);
}

.contact-strip-item i {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-strip-item div {
  display: flex;
  flex-direction: column;
}

.contact-strip-item strong {
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-strip-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.contact-strip-divider {
  width: 1px;
  height: 36px;
  background: var(--border-color);
  flex-shrink: 0;
}

/* Contact Responsive */
@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    padding: 36px 28px;
  }

  .contact-trust-items {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .contact-split .contact-form {
    padding: 32px 28px;
  }
}

@media (max-width: 768px) {
  .contact-strip {
    flex-wrap: wrap;
    gap: 0;
    padding: 6px;
  }

  .contact-strip-item {
    flex: 1 1 45%;
    padding: 12px 14px;
    justify-content: flex-start;
  }

  .contact-strip-divider { display: none; }

  .contact-trust-items { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .contact-visual { padding: 28px 20px; }
  .contact-split .contact-form { padding: 28px 20px; }
  .contact-strip-item { flex: 1 1 100%; }
  .contact-strip-item i { font-size: 1.1rem; }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 52px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 14px 0 18px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.footer-qr-row {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}

.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-qr img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
  background: #fff;
}

.footer-qr img:hover {
  transform: scale(1.08);
  border-color: var(--border-glow);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.15);
}

.footer-qr span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-links h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 18px 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  gap: 10px;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.footer-badge i {
  color: var(--green);
  font-size: 0.68rem;
}

/* ========== FLOATING WHATSAPP ========== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-base);
  animation: pulse-whatsapp 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  left: 62px;
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  border: 1px solid var(--border-color);
}

.floating-whatsapp:hover .whatsapp-tooltip {
  opacity: 1;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.55), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: #000;
  border-color: var(--gold-primary);
}

/* ========== MOBILE CTA BAR ========== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  min-height: var(--mobile-cta-height);
  background: rgba(6, 9, 17, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  z-index: 998;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  align-items: center;
  gap: 10px;
}

.mobile-cta-bar .btn {
  flex: 1;
  font-size: 0.88rem;
  padding: 12px 16px;
}

/* ========== ANIMATIONS ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-down"] { transform: translateY(-24px); }
[data-animate="fade-left"] { transform: translateX(32px); }
[data-animate="fade-right"] { transform: translateX(-32px); }

[data-animate].animated {
  opacity: 1;
  transform: translate(0) !important;
}

/* ========== MOBILE NAV OVERLAY ========== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* ========== RESPONSIVE: TABLET (1024px) ========== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .sports-grid { grid-template-columns: repeat(2, 1fr); }
  .casino-grid { grid-template-columns: repeat(3, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

/* ========== RESPONSIVE: MOBILE NAV (900px) ========== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-secondary);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 24px 24px;
    gap: 2px;
    transition: right var(--transition-base);
    border-left: 1px solid var(--border-color);
    z-index: 1000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(245, 158, 11, 0.06);
  }

  .hamburger { display: flex; }

  .nav-actions .btn { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step { max-width: 100%; }

  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }
}

/* ========== RESPONSIVE: MOBILE (768px) ========== */
@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .sports-grid { grid-template-columns: 1fr; }
  .casino-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .payments-grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    max-width: 360px;
  }

  .hero-stat:first-child { border-radius: var(--radius-lg) 0 0 0; }
  .hero-stat:nth-child(2) { border-radius: 0 var(--radius-lg) 0 0; }
  .hero-stat:nth-child(3) { border-radius: 0 0 0 var(--radius-lg); }
  .hero-stat:last-child { border-radius: 0 0 var(--radius-lg) 0; }

  .hero-cta {
    flex-direction: column;
    padding: 0 16px;
  }
  .hero-cta .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .floating-badge { display: none; }

  .mobile-cta-bar {
    display: flex;
  }

  .floating-whatsapp {
    bottom: calc(var(--mobile-cta-height) + 16px);
  }

  .back-to-top {
    bottom: calc(var(--mobile-cta-height) + 16px);
  }

  .footer {
    padding-bottom: var(--mobile-cta-height);
  }

  .hero-scroll-indicator { display: none; }

  .payment-card {
    padding: 14px 10px;
  }

  .payment-card img { max-height: 36px; }

  .testimonial-card { padding: 28px 20px; }
  .testimonial-text { font-size: 0.92rem; }
  .testimonial-card::before { font-size: 3rem; top: 10px; left: 16px; }
}

/* ========== RESPONSIVE: SMALL MOBILE (480px) ========== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .section { padding: 48px 0; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 0.88rem; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card {
    display: flex;
    gap: 14px;
    text-align: left;
    padding: 20px;
  }
  .feature-icon { margin: 0; min-width: 48px; }
  .feature-card h3 { font-size: 0.95rem; }

  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .casino-card:not(.has-image) { aspect-ratio: 1; }

  .payments-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero h1 { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
  .hero-content { padding: 24px 0; }
  .hero-cta { margin-bottom: 36px; padding: 0; }

  .hero-stats {
    max-width: 100%;
  }

  .hero-stat { padding: 16px 10px; }
  .hero-stat-number { font-size: 1.1rem; }
  .hero-stat-label { font-size: 0.62rem; }

  .contact-form { padding: 24px 18px; }
  .contact-form h3 { font-size: 1.15rem; }

  .faq-question {
    padding: 16px;
    font-size: 0.88rem;
    min-height: 52px;
  }

  .faq-answer-inner {
    padding: 0 16px 16px;
    font-size: 0.85rem;
  }

  .step { padding: 28px 20px; }
  .step-icon { width: 56px; height: 56px; font-size: 1.2rem; }

  .sport-card:not(.has-image) { padding: 24px 20px; }

  .promo-card:not(.has-image) { padding: 22px 20px; }

  .about-highlight { padding: 10px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
  .footer-links h4 { grid-column: 1 / -1; }
}

/* ========== RESPONSIVE: TINY MOBILE (360px) ========== */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.6rem; }
  .hero-stat-number { font-size: 1rem; }
  .hero-stat-label { font-size: 0.58rem; }
  .hero-stat { padding: 14px 8px; }
  .btn-lg { padding: 14px 24px; font-size: 0.95rem; }

  .payments-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-card img { max-height: 30px; }
  .footer-qr-row { gap: 10px; }
  .footer-qr img { width: 64px; height: 64px; }
}

/* ========== LANDSCAPE MOBILE FIX ========== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }
  .hero-content { padding: 20px 0; }
  .hero-cta { margin-bottom: 24px; }
}

/* ========== LOGO IMAGE ========== */
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

.logo i { display: none; }

/* ========== HERO BACKGROUND IMAGE ========== */
.hero[style*="background-image"] {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero[style*="background-image"] .hero-bg-effects {
  background: linear-gradient(
    180deg,
    rgba(6, 9, 17, 0.55) 0%,
    rgba(6, 9, 17, 0.7) 50%,
    rgba(6, 9, 17, 0.9) 100%
  );
}

/* ========== ABOUT IMAGE ========== */
.about-image {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base);
}

.about-image:hover {
  transform: scale(1.02);
}

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
}

/* ========== SPORT CARDS WITH IMAGES ========== */
.sport-card.has-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sport-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.sport-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform var(--transition-slow);
}

.sport-card.has-image:hover .sport-card-img img {
  transform: scale(1.08);
}

.sport-card-body {
  padding: 20px 22px 22px;
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sport-card-body p {
  flex: 1;
}

.sport-card.has-image .sport-card-bg { display: none; }

/* ========== CASINO CARDS WITH IMAGES ========== */
.casino-card.has-image {
  aspect-ratio: auto;
  padding: 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}

.casino-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.casino-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--transition-slow);
}

.casino-card.has-image:hover .casino-card-img img {
  transform: scale(1.08);
}

.casino-card-overlay {
  padding: 14px 16px;
  text-align: center;
  background: var(--bg-card);
}

.casino-card-overlay h3 {
  font-size: 0.92rem;
  font-weight: 600;
}

.casino-card.has-image .casino-card-icon { display: none; }

.casino-card:not(.has-image) .casino-card-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  flex: 1;
  justify-content: center;
}

/* ========== PROMO CARDS WITH IMAGES ========== */
.promo-card.has-image {
  padding: 0;
  overflow: hidden;
}

.promo-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.promo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--transition-slow);
}

.promo-card.has-image:hover .promo-card-img img {
  transform: scale(1.06);
}

.promo-card-body {
  padding: 20px 22px 22px;
}

/* ========== APP PROMO SECTION ========== */
.app-promo {
  background: var(--bg-primary);
}

.app-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}

.app-promo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.app-promo-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-lg);
}

.app-promo-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.app-promo-cta {
  text-align: center;
}

/* ========== IMAGE RESPONSIVE OVERRIDES ========== */
@media (max-width: 768px) {
  .sport-card-img { aspect-ratio: 16 / 9; }
  .casino-card-img { aspect-ratio: 1; }
  .promo-card-img { aspect-ratio: 16 / 10; }
  .app-promo-grid { grid-template-columns: 1fr; }
  .app-promo-card img { aspect-ratio: auto; object-position: center center; }
  .about-image { max-width: 100%; border-radius: var(--radius-md); }
  .logo-img { width: 32px; height: 32px; }
  .footer-qr-row { justify-content: center; }
}

@media (max-width: 480px) {
  .sport-card-img { aspect-ratio: 4 / 3; }
  .casino-card-img { aspect-ratio: 1; }
  .promo-card-img { aspect-ratio: 4 / 3; }
  .logo-img { width: 28px; height: 28px; }
  .casino-card.has-image { aspect-ratio: auto; }
  .footer-qr-row { flex-wrap: wrap; justify-content: center; }
  .contact-strip-item span { font-size: 0.68rem; word-break: break-all; }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero-glow { animation: none; }
  .floating-badge { animation: none; }
  .ticker-track { animation: none; }
  .hero-scroll-indicator { animation: none; }
  .btn-primary::after { display: none; }
}
