/* ===================================================
   ELITE 2025 — FIXED & ENHANCED STYLESHEET
   Fixes: duplicate rules, broken animations, responsive
   layout, preloader, hero logo, modal, navbar
   =================================================== */

/* ===== GOOGLE FONTS IMPORT ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  /* Backgrounds */
  --bg-primary:      #020408;
  --bg-secondary:    #050c14;
  --bg-card:         rgba(6, 18, 32, 0.85);
  --bg-card-hover:   rgba(8, 24, 44, 0.95);

  /* Neon accent colours */
  --neon-cyan:   #00f5ff;
  --neon-blue:   #0080ff;
  --neon-gold:   #ffd700;
  --neon-purple: #9b59b6;

  /* Text */
  --text-primary:   #e8f4fd;
  --text-secondary: #7fb3d3;
  --text-muted:     #3d6a8a;

  /* Borders */
  --border-glow:   rgba(0, 245, 255, 0.25);
  --border-subtle: rgba(0, 128, 255, 0.15);

  /* Typography */
  --font-display: 'Orbitron', monospace;
  --font-body:    'Rajdhani', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;

  /* Misc */
  --radius:     12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar       { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--neon-cyan); border-radius: 4px; }

/* ===================================================
   PRELOADER
   =================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.05);
}

/* Rings */
.pre-inner  { text-align: center; position: relative; }
.pre-ring {
  width: 100px; height: 100px;
  border: 2px solid transparent;
  border-top-color:  var(--neon-cyan);
  border-right-color: var(--neon-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -70%);
}
.pre-ring.r2 {
  width: 70px; height: 70px;
  border-top-color:  var(--neon-gold);
  border-left-color: var(--neon-cyan);
  animation-direction: reverse;
  animation-duration: 0.7s;
}

/* Logo text */
.pre-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--neon-cyan);
  margin-top: 70px;
  letter-spacing: 4px;
  text-shadow: 0 0 20px var(--neon-cyan);
}
.pre-logo span { color: var(--neon-gold); }

/* Progress bar */
.pre-bar-wrap {
  width: 200px; height: 2px;
  background: rgba(0, 245, 255, 0.15);
  border-radius: 2px;
  margin: 16px auto 10px;
  overflow: hidden;
}
.pre-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
  animation: barLoad 2s ease forwards;
  box-shadow: 0 0 10px var(--neon-cyan);
}
.pre-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  animation: blink 1s infinite;
}

/* ===================================================
   NAVBAR
   =================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(2, 4, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glow);
  box-shadow: 0 4px 30px rgba(0, 245, 255, 0.08);
  height: 60px;
}

.nav-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Brand */
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-uni-img {
  width: 48px; height: 48px;
  object-fit: contain;
  border-radius: 6px;
  filter: drop-shadow(0 0 6px rgba(0, 245, 255, 0.3));
  flex-shrink: 0;
}
.logo-hex {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.42rem;
  font-weight: 900;
  color: var(--bg-primary);
  line-height: 1.3;
  flex-shrink: 0;
}
.nav-title-group { display: flex; flex-direction: column; }
.nav-dept   { font-size: 0.65rem; font-weight: 700; color: var(--neon-cyan); letter-spacing: 0.5px; }
.nav-college { font-size: 0.6rem; color: var(--text-muted); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-a {
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.nav-a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--neon-cyan);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-a:hover         { color: var(--neon-cyan); }
.nav-a:hover::after  { transform: scaleX(1); }

/* Elite badge */
.nav-elite-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  border: 1px solid var(--neon-cyan);
  padding: 5px 12px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(0, 245, 255, 0.2), inset 0 0 12px rgba(0, 245, 255, 0.05);
}
.badge-text { font-family: var(--font-display); font-size: 0.65rem; color: var(--text-muted); letter-spacing: 2px; }
.badge-year { font-family: var(--font-display); font-size: 1rem; font-weight: 900; color: var(--neon-cyan); letter-spacing: 1px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--neon-cyan);
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================================================
   HERO
   =================================================== */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0, 128, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 128, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 60px;
  max-width: 900px;
  will-change: transform, opacity;
}

