:root {
  --gold-1: #fff3b0;
  --gold-2: #f5c542;
  --gold-3: #b8860b;
  --gold-4: #7a5a00;
  --bg-0: #000;
  --bg-1: #0a0a0a;
}

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

html, body { height: 100%; }

body {
  font-family: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(ellipse at top, rgba(245,197,66,0.12), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(245,197,66,0.08), transparent 60%),
    #000;
  color: #fff;
  overflow: hidden;
  min-height: 100dvh;
}

.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(10px, 2vh, 20px) 16px;
  text-align: center;
  gap: clamp(8px, 1.4vh, 16px);
  position: relative;
}

.page::before {
  content: "";
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(245,197,66,0.03) 0 2px, transparent 2px 12px);
  pointer-events: none;
}

.logo-img {
  width: clamp(90px, 18vh, 150px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(245,197,66,0.55));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.brand {
  font-family: 'Cinzel', 'Poppins', serif;
  font-size: clamp(1.6rem, 4.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(180deg, var(--gold-1) 0%, var(--gold-2) 45%, var(--gold-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(245,197,66,0.35);
  animation: glow 2.6s ease-in-out infinite alternate;
  line-height: 1.05;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 6px rgba(245,197,66,0.4)); }
  to   { filter: drop-shadow(0 0 18px rgba(245,197,66,0.85)); }
}

.subtitles {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
}
.chip {
  font-size: clamp(0.7rem, 1.6vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245,197,66,0.5);
  background: linear-gradient(180deg, rgba(245,197,66,0.15), rgba(245,197,66,0.02));
  color: var(--gold-1);
  box-shadow: 0 0 14px rgba(245,197,66,0.2) inset;
}

.tagline {
  font-style: italic;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  color: #f0e2b6;
  opacity: 0.92;
}

.hindi {
  font-size: clamp(1rem, 2.6vw, 1.35rem);
  font-weight: 700;
  background: linear-gradient(90deg, #fff3b0, #f5c542, #fff3b0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.highlight {
  display: inline-block;
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  font-weight: 800;
  color: #1a1200;
  padding: 6px 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--gold-1), var(--gold-2) 60%, var(--gold-3));
  box-shadow: 0 6px 20px rgba(245,197,66,0.45), inset 0 1px 0 rgba(255,255,255,0.6);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.cta {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: clamp(0.95rem, 2.4vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #fff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  background: linear-gradient(180deg, #2aabee 0%, #0088cc 50%, #0077b3 100%);
  box-shadow:
    0 0 0 2px rgba(0,136,204,0.4),
    0 10px 30px rgba(0,136,204,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
  overflow: hidden;
}
.cta::after {
  content: ""; position: absolute; top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  animation: shine 2.8s infinite;
}
@keyframes shine { 0% { left: -150%; } 60%,100% { left: 150%; } }

.cta:hover:not(:disabled) {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 2px rgba(0,136,204,0.7), 0 14px 40px rgba(0,136,204,0.7);
}
.cta:disabled { cursor: not-allowed; filter: grayscale(0.2) brightness(0.75); }

.cta svg { width: 22px; height: 22px; }

.countdown {
  min-height: 1.2em;
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  color: var(--gold-1);
  letter-spacing: 0.5px;
}

.footer {
  font-size: clamp(0.62rem, 1.4vw, 0.72rem);
  color: #8a7a55;
  max-width: 720px;
  line-height: 1.4;
  padding: 0 4px;
}

@media (max-height: 640px) {
  .logo-img { width: clamp(70px, 14vh, 110px); }
  .page { gap: 6px; }
}
