/* =========================================================
   SPACE CARNIVAL 2026 — DPS Varanasi Landing Page Styles
   Offline-friendly: no external fonts or CDNs required
   ========================================================= */

:root {
  --space-deep: #050816;
  --space-mid: #0b1030;
  --space-purple: #1b1f4b;
  --star: #ffffff;
  --sun: #ffd93b;
  --mars: #ff6b4a;
  --nebula: #7c5cff;
  --sky: #38c6ff;
  --mint: #3ddc97;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #eef1ff;
  --muted: #aab3d6;
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
  background: radial-gradient(1200px 800px at 80% -10%, #241a5e 0%, transparent 60%),
              radial-gradient(1000px 700px at -10% 30%, #0e2a5c 0%, transparent 55%),
              linear-gradient(180deg, var(--space-deep) 0%, var(--space-mid) 45%, #120a2e 100%);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ---------- Starfield canvas ---------- */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.page { position: relative; z-index: 1; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 5vw;
  background: rgba(5, 8, 22, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
}
.nav .logo-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
}
.nav .logo-card img { height: 34px; width: auto; display: block; }
.nav-links { display: flex; gap: 22px; flex-wrap: wrap; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--sun); }
.nav .ticket-btn {
  background: linear-gradient(135deg, var(--mars), #ff9d3b);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(255, 107, 74, 0.45);
  transition: transform 0.2s;
  white-space: nowrap;
}
.nav .ticket-btn:hover { transform: translateY(-2px) scale(1.03); }

/* ---------- Nav Countdown ---------- */
.nav-countdown {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(124, 92, 255, 0.16);
  border: 1px solid rgba(124, 92, 255, 0.4);
  border-radius: 999px;
  padding: 6px 16px;
  margin: 0 auto;
}
.nav-cd-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
}
.nav-cd-boxes {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-cd-box {
  background: rgba(5, 8, 22, 0.75);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 3px 7px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.nav-cd-box .num {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--sun);
  font-variant-numeric: tabular-nums;
}
.nav-cd-box .lbl {
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
}
.nav-cd-colon {
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--sun);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 50px 6vw 70px;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(255, 107, 74, 0.28) 0%, rgba(255, 217, 59, 0.28) 50%, rgba(124, 92, 255, 0.35) 100%);
  border: 2px solid #ffd93b;
  color: #ffffff;
  padding: 10px 28px;
  border-radius: 50px;
  font-family: 'Kaushan Script', 'Satisfy', 'Brush Script MT', 'Dancing Script', cursive, sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(255, 217, 59, 0.5), 0 0 15px rgba(124, 92, 255, 0.4), 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  animation: heroBadgeGlow 3s infinite ease-in-out;
}

.hero-badge-text {
  background: linear-gradient(90deg, #ffffff 0%, #fff494 35%, #ffc83b 70%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.8));
}

.badge-icon, .badge-sparkle {
  font-size: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes heroBadgeGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 217, 59, 0.35), 0 4px 15px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 217, 59, 0.85);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 107, 74, 0.6), 0 0 15px rgba(56, 198, 255, 0.5);
    border-color: #ffffff;
  }
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.hero h1 .carnival {
  background: linear-gradient(90deg, var(--sun), var(--mars), var(--nebula));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tag {
  font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  color: var(--sun);
  font-weight: 800;
  font-style: italic;
  margin: 18px 0 12px;
  line-height: 1.2;
}
.hero-copy {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--muted);
  max-width: 640px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.hero-copy strong {
  color: var(--sun);
  font-weight: 700;
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
}
.meta-chips-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.timing-row {
  display: flex;
  align-items: center;
}
.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.95rem;
}
.meta-chip.timing-square-box {
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(124, 92, 255, 0.2) 100%);
  border: 1.5px solid rgba(255, 217, 59, 0.7);
  padding: 9px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