/* Hero logo */
.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  opacity: 0;
  /* starts after preloader finishes (2s bar + 0.6s fade = 2.6s + 0.2s buffer) */
  animation: fadeUp 0.8s ease 2.8s forwards;
}
.elite-logo-img {
  width: clamp(90px, 15vw, 160px);
  height: auto;
  filter:
    drop-shadow(0 0 8px rgba(0, 255, 255, 0.6))
    drop-shadow(0 0 20px rgba(0, 200, 255, 0.5));
  animation:
    eliteFloat     4s   ease-in-out 3.6s infinite,
    eliteTextGlow  2.5s ease-in-out 3.6s infinite alternate;
}

/* Hero text */
.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: var(--neon-cyan);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease 2.95s forwards;
}
.hero-title {
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.6s ease 3.1s forwards;
}
.h-elite {
  display: block;
  font-size: clamp(3.5rem, 12vw, 10rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--neon-cyan);
  text-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
  letter-spacing: 8px;
}
.h-year {
  display: block;
  font-size: clamp(2.5rem, 9vw, 7.5rem);
  font-weight: 900;
  color: var(--neon-gold);
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.4), 0 0 80px rgba(255, 215, 0, 0.2);
  letter-spacing: 4px;
}
.hero-sub {
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeUp 0.6s ease 3.25s forwards;
}
.hero-dept {
  font-size: clamp(0.75rem, 1.8vw, 0.95rem);
  color: var(--neon-cyan);
  letter-spacing: 1px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease 3.4s forwards;
}

/* Date badge */
.hero-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--neon-gold);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--neon-gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 36px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
  opacity: 0;
  animation: fadeUp 0.8s ease 3.55s forwards;
}
.hero-date-badge svg { width: 16px; height: 16px; }

/* CTA buttons */
.hero-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.8s ease 3.7s forwards;
}
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
  text-transform: uppercase;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0, 245, 255, 0.5);
}
.btn-primary svg { width: 18px; height: 18px; }
.btn-glow {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 8px;
  transition: var(--transition);
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
}
.btn-secondary:hover {
  background: rgba(0, 245, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
  transform: translateY(-2px);
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease 3.85s forwards;
}
.stat  { text-align: center; }
.s-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--neon-cyan);
}
.s-lab { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 1px; }
.stat-div { width: 1px; height: 40px; background: var(--border-glow); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 3px;
  animation: floatHint 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--neon-cyan), transparent);
}

/* ===================================================
   SECTIONS
   =================================================== */
.section     { padding: 100px 24px; }
.section-alt { background: var(--bg-secondary); }
.section-inner  { max-width: 1300px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }

.sec-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--neon-cyan);
  border: 1px solid var(--border-glow);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.glow-text {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}
.section-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================================================
   EVENTS GRID & CARDS
   =================================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 0;
  animation: cardReveal 0.5s ease forwards;
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--card-accent, var(--neon-cyan)), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.event-card:hover::before { transform: scaleX(1); }
.event-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 245, 255, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.event-card:hover::after  { opacity: 1; }
.event-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  border-color: var(--card-accent, var(--neon-cyan));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 245, 255, 0.1);
  background: var(--bg-card-hover);
}

.card-icon   { font-size: 2.2rem; margin-bottom: 16px; display: block; filter: drop-shadow(0 0 10px currentColor); }
.card-number {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--text-muted); letter-spacing: 1px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary); letter-spacing: 1px;
  margin-bottom: 10px;
}
.card-desc {
  font-size: 0.85rem; color: var(--text-secondary);
  line-height: 1.5; margin-bottom: 20px;
}
.card-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--card-accent, var(--neon-cyan));
  border: 1px solid var(--card-accent, var(--neon-cyan));
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 16px; opacity: 0.7;
}
.card-cta {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700;
  color: var(--card-accent, var(--neon-cyan));
  letter-spacing: 1px;
  transition: gap 0.3s ease;
}
.event-card:hover .card-cta { gap: 10px; }
.card-cta svg { width: 14px; height: 14px; }

/* ===================================================
   SPORTS SECTION
   =================================================== */
