/* ==========================================================================
   DAKSHA '26 ATHENA — CINEMATIC LUXURY DESIGN SYSTEM & SCROLLER
   ========================================================================== */

:root {
  --obsidian-bg: #06030E;
  --dark-aubergine: #0A0418;
  --surface-card: #120726;
  --surface-card-hover: #1A0B36;
  --gold-bright: #F5C242;
  --gold-dark: #D49B00;
  --gold-gradient: linear-gradient(135deg, #FFE89C 0%, #F5C242 50%, #B88600 100%);
  --gold-glow: rgba(245, 194, 66, 0.35);
  --neon-cyan: #06B6D4;
  --neon-purple: #A855F7;
  --neon-pink: #EC4899;
  --font-heading: 'Cinzel', 'Playfair Display', serif;
  --font-body: 'Outfit', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --glass-border: rgba(245, 194, 66, 0.2);
  --glass-bg: rgba(15, 7, 32, 0.85);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
  background-color: var(--obsidian-bg);
  color: #FAF9FC;
  font-family: var(--font-body);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
}

#scroll-progress-rail {
  position: fixed;
  top: 0; right: 0;
  width: 4px; height: 0%;
  background: var(--gold-gradient);
  z-index: 9999;
  box-shadow: 0 0 12px var(--gold-bright);
}

.content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* NAVBAR — ENLARGED SSN LOGO */
.header-institutional {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8, 4, 18, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 194, 66, 0.15);
  padding: 0.85rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-logo-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-inst-logo { height: 54px; object-fit: contain; flex-shrink: 0; }
.nav-ssn-logo { height: 78px; }
.nav-snuc-logo { height: 34px; }
.nav-logo-sep { width: 1px; height: 36px; background: rgba(255, 255, 255, 0.25); flex-shrink: 0; }

