/* ==========================================================================
   ⚡ Aurafest'26 — Master Stylesheet
   Vibrant Editorial + Modern Cyber Glassmorphism Design System
   ========================================================================== */

:root {
  /* ===== VIBRANT LIGHT TOKENS ===== */
  --paper: #FBF7FF;
  --ink: #17121F;
  --primary: #7C3AED;
  /* Electric Violet */
  --primary-dk: #5B21B6;
  --primary-glow: rgba(124, 58, 237, 0.25);
  --secondary: #B3106A;
  /* Poster Magenta (AA on light) */
  --secondary-br: #FF2E88;
  /* Bright Accent Magenta */
  --accent: #C6FF00;
  /* Electric Lime */
  --accent-text: #0E1700;
  --cyan: #006E7A;
  /* Teal Cyan */
  --cyan-br: #00E5FF;
  /* Bright Cyan */
  --graphite: #4A4358;
  --line: rgba(124, 58, 237, 0.20);
  --line-strong: rgba(124, 58, 237, 0.40);
  --card-bg: linear-gradient(145deg, rgba(248, 238, 255, 0.95) 0%, rgba(255, 238, 250, 0.92) 50%, rgba(238, 248, 255, 0.92) 100%);
  --card-hover: linear-gradient(145deg, rgba(252, 244, 255, 0.98) 0%, rgba(255, 244, 252, 0.96) 50%, rgba(244, 251, 255, 0.96) 100%);
  --modal-bg: linear-gradient(145deg, rgba(250, 242, 255, 0.98) 0%, rgba(255, 240, 250, 0.96) 100%);
  --shadow: rgba(124, 58, 237, 0.16);
  --shadow-lg: 0 20px 40px -12px rgba(124, 58, 237, 0.28);
  --tag-bg: color-mix(in srgb, var(--primary) 12%, transparent);

  /* Typography */
  --font-display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Layout */
  --maxw: 1240px;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
}

[data-theme="dark"] {
  /* ===== MIDNIGHT CYBER DARK TOKENS ===== */
  --paper: #0B0714;
  --ink: #F3EEFF;
  --primary: #A78BFA;
  --primary-dk: #C4B5FD;
  --primary-glow: rgba(167, 139, 250, 0.35);
  --secondary: #FF6FB0;
  --secondary-br: #FF2E88;
  --accent: #D4FF3D;
  --accent-text: #0B0714;
  --cyan: #4DE6F2;
  --cyan-br: #00E5FF;
  --graphite: #B7ADD1;
  --line: rgba(167, 139, 250, 0.25);
  --line-strong: rgba(167, 139, 250, 0.50);
  --card-bg: linear-gradient(145deg, rgba(28, 16, 48, 0.90) 0%, rgba(42, 18, 56, 0.86) 50%, rgba(16, 28, 52, 0.86) 100%);
  --card-hover: linear-gradient(145deg, rgba(38, 22, 64, 0.96) 0%, rgba(54, 24, 72, 0.94) 50%, rgba(22, 38, 68, 0.94) 100%);
  --modal-bg: linear-gradient(145deg, rgba(24, 14, 42, 0.98) 0%, rgba(36, 16, 50, 0.96) 100%);
  --shadow: rgba(167, 139, 250, 0.30);
  --shadow-lg: 0 24px 50px -15px rgba(0, 0, 0, 0.75);
  --tag-bg: color-mix(in srgb, var(--primary) 18%, transparent);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(124, 58, 237, 0.22) 0%, transparent 42%),
    radial-gradient(circle at 88% 22%, rgba(255, 46, 136, 0.20) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.16) 0%, transparent 48%),
    radial-gradient(circle at 15% 75%, rgba(198, 255, 0, 0.14) 0%, transparent 38%),
    radial-gradient(circle at 85% 85%, rgba(124, 58, 237, 0.20) 0%, transparent 45%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background 0.35s ease, color 0.35s ease;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

[data-theme="dark"] body {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 10% 15%, rgba(124, 58, 237, 0.32) 0%, transparent 45%),
    radial-gradient(circle at 90% 25%, rgba(255, 46, 136, 0.28) 0%, transparent 42%),
    radial-gradient(circle at 50% 55%, rgba(0, 229, 255, 0.22) 0%, transparent 48%),
    radial-gradient(circle at 12% 80%, rgba(212, 255, 61, 0.18) 0%, transparent 38%),
    radial-gradient(circle at 88% 90%, rgba(167, 139, 250, 0.26) 0%, transparent 45%);
  background-attachment: fixed;
}

/* Ambient dotted background pattern */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(var(--line) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.45;
}

/* Floating Vibrant Ambient Aurora Glow Orbs */
.ambient-glow-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  mix-blend-mode: screen;
  will-change: transform;
}

.ambient-orb-1 {
  top: -8%;
  left: -6%;
  width: 58vw;
  height: 58vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.5) 0%, rgba(124, 58, 237, 0) 70%);
  animation: orbDrift1 16s ease-in-out infinite alternate;
}

.ambient-orb-2 {
  top: 28%;
  right: -10%;
  width: 52vw;
  height: 52vw;
  max-width: 640px;
  max-height: 640px;
  background: radial-gradient(circle, rgba(255, 46, 136, 0.45) 0%, rgba(255, 46, 136, 0) 70%);
  animation: orbDrift2 20s ease-in-out infinite alternate;
}

.ambient-orb-3 {
  bottom: 22%;
  left: 5%;
  width: 48vw;
  height: 48vw;
  max-width: 580px;
  max-height: 580px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.38) 0%, rgba(0, 229, 255, 0) 70%);
  animation: orbDrift3 18s ease-in-out infinite alternate;
}

.ambient-orb-4 {
  bottom: -10%;
  right: 12%;
  width: 50vw;
  height: 50vw;
  max-width: 600px;
  max-height: 600px;
  background: radial-gradient(circle, rgba(198, 255, 0, 0.28) 0%, rgba(124, 58, 237, 0.35) 50%, rgba(0, 0, 0, 0) 70%);
  animation: orbDrift1 24s ease-in-out infinite alternate-reverse;
}

@keyframes orbDrift1 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(60px, 40px, 0) scale(1.1);
  }

  100% {
    transform: translate3d(-40px, 80px, 0) scale(0.95);
  }
}

@keyframes orbDrift2 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-70px, -50px, 0) scale(1.15);
  }

  100% {
    transform: translate3d(30px, 60px, 0) scale(0.9);
  }
}

@keyframes orbDrift3 {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(50px, -60px, 0) scale(1.08);
  }

  100% {
    transform: translate3d(-50px, 40px, 0) scale(0.92);
  }
}



.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* ==========================================================================
   Buttons & Pills
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #181126 0%, #0F091A 100%);
  color: #FFFFFF;
  border: 1.5px solid rgba(167, 139, 250, 0.4);
  box-shadow: 0 4px 16px -2px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(124, 58, 237, 0.65), 0 0 16px rgba(124, 58, 237, 0.3);
  border-color: var(--primary);
  color: #FFFFFF;
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px -2px rgba(124, 58, 237, 0.4);
}

.btn-accent {
  background: linear-gradient(135deg, #C6FF00 0%, #B2FF00 100%);
  color: #0E1700;
  border: 1.5px solid rgba(198, 255, 0, 0.6);
  box-shadow: 0 4px 16px -2px rgba(198, 255, 0, 0.45);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -4px rgba(198, 255, 0, 0.7), 0 0 16px rgba(198, 255, 0, 0.35);
}

.btn-outline {
  background: color-mix(in srgb, var(--card-bg) 80%, transparent);
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  box-shadow: 0 2px 8px -2px var(--shadow);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -4px var(--shadow-lg);
}

.btn-ghost {
  background: var(--tag-bg);
  color: var(--primary);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-md {
  padding: 11px 22px;
  font-size: 0.92rem;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-badge {
  width: auto;
  height: clamp(44px, 4.2vw, 58px);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-badge img,
.brand-badge .brand-glyph {
  width: auto;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.brand-divider {
  width: 1.5px;
  height: 28px;
  background: var(--line-strong);
  opacity: 0.6;
  border-radius: 1px;
}

.brand-fest-logo {
  height: clamp(34px, 3.8vw, 48px);
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(124, 58, 237, 0.35));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand:hover .brand-fest-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 14px rgba(255, 46, 136, 0.5));
}

.brand-text {
  font-family: 'Unbounded', 'Syne', var(--font-display), sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-text span {
  color: var(--secondary-br);
}

.footer-fest-logo {
  height: clamp(34px, 3.8vw, 48px);
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 10px rgba(124, 58, 237, 0.35));
  transition: transform 0.25s ease;
}

.footer-brand:hover .footer-fest-logo {
  transform: scale(1.04);
}

.hero-fest-logo {
  width: clamp(340px, 58vw, 680px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 28px rgba(124, 58, 237, 0.45)) drop-shadow(0 0 45px rgba(255, 46, 136, 0.25));
  animation: heroLogoFloat 6s ease-in-out infinite alternate;
  will-change: transform, filter;
  transition: transform 0.3s ease;
}

.hero-fest-logo:hover {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 14px 36px rgba(124, 58, 237, 0.6)) drop-shadow(0 0 55px rgba(0, 229, 255, 0.35));
}

.hero-centered {
  text-align: center;
}

.hero-top-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}

.hero-logo-center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px auto 20px;
  width: 100%;
  text-align: center;
}