.timing-box-details {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-weight: 800;
  font-size: 0.95rem;
}
.timing-box-details .timing-slot {
  white-space: nowrap;
  color: #ffd93b;
}
.timing-box-details .timing-amp {
  color: var(--sky);
  font-weight: 900;
  padding: 0 2px;
}
.meta-chip .ico { font-size: 1.15rem; }
.hero-ctas { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.btn {
  border: none;
  border-radius: 999px;
  padding: 15px 30px;
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary {
  background: linear-gradient(135deg, var(--mars), #ff9d3b);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255, 107, 74, 0.45);
}
.btn-ghost {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--card-border);
}
.btn:hover { transform: translateY(-3px) scale(1.02); }

.hero-art { display: flex; justify-content: center; position: relative; width: 100%; }
.hero-art-dual {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}
.hero-art .poster-frame {
  position: relative;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(160deg, rgba(255, 217, 59, 0.45), rgba(124, 92, 255, 0.45), rgba(56, 198, 255, 0.45));
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--card-border);
  width: 100%;
  max-width: 580px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-art .poster-frame:hover {
  transform: translateY(-8px) scale(1.03) !important;
  box-shadow: 0 25px 65px rgba(56, 198, 255, 0.45);
}
.hero-art img {
  display: block;
  width: 100%;
  max-width: 580px;
  border-radius: 16px;
  object-fit: cover;
}
.poster-caption {
  display: block;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--sun);
  padding-top: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Float animations out-of-phase for floatable style */
.float-1 {
  animation: float1 5.2s ease-in-out infinite;
}
.float-2 {
  animation: float2 5.8s ease-in-out infinite 0.7s;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(-4px) rotate(1.8deg); }
  50% { transform: translateY(14px) rotate(-1.2deg); }
}

.track-poster-wrap {
  flex-shrink: 0;
  text-align: center;
  border-radius: 16px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-border);
  display: inline-block;
  align-self: center;
}
.track-poster-img {
  width: min(180px, 35vw);
  max-width: 180px;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* ---------- Experience Section ---------- */
.experience-section {
  padding: 60px 6vw 30px;
}
.exp-box {
  background: linear-gradient(180deg, rgba(14, 42, 92, 0.75) 0%, rgba(7, 26, 72, 0.85) 100%);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 42px 30px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 1080px;
  margin: 0 auto;
}
.exp-title {
  color: var(--sun);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}
.exp-card {
  border-radius: 18px;
  padding: 26px 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.35);
}
.exp-card-1 { background: linear-gradient(180deg, #eaf4ff 0%, #dbeeff 100%); }
.exp-card-2 { background: linear-gradient(180deg, #e8f9f1 0%, #d2f5e3 100%); }
.exp-card-3 { background: linear-gradient(180deg, #fff9e6 0%, #ffeed0 100%); }
.exp-card-4 { background: linear-gradient(180deg, #fbf0ff 0%, #f3deff 100%); }
.exp-card-5 { background: linear-gradient(180deg, #eef6ff 0%, #dbedff 100%); }
.exp-card-6 { background: linear-gradient(180deg, #f2efff 0%, #e1dcff 100%); }

.exp-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  line-height: 1;
}
.exp-card h3 {
  font-size: 1.12rem;
  font-weight: 900;
  color: #071a48;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.exp-card p {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1a3263;
  line-height: 1.45;
  margin: 0;
}

/* ---------- Countdown ---------- */
.countdown-band {
  width: 100%;
  max-width: 980px;
  margin: 10px auto 0;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.20), rgba(56, 198, 255, 0.12));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.countdown-band h2 { font-size: 1.3rem; font-weight: 800; }
.countdown-band p { color: var(--muted); font-size: 0.95rem; }
.countdown { display: flex; gap: 14px; }
.cd-box {
  min-width: 82px;
  text-align: center;
  background: rgba(5, 8, 22, 0.65);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 12px 8px;
}
.cd-box .num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--sun);
  font-variant-numeric: tabular-nums;
}
.cd-box .lbl { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* ---------- Sections ---------- */
section { padding: 90px 6vw 30px; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.section-head .kicker {
  color: var(--sky);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-top: 8px; }
.section-head p { color: var(--muted); margin-top: 12px; }

/* ---------- Mission tracks (age groups) ---------- */
.tracks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  align-items: stretch;
}
.track-card {
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.track-card:hover { transform: translateY(-8px); box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45); }
.track-little { background: linear-gradient(160deg, #3a1d5e 0%, #141233 70%); }
.track-young  { background: linear-gradient(160deg, #0e3a55 0%, #101d3f 70%); }
.track-title-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.track-card h3 {
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 12px;
}
.heading-emoji {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  font-size: 1.6rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--card-border);
  flex-shrink: 0;
}
.track-age {
  display: inline-block;
  margin-top: 10px;
  background: var(--sun);
  color: #241a00;
  font-weight: 900;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.85rem;
}
.track-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
}
.track-body ul {
  flex: 1;
  min-width: 0;
  list-style: none;
}
.track-card ul li {
  padding: 7px 0 7px 30px;
  position: relative;
  color: #dfe4ff;
  font-size: 0.97rem;
}
.track-card ul li::before {
  content: "🚀";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}
.track-booklet {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--muted);
}
.track-booklet strong { color: var(--sun); }

/* ---------- Zones grid ---------- */
.zones {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
  align-items: stretch;
}
.zone-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px 22px;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.zone-card:hover { transform: translateY(-6px); border-color: var(--sky); }
.zone-num {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--space-deep);
  background: var(--sun);
  border-radius: 8px;
  padding: 3px 9px;
  display: inline-block;
  margin-bottom: 12px;
  align-self: flex-start;
}
.zone-card h3 { font-size: 1.08rem; font-weight: 800; margin-bottom: 10px; }
.zone-card p { color: var(--muted); font-size: 0.88rem; margin-bottom: 14px; flex: 1; }
.zone-img-wrap {
  margin-top: auto;
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.04);
}
.zone-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.zone-card:hover .zone-card-img {
  transform: scale(1.04);
}


/* ---------- Schedule ---------- */
.schedule-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.day-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}
.day-card .day-tag {
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--space-deep);
  background: linear-gradient(90deg, var(--sun), #ffb03b);
  display: inline-block;
  align-self: center;
  padding: 4px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
  text-align: center;
}
.day-card h3 {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-align: center;
}
.day-card .day-grade {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--sky);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  letter-spacing: 0.01em;
}
.day-card ul { list-style: none; flex: 1; }
.day-card li { padding: 5px 0 5px 26px; position: relative; color: #d9defa; font-size: 0.93rem; }
.day-card li::before { content: "✦"; position: absolute; left: 4px; color: var(--nebula); }

.day-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}
.day-reg-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--mars), #ff9d3b);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(255, 107, 74, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.day-reg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 74, 0.55);
}

.timing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin-top: 34px; }
.timing-card {
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid var(--card-border);
}
.timing-day { background: linear-gradient(150deg, rgba(56, 198, 255, 0.18), rgba(56, 198, 255, 0.05)); }
.timing-night { background: linear-gradient(150deg, rgba(124, 92, 255, 0.22), rgba(124, 92, 255, 0.06)); }
.timing-card .big-time { font-size: 1.7rem; font-weight: 900; color: var(--sun); }
.timing-card h3 { margin: 8px 0 6px; font-size: 1.1rem; }
.timing-card p { color: var(--muted); font-size: 0.9rem; }
.timing-note { margin-top: 18px; font-size: 0.85rem; color: #ffcf9e; }

/* ---------- Tickets ---------- */
.tickets { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; max-width: 900px; margin: 0 auto; }
.ticket-card {
  text-align: center;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--card-border);
  background: var(--card);
  transition: transform 0.2s;
}
.ticket-card:hover { transform: translateY(-6px); }
.ticket-card.featured {
  background: linear-gradient(160deg, rgba(255, 107, 74, 0.22), rgba(255, 157, 59, 0.08));
  border-color: rgba(255, 157, 59, 0.55);
}
.ticket-card .who { font-weight: 800; font-size: 1.1rem; }
.ticket-card .price { font-size: 3rem; font-weight: 900; color: var(--sun); margin: 12px 0 4px; }
.ticket-card .per { color: var(--muted); font-size: 0.88rem; }
.ticket-card li { padding: 5px 0 5px 26px; position: relative; font-size: 0.92rem; color: #dfe4ff; }
.ticket-card li::before { content: "✔"; position: absolute; left: 2px; color: var(--mint); }
.ticket-card li.ticket-free-entry {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 217, 59, 0.4);
  color: #ffd93b;
  font-weight: 800;
  font-size: 0.94rem;
}
.ticket-card li.ticket-free-entry::before {
  content: "🎁";
  position: absolute;
  left: 0;
  font-size: 0.95rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  align-items: start;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card);
}
.gallery-item img { width: 100%; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item figcaption { padding: 14px 18px; color: var(--muted); font-size: 0.9rem; }

/* ---------- Floatable Rockets Layer ---------- */
#floating-rockets-layer {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.floating-rocket {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
  filter: drop-shadow(0 0 10px rgba(56, 198, 255, 0.6));
  transition: filter 0.3s ease, transform 0.25s ease-out;
  will-change: transform, left, top;
}

.floating-rocket:hover {
  filter: drop-shadow(0 0 22px rgba(255, 107, 74, 0.95)) brightness(1.3);
}

.floating-rocket.boosted {
  animation: rocketSpinBoost 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}

@keyframes rocketSpinBoost {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.6) rotate(360deg) translateY(-25px); filter: drop-shadow(0 0 35px #ffd93b) brightness(1.4); }
  100% { transform: scale(1) rotate(720deg) translateY(-50px); }
}

.rocket-spark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sun);
  pointer-events: none;
  box-shadow: 0 0 12px var(--mars);
  animation: sparkFade 0.75s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
  z-index: 2;
}

