/* =========================================================
   Dance with Musichorn — Premium Navy & Neon Redesign
   © Musichorn Entertainments
   ========================================================= */

/* ---------------------------------------------------------
   0. FONTS & ROOT TOKENS
   --------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Devanagari:wght@400;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --navy-dark: #030816;       /* Deepest black-blue */
  --navy-bg: #071230;         /* Main section background */
  --navy-card: #0c1c48;       /* Primary card background */
  --navy-card-hover: #122864; /* Card hover background */

  --cyan: #00f0ff;            /* Neon Electric Cyan */
  --purple: #bf55ec;          /* Vibrant Purple */
  --blue-bright: #38b6ff;     /* Electric Blue */
  --pink: #ff007f;            /* Highlight pink */
  
  --silver: #e2e8f0;          /* Main readable text */
  --silver-light: #94a3b8;    /* Muted text */
  --white: #ffffff;
  
  --glass-bg: rgba(12, 28, 72, 0.45);
  --glass-border: rgba(0, 240, 255, 0.15);
  --glass-hover: rgba(0, 240, 255, 0.25);
  
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.35), 0 0 50px rgba(0, 240, 255, 0.1);
  --glow-purple: 0 0 20px rgba(191, 85, 236, 0.35), 0 0 50px rgba(191, 85, 236, 0.1);
  --glow-neon: 0 0 15px rgba(0, 240, 255, 0.4), 0 0 30px rgba(191, 85, 236, 0.2);
  
  --radius: 16px;
  --shadow: 0 8px 32px rgba(3, 8, 22, 0.5);
  --shadow-lg: 0 16px 64px rgba(3, 8, 22, 0.7);
  
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
  
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-hindi: 'Noto Serif Devanagari', serif;
}

/* ---------------------------------------------------------
   1. RESET & BASE
   --------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14.5px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 140px;
  scrollbar-width: thin;
  scrollbar-color: var(--cyan) var(--navy-dark);
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: var(--silver);
  background: var(--navy-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

a:hover {
  color: var(--cyan);
}

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

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

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan), var(--purple));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--purple), var(--cyan));
}

/* ---------------------------------------------------------
   2. UTILITY CLASSES
   --------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.gold {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  background: var(--navy-bg);
}

.section-dark {
  background: var(--navy-dark);
}

.sec-head {
  font-family: var(--font-head);
  text-align: center;
  margin-bottom: 8px;
  position: relative;
  z-index: 5;
}

.sec-head h2 {
  font-size: clamp(1.4rem, 3.2vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin-top: 6px;
}

.sec-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--cyan);
  background: rgba(0, 240, 255, .1);
  border: 1px solid rgba(0, 240, 255, .2);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-align: center;
}

.sec-desc {
  font-size: 0.88rem;
  color: var(--silver-light);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 24px;
  line-height: 1.7;
  position: relative;
  z-index: 5;
}

/* Reflective Card Base & Shine sweep keyframe */
.reflective-card,
.highlight-card,
.round-card,
.cat-card,
.prize-card,
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.reflective-card::after,
.highlight-card::after,
.round-card::after,
.cat-card::after,
.prize-card::after,
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
  pointer-events: none;
}

.reflective-card:hover,
.highlight-card:hover,
.round-card:hover,
.cat-card:hover,
.prize-card:hover,
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 240, 255, 0.35);
  box-shadow: var(--glow-neon);
}

.reflective-card:hover::after,
.highlight-card:hover::after,
.round-card:hover::after,
.cat-card:hover::after,
.prize-card:hover::after,
.service-card:hover::after {
  left: 150%;
}

/* ---------------------------------------------------------
   3. NAVBAR
   --------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(3, 8, 22, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, .1);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(3, 8, 22, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: none;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: .78rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-bright) 100%);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 240, 255, .3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
  color: var(--navy-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--cyan);
  border-radius: 4px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* ---------------------------------------------------------
   4. PORTAL TABS
   --------------------------------------------------------- */