.hero-meta-panel-centered {
  max-width: 860px;
  width: 100%;
  margin: 10px auto 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(246, 236, 255, 0.96) 0%, rgba(255, 236, 248, 0.94) 50%, rgba(236, 248, 255, 0.94) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px -10px rgba(124, 58, 237, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  z-index: 2;
  text-align: left;
}

.hero-sub-centered {
  margin: 0 auto 28px;
  text-align: center;
  max-width: 68ch;
}

.hero-actions-centered {
  justify-content: center;
  margin-bottom: 24px;
}

.countdown-box-centered {
  margin: 4px auto 0;
}

@keyframes heroLogoFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(0.4deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.intro-aurafest-logo {
  width: clamp(280px, 80vw, 680px);
  max-width: 95%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 36px rgba(124, 58, 237, 0.85)) drop-shadow(0 0 65px rgba(0, 229, 255, 0.5));
  animation: introLogoGlow 3.5s ease-in-out infinite alternate;
}

@keyframes introLogoGlow {
  0% {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 28px rgba(124, 58, 237, 0.75)) drop-shadow(0 0 50px rgba(0, 229, 255, 0.4));
    transform: scale(1);
  }

  100% {
    filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 46px rgba(255, 46, 136, 0.9)) drop-shadow(0 0 80px rgba(0, 229, 255, 0.65));
    transform: scale(1.03);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.navlinks a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s ease;
}

.navlinks a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary-br));
  border-radius: 3px;
  transition: right 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.navlinks a:hover::after,
.navlinks a:focus-visible::after,
.navlinks a.active::after {
  right: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}


.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--line);
  color: var(--ink);
  place-items: center;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 48px;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-text);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  box-shadow: 0 4px 14px var(--shadow);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary-br);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 48px;
  align-items: start;
  margin-top: 24px;
}

/* --- Ultra-Modern Cyberpunk / Futuristic Hero Title --- */
.hero-title-wrap {
  position: relative;
  margin: 12px 0 20px;
  display: inline-block;
}

.hero-main-title {
  font-family: 'Unbounded', 'Syne', var(--font-display), sans-serif;
  font-size: clamp(42px, 7.5vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
}

.title-word-aura {
  color: var(--ink);
  background: linear-gradient(135deg, var(--ink) 25%, var(--primary-dk) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  letter-spacing: -0.02em;
}

[data-theme="dark"] .title-word-aura {
  background: linear-gradient(135deg, #FFFFFF 30%, #C4B5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-word-fest {
  background: linear-gradient(135deg, #FF2E88 0%, #7C3AED 45%, #00E5FF 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: festivalGradientFlow 6s ease infinite;
  filter: drop-shadow(0 2px 14px rgba(255, 46, 136, 0.3));
}

.title-year-badge {
  font-family: 'Space Mono', monospace;
  font-size: clamp(22px, 3.8vw, 44px);
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-br) 100%);
  padding: 3px 14px;
  border-radius: var(--radius-sm);
  margin-left: 12px;
  letter-spacing: 0.04em;
  display: inline-block;
  vertical-align: middle;
  transform: translateY(-4px) rotate(-3deg);
  box-shadow: 0 6px 18px -3px var(--primary-glow), 0 0 0 1.5px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.title-year-badge:hover {
  transform: translateY(-8px) rotate(0deg) scale(1.08);
  box-shadow: 0 10px 24px -2px rgba(255, 46, 136, 0.45);
}

.hero-title-backdrop-glow {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 85%;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.22) 0%, rgba(255, 46, 136, 0.12) 50%, transparent 75%);
  filter: blur(28px);
  z-index: 1;
  pointer-events: none;
}

@keyframes festivalGradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: var(--graphite);
  max-width: 54ch;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* --- Countdown Timer --- */
.countdown-box {
  margin-top: 32px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(246, 236, 255, 0.96) 0%, rgba(255, 238, 248, 0.94) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.32);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 12px 28px -10px rgba(124, 58, 237, 0.25);
}

.countdown-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
}

.countdown-grid {
  display: flex;
  align-items: center;
  gap: 12px;
}

.countdown-unit {
  text-align: center;
}

.countdown-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.countdown-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--graphite);
  font-family: var(--font-mono);
  margin-top: 2px;
}

.countdown-sep {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: -6px;
  animation: countdownPulse 1s ease-in-out infinite;
}

@keyframes countdownPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(0.85);
  }
}

/* --- Hero Meta Panel (Ticket style) --- */
.hero-meta-panel {
  background: linear-gradient(145deg, rgba(246, 236, 255, 0.96) 0%, rgba(255, 236, 248, 0.94) 50%, rgba(236, 248, 255, 0.94) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.32);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: 0 16px 36px -10px rgba(124, 58, 237, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  position: relative;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(255, 46, 136, 0.06) 100%);
  border: 1px solid rgba(124, 58, 237, 0.18);
  box-shadow: 0 2px 6px rgba(124, 58, 237, 0.04);
}

.meta-row:nth-child(odd) {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.09) 0%, rgba(124, 58, 237, 0.08) 100%);
  border-color: rgba(0, 229, 255, 0.22);
}

.meta-row .label {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-row .value {
  font-weight: 600;
  text-align: right;
  color: var(--ink);
}

.meta-badge-fee {
  background: var(--accent);
  color: var(--accent-text);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-weight: 700;
}

/* --- Grand Institution Announcement Banner Card --- */
.orgs-announcement-card {
  margin-top: 56px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.18) 0%, rgba(255, 46, 136, 0.12) 50%, rgba(0, 229, 255, 0.10) 100%);
  border: 2px solid rgba(124, 58, 237, 0.40);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 20px 48px -12px rgba(124, 58, 237, 0.30);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.orgs-announcement-card.center-aligned {
  text-align: center;
}

.orgs-announcement-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  pointer-events: none;
}

.announcement-header {
  margin-bottom: 24px;
}

.announcement-header.center-aligned {
  display: flex;
  justify-content: center;
}

.announcement-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--tag-bg);
  color: var(--secondary);
  border: 1px solid var(--line);
  padding: 6px 18px;
  border-radius: var(--radius-full);
}

.announcement-center-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 900px;
}

/* Centered 500px Institution Logo (No outer box/border/background) */
.main-institution-logo-wrap {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

[data-theme="dark"] .main-institution-logo-wrap {
  background: transparent;
}

.main-institution-logo-wrap:hover {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 12px 24px var(--primary-glow));
}

.main-institution-logo {
  width: 100%;
  height: auto;
  max-width: 500px;
  max-height: 500px;
  object-fit: contain;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: none;
  background: transparent;
}

.announcement-content-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

