/* ========================================
   BetPotes - Single hero page
   Mobile-first
   ======================================== */

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

:root {
  --color-primary: #00e676;
  --color-primary-dark: #00c853;
  --color-secondary: #ffd600;
  --color-accent: #ff6d00;
  --color-hot: #ff1744;
  --color-bg-dark: #0d1117;
  --color-text: #ffffff;
  --color-text-muted: #8b949e;
  --color-border: #30363d;
  --gradient-hero: linear-gradient(135deg, #1a0533 0%, #0d1117 40%, #0a1628 100%);
  --gradient-cta: linear-gradient(135deg, #00e676 0%, #00c853 50%, #009624 100%);
  --gradient-gold: linear-gradient(135deg, #ffd600 0%, #ff6d00 100%);
  --shadow-glow: 0 0 30px rgba(0, 230, 118, 0.3);
}

html {
  scroll-behavior: smooth;
}

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

/* ========================================
   Hero (full viewport)
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(0, 230, 118, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 214, 0, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 109, 0, 0.05) 0%, transparent 40%);
}

/* Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle-1 {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 4px;
  height: 4px;
  background: var(--color-secondary);
  top: 60%;
  left: 80%;
  animation-delay: 1s;
}

.particle-3 {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  top: 30%;
  right: 15%;
  animation-delay: 2s;
}

.particle-4 {
  width: 5px;
  height: 5px;
  background: var(--color-hot);
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.particle-5 {
  width: 3px;
  height: 3px;
  background: var(--color-primary);
  bottom: 20%;
  right: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) scale(1.5);
    opacity: 1;
  }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-accent {
  color: var(--color-primary);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 23, 68, 0.15);
  border: 1px solid rgba(255, 23, 68, 0.4);
  color: var(--color-hot);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.badge-live {
  width: 8px;
  height: 8px;
  background: var(--color-hot);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* Title */
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

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

/* Subtitle */
.hero-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-cta);
  color: #000;
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 18px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: all 0.3s ease;
  animation: ctaPulse 2s ease-in-out infinite;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px rgba(0, 230, 118, 0.5);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(0, 230, 118, 0.3); }
  50% { box-shadow: 0 0 50px rgba(0, 230, 118, 0.5); }
}

.cta-icon {
  font-size: 1.4rem;
}

/* Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   Responsive
   ======================================== */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .cta-button {
    font-size: 1.5rem;
    padding: 22px 56px;
  }

  .hero-stats {
    gap: 48px;
  }

  .stat-value {
    font-size: 2rem;
  }

  .logo-text {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5.5rem;
  }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 0.6s ease-out backwards;
}

.hero-content > :nth-child(1) { animation-delay: 0.1s; }
.hero-content > :nth-child(2) { animation-delay: 0.2s; }
.hero-content > :nth-child(3) { animation-delay: 0.3s; }
.hero-content > :nth-child(4) { animation-delay: 0.4s; }
.hero-content > :nth-child(5) { animation-delay: 0.5s; }
.hero-content > :nth-child(6) { animation-delay: 0.6s; }
