:root {
  --bg-dark: #0a0a0a;
  --bg-radial: #1a1400;
  --brand-red: #e63946;
  --brand-yellow: #f5c518;
  --brand-yellow-hover: #ffd633;
  --text-dark: #1a1400;
  --text-white: #ffffff;
  --text-gray-light: #999999;
  --text-gray-dark: #555555;
  --card-bg-dark: #111111;
  --card-bg-light: #1a1a1a;
  --border-gray: #333333;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  background-image: radial-gradient(circle at 50% 0%, var(--bg-radial) 0%, var(--bg-dark) 70%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-white);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container Wrapper */
#x9y8z {
  max-width: 800px;
  width: 100%;
  padding: 40px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

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

@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 6px 30px rgba(245, 197, 24, 0.35);
  }
  50% {
    box-shadow: 0 6px 40px rgba(245, 197, 24, 0.55);
  }
}

.animated-item {
  opacity: 0;
  animation: fadeInUp 0.7s ease-out forwards;
}

/* Delay Assignments */
#c3d4e { animation-delay: 0.1s; }
#f5g6h { animation-delay: 0.25s; }
#i7j8k { animation-delay: 0.25s; }
#l9m0n { animation-delay: 0.4s; }
#o1p2q { animation-delay: 0.55s; }
#r3s4t { animation-delay: 0.7s; }
#u5v6w { animation-delay: 0.85s; }
#x7y8z { animation-delay: 0.85s; }
#a9b0c { animation-delay: 0.85s; }

/* 1. Urgency Badge */
#c3d4e {
  background-color: var(--brand-red);
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 8px 22px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.7s ease-out forwards 0.1s, pulseScale 2s infinite ease-in-out 0.8s;
}

/* 2. Main Title */
#f5g6h {
  color: var(--text-white);
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 6px;
}

/* 3. Subtitle */
#i7j8k {
  color: var(--brand-yellow);
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
}

/* 4. Countdown Timer */
#l9m0n {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

#m1n2o {
  color: var(--brand-red);
}

#p3q4r {
  color: var(--brand-red);
  font-size: 0.9rem;
  font-weight: 600;
}

#s5t6u {
  color: var(--text-white);
  font-size: 0.9rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* 5. Image Frame */
#o1p2q {
  max-width: 660px;
  width: 100%;
  background-color: var(--card-bg-dark);
  border-radius: 16px;
  border: 2px solid var(--border-gray);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(245, 197, 24, 0.08);
  margin-bottom: 24px;
}

#v7w8x {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
}

/* 6. Description Card */
#r3s4t {
  max-width: 560px;
  width: 100%;
  background-color: var(--card-bg-light);
  border: 1px solid var(--border-gray);
  border-radius: 14px;
  padding: 22px 30px;
  text-align: center;
  margin-bottom: 24px;
}

#y9z0a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

#b1c2d {
  font-size: 0.95rem;
  color: var(--text-gray-light);
  line-height: 1.5;
}

/* 7. CTA Button */
#u5v6w {
  display: block;
  max-width: 440px;
  width: 100%;
  padding: 18px 40px;
  background-color: var(--brand-yellow);
  color: var(--text-dark);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  animation: fadeInUp 0.7s ease-out forwards 0.85s, pulseGlow 2s infinite ease-in-out 1.5s;
  margin-bottom: 16px;
}

#u5v6w:hover {
  transform: translateY(-2px);
  background-color: var(--brand-yellow-hover);
}

/* 8. Text - Tap Anywhere */
#x7y8z {
  font-size: 0.85rem;
  color: var(--text-gray-light);
  margin-bottom: 6px;
  text-align: center;
}

/* 9. Text - Footer Label */
#a9b0c {
  font-size: 0.75rem;
  color: var(--text-gray-dark);
  text-align: center;
}

/* Mobile Responsive Styles (<= 576px) */
@media (max-width: 576px) {
  #x9y8z {
    padding: 28px 16px 24px 16px;
  }

  #c3d4e {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  #f5g6h {
    font-size: 2rem;
  }

  #i7j8k {
    font-size: 1.25rem;
  }

  #o1p2q {
    border-radius: 12px;
  }

  #r3s4t {
    padding: 18px 20px;
  }

  #u5v6w {
    font-size: 1.15rem;
    padding: 16px 30px;
  }
}