@media (max-width: 860px) {
  .announcement-content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.org-logos-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.org-badge {
  width: clamp(90px, 11vw, 125px);
  height: clamp(90px, 11vw, 125px);
  border-radius: 24px;
  background: #FFFFFF;
  border: 2px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 16px 32px -12px var(--shadow);
  animation: badgeFloat 5s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

[data-theme="dark"] .org-badge {
  background: rgba(255, 255, 255, 0.95);
}

.org-badge:nth-child(2) {
  animation-delay: -2.5s;
}

.org-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.org-badge-caption {
  display: none;
  /* Screen reader accessible text is in alt */
}

.org-badge:hover {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.08);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -10px var(--primary-glow);
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

.announcement-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.announcement-details.center-aligned {
  text-align: center;
  align-items: center;
  width: 100%;
}

.dept-entry {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dept-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.college-name {
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 600;
  color: var(--graphite);
  line-height: 1.45;
}

.dept-divider {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dept-divider.center-aligned {
  width: 100%;
  max-width: 360px;
  margin: 6px auto;
}

.dept-divider::before,
.dept-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.dept-divider span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
  background: var(--tag-bg);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

/* ==========================================================================
   Section Headers & Common Controls
   ========================================================================== */
.section {
  padding: clamp(56px, 7vw, 96px) 0;
  position: relative;
}

.section-head {
  margin-bottom: 36px;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

.section-subtitle {
  color: var(--graphite);
  font-size: 1.05rem;
  max-width: 60ch;
  margin-top: 8px;
}

/* Events Filter Bar */
.events-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  background: linear-gradient(135deg, rgba(246, 238, 255, 0.95) 0%, rgba(255, 240, 250, 0.92) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.28);
  padding: 5px;
  border-radius: var(--radius-full);
  flex-wrap: wrap;
  box-shadow: 0 6px 18px -6px rgba(124, 58, 237, 0.15);
}

.filter-tab {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--graphite);
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.filter-tab.active {
  background: var(--primary);
  color: #FFFFFF;
}

.filter-search {
  position: relative;
  min-width: 260px;
}

.filter-search input {
  width: 100%;
  padding: 10px 16px 10px 38px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(124, 58, 237, 0.28);
  background: linear-gradient(135deg, rgba(246, 238, 255, 0.95) 0%, rgba(255, 240, 250, 0.92) 100%);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px -6px rgba(124, 58, 237, 0.12);
}

.filter-search input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.filter-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--graphite);
  pointer-events: none;
}

/* ==========================================================================
   Events Grid & Cards
   ========================================================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.event-card {
  background: linear-gradient(160deg, rgba(255, 245, 252, 0.95) 0%, rgba(244, 236, 255, 0.95) 55%, rgba(236, 249, 255, 0.92) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.24);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px -10px rgba(124, 58, 237, 0.18);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -12px rgba(124, 58, 237, 0.36);
  border-color: var(--primary);
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-tag.tech {
  background: var(--primary-dk);
  color: #FFFFFF;
}

.card-tag.non-tech {
  background: var(--secondary);
  color: #FFFFFF;
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-family: 'Unbounded', 'Syne', var(--font-display), sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
  transition: color 0.2s ease;
}

.event-card:hover .card-title {
  color: var(--primary);
}

.card-summary {
  font-size: 0.9rem;
  color: var(--graphite);
  line-height: 1.55;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  margin-bottom: 18px;
}

.meta-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: var(--tag-bg);
  color: var(--ink);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.card-footer .btn {
  flex: 1;
}

/* ==========================================================================
   Schedule & Timeline
   ========================================================================== */
.timeline-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary-br), var(--cyan-br));
}

@media (min-width: 768px) {
  .timeline-wrap::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 36px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 3px var(--primary);
  z-index: 2;
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-card {
  margin-left: 60px;
  background: linear-gradient(135deg, rgba(248, 240, 255, 0.95) 0%, rgba(255, 242, 250, 0.92) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.24);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 10px 24px -10px rgba(124, 58, 237, 0.20);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.timeline-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 14px 30px -8px rgba(124, 58, 237, 0.30);
}

@media (min-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-card {
    margin-left: 0;
    margin-right: calc(50% + 32px);
    text-align: right;
  }

  .timeline-item:nth-child(even) .timeline-card {
    margin-left: calc(50% + 32px);
    margin-right: 0;
  }
}

.timeline-time {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin: 4px 0;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--graphite);
}

.timeline-wishes-banner {
  max-width: 680px;
  margin: 36px auto 0;
  padding: 16px 28px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 12%, var(--card-bg)), color-mix(in srgb, var(--secondary-br) 10%, var(--card-bg)));
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  box-shadow: 0 10px 24px -8px var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-wishes-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -6px var(--shadow-lg);
  border-color: var(--primary);
}

.timeline-wishes-banner .wishes-icon {
  font-size: 1.25rem;
  animation: pulseWishes 2s ease-in-out infinite alternate;
}

@keyframes pulseWishes {
  0% {
    transform: scale(1) rotate(0deg);
  }

  100% {
    transform: scale(1.25) rotate(12deg);
  }
}

.timeline-wishes-banner .wishes-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   Registration CTA Section
   ========================================================================== */
.register-cta-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.20) 0%, rgba(255, 46, 136, 0.15) 50%, rgba(0, 229, 255, 0.12) 100%);
  border: 2px solid rgba(124, 58, 237, 0.40);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 20px 48px -12px rgba(124, 58, 237, 0.30);
  position: relative;
  overflow: hidden;
}

.register-cta-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow), transparent 70%);
  pointer-events: none;
}

.register-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.cta-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.perk-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cta-fee-box {
  background: linear-gradient(145deg, rgba(246, 236, 255, 0.97) 0%, rgba(255, 238, 248, 0.94) 50%, rgba(238, 248, 255, 0.94) 100%);
  border: 2px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: left;
  box-shadow: 0 16px 36px -10px rgba(124, 58, 237, 0.28);
}

.fee-box-header {
  margin-bottom: 14px;
  text-align: center;
}

.fee-badge-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.fee-box-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

.combo-tiers-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.combo-tier-card {
  position: relative;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.11) 0%, rgba(0, 229, 255, 0.07) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.28);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.combo-tier-card:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 8px 20px -4px rgba(124, 58, 237, 0.30);
}

.combo-tier-card.featured {
  border-color: rgba(255, 46, 136, 0.45);
  background: linear-gradient(135deg, rgba(255, 46, 136, 0.14) 0%, rgba(124, 58, 237, 0.11) 100%);
}

.combo-tier-card.best-value {
  border-color: rgba(198, 255, 0, 0.60);
  background: linear-gradient(135deg, rgba(198, 255, 0, 0.16) 0%, rgba(255, 46, 136, 0.12) 100%);
}

.combo-badge {
  position: absolute;
  top: -9px;
  right: 12px;
  background: var(--primary);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.combo-badge.best {
  background: var(--secondary-br);
}

.combo-tier-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.combo-tier-name {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}

.combo-tier-desc {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--graphite);
}

.combo-tier-price {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.price-val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.original-price {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--graphite);
  text-decoration: line-through;
  opacity: 0.75;
}

.fee-note {
  font-size: 0.8rem;
  color: var(--graphite);
  text-align: center;
  line-height: 1.45;
  margin-top: 12px;
}

/* ==========================================================================
   Venue & Route Map Section
   ========================================================================== */
.venue-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: stretch;
}

.venue-info-card {
  background: linear-gradient(145deg, rgba(246, 238, 255, 0.95) 0%, rgba(236, 249, 255, 0.92) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.28);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 12px 30px -10px rgba(124, 58, 237, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.venue-campus-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.venue-college-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.venue-college-desc {
  color: var(--graphite);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.venue-details-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.venue-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.venue-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.venue-text {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.5;
}

.bus-routes-tags {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 4px 0;
}

.bus-badge {
  background: rgba(99, 102, 241, 0.12);
  color: var(--primary);
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(99, 102, 241, 0.25);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.bus-subtext {
  display: block;
  font-size: 0.82rem;
  color: var(--graphite);
  margin-top: 2px;
}

.venue-phone-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.venue-phone-link:hover {
  text-decoration: underline;
  color: var(--secondary);
}

.venue-directions-wrap {
  margin-top: 8px;
}

.venue-directions-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.venue-map-card {
  background: linear-gradient(145deg, rgba(246, 238, 255, 0.95) 0%, rgba(236, 249, 255, 0.92) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.28);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 30px -10px rgba(124, 58, 237, 0.22);
  min-height: 380px;
}

.venue-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

/* ==========================================================================
   About & FAQ Sections
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.about-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(124, 58, 237, 0.18);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08), 0 4px 14px -4px rgba(124, 58, 237, 0.08);
  text-align: center;
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #17121F;
}

.about-card p {
  color: #4A4358;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 14px;
}

/* Committee & Leadership Grid */
.committee-section {
  margin-top: 48px;
}

.committee-title-wrap {
  text-align: center;
  margin-bottom: 28px;
}

.committee-title-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.committee-title-wrap p {
  color: var(--graphite);
  font-size: 0.95rem;
}

.committee-subgroup-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.committee-subgroup-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.committee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}

.committee-card {
  background: linear-gradient(145deg, rgba(247, 240, 255, 0.95) 0%, rgba(255, 242, 250, 0.92) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.26);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  box-shadow: 0 8px 22px -8px rgba(124, 58, 237, 0.18);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.committee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.committee-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 12px 28px -8px var(--shadow);
}

.committee-card:hover::before {
  opacity: 1;
}

.committee-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.08);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 12px;
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.committee-role-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.08);
  color: var(--primary);
  margin-bottom: 8px;
  border: 1px solid rgba(99, 102, 241, 0.2);
}

.committee-role-badge.staff-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.25);
}

.committee-role-badge.student-badge {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
  border-color: rgba(14, 165, 233, 0.25);
}