.header-nav-container {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.header-nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.header-nav-link {
  color: #FAF9FC;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.header-nav-link:hover, .header-nav-link.active {
  color: var(--gold-bright);
}

.btn-gold-capsule {
  background: var(--gold-gradient);
  color: #06030E;
  padding: 0.55rem 1.4rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0 16px var(--gold-glow);
  white-space: nowrap;
}

.hamburger-btn {
  display: none;
  background: rgba(18, 9, 36, 0.9);
  border: 1.5px solid var(--gold-bright);
  color: var(--gold-bright);
  font-size: 1.2rem;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  z-index: 2005;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.mobile-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(6, 3, 14, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-drawer.active { display: flex !important; }

.mobile-drawer a {
  color: var(--gold-bright);
  font-size: 1.25rem;
  font-family: var(--font-heading);
  text-decoration: none;
  letter-spacing: 2px;
  padding: 0.5rem;
}

.close-drawer-btn {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: transparent;
  border: none;
  color: var(--gold-bright);
  font-size: 2rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  padding: 7.5rem 1.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-grid-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 160px;
  gap: 2rem;
  align-items: center;
}

.hero-left-content { display: flex; flex-direction: column; align-items: flex-start; }

.hero-daksha-logo {
  height: 155px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 0 25px rgba(245, 194, 66, 0.6)) drop-shadow(0 0 50px rgba(245, 194, 66, 0.25));
}

.hero-presenter-stack {
  margin-bottom: 0.8rem;
  width: 100%;
}

.presenter-l1 {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: 2px;
  line-height: 1.35;
  text-shadow: 0 0 10px rgba(245, 194, 66, 0.3);
}

.presenter-l2 {
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(250, 249, 252, 0.75);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* DAKSHA '26 FORCE SINGLE LINE TITLE */
.hero-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
  filter: drop-shadow(0 0 20px rgba(245, 194, 66, 0.25));
  margin: 0.4rem 0;
  white-space: nowrap !important;
  display: inline-block;
}

.title-year {
  font-family: var(--font-heading);
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(245, 194, 66, 0.35));
}

.hero-slogan {
  font-size: clamp(0.95rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 4px;
  color: #FAF9FC;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.column-divider { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; }
.column-divider .div-line { width: 60px; height: 1px; background: rgba(245, 194, 66, 0.4); }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(250, 249, 252, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 520px;
}

/* COUNTDOWN TIMER STYLING */
.hero-countdown-container {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.countdown-title-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-bright);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-countdown-timer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.count-box {
  background: rgba(18, 9, 36, 0.9);
  border: 1.5px solid var(--gold-bright);
  box-shadow: 0 0 15px rgba(245, 194, 66, 0.2);
  border-radius: 12px;
  padding: 0.5rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.count-box span {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
}

.count-box small {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(250, 249, 252, 0.7);
  margin-top: 0.2rem;
}

.count-colon {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.btn-gold-filled {
  background: var(--gold-gradient);
  color: #06030E;
  padding: 0.85rem 2.2rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 0 22px var(--gold-glow);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  width: fit-content;
}

.hero-visual-center { display: flex; justify-content: center; align-items: center; position: relative; width: 100%; max-width: 440px; margin: 0 auto; }

.portal-ring-wrapper {
  position: relative;
  width: 420px; height: 420px;
  max-width: 90vw; max-height: 420px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  flex-shrink: 0;
}

.portal-ring-outer {
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  border: 3px solid var(--neon-purple);
  box-shadow: 0 0 45px var(--neon-purple), inset 0 0 45px var(--neon-purple);
  animation: pulsePortal 4s infinite ease-in-out;
}

@keyframes pulsePortal {
  0%, 100% { box-shadow: 0 0 40px #a855f7, inset 0 0 40px #a855f7; transform: scale(1); }
  50% { box-shadow: 0 0 65px #d946ef, inset 0 0 65px #d946ef; transform: scale(1.02); }
}

.portal-ring-meander {
  position: absolute;
  width: 92%; height: 92%;
  border-radius: 50%;
  border: 2px dashed rgba(245, 194, 66, 0.4);
  animation: rotateMeander 40s linear infinite;
}

@keyframes rotateMeander {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.athena-image-container {
  width: 360px; height: 360px;
  max-width: 88vw; max-height: 88vw;
  border-radius: 50%;
  overflow: hidden !important;
  position: relative;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.8);
  border: 2px solid var(--gold-bright);
}

.athena-statue-img {
  width: 100% !important; height: 100% !important;
  max-width: 100% !important; max-height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  filter: brightness(1.08) contrast(1.1);
  display: block;
}

/* ENHANCED HIGHLIGHTED DATE CAPSULE */
.hero-date-card { display: flex; justify-content: flex-end; width: 100%; }

.date-capsule {
  background: rgba(18, 9, 36, 0.92);
  backdrop-filter: blur(16px);
  border: 2px solid var(--gold-bright);
  border-radius: 22px;
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 0 35px var(--gold-glow), inset 0 0 20px rgba(245, 194, 66, 0.15);
  animation: capsuleGlowPulse 3.5s infinite ease-in-out;
}

@keyframes capsuleGlowPulse {
  0%, 100% { box-shadow: 0 0 25px var(--gold-glow); transform: scale(1); }
  50% { box-shadow: 0 0 50px rgba(245, 194, 66, 0.6); transform: scale(1.04); }
}

.date-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--gold-bright);
  line-height: 1;
  text-shadow: 0 0 12px var(--gold-bright);
}

.date-month { font-size: 0.85rem; font-weight: 800; letter-spacing: 2px; color: #FAF9FC; text-transform: uppercase; }
.date-year { font-family: var(--font-mono); font-size: 0.88rem; font-weight: 800; color: var(--gold-bright); }

/* STATS BAR */
.stats-counter-bar {
  max-width: 1400px;
  width: 100%;
  margin: 3rem auto 0;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  border: 1.5px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.4rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat-item { display: flex; align-items: center; gap: 1.2rem; }
.stat-icon { font-size: 1.8rem; }
.cyan-glow { color: var(--neon-cyan); filter: drop-shadow(0 0 8px var(--neon-cyan)); }
.purple-glow { color: var(--neon-purple); filter: drop-shadow(0 0 8px var(--neon-purple)); }
.pink-glow { color: var(--neon-pink); filter: drop-shadow(0 0 8px var(--neon-pink)); }
.gold-glow { color: var(--gold-bright); filter: drop-shadow(0 0 8px var(--gold-bright)); }

.stat-text { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: #FAF9FC; }
.stat-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; color: rgba(250, 249, 252, 0.7); text-transform: uppercase; }
.stat-divider { width: 1px; height: 35px; background: rgba(255, 255, 255, 0.15); }

/* SECTIONS & VISUAL ELEGANCE ENHANCEMENTS */
.about-section, .theme-section, .events-section, .gallery-section, .sponsors-section, .location-section, .instagram-section, .contact-section {
  padding: 5rem 1.5rem;
  width: 100%;
}

.section-container { max-width: 1400px; margin: 0 auto; width: 100%; }

.kicker-gold {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold-bright);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.4rem;
}

.card-heading-gold, .section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--gold-bright);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 15px rgba(245, 194, 66, 0.2);
}

.btn-gold-outline {
  background: transparent;
  border: 1.5px solid var(--gold-bright);
  color: var(--gold-bright) !important;
  padding: 0.65rem 1.6rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 800;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.25s ease;
  white-space: nowrap;
  width: fit-content;
  align-self: flex-start;
  margin-top: 1rem;
  box-shadow: 0 0 12px rgba(245, 194, 66, 0.15);
}

.btn-gold-outline:hover {
  background: var(--gold-bright);
  color: #06030E !important;
  box-shadow: 0 0 24px var(--gold-glow);
}

.btn-insta-gold {
  background: var(--gold-gradient);
  color: #06030E !important;
  padding: 0.75rem 1.8rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 0 22px var(--gold-glow);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  width: fit-content;
  align-self: flex-start;
  margin-top: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-insta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--gold-bright);
}

/* CARD STRUCTURES & BALANCED IMAGE CONTAINERS */
.about-grid-card, .theme-arena-grid, .sponsors-grid-card, .location-grid-card, .reels-grid-card {
  background: var(--surface-card);
  border: 1.5px solid var(--glass-border);
  border-radius: 24px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: stretch;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  width: 100%;
}

.about-card-left, .theme-arena-left, .sponsors-left, .location-left, .reels-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.address-box-icon {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

.address-box-icon .marker-gold {
  color: var(--gold-bright);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.address-box-icon p {
  font-size: 1rem;
  color: rgba(250, 249, 252, 0.9);
  line-height: 1.6;
  margin: 0;
}

.about-card-right, .theme-arena-right, .location-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

/* PERFECT STRETCH FULL-FIT PHOTO CONTAINERS */
.athena-spear-visual, .helmet-altar-visual, .map-graphic-container {
  width: 100%;
  height: 100%;
  min-height: 300px;
  max-height: 440px;
  border-radius: 20px;
  overflow: hidden !important;
  border: 2px solid var(--gold-bright);
  box-shadow: 0 0 35px var(--gold-glow);
  position: relative;
}

.helmet-altar-visual {
  border-radius: 20px;
}

.athena-spear-img, .helmet-img-cover, .campus-img {
  width: 100% !important;
  height: 100% !important;
  max-height: 440px !important;
  object-fit: cover !important;
  display: block;
}

.location-photo-badge {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  background: rgba(6, 3, 14, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-card-lead, .arena-lead-quote {
  font-size: 1.05rem;
  color: rgba(250, 249, 252, 0.88);
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.slogan-gold-sub {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--gold-bright);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}

.feature-badges-row, .arena-pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

.badge-pill, .pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  padding: 1rem 0.6rem;
  border-radius: 14px;
}

.pillar-icon-box {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-bright);
  background: rgba(245, 194, 66, 0.12);
  color: var(--gold-bright);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-name {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-bright);
  text-transform: uppercase;
}

.pill-icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-bright);
  background: rgba(245, 194, 66, 0.12);
  color: var(--gold-bright);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pill-text-stack strong { font-size: 0.82rem; color: #FAF9FC; display: block; }
.pill-text-stack span { font-size: 0.7rem; color: rgba(250, 249, 252, 0.65); display: block; }

/* MARQUEE WITH FASTER SPEEDS */
.marquee-scroller-wrapper, .gallery-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
}

.marquee-scroller-track.super-fast-scroll {
  display: flex;
  gap: 1.8rem;
  animation: posterMarqueeSuperFast 24s linear infinite;
  white-space: nowrap;
}

.marquee-scroller-track:hover, .gallery-marquee-track:hover {
  animation-play-state: paused;
}

/* EVENT SCROLLER CONTROL BUTTONS */
.events-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.scroller-control-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 0.35rem 0.6rem;
  border-radius: 30px;
  backdrop-filter: blur(8px);
}

.btn-scroll-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 194, 66, 0.12);
  border: 1.5px solid var(--gold-bright);
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-scroll-arrow:hover {
  background: var(--gold-bright);
  color: #06030E;
  box-shadow: 0 0 15px rgba(245, 194, 66, 0.5);
  transform: translateY(-2px);
}

.btn-scroll-arrow:active {
  transform: translateY(0) scale(0.95);
}

/* MANUALLY SCROLLABLE HORIZONTAL POSTER ROW (HIDDEN BROWSER SCROLLBAR) */
.events-poster-scroll-wrapper, #eventsPosterTrackWrapper {
  width: 100% !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0.2rem 1.5rem;
  cursor: grab;
  scrollbar-width: none !important; /* Firefox */
  -ms-overflow-style: none !important; /* IE/Edge */
  user-select: none;
}

.events-poster-scroll-wrapper::-webkit-scrollbar, #eventsPosterTrackWrapper::-webkit-scrollbar {
  display: none !important; /* Chrome, Safari, Opera */
  width: 0 !important;
  height: 0 !important;
}