.sports-general-rules {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 48px;
}
.sg-title {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--neon-gold); letter-spacing: 2px;
  margin-bottom: 16px;
}
.sg-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}
.sg-list li {
  font-size: 0.85rem; color: var(--text-secondary);
  padding-left: 16px; position: relative;
  line-height: 1.6;
}
.sg-list li::before {
  content: '▸';
  position: absolute; left: 0;
  color: var(--neon-gold);
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.sport-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px 20px;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  animation: cardReveal 0.5s ease forwards;
}
.sport-card:hover {
  border-color: var(--neon-gold);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.sport-emoji { font-size: 2.5rem; margin-bottom: 12px; display: block; }
.sport-name {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: var(--text-primary); letter-spacing: 1px; margin-bottom: 6px;
}
.sport-info { font-size: 0.75rem; color: var(--text-muted); }
.sport-cta {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  font-size: 0.7rem; font-weight: 700;
  color: var(--neon-gold); letter-spacing: 1px; margin-top: 12px;
}
.sport-cta svg { width: 12px; height: 12px; }

/* ===================================================
   MODALS
   =================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glow);
  border-radius: 16px;
  max-width: 640px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 0 80px rgba(0, 245, 255, 0.15), 0 40px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none;
  border: 1px solid var(--border-glow);
  color: var(--text-secondary);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover {
  background: rgba(0, 245, 255, 0.1);
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

.modal-icon     { font-size: 3rem; margin-bottom: 12px; }
.modal-category {
  font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 3px; color: var(--neon-cyan); margin-bottom: 8px;
}
.modal-title {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 900;
  color: var(--text-primary); letter-spacing: 2px; margin-bottom: 12px;
}
.modal-desc {
  color: var(--text-secondary); font-size: 0.9rem;
  margin-bottom: 24px; line-height: 1.7;
}
.modal-rules-title {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  color: var(--neon-gold); letter-spacing: 3px; margin-bottom: 14px;
}
.modal-rules {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.modal-rule {
  display: flex; gap: 12px;
  padding: 10px 14px;
  background: rgba(0, 245, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5;
}
.rule-num {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--neon-cyan); flex-shrink: 0; padding-top: 2px;
}
.modal-reg-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px;
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px;
}

/* Sports modal */
.modal-sports-box { max-width: 800px; padding: 32px; }
.sports-modal-header { text-align: center; margin-bottom: 28px; }
.smo-icon  { font-size: 2.5rem; margin-bottom: 8px; }
.smo-title {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 900;
  color: var(--text-primary); letter-spacing: 2px;
}
.smo-title span { color: var(--neon-gold); }
.smo-sub   { color: var(--text-muted); font-size: 0.85rem; margin-top: 6px; }

/* Sports tabs */
.sports-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.sport-tab {
  padding: 8px 16px;
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.sport-tab:hover        { border-color: var(--neon-gold); color: var(--neon-gold); }
.sport-tab.active {
  background: rgba(255, 215, 0, 0.12);
  border-color: var(--neon-gold);
  color: var(--neon-gold);
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.15);
}

.sports-tab-content   { margin-bottom: 28px; }
.sport-panel          { display: none; animation: fadeUp 0.3s ease; }
.sport-panel.active   { display: block; }
.sport-panel-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glow);
}
.sph-emoji { font-size: 2rem; }
.sph-title {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); letter-spacing: 1px;
}
.sph-sub { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }

/* ===================================================
   REGISTER SECTION
   =================================================== */
.register-block {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.reg-glow-orb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.06), transparent 70%);
  pointer-events: none;
}
.reg-desc {
  color: var(--text-secondary); font-size: 1rem;
  margin: 16px auto 32px; max-width: 500px; line-height: 1.7;
}
.reg-features {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 20px;
  margin-bottom: 36px;
}
.rf {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 8px 18px; border-radius: 50px;
}
.rf-icon { font-size: 1rem; }
.btn-large { padding: 16px 48px; font-size: 0.85rem; }

/* ===================================================
   CONTACT
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex; align-items: center; gap: 16px;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.08);
  transform: translateY(-3px);
}
.cc-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(0, 245, 255, 0.08);
  border: 1px solid var(--border-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--neon-cyan);
}
.cc-icon svg { width: 20px; height: 20px; }
.cc-label {
  display: block; font-size: 0.7rem;
  color: var(--text-muted); letter-spacing: 1px;
  font-family: var(--font-mono);
}
.cc-value {
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-primary); transition: color 0.2s;
}
.cc-value:hover { color: var(--neon-cyan); }

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-glow);
  padding: 40px 24px;
  text-align: center;
}
.footer-inner  { max-width: 600px; margin: 0 auto; }
.footer-logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 900;
  color: var(--neon-cyan); letter-spacing: 3px; margin-bottom: 12px;
}
.footer-logo span { color: var(--neon-gold); }
.footer-text {
  color: var(--text-muted); font-size: 0.85rem;
  line-height: 1.8; margin-bottom: 16px;
}
.footer-copy {
  font-family: var(--font-mono); font-size: 0.65rem;
  color: var(--text-muted); letter-spacing: 1px;
}

/* ===================================================
   SCROLL REVEAL UTILITY
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   ANIMATIONS  (consolidated — no duplicates)
   =================================================== */
