/* ===== LAUNCHING SOON - LOTTO THEME ===== */
.launch-hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      var(--dark) 0%,
      var(--dark-secondary) 50%,
      #0d1b2a 100%
    );
}

/* Floating lottery balls background */
.lotto-bg-balls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-ball {
  position: absolute;
  border-radius: 50%;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.12;
  animation: floatBall 18s ease-in-out infinite;
}

.bg-ball:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 8%;
  left: 5%;
  font-size: 1.6rem;
  background: var(--gold);
  color: var(--dark);
  animation-delay: 0s;
  animation-duration: 20s;
}
.bg-ball:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 18%;
  right: 12%;
  font-size: 1.2rem;
  background: #3498db;
  color: #fff;
  animation-delay: 3s;
  animation-duration: 22s;
}
.bg-ball:nth-child(3) {
  width: 90px;
  height: 90px;
  top: 55%;
  left: 8%;
  font-size: 1.8rem;
  background: var(--gold-light);
  color: var(--dark);
  animation-delay: 1s;
  animation-duration: 25s;
}
.bg-ball:nth-child(4) {
  width: 50px;
  height: 50px;
  top: 70%;
  right: 6%;
  font-size: 1rem;
  background: #e74c3c;
  color: #fff;
  animation-delay: 5s;
  animation-duration: 19s;
}
.bg-ball:nth-child(5) {
  width: 70px;
  height: 70px;
  top: 35%;
  right: 25%;
  font-size: 1.4rem;
  background: var(--gold);
  color: var(--dark);
  animation-delay: 2s;
  animation-duration: 23s;
}
.bg-ball:nth-child(6) {
  width: 55px;
  height: 55px;
  top: 85%;
  left: 30%;
  font-size: 1.1rem;
  background: #2ecc71;
  color: #fff;
  animation-delay: 4s;
  animation-duration: 21s;
}
.bg-ball:nth-child(7) {
  width: 45px;
  height: 45px;
  top: 12%;
  left: 45%;
  font-size: 0.9rem;
  background: #9b59b6;
  color: #fff;
  animation-delay: 6s;
  animation-duration: 24s;
}
.bg-ball:nth-child(8) {
  width: 65px;
  height: 65px;
  top: 45%;
  left: 65%;
  font-size: 1.3rem;
  background: var(--gold);
  color: var(--dark);
  animation-delay: 1.5s;
  animation-duration: 18s;
}

@keyframes floatBall {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(5deg);
  }
  50% {
    transform: translateY(15px) rotate(-3deg);
  }
  75% {
    transform: translateY(-20px) rotate(4deg);
  }
}

/* Hero headline */
.launch-title {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    #fff 50%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
  letter-spacing: -1px;
  line-height: 1.15;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 200% center;
  }
}

.launch-subtitle {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.launch-text {
  font-size: 1.15rem;
  color: var(--gold-light);
  max-width: 560px;
  line-height: 1.7;
}

/* Animated drum / ball machine */
.ball-machine {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.machine-ring {
  position: absolute;
  inset: 0;
  border: 3px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  animation: spinRing 12s linear infinite;
}

.machine-ring:nth-child(2) {
  inset: 20px;
  border-color: rgba(212, 175, 55, 0.15);
  animation-direction: reverse;
  animation-duration: 18s;
}

@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Orbiting lottery balls */
.orbit-ball {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 -3px 6px rgba(0, 0, 0, 0.2),
    inset 0 3px 6px rgba(255, 255, 255, 0.15);
  animation: orbitBall 8s ease-in-out infinite;
}

.orbit-ball.gold {
  background: linear-gradient(135deg, var(--gold), #f5d56e);
  color: var(--dark);
}
.orbit-ball.blue {
  background: linear-gradient(135deg, #2980b9, #6dd5fa);
  color: #fff;
}
.orbit-ball.star {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: var(--dark);
  font-size: 1.4rem;
}

.orbit-ball:nth-child(3) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}
.orbit-ball:nth-child(4) {
  top: 22%;
  right: 0;
  animation-delay: 0.8s;
}
.orbit-ball:nth-child(5) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.6s;
}
.orbit-ball:nth-child(6) {
  top: 22%;
  left: 0;
  animation-delay: 2.4s;
}
.orbit-ball:nth-child(7) {
  bottom: 20%;
  right: 5%;
  animation-delay: 3.2s;
}
.orbit-ball:nth-child(8) {
  bottom: 20%;
  left: 5%;
  animation-delay: 4s;
}
/* Stars */
.orbit-ball:nth-child(9) {
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  animation-delay: 1.2s;
}
.orbit-ball:nth-child(10) {
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  animation-delay: 2.8s;
}

@keyframes orbitBall {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12) translateY(-6px);
  }
}

/* Center "SOON" */
.machine-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.machine-center .soon-badge {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 6px;
  animation: pulseSoon 2s ease-in-out infinite;
}

.machine-center .soon-sub {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  margin-top: 4px;
}

@keyframes pulseSoon {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Feature pills */
.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

.feature-pill {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-light);
  transition: all 0.3s ease;
}

.feature-pill:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.feature-pill i {
  color: var(--gold);
  margin-right: 6px;
}

/* Latest result card */
.launch-result-card {
  background: rgba(26, 26, 46, 0.9);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  margin-top: 2rem;
}

/* Index page utility classes moved from inline style attributes */
.index-gold-strong {
  color: var(--gold);
  font-weight: 700;
}

.index-hero-subheadline {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
}

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

.index-proof-pill {
  background: rgba(212, 175, 55, 0.1);
}

.index-proof-compare {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
  .launch-title {
    font-size: 2.6rem;
  }
  .ball-machine {
    width: 260px;
    height: 260px;
  }
  .orbit-ball {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .launch-title {
    font-size: 2rem;
  }
  .launch-subtitle {
    font-size: 1.2rem;
  }
  .ball-machine {
    width: 220px;
    height: 220px;
  }
  .orbit-ball {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .feature-pills {
    justify-content: center;
  }
}