.committee-phone-wrap {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.committee-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  background: color-mix(in srgb, var(--primary) 10%, var(--card-bg));
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid rgba(124, 58, 237, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.committee-phone-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--primary-glow);
}

.student-card .committee-icon {
  background: rgba(14, 165, 233, 0.08);
  border-color: rgba(14, 165, 233, 0.2);
}

/* Student Organizers 2-Column Department Lists */
.student-org-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 12px;
}

.student-dept-card {
  background: linear-gradient(145deg, rgba(247, 240, 255, 0.95) 0%, rgba(255, 242, 250, 0.92) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.26);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: 0 8px 22px -8px rgba(124, 58, 237, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.student-dept-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0.8;
}

.student-dept-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 12px 28px -8px var(--shadow);
}

.student-dept-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.student-dept-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.student-dept-title-wrap .dept-icon {
  font-size: 1.25rem;
}

.student-dept-title-wrap h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.student-dept-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--primary);
}

.student-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.student-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: color-mix(in srgb, var(--paper) 95%, var(--line));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}

.student-list-item:hover {
  background: var(--card-bg);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateX(3px);
  box-shadow: 0 4px 12px -4px var(--shadow);
}

.student-head-item {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: color-mix(in srgb, var(--primary) 9%, var(--paper)) !important;
  border: 1.5px solid rgba(124, 58, 237, 0.35) !important;
}

.student-head-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.student-head-name {
  color: var(--ink);
  font-size: 0.95rem;
  display: block;
}

.student-head-role {
  display: block;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
}

.student-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  background: rgba(99, 102, 241, 0.1);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid rgba(99, 102, 241, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.student-phone-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.student-item-icon {
  font-size: 1rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-register-item {
  display: none;
  margin-top: 10px;
}

.mobile-nav-register-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  padding: 12px 18px;
  font-size: 0.95rem;
}

.committee-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.committee-sub {
  font-size: 0.85rem;
  color: var(--graphite);
  margin-top: 4px;
}


/* FAQ Accordion */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: linear-gradient(145deg, rgba(247, 240, 255, 0.95) 0%, rgba(255, 242, 250, 0.92) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.26);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 16px -6px rgba(124, 58, 237, 0.12);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 8px 24px -6px rgba(124, 58, 237, 0.25);
}

.faq-summary {
  padding: 18px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary svg {
  transition: transform 0.25s ease;
  color: var(--primary);
}

.faq-item[open] .faq-summary svg {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 22px 20px;
  color: var(--graphite);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Event Details Modal
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-backdrop.open {
  display: grid;
  opacity: 1;
}

.modal-card {
  background: linear-gradient(145deg, rgba(250, 244, 255, 0.98) 0%, rgba(255, 242, 250, 0.96) 100%);
  border: 2px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-lg);
  max-width: 780px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transform: scale(0.94);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.open .modal-card {
  transform: scale(1);
}

.modal-header-img {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.modal-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 5;
}

.modal-close-btn:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.9);
}

.modal-body {
  padding: 28px;
}

.modal-category-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
  display: inline-block;
}

.modal-title {
  font-family: 'Unbounded', 'Syne', var(--font-display), sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--graphite);
  line-height: 1.7;
  margin-bottom: 16px;
}

.modal-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin: 22px 0;
  padding: 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(0, 229, 255, 0.06) 100%);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(124, 58, 237, 0.22);
}

.modal-meta-item .label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
}

.modal-meta-item .val {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin-top: 2px;
}

.modal-rules-box {
  background: linear-gradient(135deg, rgba(246, 238, 255, 0.95) 0%, rgba(255, 240, 250, 0.92) 100%);
  border: 1.5px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 24px;
}

.modal-rules-box h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-rules-box ul {
  padding-left: 20px;
  color: var(--graphite);
  font-size: 0.88rem;
  line-height: 1.6;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer.site-footer {
  background: color-mix(in srgb, var(--paper) 92%, var(--line));
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--graphite);
  font-size: 0.92rem;
  margin-top: 12px;
  max-width: 36ch;
}

.footer-social-section {
  margin-top: 20px;
}

.footer-social-heading {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.footer-social-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  background: var(--card-bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px -2px var(--shadow);
  position: relative;
  overflow: hidden;
}

.footer-social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.12), transparent);
  transition: left 0.5s ease;
}

.footer-social-btn:hover {
  transform: translateY(-2px) translateX(2px);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 8px 20px -4px var(--shadow), 0 0 0 1px rgba(99, 102, 241, 0.25);
  background: color-mix(in srgb, var(--card-bg) 95%, var(--primary));
}

.footer-social-btn:hover::before {
  left: 100%;
}

.footer-social-btn .btn-icon {
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-btn .btn-arrow {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--graphite);
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-social-btn:hover .btn-arrow {
  color: var(--primary);
  transform: translateX(3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--graphite);
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* Footer Venue & Info Blocks */
.footer-info-block {
  margin-bottom: 14px;
}

.footer-info-block:last-child {
  margin-bottom: 0;
}

.footer-info-title {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-info-text {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--graphite);
}

.footer-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--graphite);
}

.footer-details-list strong {
  color: var(--ink);
}

.footer-phone-link,
.footer-email-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-phone-link:hover,
.footer-email-link:hover {
  text-decoration: underline;
  color: var(--secondary);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--graphite);
}

/* ==========================================================================
   🎬 CINEMATIC INTRO ANIMATION SYSTEM
   ========================================================================== */

/* Intro Screen Root Overlay */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #080412;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  user-select: none;
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Exit State: Portal Expansion Fade */
.intro-screen.intro-exit {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.06);
}

/* Ambient Matrix Background Layers */
.intro-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.intro-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.45;
  animation: introGlowFloat 8s ease-in-out infinite alternate;
}

.intro-glow-1 {
  width: 520px;
  height: 520px;
  top: 15%;
  left: 20%;
  background: radial-gradient(circle, #7C3AED 0%, rgba(124, 58, 237, 0) 70%);
}

.intro-glow-2 {
  width: 460px;
  height: 460px;
  bottom: 10%;
  right: 18%;
  background: radial-gradient(circle, #FF2E88 0%, rgba(255, 46, 136, 0) 70%);
  animation-delay: -4s;
}

@keyframes introGlowFloat {
  0% {
    transform: translate(0, 0) scale(0.9);
    opacity: 0.35;
  }

  100% {
    transform: translate(30px, -25px) scale(1.15);
    opacity: 0.65;
  }
}

/* Micro-Particle Dust Layer */
.intro-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  contain: strict;
}

.intro-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #C6FF00;
  box-shadow: 0 0 8px #C6FF00;
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0, 100vh, 0);
  animation: introParticleRise var(--duration, 5.5s) cubic-bezier(0.25, 1, 0.5, 1) infinite;
  animation-delay: var(--delay, 0s);
}

@keyframes introParticleRise {
  0% {
    transform: translate3d(0, 100vh, 0) scale(0.2);
    opacity: 0;
  }

  15% {
    opacity: 0.9;
  }

  85% {
    opacity: 0.8;
  }

  100% {
    transform: translate3d(0, -10vh, 0) scale(1.4);
    opacity: 0;
  }
}

/* Top HUD Header */
.intro-topbar {
  position: absolute;
  top: 24px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 20;
  will-change: transform;
}

.intro-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(23, 14, 38, 0.7);
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.intro-pulse-dot {
  width: 8px;
  height: 8px;
  background: #C6FF00;
  border-radius: 50%;
  box-shadow: 0 0 10px #C6FF00;
  animation: introPulseDot 1.2s ease-in-out infinite alternate;
}

@keyframes introPulseDot {
  0% {
    transform: scale(0.85);
    opacity: 0.6;
    box-shadow: 0 0 4px #C6FF00;
  }

  100% {
    transform: scale(1.25);
    opacity: 1;
    box-shadow: 0 0 14px #C6FF00, 0 0 24px rgba(198, 255, 0, 0.4);
  }
}

.intro-sys-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: #A78BFA;
  text-transform: uppercase;
}



.intro-skip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #F3EEFF;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.intro-skip-btn:hover {
  background: rgba(124, 58, 237, 0.28);
  border-color: #A78BFA;
  color: #FFFFFF;
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.5);
  transform: translateY(-1px);
}

.intro-skip-btn:active {
  transform: translateY(1px) scale(0.97);
}

/* Sonic Boom Shockwave Ripple */
.intro-shockwave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #00E5FF;
  box-shadow: 0 0 40px #00E5FF, 0 0 80px #7C3AED;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  will-change: transform, opacity;
  z-index: 8;
}

.intro-shockwave.trigger-boom {
  animation: introBoomShockwave 1.4s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
}