.portal-tabs-wrapper {
  position: sticky;
  top: 85px;
  z-index: 999;
  background: rgba(3, 8, 22, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
  padding: 10px 0;
}

.portal-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.portal-tab-btn {
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--silver-light);
  position: relative;
  transition: color var(--transition);
}

.portal-tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  border-radius: 2px;
  transition: width var(--transition);
}

.portal-tab-btn:hover {
  color: var(--white);
}

.portal-tab-btn.active {
  color: var(--cyan);
}

.portal-tab-btn.active::after {
  width: 60%;
}

/* ---------------------------------------------------------
   5. HERO SECTION
   --------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy-dark);
  padding-top: 85px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(12, 28, 72, 0.2) 0%, var(--navy-dark) 80%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  padding: 40px 24px;
  animation: fadeInUp .8s ease-out;
}

/* Spotlight Beams */
.stage-lights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.light-beam {
  position: absolute;
  top: -100px;
  width: 300px;
  height: 1200px;
  background: radial-gradient(ellipse at top, rgba(0, 240, 255, 0.25) 0%, rgba(191, 85, 236, 0.05) 40%, transparent 80%);
  mix-blend-mode: screen;
  transform-origin: top center;
  filter: blur(25px);
}

.light-left {
  left: 15%;
  animation: sweepLeft 8s ease-in-out infinite alternate;
}

.light-right {
  right: 15%;
  animation: sweepRight 8s ease-in-out infinite alternate;
}

/* Speakers */
.speaker {
  position: absolute;
  bottom: 80px;
  width: 130px;
  height: 240px;
  background: linear-gradient(135deg, #091225, #020712);
  border: 3px solid rgba(0, 240, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 15px rgba(0, 240, 255, 0.05);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 3;
  pointer-events: none;
}

.speaker-left {
  left: 6%;
  transform: rotate(6deg);
}

.speaker-right {
  right: 6%;
  transform: rotate(-6deg);
}

.speaker-grill {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #0a1738 20%, #030818 80%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 12px 0;
}

.speaker-tweeter {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan) 10%, #0c1c48 70%);
  border: 2px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.15);
}

.speaker-subwoofer {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--purple) 15%, #030818 75%);
  border: 3px solid rgba(191, 85, 236, 0.4);
  box-shadow: 0 0 15px rgba(191, 85, 236, 0.25);
  animation: bassBump 0.6s infinite alternate ease-in-out;
}

/* Floating Elements */
.music-notes-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.music-note {
  position: absolute;
  bottom: -50px;
  font-size: 1.8rem;
  color: var(--cyan);
  opacity: 0.3;
  animation: floatNote 12s infinite linear;
}

.music-note:nth-child(2n) {
  color: var(--purple);
}

.music-note:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 9s; }
.music-note:nth-child(2) { left: 25%; animation-delay: 2s; animation-duration: 12s; }
.music-note:nth-child(3) { left: 45%; animation-delay: 4s; animation-duration: 8s; }
.music-note:nth-child(4) { left: 70%; animation-delay: 1s; animation-duration: 11s; }
.music-note:nth-child(5) { left: 85%; animation-delay: 3s; animation-duration: 10s; }
.music-note:nth-child(6) { left: 15%; animation-delay: 5s; animation-duration: 13s; }
.music-note:nth-child(7) { left: 35%; animation-delay: 1.5s; animation-duration: 9.5s; }
.music-note:nth-child(8) { left: 55%; animation-delay: 6s; animation-duration: 10.5s; }
.music-note:nth-child(9) { left: 80%; animation-delay: 2.5s; animation-duration: 11.5s; }
.music-note:nth-child(10) { left: 90%; animation-delay: 4.5s; animation-duration: 8.5s; }