@keyframes sparkFade {
  0% { opacity: 1; transform: scale(1.2) translate(0, 0); }
  100% { opacity: 0; transform: scale(0.1) translate(var(--dx), var(--dy)); }
}

/* ---------- Footer ---------- */
footer.footer-section {
  margin-top: 90px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.footer-container {
  width: 100%;
  padding: 50px 5vw 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 22px;
}

.footer-logo-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  max-width: 340px;
}

.footer-logo-card img {
  max-height: 54px;
  width: auto;
  display: block;
}

.social-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.follow-label {
  font-size: 0.95rem;
  color: #d0d6ef;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.social-icon.facebook  { background: #1877f2; }
.social-icon.linkedin  { background: #0a66c2; }
.social-icon.youtube   { background: #ff0000; }
.social-icon.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 10px;
}

.footer-kicker {
  color: #38c6ff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-school-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 2px;
}

.footer-address {
  color: #aab3d6;
  font-size: 0.94rem;
  line-height: 1.55;
  margin-top: 4px;
}

.footer-contact, .footer-email {
  color: #ffffff;
  font-size: 0.94rem;
  margin-top: 2px;
}

.footer-contact strong, .footer-email strong {
  color: #ffffff;
}

.phone-highlight {
  color: #aab3d6;
  font-weight: 600;
}

.footer-email a {
  color: #38c6ff;
  text-decoration: none;
  font-weight: 500;
}

.footer-email a:hover {
  text-decoration: underline;
}

.footer-privacy {
  margin-top: 6px;
}

.footer-privacy a {
  color: #38c6ff;
  text-decoration: underline;
  font-size: 0.94rem;
  font-weight: 500;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
  padding: 16px 5vw;
}

.footer-bottom-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #838fad;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 20px; }
  .hero .hero-copy, .hero-meta, .meta-chips-row, .timing-row, .hero-ctas { margin-left: auto; margin-right: auto; justify-content: center; }
  .hero-art { order: -1; }
  .nav-links { display: none; }
  .nav-countdown { display: none; }
  .footer-container { flex-direction: column; align-items: center; text-align: center; gap: 36px; }
  .footer-left, .social-block, .footer-right { align-items: center; text-align: center; }
}

@media (max-width: 600px) {
  .cd-box { min-width: 66px; }
  .cd-box .num { font-size: 1.5rem; }
  .footer-bottom-container { flex-direction: column; text-align: center; }
  .track-body { flex-direction: column; align-items: center; }
  .track-body ul li { text-align: left; }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Floating Starburst Buttons ---------- */
.floating-starburst-btn {
  position: fixed;
  right: 24px;
  top: 105px;
  z-index: 9999;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
  animation: starburstPulse 2.5s infinite ease-in-out;
  filter: drop-shadow(0 0 20px rgba(230, 0, 35, 0.9)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.55));
}

/* Floating "Go To The Top" Starburst Button (Smaller size) */
.floating-starburst-btn.floating-top-btn {
  top: auto;
  bottom: 28px;
  right: 24px;
  width: 96px;
  height: 96px;
  animation: starburstPulse 2.5s infinite ease-in-out 0.5s;
  filter: drop-shadow(0 0 16px rgba(124, 92, 255, 0.95)) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55));
}