.events-poster-scroll-wrapper:active, #eventsPosterTrackWrapper:active {
  cursor: grabbing;
}

.events-poster-flex-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 1.5rem !important;
  width: max-content !important;
  padding: 0.5rem 0.2rem;
  align-items: stretch;
}

/* THIN HORIZONTAL SCROLL PROGRESS BAR */
.events-scroll-progress-rail {
  width: 100% !important;
  max-width: 400px !important;
  height: 4px !important;
  background: rgba(245, 194, 66, 0.15) !important;
  border-radius: 10px !important;
  margin: 1.5rem auto 0 auto !important;
  position: relative !important;
  overflow: hidden !important;
}

.events-scroll-progress-thumb {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  height: 100% !important;
  width: 0% !important;
  background: var(--gold-gradient) !important;
  border-radius: 10px !important;
  box-shadow: 0 0 10px var(--gold-bright) !important;
  transition: left 0.05s ease-out, width 0.05s ease-out !important;
}

.event-large-poster-card {
  flex: 0 0 460px;
  height: 280px;
  background: var(--surface-card);
  border: 1.5px solid var(--gold-bright);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  user-select: none;
}

@media (max-width: 768px) {
  .event-large-poster-card {
    flex: 0 0 84vw;
    height: 240px;
  }
}