/* Dance emojis */
.floating-instruments-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.floating-instrument {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.45;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.mic-3d { top: 20%; left: 8%; animation: floatDance1 6s infinite ease-in-out; }
.guitar-3d { top: 60%; left: 10%; animation: floatDance2 7s infinite ease-in-out; }
.headphones-3d { top: 15%; right: 8%; animation: floatDance3 6.5s infinite ease-in-out; }
.keyboard-3d { top: 65%; right: 10%; animation: floatDance4 7.5s infinite ease-in-out; }

/* Disco Ball Styling */
.disco-ball {
  position: absolute;
  top: 15%;
  right: 18%;
  width: 90px;
  height: 90px;
  background: conic-gradient(from 0deg, #102656, #00f0ff, #102656, #bf55ec, #102656);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.3);
  animation: spinVinyl 6s linear infinite;
  opacity: 0.35;
  z-index: 1;
}

.disco-ball-left {
  top: 18%;
  left: 18%;
  width: 60px;
  height: 60px;
  animation-duration: 8s;
  animation-direction: reverse;
}

/* Titles */
.hero-title-stylish {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 24px;
}

.stylish-dance {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--white) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 15px rgba(0, 240, 255, 0.4));
  text-transform: uppercase;
  letter-spacing: 2px;
}

.stylish-with {
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  font-weight: 700;
  color: var(--silver-light);
  letter-spacing: 8px;
  text-transform: uppercase;
  opacity: 0.8;
  margin: 6px 0;
}

.stylish-musichorn {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4.5vw, 2.7rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--purple) 0%, var(--white) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 15px rgba(191, 85, 236, 0.4));
  letter-spacing: 1.5px;
}

.hero-tagline-stylish {
  font-size: clamp(.7rem, 1.5vw, 0.85rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
  letter-spacing: 5px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  position: relative;
}

.hero-tagline-stylish::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.hero-sub {
  font-size: 0.85rem;
  color: var(--silver-light);
  max-width: 580px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* Highlights Grid */
.hero-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

.highlight-card {
  background: rgba(12, 28, 72, 0.35);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: var(--radius);
  padding: 12px 10px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.15);
}

.highlight-card .card-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 8px;
}

.highlight-card .card-title {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.highlight-card .card-sub {
  display: block;
  font-size: .7rem;
  color: var(--silver-light);
  line-height: 1.4;
}

/* Buttons global */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  font-size: .82rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-gold {
  color: var(--navy-dark);
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-bright) 100%);
  box-shadow: 0 4px 15px rgba(0, 240, 255, .3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-cyan);
}

.btn-instagram {
  color: var(--white);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 15px rgba(220, 39, 67, .25);
  margin-left: 10px;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, .45);
}

.btn-ghost {
  color: var(--silver);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  color: var(--cyan);
  border: 1.5px solid rgba(0, 240, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.social-icon-svg {
  fill: currentColor;
}

/* ---------------------------------------------------------
   6. SECTION DIVIDER
   --------------------------------------------------------- */
.section-divider {
  text-align: center;
  padding: 24px 0;
  font-size: 1.2rem;
  letter-spacing: 8px;
  color: var(--cyan);
  background: var(--navy-dark);
  text-shadow: 0 0 10px var(--cyan);
}

/* ---------------------------------------------------------
   7. ABOUT / ROUNDS
   --------------------------------------------------------- */
.rounds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.round-card {
  padding: 20px;
  z-index: 1;
}

.round-num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(0, 240, 255, 0.1);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.round-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.round-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.round-mode {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 240, 255, 0.15);
  padding: 2px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.round-card p {
  font-size: .85rem;
  color: var(--silver-light);
  line-height: 1.6;
}

/* About Instagram CTA */
.about-instagram-cta {
  margin-top: 60px;
  text-align: center;
  background: rgba(191, 85, 236, 0.05);
  border: 1px solid rgba(191, 85, 236, 0.2);
  padding: 40px 30px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-instagram-cta h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.about-instagram-cta p {
  font-size: .95rem;
  color: var(--silver-light);
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------------------
   8. SPECIAL GUEST
   --------------------------------------------------------- */
.guest-section {
  background: var(--navy-dark);
}

.guest-wrapper {
  display: flex;
  align-items: center;
  gap: 56px;
}

.guest-image-container {
  flex: 0 0 380px;
  position: relative;
  aspect-ratio: 4/5;
  background: rgba(12, 28, 72, 0.4);
  border: 2px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--glow-cyan);
}

.guest-placeholder-icon {
  width: 100px;
  height: 100px;
  opacity: 0.2;
}

.guest-placeholder-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--cyan);
}

.guest-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 10px;
  background: rgba(3, 8, 22, 0.85);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 8px;
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
}