.floating-top-btn .starburst-text {
  padding: 6px;
}

.floating-top-btn .sb-arrow {
  font-size: 0.75rem;
  line-height: 1;
  color: #ffd93b;
  margin-bottom: 1px;
}

.floating-top-btn .starburst-text .sb-line1,
.floating-top-btn .starburst-text .sb-line3 {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.floating-top-btn .starburst-text .sb-line2 {
  font-size: 0.72rem;
  margin: 0;
  letter-spacing: 0.05em;
}

.floating-top-btn:hover {
  transform: scale(1.12) rotate(-4deg);
  filter: drop-shadow(0 0 28px rgba(150, 115, 255, 1)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.7));
}

.floating-starburst-btn .starburst-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-starburst-btn .starburst-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.75);
  padding: 12px;
}

.floating-starburst-btn .starburst-text .sb-line1 {
  font-size: 1.2rem;
  letter-spacing: 0.06em;
}

.floating-starburst-btn .starburst-text .sb-line2 {
  font-size: 1.05rem;
  margin: 1px 0;
  letter-spacing: 0.08em;
}

.floating-starburst-btn .starburst-text .sb-line3 {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.floating-ticket-btn:hover {
  transform: scale(1.12) rotate(4deg);
  filter: drop-shadow(0 0 32px rgba(255, 30, 60, 1)) drop-shadow(0 10px 25px rgba(0, 0, 0, 0.7));
}

@keyframes starburstPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.06) rotate(-2deg);
  }
}