@keyframes introBoomShockwave {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0.95;
    border-width: 6px;
    border-color: #FFFFFF;
  }

  35% {
    opacity: 0.8;
    border-color: #00E5FF;
    box-shadow: 0 0 60px #00E5FF, 0 0 110px #FF2E88;
  }

  100% {
    transform: translate(-50%, -50%) scale(70);
    opacity: 0;
    border-width: 1px;
    border-color: #7C3AED;
  }
}

/* ==========================================================================
   🔊 CYBER DUAL SIDE SPEAKERS
   ========================================================================== */
.intro-speaker-module {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateZ(0);
  z-index: 15;
  pointer-events: none;
  opacity: 0;
  animation: introSpeakerEnter 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
  will-change: transform, opacity;
}

.intro-speaker-left {
  left: clamp(16px, 4vw, 54px);
}

.intro-speaker-right {
  right: clamp(16px, 4vw, 54px);
}

@keyframes introSpeakerEnter {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.speaker-housing {
  width: 90px;
  background: linear-gradient(180deg, rgba(23, 14, 38, 0.92) 0%, rgba(10, 5, 20, 0.96) 100%);
  border: 1px solid rgba(167, 139, 250, 0.35);
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.3), inset 0 0 15px rgba(0, 0, 0, 0.8);
  border-radius: 16px;
  padding: 12px 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
}

/* LED Level Meter Bar */
.speaker-led-bar {
  display: flex;
  gap: 3px;
  width: 100%;
  justify-content: center;
  padding: 2px 0 4px;
  border-bottom: 1px solid rgba(167, 139, 250, 0.2);
}

.speaker-led-bar span {
  width: 10px;
  height: 3px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.15);
  animation: speakerLedPulse 0.6s ease-in-out infinite alternate;
}

.speaker-led-bar span:nth-child(1) {
  background: #C6FF00;
  animation-delay: 0.1s;
}

.speaker-led-bar span:nth-child(2) {
  background: #C6FF00;
  animation-delay: 0.25s;
}

.speaker-led-bar span:nth-child(3) {
  background: #00E5FF;
  animation-delay: 0.4s;
}

.speaker-led-bar span:nth-child(4) {
  background: #A78BFA;
  animation-delay: 0.15s;
}

.speaker-led-bar span:nth-child(5) {
  background: #FF2E88;
  animation-delay: 0.3s;
}

@keyframes speakerLedPulse {
  0% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }

  100% {
    opacity: 1;
    transform: scaleY(1.2);
    box-shadow: 0 0 6px currentColor;
  }
}

/* Tweeter Driver (Top) */
.speaker-tweeter {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #4C3A7A, #140B24 80%);
  border: 2px solid rgba(167, 139, 250, 0.5);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.4), inset 0 0 6px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.speaker-tweeter .speaker-cone {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #00E5FF, #7C3AED);
  box-shadow: 0 0 8px #00E5FF;
}

/* Woofer Driver (Bottom Subwoofer) */
.speaker-woofer {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #2A1A4A 0%, #0A0514 85%);
  border: 3px solid rgba(167, 139, 250, 0.6);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.5), inset 0 0 12px rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.05s ease;
}

.speaker-woofer .speaker-cone {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #3D2268, #110722 90%);
  border: 1px solid rgba(255, 46, 136, 0.4);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-woofer .speaker-dust-cap {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FF2E88, #7C3AED 70%, #080312);
  box-shadow: 0 0 10px rgba(255, 46, 136, 0.6);
  transition: transform 0.05s ease;
}

/* Live Bass Pumping Cone Animation */
.speaker-pumping .speaker-woofer {
  animation: speakerConePump 0.35s cubic-bezier(0.1, 0.9, 0.2, 1) 3;
}

.speaker-pumping .speaker-woofer .speaker-dust-cap {
  animation: speakerCapThump 0.35s cubic-bezier(0.1, 0.9, 0.2, 1) 3;
}

@keyframes speakerConePump {
  0% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(124, 58, 237, 0.5);
  }

  25% {
    transform: scale(1.18);
    box-shadow: 0 0 35px #FF2E88, 0 0 60px #00E5FF;
  }

  50% {
    transform: scale(0.92);
  }

  75% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes speakerCapThump {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.35);
    filter: brightness(1.4);
  }

  50% {
    transform: scale(0.85);
  }

  100% {
    transform: scale(1);
  }
}

/* Sound Wave Dispersion Rings */
.speaker-wave-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 229, 255, 0.6);
  opacity: 0;
  pointer-events: none;
}

.speaker-pumping .speaker-wave-ring.r1 {
  animation: speakerWaveOut 0.8s ease-out;
}

.speaker-pumping .speaker-wave-ring.r2 {
  animation: speakerWaveOut 0.8s ease-out 0.2s;
}

@keyframes speakerWaveOut {
  0% {
    transform: scale(1);
    opacity: 0.9;
    border-color: #00E5FF;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
    border-color: #FF2E88;
  }
}

.speaker-status-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 1px;
  color: #D4FF3D;
  text-transform: uppercase;
  margin-top: 2px;
}

@media (max-width: 860px) {
  .intro-speaker-module {
    display: none;
  }
}

/* Subtle Screen Shake on Sonic Boom Impact */
.intro-container.boom-shake {
  animation: introBoomShake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes introBoomShake {
  0% {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-6px, 4px, 0);
  }

  30% {
    transform: translate3d(6px, -4px, 0);
  }

  45% {
    transform: translate3d(-4px, 2px, 0);
  }

  60% {
    transform: translate3d(4px, -2px, 0);
  }

  75% {
    transform: translate3d(-2px, 1px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

/* Center Stage Content */
.intro-container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  width: 92%;
  padding: 20px;
  will-change: transform;
  transform: translateZ(0);
}

/* College Emblem Logo Badge (Cool Sci-Fi Integration & Proximity) */
.intro-college-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: clamp(10px, 3vw, 24px);
  opacity: 0;
  transform: translate3d(0, -18px, 0);
  animation: introSlideDown 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  will-change: transform, opacity;
  width: 100%;
  overflow: visible;
  z-index: 5;
  position: relative;
}

.intro-college-logo {
  width: clamp(220px, 60vw, 680px);
  max-width: 95%;
  height: auto;
  max-height: clamp(100px, 25vw, 240px);
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  filter:
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.65)) drop-shadow(0 0 32px rgba(124, 58, 237, 0.8)) drop-shadow(0 0 60px rgba(0, 229, 255, 0.45));
  animation: introLogoPulse 3s ease-in-out infinite alternate;
  will-change: filter, transform;
}

@keyframes introLogoPulse {
  0% {
    filter:
      drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)) drop-shadow(0 0 25px rgba(124, 58, 237, 0.7)) drop-shadow(0 0 50px rgba(0, 229, 255, 0.35));
    transform: scale(1);
  }

  100% {
    filter:
      drop-shadow(0 0 18px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 42px rgba(255, 46, 136, 0.8)) drop-shadow(0 0 75px rgba(0, 229, 255, 0.65));
    transform: scale(1.02);
  }
}

/* Holographic Glitch Title Wrapper */
.intro-title-wrapper {
  position: relative;
  margin-bottom: 22px;
  display: inline-block;
  opacity: 0;
  transform: scale(0.92) translateZ(0);
  animation: introPopTitle 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  will-change: transform, opacity;
}

.intro-aurafest-logo {
  width: clamp(340px, 80vw, 720px);
  max-width: 95vw;
  height: auto;
  max-height: clamp(180px, 35vh, 340px);
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(124, 58, 237, 0.8)) drop-shadow(0 0 45px rgba(255, 46, 136, 0.6)) drop-shadow(0 0 80px rgba(0, 229, 255, 0.45));
  animation: introLogoPulse 3s ease-in-out infinite alternate;
  will-change: filter, transform;
}