.guest-info {
  flex: 1;
}

.guest-info h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 4px;
}

.guest-subtitle {
  font-size: 1.15rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 30px;
}

.guest-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--purple);
  border-radius: 0 8px 8px 0;
  transition: transform var(--transition), background var(--transition);
}

.highlight-item:hover {
  transform: translateX(6px);
  background: rgba(0, 240, 255, 0.05);
}

.highlight-item .h-icon {
  font-size: 1.5rem;
  line-height: 1.2;
}

.highlight-item strong {
  display: block;
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 4px;
}

.highlight-item p {
  font-size: .85rem;
  color: var(--silver-light);
  line-height: 1.5;
}

/* ---------------------------------------------------------
   9. CATEGORIES
   --------------------------------------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cat-card {
  padding: 20px 16px;
  text-align: center;
}

.cat-emoji {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.cat-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.cat-card h3 small {
  display: block;
  font-size: .8rem;
  color: var(--silver-light);
  font-weight: 500;
  margin-top: 4px;
}

.cat-card p {
  font-size: .85rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 16px;
}

.cat-types {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cat-types span {
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.tag-indian {
  color: var(--purple);
  background: rgba(191, 85, 236, 0.15);
  border: 1px solid rgba(191, 85, 236, 0.25);
}

.tag-western {
  color: var(--cyan);
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.25);
}

/* ---------------------------------------------------------
   10. PRIZES
   --------------------------------------------------------- */
.prize-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  z-index: 5;
  position: relative;
}

.prize-card {
  padding: 18px 12px;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.prize-pos {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cyan);
  margin-bottom: 8px;
}

.prize-emoji {
  font-size: 1.8rem;
  margin-bottom: 8px;
  animation: floatDance1 5s infinite ease-in-out;
}

.prize-card h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.prize-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.prize-card li {
  font-size: .8rem;
  color: var(--silver-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.prize-card li::before {
  content: '✦';
  color: var(--cyan);
}

/* Special Prize Card Accents */
.prize-card.gold-card {
  border: 2px solid var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
  background: rgba(0, 240, 255, 0.05);
}

.prize-card.gold-card:hover {
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6), 0 0 50px rgba(191, 85, 236, 0.3);
}

.prize-card.silver {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.prize-card.bronze {
  border: 1px solid rgba(191, 85, 236, 0.3);
}
.prize-card.consolation {
  border: 1px dashed rgba(0, 240, 255, 0.3);
  background: rgba(255, 255, 255, 0.02);
}

.prize-note {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cyan);
  margin-top: 40px;
  position: relative;
  z-index: 5;
}

/* ---------------------------------------------------------
   11. RULES
   --------------------------------------------------------- */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rule {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: border-color var(--transition), transform var(--transition);
}

.rule:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateX(4px);
}

.rule span {
  font-size: 1.25rem;
  line-height: 1;
}

.rule p {
  font-size: 0.82rem;
  color: var(--silver-light);
  line-height: 1.5;
}

/* ---------------------------------------------------------
   12. REGISTRATION FORM
   --------------------------------------------------------- */
.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.reg-form {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Steps Bar */
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--silver-light);
  border: 2px solid rgba(0, 240, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  transition: all var(--transition);
}

.step-indicator.active .step-circle {
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: var(--navy-dark);
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.step-indicator.done .step-circle {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}

.step-indicator.done .step-circle::after {
  content: '';
}

.step-line {
  width: 80px;
  height: 3px;
  background: rgba(0, 240, 255, 0.15);
  position: relative;
}

.step-line.filled {
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.step-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--silver-light);
}

