:root {
  --navy: #002058;
  --gold: #f0a008;
  --gold-hot: #ffb52a;
  --gold-deep: #c47e00;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(240, 160, 8, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overflow-x: clip;
}
html, body { margin: 0; padding: 0; }
body {
  font-family: "Outfit", "Noto Sans Gurmukhi", sans-serif;
  color: #fff;
  background: #000;
  overflow-x: clip;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip { position: absolute; left: -999px; top: 8px; }
.skip:focus {
  left: 8px; z-index: 80;
  background: var(--gold); color: var(--navy); padding: 8px 12px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, var(--gold-hot), var(--gold) 55%, var(--gold-deep));
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(240, 160, 8, 0.7), 0 10px 30px rgba(240, 160, 8, 0.28);
  animation: ctaPulse 2.4s ease-in-out infinite;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
}
.cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 0 6px rgba(240, 160, 8, 0.18), 0 16px 40px rgba(240, 160, 8, 0.4);
}
.cta:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.cta--lg { padding: 20px 36px; font-size: 1.05rem; }

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240, 160, 8, 0.55), 0 10px 30px rgba(240, 160, 8, 0.25); }
  50% { box-shadow: 0 0 0 10px rgba(240, 160, 8, 0), 0 10px 30px rgba(240, 160, 8, 0.35); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 28px;
  background: rgba(5, 5, 8, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(5, 8, 16, 0.92);
  border-bottom-color: rgba(240, 160, 8, 0.25);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img {
  width: 102px; height: 102px; object-fit: contain;
  border-radius: 50%; background: transparent;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 0.78rem; letter-spacing: 0.12em; color: var(--gold); }
.brand-copy span { font-size: 0.72rem; opacity: 0.75; }
.nav-links {
  display: flex; gap: 22px;
  font-size: 0.84rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 600;
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 44px; height: 44px;
  border-radius: 10px; cursor: pointer;
}
.mobile-drawer { display: none; }
@media (max-width: 960px) {
  .nav-links, .site-header .cta { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .mobile-drawer {
    display: flex; flex-direction: column; gap: 18px;
    position: fixed; inset: 126px 16px auto 16px;
    padding: 22px;
    background: #0b1220;
    border: 1px solid var(--line);
    border-radius: 18px;
    transform: translateY(-12px);
    opacity: 0; pointer-events: none; z-index: 49;
  }
  .mobile-drawer.is-open { opacity: 1; transform: none; pointer-events: auto; }
}

.kicker {
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}
.wrap { width: min(1160px, 100%); margin: 0 auto; }

.site-footer {
  scroll-snap-align: start;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: 48px 24px 72px;
  border-top: 1px solid rgba(240, 160, 8, 0.2);
  background: #05070d;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 28px;
  align-items: start;
}
.footer-logo {
  width: 96px; height: 96px; object-fit: contain;
  border-radius: 50%; background: transparent;
}
.footer-qr {
  justify-self: end;
  text-align: center;
}
.footer-qr img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  display: block;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
}
.footer-qr p {
  margin: 10px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-grid a:hover { color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 12px; }
.social-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer-grid .social-icon:hover,
.footer-grid .social-icon:focus-visible {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7);
  border-color: transparent;
  color: #fff;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-qr { justify-self: start; }
}

.note { font-size: 0.78rem; opacity: 0.65; }
.countdown { display: flex; gap: 12px; margin: 24px 0 8px; flex-wrap: wrap; justify-content: center; }
.count-box {
  min-width: 72px;
  background: rgba(0, 32, 88, 0.55);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 8px 8px;
  text-align: center;
}
.count-box b { display: block; font-size: 1.5rem; color: var(--gold); }
.count-box span { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; }
.gurmukhi { font-family: "Noto Sans Gurmukhi", sans-serif; }

.snap {
  min-height: 100svh;
  scroll-snap-align: start;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 90px 24px 80px;
  text-align: center;
}
.snap > div:not(.ticker) {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1100px, 100%);
  min-width: 0;
  max-width: 100%;
}
.snap .bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%; z-index: -2;
  animation: ken 18s ease-in-out infinite alternate;
}
.snap::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,16,40,0.72) 70%, #000);
}
.ticker {
  position: absolute;
  top: 126px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  z-index: 3;
  overflow: hidden;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 32s linear infinite;
}
.ticker-track span {
  flex: 0 0 auto;
  padding: 10px 2.5rem 10px 0;
  font-size: clamp(0.68rem, 1.7vw, 0.85rem);
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 6px 12px; border-radius: 999px;
  letter-spacing: 0.16em; font-size: 0.72rem; font-weight: 800;
}
.live-badge i {
  width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b;
  animation: blink 1s infinite;
}
@keyframes blink { 50% { opacity: 0.2; } }
@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.2rem, 10vw, 7.5rem);
  line-height: 0.85;
  margin: 12px 0;
  text-transform: uppercase;
}
h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.7rem, 6vw, 4.4rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 8px 0 16px;
  max-width: 100%;
  overflow-wrap: break-word;
}
.punch {
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  max-width: 720px;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.82);
}
.cta-space { margin-top: 28px; }

.live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: min(1100px, 100%);
  text-align: left;
}
.live-grid article {
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(240,160,8,0.35);
  padding: 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.live-grid h3 { color: var(--gold); margin: 0 0 8px; }

.places-live {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  width: min(1200px, 100%);
}
.places-live figure {
  margin: 0; position: relative; min-height: 220px; overflow: hidden; border-radius: 12px;
}
.places-live img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.places-live figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.voices-live {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 24px;
}
.voices-live span {
  border: 1px solid var(--gold);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.day-live {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: 1100px;
}
.day-live article {
  min-width: 0;
  border-left: 1px solid var(--gold);
  padding: 12px 14px;
  text-align: left;
  font-size: 0.92rem;
  line-height: 1.35;
}
.day-live b { display: block; color: var(--gold); font-family: "Oswald", sans-serif; font-size: 1.4rem; }

@media (max-width: 800px) {
  .live-grid, .places-live { grid-template-columns: 1fr 1fr; }
  .day-live { grid-template-columns: 1fr 1fr; }
  .site-header { padding: 10px 14px; gap: 10px; }
  .brand img { width: 72px; height: 72px; }
  .brand-copy strong { font-size: 0.68rem; letter-spacing: 0.08em; }
  .brand-copy span { font-size: 0.62rem; }
  .ticker { top: 92px; }
  .mobile-drawer { inset: 92px 16px auto 16px; }
  .snap { padding: 108px 16px 36px; }
  .cta { white-space: normal; text-align: center; }
  .cta--lg { padding: 16px 22px; font-size: 0.92rem; }
}
@media (max-width: 700px) {
  .ticker { top: 92px; letter-spacing: 0.04em; }
  .ticker-track span { padding-right: 1.75rem; }
}
@media (max-width: 560px) {
  .live-grid, .places-live { grid-template-columns: 1fr; }
  .day-live article { padding: 10px 12px; font-size: 0.82rem; }
  .day-live b { font-size: 1.15rem; }
}