.event-large-poster-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: #FFF;
  box-shadow: 0 15px 40px var(--gold-glow);
}

.event-large-poster-card .poster-bg-img {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover; background-position: center;
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}

.event-large-poster-card:hover .poster-bg-img {
  transform: scale(1.05);
  filter: brightness(1);
}

.event-large-poster-card .poster-overlay-gradient {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(6, 3, 14, 0.95) 0%, rgba(6, 3, 14, 0.35) 55%, rgba(6, 3, 14, 0.2) 100%);
}

.event-large-poster-card .poster-basket-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 5;
  background: var(--gold-bright); color: #06030E;
  font-size: 0.7rem; font-weight: 900; padding: 0.25rem 0.65rem; border-radius: 4px;
  letter-spacing: 1px; text-transform: uppercase;
}

.event-large-poster-card .poster-content-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.4rem; z-index: 5;
  display: flex; flex-direction: column; align-items: flex-start; text-align: left;
}

.event-large-poster-card .poster-title-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FAF9FC;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  letter-spacing: 1px;
}

.event-large-poster-card .poster-link-text {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.marquee-scroller-track.super-fast-scroll {
  display: flex;
  gap: 1.8rem;
  animation: posterMarqueeSuperFast 35s linear infinite;
  white-space: nowrap;
}

.marquee-scroller-track:hover, .gallery-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes posterMarqueeSuperFast {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.gallery-marquee-track {
  display: flex;
  gap: 1.8rem;
  animation: galleryMarquee 11s linear infinite;
  white-space: nowrap;
}

@keyframes galleryMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SQUARE EVENT POSTERS */
.event-poster-2x3 {
  flex: 0 0 260px !important;
  width: 260px !important;
  min-width: 260px !important;
  max-width: 260px !important;
  flex-shrink: 0 !important;
  height: 260px !important;
  background: var(--surface-card);
  border: 1.5px solid var(--gold-bright);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}

.poster-bg-img {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.85);
}

.poster-overlay-gradient {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(6, 3, 14, 0.95) 0%, rgba(6, 3, 14, 0.2) 60%, rgba(6, 3, 14, 0.4) 100%);
}