@keyframes spin {
  to { transform: translate(-50%, -70%) rotate(360deg); }
}
@keyframes barLoad {
  to { width: 100%; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes shimmer {
  0%       { left: -100%; }
  50%, 100% { left: 100%; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes floatHint {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}
@keyframes eliteFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%      { transform: translateY(-8px) scale(1.02); }
}
@keyframes eliteTextGlow {
  from {
    filter:
      drop-shadow(0 0 6px #00f0ff)
      drop-shadow(0 0 12px #00c8ff);
  }
  to {
    filter:
      drop-shadow(0 0 15px #00f0ff)
      drop-shadow(0 0 30px #00c8ff);
  }
}
@keyframes rotateRing {
  to { transform: rotate(360deg); }
}
@keyframes rotateRingReverse {
  to { transform: rotate(-360deg); }
}
@keyframes glitchText {
  0%   { opacity: 0.5; transform: translateX(0); }
  50%  { opacity: 1;   transform: translateX(1px); }
  100% { opacity: 0.5; transform: translateX(0); }
}
@keyframes hideLoader {
  to { opacity: 0; visibility: hidden; }
}

/* ===================================================
   IN-HERO LOADER (HUD style)
   =================================================== */
.hero-loader {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  animation: hideLoader 0.5s ease 1.2s forwards;
  pointer-events: none;
}
.hud-loader {
  position: relative;
  width: 120px; height: 120px;
}
.hud-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(0, 245, 255, 0.2);
  border-top: 2px solid var(--neon-cyan);
  border-radius: 50%;
  animation: rotateRing 2s linear infinite;
}
.hud-ring.inner {
  inset: 15px;
  border: 2px solid rgba(0, 245, 255, 0.1);
  border-bottom: 2px solid var(--neon-blue);
  animation: rotateRingReverse 1.5s linear infinite;
}
.hud-center {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.hud-percent {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--neon-cyan);
}
.hud-text {
  font-size: 10px; letter-spacing: 2px;
  color: var(--neon-blue); margin-top: 4px;
  animation: glitchText 1.2s infinite;
}

/* ===================================================
   RESPONSIVE — TABLET (≤ 900px)
   =================================================== */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background: rgba(2, 4, 8, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0;
  }
  .nav-links.open      { transform: translateX(0); }
  .nav-a               { font-size: 1.2rem; padding: 12px 24px; }
  .hamburger           { display: flex; }
  .nav-elite-badge     { display: none; }
  .nav-title-group     { display: none; }

  .section { padding: 70px 20px; }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤ 768px)
   =================================================== */
@media (max-width: 768px) {
  .hero-content { padding: 100px 16px 40px; }
  .hero-logo    { margin-bottom: 5px; }
  .elite-logo-img { width: 110px; }

  .h-elite { font-size: clamp(2.5rem, 10vw, 4rem); letter-spacing: 3px; }
  .h-year  { font-size: clamp(2rem, 8vw, 3rem); }

  .hero-stats  { gap: 14px; }
  .s-num       { font-size: 1.3rem; }

  .modal-box        { padding: 24px 18px; }
  .modal-sports-box { padding: 20px 16px; }

  .sports-tabs { gap: 6px; }
  .sport-tab   { font-size: 0.72rem; padding: 6px 12px; }

  .sg-list         { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }

  .section { padding: 60px 16px; }
}

/* ===================================================
   RESPONSIVE — SMALL MOBILE (≤ 600px)
   =================================================== */
@media (max-width: 600px) {
  .hero-cta-wrap   { flex-direction: column; gap: 12px; }
  .btn-primary,
  .btn-secondary   { width: 100%; justify-content: center; }
}

/* ===================================================
   RESPONSIVE — EXTRA SMALL (≤ 480px)
   =================================================== */
@media (max-width: 480px) {
  .elite-logo-img { width: 90px; }
  .hero-tag       { font-size: 10px; letter-spacing: 2px; }
  .pre-logo       { font-size: 1.6rem; letter-spacing: 2px; }
  .modal-title    { font-size: 1.2rem; }
}