.intro-glitch-title {
  position: relative;
  font-family: 'Unbounded', 'Syne', var(--font-display), sans-serif;
  font-size: clamp(2.6rem, 7.5vw, 6.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #FFFFFF;
  text-shadow:
    0 0 20px rgba(124, 58, 237, 0.8),
    0 0 50px rgba(255, 46, 136, 0.5),
    0 0 80px rgba(0, 229, 255, 0.3);
}

.intro-char-layer {
  display: block;
}

.intro-glitch-r,
.intro-glitch-b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.intro-glitch-r {
  color: #FF2E88;
  mix-blend-mode: screen;
  animation: introGlitchRed 2.8s infinite ease-in-out alternate-reverse;
  opacity: 0.75;
}

.intro-glitch-b {
  color: #00E5FF;
  mix-blend-mode: screen;
  animation: introGlitchBlue 2.4s infinite ease-in-out alternate-reverse;
  opacity: 0.75;
}

@keyframes introGlitchRed {
  0% {
    transform: translate(0);
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
  }

  10% {
    transform: translate(-3px, 1px);
    clip-path: polygon(0 15%, 100% 15%, 100% 22%, 0 22%);
  }

  20% {
    transform: translate(0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }

  45% {
    transform: translate(4px, -1px);
    clip-path: polygon(0 50%, 100% 50%, 100% 62%, 0 62%);
  }

  50% {
    transform: translate(0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }

  75% {
    transform: translate(-2px, 2px);
    clip-path: polygon(0 78%, 100% 78%, 100% 86%, 0 86%);
  }

  80% {
    transform: translate(0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }

  100% {
    transform: translate(0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}

@keyframes introGlitchBlue {
  0% {
    transform: translate(0);
    clip-path: polygon(0 8%, 100% 8%, 100% 14%, 0 14%);
  }

  15% {
    transform: translate(3px, -2px);
    clip-path: polygon(0 32%, 100% 32%, 100% 44%, 0 44%);
  }

  25% {
    transform: translate(0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }

  60% {
    transform: translate(-3px, 1px);
    clip-path: polygon(0 68%, 100% 68%, 100% 75%, 0 75%);
  }

  65% {
    transform: translate(0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }

  90% {
    transform: translate(2px, -1px);
    clip-path: polygon(0 88%, 100% 88%, 100% 98%, 0 98%);
  }

  100% {
    transform: translate(0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}



/* Tagline Badges */
.intro-tagline-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  animation: introSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  will-change: transform, opacity;
}

.intro-tag-pill {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  background: rgba(124, 58, 237, 0.3);
  border: 1px solid rgba(167, 139, 250, 0.4);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

.intro-date-pill {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #D4FF3D;
  background: rgba(198, 255, 0, 0.12);
  border: 1px solid rgba(198, 255, 0, 0.35);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

/* High-Tech HUD Loader Deck */
.intro-hud-loader {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  animation: introSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  will-change: transform, opacity;
}

.intro-hud-metrics {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.intro-hud-step {
  color: #A78BFA;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.intro-hud-percent {
  color: #C6FF00;
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  text-shadow: 0 0 10px rgba(198, 255, 0, 0.6);
}

.intro-progress-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(167, 139, 250, 0.2);
}

.intro-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #7C3AED, #FF2E88, #00E5FF, #C6FF00);
  border-radius: var(--radius-full);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.8);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

/* Equalizer Bars */
.intro-equalizer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  height: 18px;
  margin-top: 4px;
}

.intro-equalizer span {
  width: 3px;
  height: 4px;
  background: #A78BFA;
  border-radius: 2px;
  animation: introEqualizer 0.8s ease-in-out infinite alternate;
}

.intro-equalizer span:nth-child(1) {
  animation-delay: 0.0s;
}

.intro-equalizer span:nth-child(2) {
  animation-delay: 0.15s;
}

.intro-equalizer span:nth-child(3) {
  animation-delay: 0.3s;
}

.intro-equalizer span:nth-child(4) {
  animation-delay: 0.45s;
}

.intro-equalizer span:nth-child(5) {
  animation-delay: 0.1s;
}

.intro-equalizer span:nth-child(6) {
  animation-delay: 0.25s;
}

.intro-equalizer span:nth-child(7) {
  animation-delay: 0.4s;
}

.intro-equalizer span:nth-child(8) {
  animation-delay: 0.2s;
}

.intro-equalizer span:nth-child(9) {
  animation-delay: 0.35s;
}

.intro-equalizer span:nth-child(10) {
  animation-delay: 0.5s;
}

.intro-equalizer span:nth-child(11) {
  animation-delay: 0.12s;
}

.intro-equalizer span:nth-child(12) {
  animation-delay: 0.28s;
}

@keyframes introEqualizer {
  0% {
    height: 3px;
    opacity: 0.3;
    background: #7C3AED;
  }

  50% {
    height: 16px;
    opacity: 0.9;
    background: #00E5FF;
  }

  100% {
    height: 8px;
    opacity: 0.6;
    background: #FF2E88;
  }
}



/* General Intro Keyframes */
@keyframes introSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes introPopTitle {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }

  60% {
    transform: scale(1.03);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar Replay Intro Button */
.replay-intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  color: var(--primary);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-full);
  background: var(--tag-bg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.replay-intro-btn:hover {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 0 14px var(--primary-glow);
  transform: translateY(-1px);
}

/* Stagger Hero Entrance once Intro dismisses */
.hero-stagger-in {
  animation: heroStaggerIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroStaggerIn {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .intro-screen {
    display: none !important;
  }
}

/* ==========================================================================
   📱 MASTER COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   Pixel-perfect mobile alignment, flawless cards, touch targets & typography
   ========================================================================== */

/* Drawer Animation */
@keyframes navDrawerIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- 1. TABLET SCREENS (<= 900px) --- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-meta-panel-centered {
    grid-template-columns: 1fr;
    padding: 14px;
    max-width: 680px;
  }

  .venue-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .register-cta-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 28px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* --- 2. SMALL TABLETS & PHABLETS (<= 768px) --- */
@media (max-width: 768px) {
  /* Navbar Header */
  .navbar {
    padding: 10px 0;
    gap: 12px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-badge {
    height: 44px;
    max-width: 120px;
  }

  .brand-badge img {
    height: 44px;
    max-height: 100%;
    width: auto;
  }

  .brand-divider {
    height: 22px;
    width: 1.5px;
  }

  .brand-fest-logo {
    height: 36px;
    max-width: 160px;
    width: auto;
  }

  .navlinks {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--modal-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 10px;
    display: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .navlinks.open {
    display: flex;
    animation: navDrawerIn 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .navlinks li {
    width: 100%;
    list-style: none;
  }

  .navlinks a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    font-size: 1.02rem;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--paper) 70%, var(--card-bg));
    border: 1px solid var(--line);
    color: var(--ink);
    transition: all 0.2s ease;
    box-sizing: border-box;
  }

  .navlinks a:hover,
  .navlinks a.active {
    background: color-mix(in srgb, var(--primary) 12%, var(--card-bg));
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(4px);
  }

  .navlinks a::after {
    display: none;
  }

  .mobile-nav-register-item {
    display: block;
    margin-top: 8px;
  }

  .mobile-nav-register-btn {
    width: 100%;
    min-height: 48px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-align: center;
    justify-content: center;
  }

  .mobile-menu-btn {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--card-bg);
    border: 1.5px solid var(--line);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 2px 8px -2px var(--shadow);
    transition: all 0.2s ease;
  }

  .mobile-menu-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--card-hover);
  }

  /* Hero Section Reordering (<= 768px) */
  .hero-top-center {
    display: flex;
    flex-direction: column;
  }

  .eyebrow {
    order: 1;
  }

  .hero-logo-center {
    order: 2;
  }

  .hero-actions-centered {
    order: 3;
    margin-bottom: 20px;
  }

  .hero-meta-panel-centered {
    order: 4;
    margin-top: 0;
  }

  .hero-sub-centered {
    order: 5;
  }

  .countdown-box-centered {
    order: 6;
  }

  /* Events Grid & Filter */
  .events-filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .filter-tabs {
    width: 100%;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px;
    justify-content: flex-start;
  }

  .filter-tab {
    flex: 1 1 auto;
    text-align: center;
    white-space: nowrap;
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .filter-search {
    width: 100%;
    min-width: 100%;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Schedule Timeline */
  .timeline-wrap {
    padding: 10px 0;
  }

  .timeline-wrap::before {
    left: 16px;
  }

  .timeline-dot {
    left: 8px;
    top: 16px;
    width: 18px;
    height: 18px;
  }

  .timeline-card {
    margin-left: 42px !important;
    margin-right: 0 !important;
    text-align: left !important;
    padding: 16px 18px;
  }

  /* Committee Section */
  .committee-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .committee-staff-grid {
    grid-template-columns: 1fr 1fr;
  }

  .student-org-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* Modal */
  .modal-backdrop {
    padding: 14px;
  }

  .modal-card {
    max-height: 90vh;
    border-radius: var(--radius-md);
  }

  .modal-header-img {
    height: 180px;
  }

  .modal-body {
    padding: 20px 16px;
  }

  .modal-meta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px;
  }

  .modal-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .modal-footer .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* --- 3. STANDARD MOBILE VIEW (<= 600px) --- */
@media (max-width: 600px) {
  .wrap {
    padding: 0 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .section {
    padding: 38px 0;
  }

  .section-head {
    margin-bottom: 22px;
    text-align: center;
  }

  .section-tag {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }

  .section-title {
    font-size: clamp(1.4rem, 6vw, 1.85rem);
    letter-spacing: -0.02em;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 6px auto 0;
    max-width: 100%;
  }

  /* Header & Brand (Tight fit prevention) */
  .navbar {
    padding: 8px 0;
    gap: 8px;
  }

  .brand {
    gap: 6px;
    min-width: 0;
    max-width: calc(100% - 92px);
    align-items: center;
  }

  .brand-badge {
    height: 38px;
    max-width: 105px;
    flex-shrink: 0;
  }

  .brand-badge img {
    height: 38px;
    max-height: 100%;
    width: auto;
  }

  .brand-divider {
    height: 18px;
    width: 1px;
    opacity: 0.4;
  }

  .brand-fest-logo {
    height: 28px;
    max-width: 125px;
    width: auto;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-actions .register-link-btn {
    display: none;
  }

  .mobile-menu-btn {
    width: 38px;
    height: 38px;
  }

  /* ==================== HERO SECTION (MOBILE) ==================== */
  .hero {
    padding: 20px 0 16px;
    text-align: center;
  }

  .hero-top-center {
    display: flex;
    flex-direction: column;
  }

  .eyebrow {
    order: 1;
    font-size: 0.7rem;
    padding: 5px 14px;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    gap: 6px;
    margin-bottom: 8px;
  }

  .hero-logo-center {
    order: 2;
    margin: 4px auto 14px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-fest-logo {
    width: 100%;
    max-width: min(280px, 82vw);
    height: auto;
    filter: drop-shadow(0 6px 20px rgba(124, 58, 237, 0.45));
  }

  /* Hero Action Buttons - Positioned before Meta Panel on Mobile */
  .hero-actions-centered {
    order: 3;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 16px;
    gap: 10px;
  }

  .hero-actions-centered .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: normal;
    text-align: center;
    justify-content: center;
    border-radius: var(--radius-full);
  }

  /* Fully Aligned Hero Meta Panel */
  .hero-meta-panel-centered {
    order: 4;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px;
    margin: 0 auto 16px;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-md);
    box-sizing: border-box;
  }

  .meta-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 9px 12px;
    text-align: left;
    border-radius: var(--radius-sm);
    gap: 4px;
    background: color-mix(in srgb, var(--primary) 5%, var(--card-bg));
    border: 1px solid var(--line);
    width: 100%;
    box-sizing: border-box;
  }

  .meta-row .label {
    font-size: 0.72rem;
    font-weight: 700;
    gap: 6px;
    color: var(--secondary);
    letter-spacing: 0.06em;
  }

  .meta-row .value {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: left;
    word-break: break-word;
    width: 100%;
    color: var(--ink);
    line-height: 1.4;
  }

  .meta-badge-fee {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(198, 255, 0, 0.22), rgba(124, 58, 237, 0.15));
    border: 1px solid rgba(124, 58, 237, 0.35);
    color: var(--ink);
    line-height: 1.35;
  }

  .hero-sub {
    order: 5;
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 18px;
    max-width: 100%;
    color: var(--graphite);
  }

  /* Countdown Box */
  .countdown-box-centered {
    order: 6;
    flex-direction: column;
    gap: 6px;
    padding: 10px 14px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    box-sizing: border-box;
  }

  .countdown-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--secondary);
    text-transform: uppercase;
  }

  .countdown-grid {
    gap: 8px;
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .countdown-unit {
    min-width: 40px;
    text-align: center;
  }

  .countdown-num {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    color: var(--ink);
  }

  .countdown-text {
    font-size: 0.58rem;
    margin-top: 2px;
    letter-spacing: 0.3px;
    color: var(--graphite);
    text-transform: uppercase;
  }

  .countdown-sep {
    font-size: 1rem;
    margin-top: -4px;
    color: var(--primary);
  }

  /* ==================== ANNOUNCEMENT BANNER CARD (MOBILE) ==================== */
  .orgs-announcement-card {
    padding: 18px 14px;
    margin-top: 26px;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  .announcement-header {
    margin-bottom: 10px;
  }

  .announcement-pill {
    font-size: 0.68rem;
    padding: 5px 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    letter-spacing: 0.05em;
  }

  .main-institution-logo-wrap {
    max-width: 190px;
    margin: 8px auto 10px;
    display: flex;
    justify-content: center;
  }

  .main-institution-logo {
    max-height: 70px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
  }

  .dept-name {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2px;
    color: var(--ink);
  }

  .college-name {
    font-size: 0.74rem;
    line-height: 1.4;
    color: var(--graphite);
  }

  .dept-divider.center-aligned {
    max-width: 160px;
    margin: 6px auto;
  }

  .dept-divider span {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }

  /* ==================== EVENT CARDS (MOBILE) ==================== */
  .events-filter-bar {
    gap: 10px;
    margin-bottom: 18px;
    width: 100%;
  }

  .filter-tabs {
    padding: 4px;
    gap: 4px;
    border-radius: var(--radius-full);
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    box-sizing: border-box;
  }

  .filter-tab {
    flex: 1 1 auto;
    white-space: nowrap;
    padding: 7px 12px;
    font-size: 0.76rem;
    font-weight: 700;
  }

  .filter-search input {
    font-size: 0.85rem;
    padding: 9px 14px 9px 36px;
    border-radius: var(--radius-full);
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .event-card {
    border-radius: var(--radius-md);
    box-shadow: 0 4px 16px -4px var(--shadow);
    width: 100%;
    box-sizing: border-box;
  }

  .card-img-wrap {
    height: 150px;
    width: 100%;
  }

  .card-tag {
    font-size: 0.65rem;
    padding: 3px 8px;
    top: 8px;
    left: 8px;
  }

  .card-body {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .card-title {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 2px;
    color: var(--ink);
  }

  .card-summary {
    font-size: 0.82rem;
    line-height: 1.48;
    margin-bottom: 8px;
    -webkit-line-clamp: 3;
    color: var(--graphite);
  }

  .card-meta-pills {
    gap: 5px;
    margin-top: auto;
    margin-bottom: 12px;
    display: flex;
    flex-wrap: wrap;
  }

  .meta-pill {
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: var(--radius-full);
  }

  .card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .card-footer .btn {
    flex: 1;
    min-height: 40px;
    text-align: center;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
  }

  /* ==================== SCHEDULE TIMELINE (MOBILE) ==================== */
  .timeline-wrap {
    padding: 6px 0;
    width: 100%;
  }

  .timeline-wrap::before {
    left: 14px;
    width: 2px;
  }

  .timeline-dot {
    left: 6px;
    top: 16px;
    width: 18px;
    height: 18px;
  }

  .timeline-card {
    margin-left: 36px !important;
    margin-right: 0 !important;
    text-align: left !important;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
  }

  .timeline-time {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--secondary);
    display: block;
    margin-bottom: 2px;
  }

  .timeline-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 3px;
    line-height: 1.3;
  }

  .timeline-desc {
    font-size: 0.78rem;
    line-height: 1.42;
    color: var(--graphite);
    margin: 0;
  }

  .timeline-wishes-banner {
    padding: 10px 14px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .timeline-wishes-banner .wishes-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .timeline-wishes-banner .wishes-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    margin: 0;
  }

  /* ==================== REGISTRATION CTA CARD (MOBILE) ==================== */
  .register-cta-card {
    padding: 20px 14px;
    border-radius: var(--radius-md);
    width: 100%;
    box-sizing: border-box;
  }

  .register-cta-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .register-cta-card .section-title {
    font-size: 1.3rem !important;
    line-height: 1.25;
  }

  .register-cta-card p {
    font-size: 0.84rem !important;
    line-height: 1.5;
    margin-top: 6px;
    color: var(--graphite);
  }

  .cta-perks {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 14px 0;
  }

  .perk-item {
    font-size: 0.8rem;
    font-weight: 600;
    gap: 8px;
    color: var(--ink);
  }

  .perk-icon {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }

  .register-link-btn.btn-lg {
    width: 100%;
    min-height: 48px;
    padding: 12px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: normal;
    text-align: center;
    justify-content: center;
    border-radius: var(--radius-full);
  }

  .cta-fee-box {
    padding: 16px 12px;
    border-radius: var(--radius-md);
    width: 100%;
    box-sizing: border-box;
  }

  .fee-box-title {
    font-size: 1.08rem;
    font-weight: 800;
  }

  .fee-badge-tag {
    font-size: 0.68rem;
  }

  .combo-tiers-list {
    gap: 12px;
    margin: 14px 0;
    display: flex;
    flex-direction: column;
  }

  .combo-tier-card {
    padding: 10px 12px;
    gap: 8px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-sizing: border-box;
  }

  .combo-tier-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
  }

  .combo-tier-desc {
    font-size: 0.7rem;
    color: var(--graphite);
  }

  .price-val {
    font-size: 1.15rem;
    font-weight: 800;
  }

  .original-price {
    font-size: 0.68rem;
  }

  .combo-badge {
    font-size: 0.62rem;
    padding: 2px 7px;
    top: -8px;
    right: 10px;
  }

  .fee-note {
    font-size: 0.74rem;
    margin-top: 8px;
    line-height: 1.4;
  }

  /* ==================== VENUE & CAMPUS MAP (MOBILE) ==================== */
  .venue-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .venue-info-card {
    padding: 18px 14px;
    border-radius: var(--radius-md);
    width: 100%;
    box-sizing: border-box;
  }

  .venue-campus-pill {
    font-size: 0.78rem;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .venue-college-title {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .venue-college-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--graphite);
    margin-bottom: 14px;
  }

  .venue-details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }

  .venue-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .venue-directions-btn {
    width: 100%;
    min-height: 44px;
    font-size: 0.88rem;
    font-weight: 700;
    justify-content: center;
    text-align: center;
  }

  .venue-map-card {
    min-height: 220px;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  /* ==================== ABOUT & COMMITTEE (MOBILE - BULLETPROOF ALIGNMENT) ==================== */
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .about-card {
    padding: 16px 14px;
    border-radius: var(--radius-md);
    width: 100%;
    box-sizing: border-box;
  }

  .about-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .about-card p {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--graphite);
    margin-bottom: 6px;
  }

  .committee-section {
    margin-top: 24px;
    width: 100%;
  }

  .committee-title-wrap {
    margin-bottom: 16px;
    text-align: center;
  }

  .committee-title-wrap h3 {
    font-size: 1.15rem;
    font-weight: 800;
  }

  .committee-title-wrap p {
    font-size: 0.8rem;
  }

  .committee-subgroup-title {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    margin: 18px 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .committee-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 16px !important;
  }

  .committee-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 16px 14px !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 4px !important;
  }

  .committee-icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.2rem !important;
    margin: 0 auto 6px !important;
    display: grid !important;
    place-items: center !important;
    flex-shrink: 0 !important;
  }

  .committee-role-badge {
    font-size: 0.68rem !important;
    padding: 2px 8px !important;
    margin-bottom: 4px !important;
    display: inline-block !important;
  }

  .committee-name {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: var(--ink) !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .committee-sub {
    font-size: 0.78rem !important;
    color: var(--graphite) !important;
    line-height: 1.35 !important;
    margin: 2px 0 0 !important;
    width: 100% !important;
  }

  .committee-phone-wrap {
    margin-top: 8px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .committee-phone-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    font-size: 0.82rem !important;
    background: rgba(99, 102, 241, 0.1) !important;
    padding: 6px 16px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(99, 102, 241, 0.25) !important;
    text-decoration: none !important;
    width: auto !important;
    min-width: 160px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .student-org-split {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    width: 100% !important;
  }

  .student-dept-card {
    padding: 14px 12px !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .student-dept-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 10px !important;
    padding-bottom: 8px !important;
  }

  .student-dept-title-wrap h4 {
    font-size: 0.92rem !important;
  }

  .student-dept-badge {
    font-size: 0.65rem !important;
    padding: 2px 7px !important;
  }

  .student-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .student-head-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 8px !important;
    padding: 12px 14px !important;
    border-radius: var(--radius-sm) !important;
    background: color-mix(in srgb, var(--primary) 10%, var(--paper)) !important;
    border: 1.5px solid rgba(124, 58, 237, 0.35) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .student-head-info {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .student-head-name {
    font-size: 0.92rem !important;
    font-weight: 800 !important;
    color: var(--ink) !important;
  }

  .student-head-role {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
  }

  .student-phone-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    width: 100% !important;
    border-radius: var(--radius-full) !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .student-list-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 12px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* ==================== FAQ (MOBILE) ==================== */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .faq-item {
    border-radius: var(--radius-sm);
    width: 100%;
  }

  .faq-summary {
    padding: 12px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.35;
    gap: 10px;
  }

  .faq-content {
    padding: 0 14px 12px;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--graphite);
  }

  /* ==================== FOOTER (MOBILE) ==================== */
  footer.site-footer {
    padding: 32px 0 18px;
    width: 100%;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-brand .brand-badge {
    height: 32px;
  }

  .footer-fest-logo {
    height: 26px;
    max-width: 110px;
  }

  .footer-brand p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 8px;
  }

  .footer-col h4 {
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links a {
    font-size: 0.8rem;
    padding: 3px 0;
  }

  .footer-social-section {
    margin-top: 12px;
  }

  .footer-social-heading {
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .footer-social-btn-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .footer-social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 0.82rem;
    border-radius: var(--radius-md);
    width: 100%;
    box-sizing: border-box;
  }

  .footer-info-block {
    margin-bottom: 12px;
  }

  .footer-info-title {
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 3px;
  }

  .footer-info-text,
  .footer-details-list {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    font-size: 0.7rem;
    padding-top: 14px;
  }

  /* ==================== INTRO SCREEN (MOBILE - 2X LARGER & IMPACTFUL) ==================== */
  .intro-container {
    width: 98% !important;
    max-width: 96vw !important;
    padding: 8px 4px !important;
    box-sizing: border-box !important;
    gap: 8px !important;
  }

  .intro-college-badge {
    margin-top: 0 !important;
    margin-bottom: 6px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .intro-college-logo {
    width: min(440px, 88vw) !important;
    max-height: 140px !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .intro-title-wrapper {
    margin-bottom: 12px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .intro-aurafest-logo {
    width: min(460px, 94vw) !important;
    max-height: 200px !important;
    min-height: 120px !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 24px rgba(124, 58, 237, 0.9)) drop-shadow(0 0 50px rgba(255, 46, 136, 0.7)) drop-shadow(0 0 85px rgba(0, 229, 255, 0.5)) !important;
  }

  .intro-tagline-wrap {
    gap: 6px !important;
    margin-bottom: 16px !important;
    width: 100% !important;
    justify-content: center !important;
  }

  .intro-tag-pill,
  .intro-date-pill {
    font-size: 0.68rem !important;
    padding: 5px 12px !important;
    letter-spacing: 0.5px !important;
  }

  .intro-hud-loader {
    width: 92vw !important;
    max-width: 360px !important;
    gap: 6px !important;
  }

  .intro-hud-metrics {
    font-size: 0.68rem !important;
  }

  .intro-hud-step {
    font-size: 0.62rem !important;
  }

  .intro-hud-percent {
    font-size: 0.7rem !important;
  }

  .intro-topbar {
    padding: 12px 16px !important;
  }

  .intro-status-chip {
    font-size: 0.65rem !important;
    padding: 4px 10px !important;
  }

  .intro-skip-btn {
    font-size: 0.72rem !important;
    padding: 6px 14px !important;
    border-radius: var(--radius-full) !important;
  }

  .intro-speaker-module {
    display: none !important;
  }

  /* ==================== EVENT DETAILS MODAL (MOBILE) ==================== */
  .modal-backdrop {
    padding: 10px;
    z-index: 99999;
  }

  .modal-card {
    max-height: 88vh;
    width: 100%;
    border-radius: var(--radius-md);
  }

  .modal-header-img {
    height: 160px;
  }

  .modal-body {
    padding: 16px 12px;
  }

  .modal-title {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .modal-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  .modal-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 10px;
    margin: 14px 0;
  }

  .modal-meta-item .label {
    font-size: 0.68rem;
  }

  .modal-meta-item .val {
    font-size: 0.82rem;
  }

  .modal-rules-box {
    padding: 12px;
    margin-bottom: 16px;
  }

  .modal-rules-box h4 {
    font-size: 0.92rem;
  }

  .modal-rules-box ul {
    padding-left: 16px;
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .modal-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .modal-footer .btn {
    width: 100%;
    min-height: 44px;
    text-align: center;
    justify-content: center;
  }
}

/* --- 4. COMPACT & NARROW MOBILE (<= 420px) --- */
@media (max-width: 420px) {
  .wrap {
    padding: 0 12px;
  }

  .hero-fest-logo {
    max-width: 240px;
  }

  .countdown-box-centered {
    max-width: 280px;
    padding: 8px 10px;
  }

  .countdown-num {
    font-size: 1.12rem;
  }

  .countdown-unit {
    min-width: 36px;
  }

  .card-footer {
    flex-direction: column;
    gap: 6px;
  }

  .card-footer .btn {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .modal-meta-grid {
    grid-template-columns: 1fr;
  }
}