.step-indicator.active .step-label {
  color: var(--cyan);
}

/* Pages switching */
.form-page {
  display: none;
}

.form-page.active {
  display: block;
  animation: fadeInDown .5s ease-out;
}

.f-page-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.f-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.f-grid input.shake {
  animation: shake 0.4s ease-in-out;
}

.f-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-group.full {
  grid-column: span 2;
}

.f-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--silver);
}

.f-group label i {
  color: var(--purple);
}

.f-group input,
.f-group select {
  width: 100%;
  padding: 10px 16px;
  background: rgba(3, 8, 22, 0.6);
  border: 1.5px solid rgba(0, 240, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
  transition: all var(--transition);
}

.f-group input:focus,
.f-group select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Radio visual cards */
.radio-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}

.r-card {
  cursor: pointer;
  position: relative;
}

.r-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.r-card div {
  background: rgba(3, 8, 22, 0.4);
  border: 1.5px solid rgba(0, 240, 255, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  text-align: center;
  transition: all var(--transition);
}

.r-card input:checked + div {
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.06);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.r-card div span {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 6px;
}

.r-card div b {
  font-size: .78rem;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0.5px;
}

/* Pay & Drag & Drop */
.pay-wrap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
}

.pay-box {
  background: rgba(3, 8, 22, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.pay-amt small {
  font-size: .75rem;
  color: var(--silver-light);
  display: block;
}

.pay-amt strong {
  font-size: 1.8rem;
  color: var(--cyan);
}

.qr-area {
  margin: 15px 0;
}

.qr-mock {
  background: var(--navy-dark);
  border: 1px dashed rgba(191, 85, 236, 0.3);
  border-radius: 8px;
  padding: 24px 10px;
}

.qr-mock p {
  font-size: .85rem;
  color: var(--white);
}

.qr-mock small {
  font-size: .7rem;
  color: var(--silver-light);
}

.drop-zone {
  border: 2px dashed rgba(0, 240, 255, 0.2);
  background: rgba(3, 8, 22, 0.4);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.drop-zone.drag-over {
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.08);
}

.dz-icon {
  font-size: 2.2rem;
  margin-bottom: 6px;
}

.dz-file {
  font-size: .8rem;
  color: var(--cyan);
  margin-top: 8px;
  font-weight: 600;
  word-break: break-all;
}

.chk-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: .85rem;
  color: var(--silver-light);
}

.chk-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}

.f-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

/* Field validations shake & glow */
.f-group input.invalid,
.f-group select.invalid,
.drop-zone.invalid {
  border-color: var(--pink) !important;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.25) !important;
}

/* ---------------------------------------------------------
   13. SUCCESS BOX
   --------------------------------------------------------- */
.success-box {
  display: none;
  animation: fadeInUp 0.6s ease-out;
}

.success-box.show {
  display: block;
}

