/* =========================================================
   UTTARAKHAND IDOL – SEASON 2 / RISING STAR DANCE KE DHURANDHAR
   Home page stylesheet
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
img, video { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; }

/* ---------- Design Tokens ---------- */
:root{
  --navy-950:#0a0f24;
  --navy-900:#0f1a3d;
  --navy-800:#152451;
  --purple-800:#341b5c;
  --purple-700:#4a2373;
  --maroon-700:#7a1730;
  --orange-500:#ff7a1a;
  --orange-600:#e85d04;
  --gold-400:#f5c451;
  --gold-300:#ffdd7a;
  --gold-500:#d9a017;
  --cream-50:#fff9ef;
  --white:#ffffff;
  --ink-900:#161226;
  --ink-700:#3a3550;
  --ink-500:#665f80;
  --line:#ece6f5;
  --shadow-sm: 0 2px 10px rgba(20,10,50,.08);
  --shadow-md: 0 10px 30px rgba(20,10,50,.14);
  --shadow-lg: 0 22px 60px rgba(20,10,50,.22);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font-en: 'Poppins', 'Segoe UI', sans-serif;
  --font-hi: 'Noto Sans Devanagari', 'Poppins', 'Segoe UI', sans-serif;
  --header-h: 78px;
}

body{
  font-family: var(--font-hi), var(--font-en);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container{
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Accessibility ---------- */
.skip-link{
  position: absolute; left: -9999px; top: 0;
  background: var(--gold-400); color: var(--navy-950);
  padding: 12px 20px; z-index: 9999; font-weight: 700;
  border-radius: 0 0 10px 0;
}
.skip-link:focus{ left: 0; }

:focus-visible{
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  border-radius: 50px;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
  white-space: normal; text-align: center; max-width: 100%;
  border: 2px solid transparent;
}
.btn:hover{ transform: translateY(-3px); filter: brightness(1.05); }
.btn:active{ transform: translateY(-1px); }

.btn--gold{
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 8px 22px rgba(217,160,23,.4);
}
.btn--outline{
  border-color: rgba(255,255,255,.55);
  color: var(--white);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
}
.btn--outline:hover{ background: rgba(255,255,255,.16); }
.btn--outline-dark{
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn--outline-dark:hover{ background: var(--navy-800); color: var(--white); }

.btn--gradient-idol{
  background: linear-gradient(135deg, var(--orange-500), var(--maroon-700));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(232,93,4,.35);
}
.btn--gradient-dance{
  background: linear-gradient(135deg, var(--purple-700), var(--navy-800));
  color: var(--white);
  box-shadow: 0 8px 22px rgba(74,35,115,.4);
}
.btn--whatsapp{
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(18,140,74,.35);
  margin: 6px 8px 6px 0;
}
.btn--lg{ padding: 16px 34px; font-size: 1rem; }
.btn--block{ width: 100%; margin-top: 18px; }
.btn--register{ padding: 11px 22px; font-size: 0.85rem; }

/* =========================================================
   VIDEO MODAL
   ========================================================= */
.video-modal{
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.video-modal[hidden]{ display: none; }
.video-modal__backdrop{
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(30,10,60,.85), rgba(5,5,20,.94));
  backdrop-filter: blur(4px);
  animation: fadeIn .35s ease both;
}
.video-modal__box{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  background: linear-gradient(160deg, #1a1030, #0e0a20);
  border: 1px solid rgba(245,196,81,.25);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 30px 90px rgba(0,0,0,.5), 0 0 0 1px rgba(245,196,81,.08);
  animation: popIn .4s cubic-bezier(.2,.9,.3,1.2) both;
  max-height: 92vh;
  overflow-y: auto;
}
.video-modal__close{
  position: absolute; top: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--gold-300);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  transition: background .2s ease, transform .2s ease;
  z-index: 2;
}
.video-modal__close:hover{ background: rgba(255,255,255,.2); transform: rotate(90deg); }
.video-modal__title{
  color: var(--gold-300);
  font-size: 1.15rem;
  text-align: center;
  padding-right: 40px;
  margin-bottom: 14px;
  font-weight: 700;
}
.video-modal__frame{
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
}
.video-modal__frame video{ width: 100%; aspect-ratio: 16/9; object-fit: contain; background: #000; }
.video-modal__hint{
  text-align: center; color: rgba(255,255,255,.6);
  font-size: .82rem; margin-top: 12px;
}

@keyframes fadeIn{ from{ opacity: 0; } to{ opacity: 1; } }
@keyframes popIn{ from{ opacity: 0; transform: scale(.9) translateY(16px); } to{ opacity: 1; transform: scale(1) translateY(0); } }

/* ---------- WhatsApp choice modal ---------- */
.wa-modal{
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.wa-modal[hidden]{ display: none; }
.wa-modal__backdrop{
  position: absolute; inset: 0;
  background: rgba(10,8,25,.72);
  backdrop-filter: blur(3px);
  animation: fadeIn .3s ease both;
}
.wa-modal__box{
  position: relative; z-index: 1;
  width: 100%; max-width: 380px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 28px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: popIn .35s cubic-bezier(.2,.9,.3,1.2) both;
}
.wa-modal__close{
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream-50); color: var(--ink-700);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.wa-modal__close:hover{ background: var(--line); }
.wa-modal__icon{ font-size: 2.6rem; margin-bottom: 6px; }
.wa-modal__box h3{ font-size: 1.25rem; margin-bottom: 6px; color: var(--navy-950); }
.wa-modal__box p{ color: var(--ink-500); font-size: .92rem; margin-bottom: 20px; }
.wa-modal__numbers{ display: flex; flex-direction: column; gap: 12px; }
.wa-modal__number{
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; border-radius: 14px;
  background: linear-gradient(135deg, #25d366, #128c4a);
  color: var(--white); font-weight: 700; font-size: 1.05rem;
  transition: transform .2s ease;
}
.wa-modal__number:hover{ transform: translateY(-2px); }
.wa-modal__icon-sm{ font-size: 1.1rem; }

/* ---------- Season 1 photo lightbox ---------- */
.lightbox{
  position: fixed; inset: 0; z-index: 1050;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox[hidden]{ display: none; }
.lightbox__backdrop{
  position: absolute; inset: 0;
  background: rgba(6, 5, 16, .92);
  backdrop-filter: blur(4px);
  animation: fadeIn .3s ease both;
}
.lightbox__inner{
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px;
  width: 100%; max-width: 1100px;
  animation: popIn .32s cubic-bezier(.2,.9,.3,1.2) both;
}
.lightbox__figure{
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lightbox__image{
  max-width: 100%; max-height: 78vh;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  background: #111;
  object-fit: contain;
}
.lightbox__counter{
  color: rgba(255,255,255,.75);
  font-size: .85rem; font-weight: 600; letter-spacing: .04em;
}
.lightbox__close{
  position: absolute; top: -14px; right: -14px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--gold-300);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
  z-index: 2;
}
.lightbox__close:hover{ background: rgba(255,255,255,.22); transform: rotate(90deg); }
.lightbox__nav{
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: var(--gold-300);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.lightbox__nav:hover{ background: rgba(255,255,255,.2); transform: scale(1.08); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: sticky; top: 0; z-index: 500;
  background: rgba(10,15,36,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245,196,81,.15);
  transition: box-shadow .3s ease;
}
.site-header.is-scrolled{ box-shadow: 0 8px 24px rgba(0,0,0,.25); }

.site-header__inner{
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  height: var(--header-h);
}

.brand{ display: flex; align-items: center; gap: 10px; min-width: 0; flex-shrink: 1; }
.brand__mark{
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: contain; flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
}
.brand__text{ display: flex; flex-direction: column; line-height: 1.15; min-width: 0; overflow: hidden; }
.brand__title{
  font-family: var(--font-en);
  font-weight: 800; font-size: 1.05rem; letter-spacing: .02em;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand__subtitle{
  font-size: .68rem; color: rgba(255,255,255,.65); font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.main-nav ul{ display: flex; gap: 26px; }
.main-nav a{
  color: rgba(255,255,255,.85);
  font-size: .88rem; font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.main-nav a::after{
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-300), var(--orange-500));
  transition: width .25s ease;
}
.main-nav a:hover{ color: var(--gold-300); }
.main-nav a:hover::after{ width: 100%; }

.header-actions{ display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.lang-switch{
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
}
.lang-btn{
  color: rgba(255,255,255,.65);
  font-weight: 600; font-size: .82rem;
  padding: 4px 6px; border-radius: 6px;
  transition: color .2s ease, background .2s ease;
}
.lang-btn:hover{ color: var(--white); }
.lang-btn.is-active{ color: var(--gold-300); background: rgba(245,196,81,.12); }

.hamburger{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px;
}
.hamburger span{
  display: block; width: 24px; height: 2.5px;
  background: var(--gold-300); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav-backdrop{
  position: fixed; inset: 0; z-index: 490;
  background: rgba(5,5,15,.6);
}
.mobile-nav-backdrop[hidden]{ display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--purple-800) 55%, var(--maroon-700) 100%);
  padding: 68px 0 60px;
  overflow: hidden;
  color: var(--white);
}
.hero__decor{ position: absolute; inset: 0; pointer-events: none; }
.hero__mountains{
  position: absolute; bottom: -2px; left: 0; width: 100%; height: 220px;
  opacity: .8;
}
.hero__glow{
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: .45;
}
.hero__glow--1{ width: 380px; height: 380px; background: var(--gold-400); top: -120px; left: -80px; }
.hero__glow--2{ width: 420px; height: 420px; background: var(--orange-500); bottom: -140px; right: -100px; }
.hero__spark{
  position: absolute; color: var(--gold-300); opacity: .7;
  animation: twinkle 3.2s ease-in-out infinite;
}
.hero__spark--1{ top: 18%; left: 8%; font-size: 1.2rem; animation-delay: 0s; }
.hero__spark--2{ top: 30%; right: 12%; font-size: .9rem; animation-delay: 1s; }
.hero__spark--3{ top: 60%; left: 20%; font-size: 1rem; animation-delay: 2s; }
@keyframes twinkle{ 0%,100%{ opacity: .25; transform: scale(.8); } 50%{ opacity: .9; transform: scale(1.15); } }

.hero__content{ position: relative; z-index: 2; text-align: center; }

.hero__badges{
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 26px;
}
.event-badge{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.9);
}
.event-badge--live{
  background: rgba(255,90,60,.15);
  border-color: rgba(255,120,90,.4);
  color: #ffb199;
}
.event-badge--live::before{
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #ff5a3c; margin-right: 2px;
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot{ 0%,100%{ opacity: 1; } 50%{ opacity: .3; } }

.hero__titles{
  display: flex; align-items: center; justify-content: center;
  gap: 30px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero__event{ animation: fadeUp .7s ease both; }
.hero__event--dance{ animation-delay: .15s; }
.hero__eyebrow{
  font-size: .82rem; font-weight: 700; letter-spacing: .08em;
  color: var(--gold-300); text-transform: uppercase; margin-bottom: 6px;
}
.hero__title{ font-family: var(--font-en); line-height: 1.05; }
.hero__title-line{
  display: block;
  font-size: clamp(1.7rem, 4.6vw, 2.7rem);
  font-weight: 900; letter-spacing: .01em;
  color: var(--white);
}
.hero__title-season{
  display: block;
  font-size: clamp(1.9rem, 5.4vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-300), var(--orange-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-top: 2px;
}
.hero__title-season--alt{
  background: linear-gradient(135deg, #ffd6a3, var(--gold-300));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size: clamp(1.3rem, 3vw, 2rem);
}
.hero__divider{
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.5); font-size: .85rem;
}
.hero__divider span{ width: 1px; height: 30px; background: rgba(255,255,255,.25); }
.hero__divider em{ font-style: normal; }

.hero__slogan{
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 700; color: var(--gold-300);
  margin: 10px auto 12px; max-width: 780px;
}
.hero__desc{
  font-size: 1rem; color: rgba(255,255,255,.82);
  max-width: 620px; margin: 0 auto 32px;
}
.hero__ctas{ display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

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

/* =========================================================
   HIGHLIGHT STRIP
   ========================================================= */
.highlight-strip{
  background: var(--navy-900);
  padding: 26px 0;
  position: relative;
  border-bottom: 1px solid rgba(245,196,81,.12);
}
.highlight-strip__grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.highlight-card{
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 4px; padding: 12px 8px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.highlight-card:last-child{ border-right: none; }
.highlight-card__icon{ font-size: 1.6rem; margin-bottom: 4px; }
.highlight-card__label{
  font-family: var(--font-en);
  font-size: .68rem; letter-spacing: .1em; font-weight: 700;
  color: var(--gold-300);
}
.highlight-card__value{
  font-size: .85rem; font-weight: 600; color: var(--white);
}

/* =========================================================
   SECTION SHARED STYLES
   ========================================================= */
.section{ padding: 82px 0; }
.section-head{ text-align: center; max-width: 780px; margin: 0 auto 44px; }
.section-tag{
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 18px; border-radius: 50px;
  background: var(--cream-50);
  color: var(--maroon-700);
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
  margin-bottom: 16px;
}
.section-tag--idol{ background: rgba(232,93,4,.1); color: var(--orange-600); }
.section-tag--dance{ background: rgba(74,35,115,.1); color: var(--purple-700); }
.section-title{
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 800; color: var(--navy-950);
  margin-bottom: 14px; line-height: 1.3;
}
.section-sub{ color: var(--ink-500); font-size: 1.02rem; }
.subsection-title{
  font-size: 1.2rem; font-weight: 700; color: var(--navy-950);
  margin: 34px 0 18px; text-align: center;
}

.idol-copy{ max-width: 680px; margin: 0 auto 10px; text-align: center; }
.idol-copy p{ font-size: 1.05rem; color: var(--ink-700); margin-bottom: 8px; }
.idol-copy__cta-line{ font-weight: 700; color: var(--orange-600); font-size: 1.15rem !important; }
.idol-copy__desc{ color: var(--ink-500) !important; font-size: .98rem !important; margin-top: 10px; }

.section-cta{ text-align: center; margin-top: 40px; }

/* ---------- Idol / Dance category cards ---------- */
.cat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-grid--8{ grid-template-columns: repeat(4, 1fr); }
.cat-card{
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 26px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-weight: 700; font-size: .9rem; text-align: center;
  color: var(--navy-950);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cat-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-500);
}
.cat-card--dance:hover{ border-color: var(--purple-700); }
.cat-card__icon{ font-size: 1.9rem; }

.idol-section{ background: linear-gradient(180deg, var(--white), #fff6ec); }
.dance-section{ background: linear-gradient(180deg, #f8f5ff, var(--white)); }

/* ---------- Benefits ---------- */
.benefits-block{ max-width: 780px; margin: 0 auto; }
.benefits-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.benefits-list li{
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: .95rem;
  box-shadow: var(--shadow-sm);
}
.tick{
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950); font-size: .75rem; font-weight: 900;
}

/* =========================================================
   AUDITIONS
   ========================================================= */
.auditions-section{ background: var(--cream-50); }
.audition-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  max-width: 980px; margin: 0 auto;
}
.audition-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--orange-500);
}
.audition-card--dance{ border-top-color: var(--purple-700); }
.audition-card__head{ display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.audition-card__icon{ font-size: 2rem; }
.audition-card__head h3{ font-size: 1.1rem; color: var(--navy-950); }
.audition-card__details{ display: grid; gap: 12px; }
.audition-card__details > div{
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 10px; border-bottom: 1px dashed var(--line);
  gap: 12px;
}
.audition-card__details dt{ color: var(--ink-500); font-size: .86rem; font-weight: 600; }
.audition-card__details dd{ color: var(--navy-950); font-weight: 700; font-size: .92rem; text-align: right; }

/* =========================================================
   GRAND FINALE
   ========================================================= */
.grand-finale{
  position: relative;
  background: linear-gradient(135deg, var(--navy-950), var(--purple-800) 45%, var(--maroon-700) 100%);
  padding: 90px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.grand-finale__decor{
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(245,196,81,.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(255,122,26,.18), transparent 45%);
}
.grand-finale__content{ position: relative; z-index: 1; }
.grand-finale__icon{ font-size: 3rem; display: block; margin-bottom: 10px; }
.grand-finale__label{
  font-family: var(--font-en); letter-spacing: .18em; font-weight: 700;
  color: var(--gold-300); font-size: .95rem; margin-bottom: 14px;
}
.grand-finale__date{
  font-family: var(--font-en);
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-300), var(--white));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 14px;
}
.grand-finale__venue{ font-size: 1.2rem; font-weight: 600; color: rgba(255,255,255,.9); margin-bottom: 34px; }

/* =========================================================
   PRIZES
   ========================================================= */
.prize-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1080px; margin: 0 auto;
}
.prize-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 14px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.prize-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prize-card__rank{ display: block; font-weight: 700; font-size: .88rem; color: var(--ink-500); margin-bottom: 10px; }
.prize-card__amount{
  display: block; font-family: var(--font-en);
  font-size: 1.4rem; font-weight: 800; color: var(--navy-950);
}
.prize-card--1{ background: linear-gradient(160deg, #fff8e0, var(--white)); border-color: var(--gold-400); box-shadow: 0 12px 30px rgba(217,160,23,.18); }
.prize-card--1 .prize-card__amount{ color: var(--gold-500); font-size: 1.65rem; }
.prize-card--2{ border-color: #c9c9d6; }
.prize-card--3{ border-color: #d8ab7d; }

.prize-note{
  max-width: 600px; margin: 0 auto; text-align: center;
  padding: 22px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(74,35,115,.06), rgba(232,93,4,.06));
  border: 1px dashed var(--line);
  font-weight: 700; color: var(--navy-950); font-size: 1.05rem;
}
.prizes-disclaimer{
  text-align: center; color: var(--ink-500); font-size: .86rem;
  margin-top: 30px; font-style: italic;
}

/* =========================================================
   WHY PARTICIPATE
   ========================================================= */
.why-section{ background: linear-gradient(180deg, var(--cream-50), var(--white)); }
.why-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.why-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.why-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-400); }
.why-card__icon{ font-size: 2rem; display: block; margin-bottom: 12px; }
.why-card p{ font-weight: 600; color: var(--ink-700); font-size: .98rem; }

/* =========================================================
   SEASON 1 GLIMPSE
   ========================================================= */
.season1-section{ background: linear-gradient(180deg, var(--white), var(--cream-50)); }
.season1-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.season1-grid .season1-card:nth-child(1){ grid-column: span 2; grid-row: span 2; }
.season1-grid .season1-card:nth-child(6){ grid-column: span 2; }
.season1-card{
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  padding: 0;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
}
.season1-card:hover{ transform: translateY(-5px); box-shadow: var(--shadow-md); }
.season1-card img{
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .4s ease;
}
.season1-card:hover img{ transform: scale(1.06); }
.season1-card::after{
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,25,.45));
  opacity: 0; transition: opacity .3s ease;
}
.season1-card:hover::after{ opacity: 1; }
.season1-card__more{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 8, 25, .62);
  color: var(--gold-300);
  font-family: var(--font-en);
  font-size: 1.5rem; font-weight: 800;
  backdrop-filter: blur(1px);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.gallery-card{
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  display: flex; align-items: flex-end; padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative; overflow: hidden;
}
.gallery-card::before{
  content: '📷'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -60%); font-size: 2.2rem; opacity: .35;
}
.gallery-card:hover{ transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-md); }
.gallery-card__label{
  color: var(--white); font-weight: 700; font-size: .85rem;
  position: relative; z-index: 1;
  text-shadow: 0 2px 6px rgba(0,0,0,.3);
}
.gallery-card--1{ background: linear-gradient(150deg, var(--orange-500), var(--maroon-700)); }
.gallery-card--2{ background: linear-gradient(150deg, var(--purple-700), var(--navy-900)); }
.gallery-card--3{ background: linear-gradient(150deg, var(--gold-400), var(--orange-600)); }
.gallery-card--4{ background: linear-gradient(150deg, var(--navy-800), var(--purple-800)); }
.gallery-card--5{ background: linear-gradient(150deg, var(--maroon-700), var(--navy-950)); }
.gallery-note{ text-align: center; color: var(--ink-500); font-size: .88rem; margin-top: 24px; font-style: italic; }

/* =========================================================
   VIDEOS
   ========================================================= */
.videos-section{ background: var(--cream-50); }
.video-preview{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  max-width: 980px; margin: 0 auto;
  align-items: center;
}
.video-preview__player{
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.video-preview__player video{ width: 100%; aspect-ratio: 16/9; }
.video-preview__list{ display: grid; gap: 14px; }
.video-preview__list li{
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-weight: 600; font-size: .95rem;
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   WINNERS
   ========================================================= */
.winners-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 980px; margin: 0 auto;
}
.winner-card{
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.winner-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.winner-card__medal{ font-size: 2.6rem; display: block; margin-bottom: 14px; }
.winner-card h3{ font-size: 1.05rem; margin-bottom: 8px; color: var(--navy-950); }
.winner-card__placeholder{ color: var(--ink-500); font-size: .88rem; }
.winner-card--gold{ border-top: 5px solid var(--gold-400); }
.winner-card--silver{ border-top: 5px solid #b9bdc9; }
.winner-card--bronze{ border-top: 5px solid #cd8a52; }

/* =========================================================
   ABOUT
   ========================================================= */
.about-section{ background: linear-gradient(180deg, var(--white), var(--cream-50)); }
.about-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-copy h3{ margin-top: 20px; }
.about-copy p{ color: var(--ink-700); margin-bottom: 14px; font-size: 1rem; }
.about-highlight{
  margin-top: 20px; padding: 20px 24px;
  border-left: 4px solid var(--gold-500);
  background: rgba(245,196,81,.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 700; color: var(--navy-950); font-size: 1.05rem;
}
.about-orgs{ display: grid; gap: 18px; }
.org-badge{
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 34px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-950), var(--purple-800));
  color: var(--white); font-weight: 800; text-align: center;
  box-shadow: var(--shadow-md);
}
.org-badge--foundation{ background: linear-gradient(135deg, var(--maroon-700), var(--orange-600)); }
.org-badge__icon{ font-size: 2rem; }

/* =========================================================
   SPONSORS
   ========================================================= */
.sponsors-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.sponsor-slot{
  padding: 34px 16px;
  text-align: center;
  border: 2px dashed var(--line);
  border-radius: var(--radius-md);
  color: var(--ink-500);
  font-weight: 700; font-size: .82rem; letter-spacing: .06em;
  background: var(--cream-50);
  transition: border-color .25s ease, color .25s ease;
}
.sponsor-slot:hover{ border-color: var(--gold-500); color: var(--gold-500); }

/* =========================================================
   SPONSORSHIP PRESENTATION ("Become a Sponsor")
   ========================================================= */
.sp-section{
  position: relative;
  background: linear-gradient(165deg, var(--navy-950) 0%, var(--purple-800) 55%, var(--maroon-700) 100%);
  color: var(--white);
  overflow: hidden;
}
.sp-section::before{
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(245,196,81,.14), transparent 40%),
    radial-gradient(circle at 92% 92%, rgba(255,122,26,.14), transparent 45%);
  pointer-events: none;
}
.sp-section .container{ position: relative; z-index: 1; }
.sp-section .section-tag{ background: rgba(245,196,81,.14); color: var(--gold-300); }
.sp-section .section-title{ color: var(--white); }
.sp-section .section-sub{ color: rgba(255,255,255,.78); }
.sp-section .subsection-title{ color: var(--white); }

.sp-intro{ max-width: 820px; margin: 0 auto 8px; text-align: center; }

/* ---- Trust chips ---- */
.sp-trust{
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin: 28px 0 8px;
}
.sp-trust__chip{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(6px);
  font-size: .84rem; font-weight: 600;
  color: rgba(255,255,255,.9);
}

/* ---- Why sponsor ---- */
.sp-why{ margin-top: 64px; }
.sp-why-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.sp-why-card{
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; padding: 26px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.sp-why-card:hover{
  transform: translateY(-6px);
  background: rgba(255,255,255,.1);
  border-color: rgba(245,196,81,.4);
}
.sp-why-card__icon{ font-size: 1.9rem; }
.sp-why-card p{ font-weight: 600; font-size: .92rem; color: rgba(255,255,255,.92); }

/* ---- Gallery ---- */
.sp-gallery{ margin-top: 64px; }
.sp-gallery-layout{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
}
.sp-gallery__feature{
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 320px;
}
.sp-gallery__feature img{ width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.sp-gallery__feature:hover img{ transform: scale(1.05); }
.sp-gallery__grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.sp-gallery__item{
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.sp-gallery__item img{ width: 100%; height: 100%; object-fit: cover; min-height: 152px; transition: transform .5s ease; }
.sp-gallery__item:hover img{ transform: scale(1.08); }
.sp-gallery__caption{
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px 10px;
  background: linear-gradient(180deg, transparent, rgba(6,4,16,.85));
  font-size: .8rem; font-weight: 700; color: var(--white);
}
.sp-gallery__feature .sp-gallery__caption{ font-size: .95rem; padding: 26px 22px 16px; }

/* ---- Packages ---- */
.sp-packages{ margin-top: 68px; }
.sp-pkg-grid{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.sp-pkg-card{
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  backdrop-filter: blur(6px);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.sp-pkg-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(245,196,81,.4); }
.sp-pkg-card--top{
  grid-column: span 3;
  background: linear-gradient(160deg, rgba(245,196,81,.16), rgba(255,255,255,.06));
  border-color: var(--gold-400);
  box-shadow: 0 20px 55px rgba(217,160,23,.22);
  padding: 38px 34px;
}
.sp-pkg-card--top .sp-pkg-card__inner{
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 30px; align-items: center;
}
.sp-pkg-card__badge{
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; margin-bottom: 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950); font-size: .72rem; font-weight: 800; letter-spacing: .04em;
}
.sp-pkg-card__name{
  font-family: var(--font-en); font-weight: 800; font-size: 1.15rem;
  letter-spacing: .02em; color: var(--white); margin-bottom: 6px;
}
.sp-pkg-card--top .sp-pkg-card__name{ font-size: 1.5rem; }
.sp-pkg-card__amount{
  font-family: var(--font-en); font-weight: 900; font-size: 1.7rem;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}
.sp-pkg-card--top .sp-pkg-card__amount{ font-size: 2.4rem; }
.sp-pkg-card__tickets{
  display: inline-flex; align-self: flex-start;
  font-size: .78rem; font-weight: 700; color: var(--gold-300);
  background: rgba(245,196,81,.12); border: 1px solid rgba(245,196,81,.3);
  padding: 5px 12px; border-radius: 50px; margin-bottom: 16px;
}
.sp-pkg-card__perks{ display: grid; gap: 9px; margin-bottom: 22px; flex: 1; }
.sp-pkg-card--top .sp-pkg-card__perks{ grid-template-columns: 1fr 1fr; column-gap: 18px; }
.sp-pkg-card__perks li{
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .85rem; color: rgba(255,255,255,.85); line-height: 1.4;
}
.sp-pkg-card__perks .tick{ margin-top: 1px; }
.sp-pkg-card__btn{ margin-top: auto; width: 100%; }

/* ---- Brand visibility mockups ---- */
.sp-visibility{ margin-top: 68px; }
.sp-visibility-grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.sp-visibility-card{
  border-radius: var(--radius-md); overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}
.sp-visibility-card:hover{ transform: translateY(-5px); border-color: rgba(245,196,81,.4); }
.sp-visibility-card img{ width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.sp-visibility-card span{
  display: block; padding: 10px 8px 12px;
  font-size: .78rem; font-weight: 700; color: rgba(255,255,255,.9);
}

/* ---- Season 1 partners ---- */
.sp-partners{ margin-top: 68px; text-align: center; }
.sp-partners__frame{
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.14);
}
.sp-partners__frame img{ width: 100%; display: block; }

/* ---- Endorsements ---- */
.sp-endorse{ margin-top: 68px; }
.sp-endorse-grid{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.sp-endorse-card{
  display: flex; gap: 14px;
  padding: 22px; border-radius: var(--radius-md);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
}
.sp-endorse-card__icon{ font-size: 1.7rem; flex-shrink: 0; }
.sp-endorse-card__name{ font-weight: 800; color: var(--gold-300); font-size: .98rem; margin-bottom: 2px; }
.sp-endorse-card__title{ font-size: .78rem; color: rgba(255,255,255,.65); margin-bottom: 8px; }
.sp-endorse-card__quote{ font-size: .86rem; color: rgba(255,255,255,.88); line-height: 1.5; }

/* ---- Final CTA ---- */
.sp-cta{
  margin-top: 68px; text-align: center;
  padding: 44px 28px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(245,196,81,.14), rgba(255,122,26,.12));
  border: 1px solid rgba(245,196,81,.3);
}
.sp-cta__title{ font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 800; color: var(--white); margin-bottom: 6px; }
.sp-cta__sub{ font-size: 1.02rem; color: rgba(255,255,255,.82); margin-bottom: 26px; }
.sp-cta__buttons{ display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn--download{
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn--download:hover{ background: rgba(255,255,255,.2); }

/* =========================================================
   REGISTRATION CTA
   ========================================================= */
.reg-cta{
  position: relative;
  background: linear-gradient(135deg, var(--maroon-700), var(--orange-600) 60%, var(--gold-500));
  padding: 80px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.reg-cta__decor{
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.14), transparent 50%);
}
.reg-cta__content{ position: relative; z-index: 1; }
.reg-cta__content h2{ font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 40px; }
.reg-cta__grid{
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 680px; margin: 0 auto;
}
.reg-cta__card{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
}
.reg-cta__icon{ font-size: 2.4rem; display: block; margin-bottom: 10px; }
.reg-cta__card h3{ font-size: 1.15rem; margin-bottom: 18px; }
.reg-cta__card .btn{ background: var(--white); color: var(--navy-950); box-shadow: none; }
.reg-cta__card .btn:hover{ background: var(--gold-300); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid{
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.contact-card{
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
}
.contact-card h3{ font-size: 1.15rem; color: var(--navy-950); margin-bottom: 6px; }
.contact-card__hindi{ color: var(--maroon-700) !important; margin-bottom: 16px !important; }
.contact-card__addr{ color: var(--ink-700); font-weight: 600; }
.contact-card__phone{
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 1.1rem; color: var(--navy-950);
  margin-bottom: 12px;
  transition: color .2s ease;
}
.contact-card__phone:hover{ color: var(--orange-600); }
.contact-card__note{ color: var(--ink-500); font-size: .84rem; margin-top: 10px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background: var(--navy-950);
  color: rgba(255,255,255,.8);
  padding: 60px 0 0;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand__title{
  font-family: var(--font-en);
  font-weight: 800; font-size: 1rem;
  color: var(--gold-300); margin-bottom: 4px;
}
.footer-brand__title--alt{ color: rgba(255,255,255,.85); font-size: .92rem; }
.footer-brand__org{ margin-top: 12px; font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-links h4, .footer-wa h4{ color: var(--white); font-size: .95rem; margin-bottom: 16px; }
.footer-links ul{ display: grid; gap: 10px; }
.footer-links a{ font-size: .88rem; color: rgba(255,255,255,.65); transition: color .2s ease; }
.footer-links a:hover{ color: var(--gold-300); }
.footer-wa{ display: flex; flex-direction: column; align-items: flex-start; }
.footer-wa .btn{ font-size: .82rem; padding: 10px 18px; }

.footer-bottom{
  /* Extra bottom clearance keeps the fixed scroll-top button (bottom:26px,
     46px tall) from sitting on top of the copyright text once the page
     is scrolled all the way down, at any viewport size. */
  text-align: center; padding: 22px 0 76px; font-size: .82rem; color: rgba(255,255,255,.5);
}

/* =========================================================
   SCROLL TOP
   ========================================================= */
.scroll-top{
  position: fixed; bottom: 26px; right: 22px; z-index: 400;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, opacity .2s ease;
}
.scroll-top:hover{ transform: translateY(-4px); }
.scroll-top[hidden]{ display: none; }

/* =========================================================
   ENTRANCE ANIMATIONS
   ========================================================= */
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; transition: none; }
  .hero__spark, .event-badge--live::before{ animation: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .prize-grid{ grid-template-columns: repeat(3, 1fr); }
  .cat-grid--8{ grid-template-columns: repeat(4, 1fr); }
  .sp-why-grid{ grid-template-columns: repeat(2, 1fr); }
  .sp-visibility-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* Nav collapses to the off-canvas hamburger menu earlier than the grid
   breakpoints below: the 8 nav links + logo + lang switch + register button
   need ~1135px to stay on one line each, so 960px alone left tablet widths
   (e.g. 1024px) with awkwardly wrapping nav labels. */
@media (max-width: 1180px){
  .main-nav{
    position: fixed; top: var(--header-h); right: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    width: min(320px, 84vw);
    background: var(--navy-950);
    border-left: 1px solid rgba(245,196,81,.15);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 495;
    overflow-y: auto;
    padding: 26px 0;
  }
  .main-nav.is-open{ transform: translateX(0); }
  .main-nav ul{ flex-direction: column; gap: 0; }
  .main-nav a{
    display: block; padding: 16px 28px; font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .main-nav a::after{ display: none; }
  .hamburger{ display: flex; }
  .header-actions .btn--register{ display: none; }
  .lang-switch{ font-size: .78rem; }
}

@media (max-width: 960px){
  .highlight-strip__grid{ grid-template-columns: repeat(2, 1fr); gap: 20px 10px; }
  .highlight-card{ border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 16px; }
  .highlight-card:nth-child(odd){ border-right: 1px solid rgba(255,255,255,.08); }

  .cat-grid{ grid-template-columns: repeat(3, 1fr); }
  .cat-grid--8{ grid-template-columns: repeat(3, 1fr); }
  .benefits-list{ grid-template-columns: 1fr; }
  .audition-grid{ grid-template-columns: 1fr; }
  .prize-grid{ grid-template-columns: repeat(3, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); }
  .season1-grid{ grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
  .season1-grid .season1-card:nth-child(1){ grid-column: span 1; grid-row: span 1; }
  .season1-grid .season1-card:nth-child(6){ grid-column: span 1; }
  .video-preview{ grid-template-columns: 1fr; }
  .winners-grid{ grid-template-columns: 1fr; max-width: 420px; }
  .about-grid{ grid-template-columns: 1fr; }
  .about-orgs{ grid-template-columns: repeat(2, 1fr); }
  .sponsors-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 30px; }

  .sp-trust__chip{ font-size: .78rem; padding: 8px 14px; }
  .sp-gallery-layout{ grid-template-columns: 1fr; }
  .sp-gallery__feature{ min-height: 260px; }
  .sp-pkg-grid{ grid-template-columns: repeat(2, 1fr); }
  .sp-pkg-card--top{ grid-column: span 2; }
  .sp-pkg-card--top .sp-pkg-card__inner{ grid-template-columns: 1fr; }
  .sp-visibility-grid{ grid-template-columns: repeat(2, 1fr); }
  .sp-endorse-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .brand__mark{ width: 38px; height: 38px; }
  .brand__title{ font-size: .92rem; }
  .header-actions{ gap: 10px; }
  .lang-switch{ gap: 4px; }
  .lang-btn{ padding: 4px 5px; }

  .section{ padding: 60px 0; }
  .hero{ padding: 50px 0 44px; }
  .hero__titles{ gap: 18px; }
  .hero__divider{ flex-direction: row; }
  .hero__divider span{ width: 24px; height: 1px; }
  .hero__ctas{ flex-direction: column; align-items: stretch; }
  .hero__ctas .btn{ width: 100%; }

  .cat-grid{ grid-template-columns: repeat(2, 1fr); }
  .cat-grid--8{ grid-template-columns: repeat(2, 1fr); }
  .prize-grid{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .season1-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .about-orgs{ grid-template-columns: 1fr; }
  .sponsors-grid{ grid-template-columns: 1fr; }
  .reg-cta__grid{ grid-template-columns: 1fr; }

  .sp-why-grid{ grid-template-columns: 1fr 1fr; }
  .sp-gallery__grid{ grid-template-columns: 1fr; }
  .sp-pkg-grid{ grid-template-columns: 1fr; }
  .sp-pkg-card--top{ grid-column: span 1; padding: 28px 22px; }
  .sp-pkg-card--top .sp-pkg-card__perks{ grid-template-columns: 1fr; }
  .sp-visibility-grid{ grid-template-columns: repeat(2, 1fr); }
  .sp-cta{ padding: 34px 20px; }
  .sp-cta__buttons{ flex-direction: column; align-items: stretch; }

  .video-modal__box{ padding: 16px; border-radius: var(--radius-md); }
  .video-modal__title{ font-size: 1rem; }

  .lightbox{ padding: 12px; }
  .lightbox__inner{ gap: 6px; }
  .lightbox__nav{ width: 36px; height: 36px; }
  .lightbox__nav svg{ width: 18px; height: 18px; }
  .lightbox__close{ top: -40px; right: 0; width: 36px; height: 36px; }
  .lightbox__image{ max-height: 62vh; }

  .container{ padding: 0 18px; }
}

@media (max-width: 380px){
  .cat-grid, .cat-grid--8, .prize-grid, .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
  .season1-grid{ grid-auto-rows: 130px; }
  .brand__subtitle{ display: none; }
  .brand__mark{ width: 34px; height: 34px; }
  .brand__title{ font-size: .8rem; }
  .sp-why-grid{ grid-template-columns: 1fr; }
  .sp-visibility-grid{ grid-template-columns: 1fr 1fr; }
}