@media (max-width: 900px) {
  .floating-starburst-btn.floating-ticket-btn,
  .floating-starburst-btn {
    top: auto;
    bottom: 24px;
    right: 16px;
    width: 105px;
    height: 105px;
  }
  .floating-starburst-btn.floating-top-btn {
    top: auto;
    bottom: 24px;
    left: 16px;
    right: auto;
    width: 76px;
    height: 76px;
  }
  .floating-top-btn .sb-arrow {
    font-size: 0.65rem;
  }
  .floating-top-btn .starburst-text .sb-line1,
  .floating-top-btn .starburst-text .sb-line3 {
    font-size: 0.66rem;
  }
  .floating-top-btn .starburst-text .sb-line2 {
    font-size: 0.56rem;
  }
  .floating-starburst-btn .starburst-text .sb-line1,
  .floating-starburst-btn .starburst-text .sb-line3 {
    font-size: 0.95rem;
  }
  .floating-starburst-btn .starburst-text .sb-line2 {
    font-size: 0.82rem;
  }
}

/* ---------- Standalone Booklet Promo Card ---------- */
.booklet-promo-card {
  max-width: 1080px;
  width: 100%;
  margin: 28px auto 0;
  background: linear-gradient(180deg, rgba(14, 42, 92, 0.75) 0%, rgba(7, 26, 72, 0.85) 100%);
  border: 1.5px solid var(--sun);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.booklet-square-wrap {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  background: #000;
}

.booklet-square-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.booklet-promo-card:hover .booklet-square-img {
  transform: scale(1.05);
}

.booklet-promo-info {
  flex: 1;
  text-align: left;
}

.booklet-badge {
  display: inline-block;
  background: linear-gradient(90deg, #ff4757, #ff6b4a);
  color: #ffffff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.booklet-promo-info h3 {
  color: var(--sun);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.booklet-promo-info p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 768px) {
  .booklet-promo-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .booklet-promo-info {
    text-align: center;
  }
  .booklet-square-wrap {
    width: 200px;
    height: 200px;
  }
}