.success-inner {
  background: var(--glass-bg);
  border: 2px solid rgba(0, 240, 255, 0.25);
  box-shadow: var(--glow-cyan);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.success-logo {
  height: 80px;
  margin: 0 auto 20px;
}

.success-emoji {
  font-size: 4rem;
  margin-bottom: 16px;
  animation: bounce 1s ease-out;
}

.success-inner h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.success-inner p {
  font-size: 1rem;
  color: var(--silver-light);
  margin-bottom: 24px;
}

.reg-id {
  display: inline-block;
  background: rgba(0, 240, 255, 0.08);
  border: 1.5px solid var(--cyan);
  border-radius: 10px;
  padding: 12px 28px;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.reg-id small {
  display: block;
  font-size: .75rem;
  color: var(--silver-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.reg-id strong {
  font-family: monospace;
  font-size: 1.6rem;
  color: var(--cyan);
  letter-spacing: 2px;
}

.success-notice-box {
  background: rgba(0, 240, 255, 0.05);
  border: 2px solid var(--cyan);
  border-radius: 12px;
  padding: 20px;
  margin: 24px auto;
  max-width: 580px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.success-notice-box h3 {
  color: var(--cyan);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.success-notice-text {
  color: var(--silver);
  font-size: .92rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.success-notice-limit {
  color: var(--purple);
  font-size: .82rem;
  font-weight: 700;
}

.upload-card-wrapper {
  padding: 24px;
  background: rgba(12, 28, 72, 0.3);
  border: 1.5px dashed var(--cyan);
  border-radius: 12px;
  margin-bottom: 25px;
  text-align: left;
}

.upload-card-title {
  color: var(--cyan);
  margin-bottom: 16px;
  text-align: center;
  font-size: 1.1rem;
}

.success-dz {
  border-color: rgba(0, 240, 255, 0.2);
  background: rgba(3, 8, 22, 0.5);
}

.upload-success-card {
  text-align: center;
  background: rgba(39, 174, 96, 0.1);
  border: 1.5px solid #27ae60;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.upload-success-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 8px;
}

.upload-success-title {
  color: #27ae60;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.upload-success-desc {
  font-size: .88rem;
  color: var(--silver);
  line-height: 1.5;
}

.success-btns {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.success-social p {
  font-size: .85rem;
  color: var(--silver-light);
  margin-bottom: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}

.social-btn.ig {
  background: rgba(220, 39, 67, 0.1);
  border-color: rgba(220, 39, 67, 0.2);
}
.social-btn.ig:hover {
  background: rgba(220, 39, 67, 0.25);
  border-color: #dc2743;
}
.social-btn.fb {
  background: rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.2);
}
.social-btn.fb:hover {
  background: rgba(24, 119, 242, 0.25);
  border-color: #1877f2;
}

/* ---------------------------------------------------------
   14. PARTNER SECTION
   --------------------------------------------------------- */
.partner-section {
  background: var(--navy-dark);
  text-align: center;
  padding: 80px 0;
}

.partner-content h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.partner-content p {
  font-size: 1rem;
  color: var(--silver-light);
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* ---------------------------------------------------------
   15. SERVICES / COMPANY
   --------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  padding: 18px;
}

.service-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.service-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card p {
  font-size: .78rem;
  color: var(--silver-light);
  line-height: 1.6;
}

.service-card .service-icon {
  font-size: 2.5rem;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 8, 22, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(0, 240, 255, 0.15);
  margin-bottom: 20px;
}

/* ---------------------------------------------------------
   16. FOOTER
   --------------------------------------------------------- */
.footer {
  background: #020716;
  border-top: 1px solid rgba(0, 240, 255, 0.08);
  padding: 80px 0 30px;
}

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

.footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: .85rem;
  color: var(--silver-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-light);
  transition: all var(--transition);
}

.footer-social a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(0, 240, 255, 0.05);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  font-size: .88rem;
  color: var(--silver-light);
  margin-bottom: 12px;
  transition: all var(--transition);
}

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

/* Equalizer */
.footer-equalizer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  height: 40px;
  margin-bottom: 40px;
}

.eq-bar {
  width: 4px;
  height: 10px;
  background: linear-gradient(to top, var(--purple), var(--cyan));
  animation: eqBounce 1s ease-in-out infinite alternate;
  border-radius: 2px;
}

.eq-bar:nth-child(2)  { animation-delay: 0.1s; height: 18px; }
.eq-bar:nth-child(3)  { animation-delay: 0.3s; height: 24px; }
.eq-bar:nth-child(4)  { animation-delay: 0.2s; height: 15px; }
.eq-bar:nth-child(5)  { animation-delay: 0.4s; height: 32px; }
.eq-bar:nth-child(6)  { animation-delay: 0.15s; height: 28px; }
.eq-bar:nth-child(7)  { animation-delay: 0.35s; height: 12px; }
.eq-bar:nth-child(8)  { animation-delay: 0.25s; height: 22px; }
.eq-bar:nth-child(9)  { animation-delay: 0.5s; height: 35px; }
.eq-bar:nth-child(10) { animation-delay: 0.1s; height: 16px; }
.eq-bar:nth-child(11) { animation-delay: 0.3s; height: 26px; }
.eq-bar:nth-child(12) { animation-delay: 0.2s; height: 14px; }

.footer-bot {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: var(--silver-light);
}

.footer-bot-links {
  display: flex;
  gap: 15px;
}

/* ---------------------------------------------------------
   17. TRACK STATUS PORTAL
   --------------------------------------------------------- */
.voting-hero {
  text-align: center;
  padding: 60px 0 40px 0;
  background: radial-gradient(circle at center, rgba(12, 28, 72, 0.3) 0%, var(--navy-dark) 80%);
}

.voting-hero-content h1 {
  font-size: 2.2rem;
  color: var(--white);
  margin-top: 6px;
  margin-bottom: 10px;
}

.voting-hero-content p {
  color: var(--silver-light);
  font-size: 1rem;
}

.portal-form-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.portal-form-panel h3 {
  font-size: 1.4rem;
  color: var(--white);
}

.form-subtitle {
  font-size: .88rem;
  color: var(--silver-light);
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  background: rgba(3, 8, 22, 0.6);
  border: 1.5px solid rgba(0, 240, 255, 0.15);
  border-radius: 8px;
  color: var(--white);
}

.status-result-header {
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.status-result-header h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-top: 4px;
}

.video-raga-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 240, 255, 0.12);
  padding: 2px 10px;
  border-radius: 4px;
}

.status-res-regid-wrap {
  font-size: .82rem;
  color: var(--silver-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Timeline */
.status-timeline {
  margin-bottom: 40px;
  position: relative;
}

.timeline-line {
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.timeline-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  transition: width 0.5s ease;
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
}

.timeline-step .step-bubble {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: var(--silver-light);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 8px;
  transition: all var(--transition);
}

.timeline-step.completed .step-bubble {
  background: var(--cyan);
  color: var(--navy-dark);
  border-color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.timeline-step span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--silver-light);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-step.completed span {
  color: var(--cyan);
}

.status-upload-card {
  padding: 24px;
  background: rgba(0, 240, 255, 0.02);
  border: 1.5px dashed var(--cyan);
  border-radius: 12px;
}

.status-upload-card h4 {
  color: var(--cyan);
  margin-bottom: 8px;
  text-align: center;
  font-size: 1.1rem;
}

.status-upload-card p {
  font-size: .85rem;
  color: var(--silver-light);
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
}

.status-dz {
  border-color: rgba(0, 240, 255, 0.2);
  background: rgba(3, 8, 22, 0.5);
}

.status-uploaded-card {
  text-align: center;
  background: rgba(39, 174, 96, 0.05);
  border: 1.5px solid #27ae60;
  padding: 24px;
  border-radius: 12px;
}

.status-uploaded-card h4 {
  color: #27ae60;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.status-uploaded-card p {
  font-size: .88rem;
  color: var(--silver);
}

.status-ok-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 8px;
}

/* ---------------------------------------------------------
   18. VIDEO SIZE MODAL
   --------------------------------------------------------- */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 22, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-content {
  background: var(--navy-bg);
  border: 2px solid rgba(0, 240, 255, 0.25);
  box-shadow: var(--glow-cyan);
  border-radius: var(--radius);
  max-width: 500px;
  padding: 40px;
  text-align: center;
  position: relative;
  animation: fadeInUp 0.4s ease-out;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem;
  color: var(--silver-light);
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: var(--cyan);
}

.modal-content h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}

.modal-content p {
  font-size: .88rem;
  color: var(--silver-light);
  line-height: 1.6;
  margin-bottom: 10px;
}

.modal-content #videoSizeWhatsApp {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* ---------------------------------------------------------
   19. FLOATING INSTAGRAM BUTTON
   --------------------------------------------------------- */
.ig-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ig-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(220, 39, 67, 0.5);
}

/* ---------------------------------------------------------
   20. KEYFRAMES / ANIMATIONS
   --------------------------------------------------------- */
@keyframes sweepLeft {
  0% { transform: rotate(-32deg); }
  100% { transform: rotate(-10deg); }
}

@keyframes sweepRight {
  0% { transform: rotate(32deg); }
  100% { transform: rotate(10deg); }
}

@keyframes bassBump {
  0% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(191, 85, 236, 0.25);
  }
  100% {
    transform: scale(1.06);
    box-shadow: 0 0 25px rgba(191, 85, 236, 0.55), 0 0 10px rgba(0, 240, 255, 0.3);
  }
}