.poster-basket-badge {
  position: absolute; top: 0.8rem; left: 0.8rem; z-index: 5;
  background: var(--gold-bright); color: #06030E;
  font-size: 0.65rem; font-weight: 900; padding: 0.2rem 0.55rem; border-radius: 4px;
}

.poster-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.2rem; z-index: 5;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

.poster-title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold-bright); margin-bottom: 0.3rem; white-space: normal; line-height: 1.2; }
.poster-link { font-size: 0.72rem; font-weight: 800; color: #FAF9FC; text-transform: uppercase; }

/* ENLARGED GALLERY CARDS (NO OVERLAY CAPTION) */
.gallery-photo-card {
  flex: 0 0 360px; height: 240px;
  border-radius: 20px; overflow: hidden; position: relative;
  border: 1.5px solid var(--glass-border);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.photo-card-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-size: cover; background-position: center; }

/* REELS CAROUSEL & DOTS */
.reels-3-stage-slider { display: flex; align-items: center; justify-content: center; gap: 1.5rem; position: relative; width: 100%; }
.reel-arrow-btn { background: rgba(18, 9, 36, 0.9); border: 1.5px solid var(--gold-bright); color: var(--gold-bright); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; box-shadow: 0 0 15px var(--gold-glow); transition: all 0.25s ease; }
.reel-arrow-btn:hover { background: var(--gold-bright); color: #06030E; box-shadow: 0 0 25px var(--gold-bright); }
.reel-stage-center { width: 220px; height: 350px; max-width: 70vw; border-radius: 20px; border: 2px solid var(--neon-purple); box-shadow: 0 0 40px var(--neon-purple); position: relative; overflow: hidden; cursor: pointer; transition: transform 0.35s ease; }
.reel-stage-center:hover { transform: scale(1.03); }
.reel-center-art { width: 100%; height: 100%; background-size: cover; background-position: center; filter: brightness(0.85); transition: background-image 0.4s ease; }
.reel-play-button-gold { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; border-radius: 50%; background: var(--gold-gradient); color: #06030E; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 25px var(--gold-bright); }
.reel-dots-pagination { display: flex; gap: 0.6rem; justify-content: center; margin-top: 1.5rem; }
.reel-dots-pagination .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); cursor: pointer; transition: background 0.3s ease, transform 0.3s ease; }
.reel-dots-pagination .dot.active { background: var(--gold-bright); transform: scale(1.3); box-shadow: 0 0 10px var(--gold-bright); }

/* SPONSORS */
.sponsors-official-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; width: 100%; }
.sponsor-official-card { background: rgba(255, 255, 255, 0.03); border: 1.5px solid var(--glass-border); border-radius: 16px; padding: 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; width: 100%; }
.sp-tier-badge { font-size: 0.68rem; font-weight: 900; letter-spacing: 2px; color: var(--gold-bright); text-transform: uppercase; }
.sp-logo-img-wrapper { width: 100%; height: 90px; display: flex; align-items: center; justify-content: center; }
.sp-logo-img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* CONTACT ACCORDION */
.contact-kicker-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(245, 194, 66, 0.12); border: 1px solid var(--gold-bright); color: var(--gold-bright); padding: 0.35rem 1rem; border-radius: 6px; font-size: 0.75rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.8rem; }
.contact-accordion-title { font-family: var(--font-heading); font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; color: var(--gold-bright); letter-spacing: 2px; line-height: 1; margin-bottom: 0.6rem; }
.contact-accordion-sub { font-size: 1.05rem; color: rgba(250, 249, 252, 0.85); line-height: 1.6; margin-bottom: 2.5rem; }
.contact-accordion-stack { max-width: 850px; width: 100%; margin: 0 auto 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-acc-card { background: var(--surface-card); border: 1.5px solid rgba(255, 255, 255, 0.12); border-radius: 16px; padding: 1.4rem 1.8rem; cursor: pointer; transition: all 0.35s ease; text-align: left; width: 100%; }
.contact-acc-card.open { border-color: var(--gold-bright); background: rgba(26, 11, 54, 0.95); box-shadow: 0 0 20px var(--gold-glow); }
.acc-card-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.acc-person-name { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 800; color: #FAF9FC; }
.acc-person-role { font-size: 0.72rem; font-weight: 800; letter-spacing: 1.5px; color: var(--gold-bright); text-transform: uppercase; margin-top: 0.2rem; }
.acc-chevron { color: var(--gold-bright); font-size: 1.2rem; transition: transform 0.35s ease; }
.contact-acc-card.open .acc-chevron { transform: rotate(180deg); }
.acc-card-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, margin-top 0.35s ease, padding-top 0.35s ease; }
.contact-acc-card.open .acc-card-body { max-height: 100px; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.btn-tel-accordion { background: var(--gold-gradient); color: #06030E; padding: 0.55rem 1.4rem; border-radius: 9999px; font-size: 0.88rem; font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.email-bottom-pill-wrapper { margin-top: 2rem; width: 100%; display: flex; justify-content: center; }
.email-purple-pill { background: #240C44; border: 1.5px solid var(--neon-purple); color: #FAF9FC; padding: 0.85rem 2rem; border-radius: 9999px; font-size: 0.92rem; font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: 0.6rem; }

/* FOOTER & MODALS */
.site-footer { background: #040209; border-top: 2px solid var(--gold-bright); padding: 3rem 1.5rem; width: 100%; text-align: center; }
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(6, 3, 14, 0.95); backdrop-filter: blur(20px); z-index: 3000; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.active { display: flex !important; }
.modal-card { background: var(--surface-card); border: 1.5px solid var(--gold-bright); border-radius: 20px; max-width: 650px; width: 100%; padding: 2rem 1.5rem; position: relative; }
.modal-close-btn { position: absolute; top: 1rem; right: 1rem; background: rgba(245, 194, 66, 0.15); border: 1px solid var(--gold-bright); color: var(--gold-bright); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* MEDIA QUERIES FOR MOBILE & TABLETS */
@media (max-width: 1100px) {
  .hero-grid-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .hero-left-content { align-items: center; }
  .hero-date-card { justify-content: center; }
  .about-grid-card, .theme-arena-grid, .sponsors-grid-card, .location-grid-card, .reels-grid-card { grid-template-columns: 1fr; padding: 2.5rem 1.8rem; text-align: center; }
  .about-card-left, .theme-arena-left, .sponsors-left, .location-left, .reels-left { align-items: center; }
  .feature-badges-row, .arena-pillars-row { grid-template-columns: repeat(2, 1fr); }
  .sponsors-official-trio { grid-template-columns: repeat(3, 1fr); }
  .about-card-right, .theme-arena-right, .location-right { min-height: 250px; }
  .btn-insta-gold, .btn-gold-outline { align-self: center; }
  .address-box-icon {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    width: 100%;
  }
  .address-box-icon .marker-gold { margin-top: 0; margin-right: 0; }
}

@media (max-width: 768px) {
  .header-institutional { padding: 0.65rem 1rem; }
  .nav-inst-logo { height: 42px; }
  .nav-ssn-logo { height: 56px; }
  .nav-snuc-logo { height: 26px; }
  .header-nav-container { display: none; }
  .hamburger-btn { display: flex !important; }
  .hero-section { padding: 5.5rem 1rem 2rem; text-align: center; }
  .hero-grid-container { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero-left-content { align-items: center; width: 100%; }
  .hero-daksha-logo { height: 115px; }
  .presenter-l1 { font-size: 0.9rem; line-height: 1.35; text-align: center; }
  .presenter-l2 { font-size: 0.72rem; text-align: center; }
  .hero-main-title { font-size: clamp(1.8rem, 7vw, 3.2rem); letter-spacing: 1px; text-align: center; }
  .hero-slogan { font-size: 0.92rem; letter-spacing: 2.5px; text-align: center; }
  .column-divider { justify-content: center; }
  .hero-desc { font-size: 0.95rem; text-align: center; }
  .hero-countdown-timer { justify-content: center; }
  .portal-ring-wrapper { width: 280px; height: 280px; margin: 0 auto; }
  .hero-date-card { justify-content: center; width: 100%; margin-top: 1rem; }
  .date-capsule { padding: 1rem 1.8rem; flex-direction: row; gap: 1rem; }
  .date-num { font-size: 1.8rem; }
  .stats-counter-bar { grid-template-columns: repeat(2, 1fr); display: grid; gap: 1.2rem 0.8rem; padding: 1.2rem 1rem; margin-top: 2rem; }
  .stat-divider { display: none; }
  .stat-item { flex-direction: column; text-align: center; gap: 0.3rem; }
  .about-section, .theme-section, .events-section, .gallery-section, .sponsors-section, .location-section, .instagram-section, .contact-section { padding: 3rem 1rem; }
  .about-grid-card, .theme-arena-grid, .sponsors-grid-card, .location-grid-card, .reels-grid-card { padding: 1.8rem 1.2rem; border-radius: 18px; gap: 2rem; }
  .feature-badges-row, .arena-pillars-row { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .sponsors-official-trio { grid-template-columns: 1fr; gap: 1rem; }
  .athena-spear-visual, .helmet-altar-visual, .map-graphic-container { min-height: 220px; }
  .event-poster-2x3 { flex: 0 0 210px !important; width: 210px !important; min-width: 210px !important; max-width: 210px !important; height: 210px !important; flex-shrink: 0 !important; }
  .gallery-photo-card { flex: 0 0 300px; height: 200px; }
  .reel-stage-center { width: 190px; height: 300px; }
  .contact-accordion-title { font-size: 2.2rem; }
  .contact-acc-card { padding: 1.1rem 1.2rem; }
  .acc-person-name { font-size: 1.0rem; }
}

@media (max-width: 480px) {
  .hero-main-title { font-size: 1.65rem; }
  .nav-inst-logo { height: 36px; }
  .nav-ssn-logo { height: 48px; }
  .nav-snuc-logo { height: 22px; }
  .hero-daksha-logo { height: 95px; }
  .portal-ring-wrapper { width: 240px; height: 240px; }
  .feature-badges-row, .arena-pillars-row { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .event-poster-2x3 { flex: 0 0 180px !important; width: 180px !important; min-width: 180px !important; max-width: 180px !important; height: 180px !important; flex-shrink: 0 !important; }
  .gallery-photo-card { flex: 0 0 260px; height: 175px; }
  .reel-stage-center { width: 170px; height: 270px; }
}
