/* General layout */
body {
  margin: 0;
  background: #0A0A0F;
  color: white;
  font-family: 'Arial', sans-serif;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #0A0A0F, #1a0a1a, #0A0A0F);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, #0A0A0F 100%);
  z-index: 2;
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #FFD700;
  border-radius: 50%;
  opacity: 0.2;
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(0); opacity: 0.1; }
  50% { opacity: 0.3; }
  100% { transform: translateY(-100vh); opacity: 0.1; }
}

/* Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 9999px;
  backdrop-filter: blur(4px);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 1s 0.3s forwards;
}
.badge .icon {
  width: 16px;
  height: 16px;
  color: #FFD700;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Title */
.hero-title h1 {
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 800;
  color: #FFD700;
  text-shadow: 0 0 20px #FFD700;
  animation: glow 2s infinite alternate;
}
.hero-title h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #FF1744;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}
@keyframes glow {
  from { text-shadow: 0 0 5px #FFD700; }
  to { text-shadow: 0 0 20px #FFD700; }
}

/* Tagline */
.tagline {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 3rem auto;
  font-size: clamp(1rem, 2vw, 1.25rem);
  animation: fadeIn 1s 0.6s forwards;
}

/* Buttons */
.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  animation: fadeIn 1s 0.8s forwards;
}

.btn {
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn.primary {
  background: linear-gradient(to right, #FFD700, #FFA500);
  color: black;
}
.btn.primary:hover {
  background: linear-gradient(to right, #FFE55C, #FFD700);
  box-shadow: 0 0 20px rgba(255,215,0,0.5);
}
.btn.outline {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}
.btn.outline:hover {
  background: rgba(255,215,0,0.1);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.stat-value {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #FFD700;
}
.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: clamp(0.75rem, 1.5vw, 1rem);
}

.divider-transparent{
  opacity: 1;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s 1.5s forwards;
}
.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,215,0,0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.wheel {
  width: 6px;
  height: 8px;
  background: #FFD700;
  border-radius: 3px;
  animation: scroll 2s infinite;
}
@keyframes scroll {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}