@keyframes floatNote {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.35;
  }
  90% {
    opacity: 0.35;
  }
  100% {
    transform: translateY(-800px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes spinVinyl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes eqBounce {
  0% { transform: scaleY(0.3); }
  100% { transform: scaleY(1); }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-20px); }
  60% { transform: translateY(-10px); }
}

@keyframes floatDance1 {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(8deg); }
}
@keyframes floatDance2 {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-8px) rotate(-8deg); }
}
@keyframes floatDance3 {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(-5deg); }
}
@keyframes floatDance4 {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.shake {
  animation: shake 0.4s ease-in-out;
}

/* Scroll Animations Observer */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------
   21. RESPONSIVE QUERIES
   --------------------------------------------------------- */
@media (max-width: 1024px) {
  .speaker {
    display: none; /* Hide real speaker boxes on tablets */
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: rgba(3, 8, 22, 0.98);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    padding: 30px 24px;
    gap: 20px;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
  }
  
  .nav-links.open {
    display: flex;
    animation: fadeInDown .3s ease-out;
  }
  
  .nav-links a {
    font-size: 1rem;
    padding: 8px 0;
    display: block;
    text-align: center;
  }
  
  .nav-cta {
    display: none; /* Hide navbar CTA on mobile */
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .portal-tabs-wrapper {
    top: 85px;
  }
  
  .portal-tabs {
    flex-wrap: wrap;
    gap: 4px;
  }
  
  .portal-tab-btn {
    padding: 10px 16px;
    font-size: .75rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 768px) {
  
  .hero-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .rounds-grid,
  .cat-grid,
  .prize-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .prize-card.gold-card {
    transform: translateY(0);
  }
  
  .rules-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .guest-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .guest-image-container {
    flex: 0 0 280px;
    width: 280px;
  }
  
  .highlight-item {
    justify-content: center;
    border-left: none;
    border-top: 3px solid var(--purple);
    border-radius: 0 0 8px 8px;
  }
  
  .reg-form {
    padding: 24px;
  }
  
  .f-grid {
    grid-template-columns: 1fr;
  }
  
  .f-group.full {
    grid-column: span 1;
  }
  
  .radio-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .pay-wrap {
    grid-template-columns: 1fr;
  }
  
  .steps-bar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .step-line {
    width: 3px;
    height: 30px;
  }
  
  .timeline-steps {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .timeline-line {
    display: none; /* Hide timeline line in vertical mobile view */
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bot {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 20px 16px;
  }
  
  .hero-highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .disco-ball {
    display: none; /* Hide disco balls on small mobiles to declutter */
  }
  
  .about-instagram-cta {
    padding: 24px 16px;
  }
  
  .btn-instagram {
    margin-left: 0;
    margin-top: 10px;
    display: flex;
    width: 100%;
    justify-content: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .success-inner {
    padding: 24px 16px;
  }
}

/* Progress Bar styling for simulated file uploads */
.upload-progress-container {
  display: none;
  margin: 16px 0;
  width: 100%;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--silver-light);
  margin-bottom: 6px;
  font-weight: 500;
}

.progress-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transition: width 0.3s ease;
}

/* Validation glows for visual radio cards */
.age-cat-group.invalid .r-card div,
.dance-cat-group.invalid .r-card div {
  border-color: var(--pink) !important;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.25) !important;
}
