/* =================================================================
  1. Reset and Base Styles
  ================================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Minimalistic Color Palette */
  --primary-color: #00ffff;
  --secondary-color: #ff00ff;
  --accent-color: #ffff00;
  --dark-bg: #0a0a0a;
  --darker-bg: #050505;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  
  /* Enhanced Neon System */
  --neon-glow: 0 0 20px rgba(0, 255, 255, 0.6);
  --neon-glow-pink: 0 0 20px rgba(255, 0, 255, 0.6);
  --neon-glow-yellow: 0 0 20px rgba(255, 255, 0, 0.6);
  --neon-cyan: 0 0 30px rgba(0, 255, 255, 0.8);
  --neon-magenta: 0 0 30px rgba(255, 0, 255, 0.8);
  --neon-yellow: 0 0 30px rgba(255, 255, 0, 0.8);
  --neon-green: 0 0 30px rgba(0, 255, 0, 0.8);
  --neon-blue: 0 0 30px rgba(0, 150, 255, 0.8);
  --neon-orange: 0 0 30px rgba(255, 165, 0, 0.8);
  --neon-purple: 0 0 30px rgba(128, 0, 255, 0.8);
  --neon-red: 0 0 30px rgba(255, 0, 0, 0.8);
  --neon-pink: 0 0 30px rgba(255, 20, 147, 0.8);
  --neon-lime: 0 0 30px rgba(50, 205, 50, 0.8);
  --neon-gold: 0 0 30px rgba(255, 215, 0, 0.8);
  
  /* Modern Gradients */
  --bg-theme-1: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  --bg-theme-2: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
  --bg-theme-3: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
  
  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Typography Scale */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  
  /* Animation Timing */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-theme-1);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  perspective: 1000px;
}

/* =================================================================
  2. Enhanced Animations
  ================================================================= */
@keyframes revealText {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    text-shadow: none;
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    text-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff, 0 0 30px #00f7ff;
    filter: blur(0);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px) scale(0.9);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes morphingGlow {
  0%, 100% {
    box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
  }
  25% {
    box-shadow: 0 0 25px var(--secondary-color), 0 0 50px var(--secondary-color);
  }
  50% {
    box-shadow: 0 0 30px var(--accent-color), 0 0 60px var(--accent-color);
  }
  75% {
    box-shadow: 0 0 25px var(--neon-purple), 0 0 50px var(--neon-purple);
  }
}

@keyframes floatingElement {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(1deg);
  }
  50% {
    transform: translateY(-5px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(0.5deg);
  }
}

@keyframes pulseBreath {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

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

@keyframes pulseGlow {
  0%,
  100% {
    text-shadow: 0 0 5px #00f5ffaa;
  }
  50% {
    text-shadow: 0 0 20px #00f5ffcc;
  }
}

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

@keyframes glow {
  from {
    text-shadow: var(--neon-glow);
  }
  to {
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* =================================================================
  Register Button Animations
  ================================================================= */
@keyframes registerButtonFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 
      0 0 30px rgba(0, 255, 255, 0.6),
      0 0 60px rgba(0, 128, 255, 0.4),
      0 0 90px rgba(128, 0, 255, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 
      0 0 40px rgba(0, 255, 255, 0.8),
      0 0 80px rgba(0, 128, 255, 0.6),
      0 0 120px rgba(128, 0, 255, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

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

@keyframes particlePulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes registerButtonGlow {
  0%, 100% {
    filter: brightness(1) saturate(1);
  }
  50% {
    filter: brightness(1.2) saturate(1.3);
  }
}

@keyframes backgroundShift {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes lightSweep {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes registerTitleGlow {
  0%, 100% {
    text-shadow: 
      0 0 20px var(--primary-color),
      0 0 40px rgba(0, 255, 255, 0.5),
      0 0 60px rgba(0, 255, 255, 0.3);
  }
  50% {
    text-shadow: 
      0 0 30px var(--primary-color),
      0 0 60px rgba(0, 255, 255, 0.7),
      0 0 90px rgba(0, 255, 255, 0.5);
  }
}

@keyframes titleUnderline {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-intro {
  0% {
    opacity: 0;
    transform: translate(-50%, 120%) scale(0.5) rotate(0deg);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, 120%) scale(2) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 120%) scale(2) rotate(360deg);
  }
}

@keyframes logo-exit {
  0% {
    opacity: 1;
    transform: translate(-50%, 120%) scale(2) rotate(0deg);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, 120%) scale(0.5) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 120%) scale(0) rotate(360deg);
  }
}

/* =================================================================
  3. Utility Classes and Components
  ================================================================= */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-layer-1 {
  background: var(--bg-theme-1);
  opacity: 1;
}

.bg-layer-2 {
  background: var(--bg-theme-2);
  opacity: 0;
}

.bg-layer-3 {
  background: var(--bg-theme-3);
  opacity: 0;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-bg);
  box-shadow: var(--neon-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: var(--neon-glow);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: var(--neon-glow);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-3px);
}

.scroll-reveal-block {
  opacity: 0;
  filter: blur(10px);
  transform: rotate(5deg) translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s, transform 0.8s;
  will-change: opacity, filter, transform;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 15px;
  padding: 1.5rem 1rem;
  margin: 2rem 0 0 0;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
  text-align: center;
}

.scroll-reveal-block.revealed {
  opacity: 1;
  filter: blur(0px);
  transform: rotate(0deg) translateY(0);
}

/* =================================================================
  /* =================================================================
  Header and Navigation
  ================================================================= */
/* Particles.js Background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  opacity: 0.5;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.sticky-header:hover {
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: var(--primary-color);
  box-shadow: 0 8px 40px rgba(0, 255, 255, 0.2);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  gap: 2rem;
}

/* Logo Section */
.logo-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.header-text-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}

.logo-image-wrapper {
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: floatLogo 4s ease-in-out infinite; /* Keep the floating animation */
}

.logo-text {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
  text-shadow: 0 0 20px var(--primary-color);
  transition: all var(--transition-normal);
}

.welcome-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  opacity: 0.8;
}



.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap; /* allow wrapping on mobile */
  background: rgba(10, 10, 10, 0.95); /* match sticky-header background */
  backdrop-filter: blur(20px);
  width: 100%;
  padding: 0.5rem 1rem; /* space for mobile */
}
.nav-menu {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-normal);
  position: relative;
  padding: 0.5rem 1rem; /* Smaller padding */
  border-radius: 25px;
  font-size: 0.7rem; /* Smaller font size */
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
}

.nav-link:hover {
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  background: rgba(0, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: all var(--transition-normal);
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link:hover::after {
  width: 80%;
  box-shadow: var(--neon-glow);
}

/* Register Button Styling */
.register-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--dark-bg);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
  border: none;
  cursor: pointer;
}

.register-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-slow);
}

.register-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
}

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

.nav-link:hover::after {
  width: 100%;
}

/* Float Animation for the Logo */
@keyframes floatLogo {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Responsive adjustments for header */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
  .current-event {
    order: -1;
  }
}
/* =================================================================
  5. Hero Section
  ================================================================= */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
  color: var(--text-primary);
  overflow: hidden;
  perspective: 1000px;
}

.hero-bg-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 245, 255, 0.1), transparent 70%);
  z-index: 0;
  animation: pulseBreath 4s ease-in-out infinite;
  display: none;
}

.hero-content {
  z-index: 2;
  text-align: center;
  animation: slideInFromBottom 1s ease-out;
}

.hero-title span {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: var(--font-size-5xl);
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--primary-color);
  text-shadow: 0 0 30px var(--primary-color), 0 0 60px var(--primary-color);
  transform-style: preserve-3d;
  transition: all var(--transition-normal);
  animation: pulseGlow 2s ease-in-out infinite;
}

.hero-title span:hover {
  transform: scale(1.05) rotateY(10deg);
  filter: brightness(1.2);
}

.hero-tagline {
  margin-top: var(--space-md);
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  letter-spacing: 2px;
  font-weight: 300;
  animation: slideInFromBottom 1s ease-out 0.3s both;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transition: all var(--transition-normal);
}

.hero-tagline:hover {
  color: var(--primary-color);
  text-shadow: 0 0 30px var(--neon-glow);
  transform: scale(1.02);
}

.hero-actions {
  margin-top: var(--space-xl);
  display: flex;
  gap: var(--space-md);
  animation: slideInFromBottom 1s ease-out 0.6s both;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  backdrop-filter: blur(20px);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition-bounce);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.btn-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn-glass:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 245, 255, 0.4);
}

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

.btn-outline {
  border: 2px solid var(--glass-border);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  background: rgba(255, 0, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 0, 255, 0.3);
}

.hero-visual {
  position: absolute;
  bottom: 4vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  animation: slideInFromBottom 1s ease-out 0.9s both;
}

.glow-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid rgba(0, 245, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.4);
  animation: rotate 8s linear infinite, morphingGlow 6s ease-in-out infinite;
  position: relative;
  transition: all var(--transition-normal);
}

.glow-ring::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(0, 245, 255, 0.1);
  border-radius: 50%;
  animation: rotate 12s linear infinite reverse;
}

.glow-ring:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(0, 245, 255, 0.6);
}

.future-text {
  margin-top: var(--space-sm);
  font-size: var(--font-size-sm);
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 300;
  animation: pulseBreath 3s ease-in-out infinite;
  transition: all var(--transition-normal);
}

.future-text:hover {
  color: var(--primary-color);
  letter-spacing: 4px;
}

/* =================================================================
  6. About Section
  ================================================================= */
.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-lg);
  position: relative;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%);
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 245, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  animation: slideInFromLeft 1s ease-out;
}

.about-title {
  font-family: 'Orbitron', monospace;
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  margin-bottom: var(--space-md);
  position: relative;
  transition: all var(--transition-normal);
}

.about-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  box-shadow: var(--neon-glow);
}

.about-title:hover {
  transform: translateX(10px);
  text-shadow: 0 0 40px var(--neon-cyan);
}

.about-quote {
  background: rgba(255, 0, 255, 0.1);
  border: 1px solid rgba(255, 0, 255, 0.3);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.about-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--secondary-color);
  text-shadow: var(--neon-glow-pink);
}

.about-quote p {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--secondary-color);
  text-shadow: var(--neon-glow-pink);
  margin: 0;
  line-height: 1.6;
}

.about-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-description p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* =================================================================
  7. Events Section
  ================================================================= */
.events-section {
  min-height: 100vh;
  background: var(--bg-black);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.events-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  text-align: center;
  margin-bottom: 3rem;
}

.event-category {
  margin-bottom: 4rem;
}

.category-title {
  font-family: 'Orbitron', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-shadow: var(--neon-glow-pink);
  margin-bottom: 2rem;
  text-align: center;
}

.circular-gallery-container {
  height: 600px;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-items {
  display: flex;
  gap: 2rem;
  padding: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  height: 100%;
  align-items: center;
}

.gallery-item {
  min-width: 300px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.gallery-item:hover::before {
  left: 100%;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.gallery-item h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  margin: 0;
}

/* Horizontal Events Section */
.events-horizontal-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.events-scroll-container {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.events-scroll-container::-webkit-scrollbar {
  display: none;
}

.event-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  min-width: 350px;
  max-width: 400px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateZ(0);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(100px) scale(0.9);
  position: relative;
  overflow: hidden;
}

.event-card.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.event-card:hover {
  transform: translateY(-10px) scale(1.05);
}

/* Dynamic neon glow colors for events */
/* Dynamic neon glow colors for events */
.event-card[data-event='roborash'] {
  box-shadow: var(--neon-cyan);
  border-color: rgba(0, 255, 255, 0.3);
}
.event-card[data-event='gob'] {
  box-shadow: var(--neon-magenta);
  border-color: rgba(255, 0, 255, 0.3);
}
.event-card[data-event='ballista'] {
  box-shadow: var(--neon-yellow);
  border-color: rgba(255, 255, 0, 0.3);
}
.event-card[data-event='labyrinx'] {
  box-shadow: var(--neon-green);
  border-color: rgba(0, 255, 0, 0.3);
}
.event-card[data-event='luxlinea'] {
  box-shadow: var(--neon-blue);
  border-color: rgba(0, 150, 255, 0.3);
}
.event-card[data-event='technova'] {
  box-shadow: var(--neon-orange);
  border-color: rgba(255, 165, 0, 0.3);
}
.event-card[data-event='modelus'] {
  box-shadow: var(--neon-purple);
  border-color: rgba(128, 0, 255, 0.3);
}
.event-card[data-event='cineframe'] {
  box-shadow: var(--neon-red);
  border-color: rgba(255, 0, 0, 0.3);
}
.event-card[data-event='assembyte'] {
  box-shadow: var(--neon-pink);
  border-color: rgba(255, 20, 147, 0.3);
}
.event-card[data-event='pixelpetra'] {
  box-shadow: var(--neon-lime);
  border-color: rgba(50, 205, 50, 0.3);
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}

.card-icon {
  font-size: 3rem;
  color: var(--primary-color);
  text-align: center;
  text-shadow: var(--neon-glow);
  margin-bottom: 1rem;
}

.event-title {
  font-family: 'Orbitron', monospace;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.event-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.event-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.detail {
  background: rgba(0, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--primary-color);
  text-align: center;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

/* =================================================================
  8. Responsive Design
  ================================================================= */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .current-event {
    order: -1;
  }

  .event-card {
    min-width: 300px;
    padding: 2rem;
  }

  .hero-title span {
    font-size: 2.5rem;
  }

  .event-title {
    font-size: 1.5rem;
  }

  .registration-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .category-title {
    font-size: 1.8rem;
  }

  .circular-gallery-container {
    height: 500px;
  }

  .gallery-item {
    min-width: 250px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .event-section {
    padding: 1rem;
  }

  .event-card {
    padding: 1.5rem;
    min-width: 280px;
  }

  .hero-title span {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-quote {
    padding: 1.5rem;
  }

  .about-quote p {
    font-size: 1rem;
  }

  .about-description p {
    font-size: 1rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .category-title {
    font-size: 1.5rem;
  }

  .circular-gallery-container {
    height: 400px;
  }

  .gallery-item {
    min-width: 200px;
    height: 300px;
    padding: 1rem;
  }

  .gallery-item img {
    height: 150px;
  }

  .gallery-item h3 {
    font-size: 1rem;
  }

  .schedule-timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-marker {
    left: 20px;
  }

  .timeline-content {
    margin: 0 0 0 1rem;
  }

  .event-name {
    font-size: 1.3rem;
  }

  .time-slot {
    font-size: 1rem;
  }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--glass-bg);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
} 

/* Contact Us Section */
.contact-section {
    min-height: 60vh;
    background: rgba(0, 0, 0, 0.4);
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 0 30px rgba(0,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.contact-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: var(--neon-glow);
}
.contact-subtitle {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: var(--neon-glow-pink);
}
.contact-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}
.contact-item {
    min-width: 180px;
    color: var(--text-primary);
    font-size: 1rem;
}
.contact-item a {
    color: var(--primary-color);
    text-decoration: underline;
}
.core-team {
    margin-top: 2rem;
}
.core-team h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.core-team ul {
    list-style: none;
    padding: 0;
}
.core-team li {
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

/* Scroll Reveal Block */
.scroll-reveal-block {
    opacity: 0;
    filter: blur(10px);
    transform: rotate(5deg) translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), filter 0.8s, transform 0.8s;
    will-change: opacity, filter, transform;
    background: rgba(255,255,255,0.04);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    margin: 2rem 0 0 0;
    box-shadow: 0 0 20px rgba(0,255,255,0.05);
    text-align: center;
}

.scroll-reveal-block.revealed {
    opacity: 1;
    filter: blur(0px);
    transform: rotate(0deg) translateY(0);
} 
#animated-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Adjust size as needed */
    opacity: 0;
    animation: logo-intro 3s ease-out forwards;
    animation-delay:logo-exit 1s ease-out backwards;
}

#animated-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@keyframes logo-intro {
    0% {
        opacity: 0;
        transform: translate(-50%, 120%) scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, 120%) scale(2) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, 120%) scale(2) rotate(360deg);
    }
}

@keyframes logo-exit {
    0% {
        opacity: 1;
        transform: translate(-50%, 120%) scale(2) rotate(0deg);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, 120%) scale(0.5) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 120%) scale(0) rotate(360deg);
    }
}
/* =================================================================
EVENT DETAILS SECTION
================================================================== */
#event-details-section {
    padding: 4rem 2rem;
    background: #080808; /* Slightly different dark shade */
}

#event-details-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.event-detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    scroll-margin-top: 120px; /* Offset for sticky header */
}

.event-detail-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.2);
}

.detail-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: var(--neon-glow);
}

.detail-card-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.detail-card-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.detail-section h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-shadow: var(--neon-glow-pink);
}

.detail-section p,
.detail-section ul {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.detail-section ul {
    list-style: none;
    padding-left: 0;
}

.detail-section ul li {
    padding-left: 1.2em;
    position: relative;
    margin-bottom: 0.5rem;
}

.detail-section ul li::before {
    content: '»';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ========== Light Overlay ========== */
.light-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(0, 255, 255, 0.1),
        transparent 60%
    );
}

/* ========== Event Page Styles ========== */
.event-main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--bg-theme-1);
  padding: 4rem 1rem 2rem 1rem;
  font-family: 'Orbitron', sans-serif;
}

.event-card-minimal {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0,255,255,0.08);
  border: 1.5px solid rgba(0,255,255,0.12);
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.event-title-minimal {
  font-family: 'Bebas Neue', 'Futura', sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 3px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 0.3em;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
  text-shadow: 0 0 18px var(--primary-color), 0 0 40px var(--primary-color);
  background: none;
}

.event-icon-minimal {
  font-size: 3rem;
  color: var(--primary-color);
  text-shadow: 0 0 20px var(--primary-color);
  margin-bottom: 1rem;
}

.event-section-minimal {
  margin-bottom: 2rem;
}

.event-section-title {
  font-family: 'Bebas Neue', 'Futura', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  padding-bottom: 0.1em;
  margin-bottom: 1rem;
  margin-top: 0.2rem;
  text-shadow: 0 0 10px var(--primary-color);
}

.event-section-content {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.1rem;
}

.event-section-content ul {
  list-style: none;
  padding-left: 0;
}

.event-section-content li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.event-section-content li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  text-shadow: 0 0 8px var(--primary-color);
}

/* =================================================================
  7. Minimalistic Footer
  ================================================================= */
.contact-footer {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--darker-bg) 100%);
  border-top: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0;
}

.contact-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 0, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 2;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  animation: slideInFromBottom 1s ease-out;
}

.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.4s;
}

.footer-section h3,
.footer-section h4 {
  font-family: 'Orbitron', monospace;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  margin-bottom: var(--space-sm);
  position: relative;
  transition: all var(--transition-normal);
}

.footer-section h3::after,
.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 1px;
  box-shadow: var(--neon-glow);
  transition: all var(--transition-normal);
}

.footer-section:hover h3::after,
.footer-section:hover h4::after {
  width: 60px;
  box-shadow: 0 0 20px var(--neon-cyan);
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: var(--font-size-sm);
  transition: all var(--transition-normal);
}

.footer-section:hover p {
  color: var(--text-primary);
  transform: translateX(5px);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.footer-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  text-shadow: 0 0 8px var(--primary-color);
  transition: all var(--transition-normal);
}

.footer-section:hover ul li {
  color: var(--text-primary);
  transform: translateX(5px);
}

.footer-section:hover ul li::before {
  color: var(--secondary-color);
  text-shadow: 0 0 12px var(--neon-magenta);
}

.footer-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-normal);
  position: relative;
  display: inline-block;
}

.footer-section a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width var(--transition-normal);
  border-radius: 0.5px;
}

.footer-section a:hover {
  color: var(--primary-color);
  text-shadow: var(--neon-glow);
  transform: translateX(5px);
}

.footer-section a:hover::after {
  width: 100%;
}

/* Footer Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }
  
  .footer-section h3::after,
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-section:hover p,
  .footer-section:hover ul li,
  .footer-section:hover a {
    transform: translateY(-2px);
  }
}

@media (max-width: 480px) {
  .contact-footer {
    padding: var(--space-xl) 0;
  }
  
  .footer-content {
    padding: 0 var(--space-md);
  }
}

@media (max-width: 600px) {
  .event-card-minimal {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .event-title-minimal {
    font-size: 2.5rem;
  }
  
  .event-section-title {
    font-size: 1.5rem;
  }
  
  .event-icon-minimal {
    font-size: 2rem;
  }
}

/* =================================================================
  Register Section Styles
  ================================================================= */
.register-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, 
    var(--darker-bg) 0%, 
    #0a0a0a 25%, 
    #0f0f0f 50%, 
    #0a0a0a 75%, 
    var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.register-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(0, 128, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(128, 0, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: backgroundShift 8s ease-in-out infinite;
}

.register-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%);
  animation: lightSweep 6s ease-in-out infinite;
  pointer-events: none;
}

.register-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
  position: relative;
  z-index: 2;
}

.register-title {
  font-family: 'Orbitron', sans-serif;
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
  text-shadow: 
    0 0 20px var(--primary-color),
    0 0 40px rgba(0, 255, 255, 0.5),
    0 0 60px rgba(0, 255, 255, 0.3);
  animation: revealText 1s ease-out, registerTitleGlow 3s ease-in-out infinite;
  position: relative;
}

.register-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
  animation: titleUnderline 2s ease-out 1s forwards;
}

.register-subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
  font-weight: 300;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 0.5s both;
  opacity: 0;
}

.register-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-xl);
}

.register-btn-animated {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-2xl);
  background: linear-gradient(135deg, #00ffff 0%, #0080ff 50%, #8000ff 100%);
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 15px;
  font-family: 'Orbitron', sans-serif;
  font-size: var(--font-size-lg);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: 
    0 0 30px rgba(0, 255, 255, 0.6),
    0 0 60px rgba(0, 128, 255, 0.4),
    0 0 90px rgba(128, 0, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: registerButtonFloat 3s ease-in-out infinite;
  border: 2px solid rgba(0, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.register-btn-animated::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 255, 255, 0.2) 0%, 
    rgba(0, 128, 255, 0.2) 50%, 
    rgba(128, 0, 255, 0.2) 100%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 1;
}

.register-btn-animated::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    #00ffff, #0080ff, #8000ff, #00ffff, #0080ff, #8000ff);
  background-size: 400% 400%;
  border-radius: 17px;
  z-index: -1;
  animation: borderRotate 3s linear infinite;
  opacity: 0.7;
}

.register-btn-animated:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 0 50px rgba(0, 255, 255, 0.8),
    0 0 100px rgba(0, 128, 255, 0.6),
    0 0 150px rgba(128, 0, 255, 0.4),
    0 10px 30px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #00ffff 0%, #00b3ff 50%, #a000ff 100%);
  border-color: rgba(0, 255, 255, 0.8);
}

.register-btn-animated:hover::before {
  opacity: 1;
}

.register-btn-animated:active {
  transform: translateY(-2px) scale(0.98);
  box-shadow: 
    0 0 30px rgba(0, 255, 255, 0.6),
    0 0 60px rgba(0, 128, 255, 0.4),
    0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-text {
  position: relative;
  z-index: 3;
  transition: all var(--transition-normal);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.register-btn-animated:hover .btn-text {
  color: var(--darker-bg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.6), 
    rgba(0, 255, 255, 0.8), 
    rgba(255, 255, 255, 0.6), 
    transparent);
  transition: left var(--transition-slow);
  z-index: 2;
}

.register-btn-animated:hover .btn-glow {
  left: 100%;
}

.btn-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 128, 255, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(128, 0, 255, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 1;
}

.register-btn-animated:hover .btn-particles {
  opacity: 1;
  animation: particlePulse 2s ease-in-out infinite;
}

/* Responsive adjustments for register section */
@media (max-width: 768px) {
  .register-title {
    font-size: var(--font-size-3xl);
  }
  
  .register-subtitle {
    font-size: var(--font-size-base);
  }
  
  .register-btn-animated {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  .register-title {
    font-size: var(--font-size-2xl);
  }
  
  .register-btn-animated {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--font-size-sm);
    letter-spacing: 1px;
  }
}
/* =================================================================
  Principal Section Styles
  ================================================================= */
.principal-section {
  padding: var(--space-2xl) 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

.principal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.principal-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  text-align: center;
  position: relative;
  z-index: 2;
}

.principal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: var(--font-size-4xl);
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: var(--space-xl);
  text-shadow: 0 0 20px var(--primary-color);
  animation: revealText 1s ease-out;
}

.principal-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2xl);
  align-items: start;
}

.principal-text-section {
  text-align: left;
}

.principal-message {
  margin-bottom: var(--space-xl);
}

.principal-message p {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-base);
  line-height: 1.8;
  color: var(--text-secondary);
}

.principal-signature {
  text-align: left;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.principal-name {
  font-family: 'Orbitron', sans-serif;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
  text-shadow: 0 0 10px var(--primary-color);
}

.principal-designation {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

.principal-image-section {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.principal-image {
  position: relative;
}

.principal-img {
  width: 300px;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  box-shadow: 
    0 0 30px rgba(0, 255, 255, 0.6),
    0 0 60px rgba(0, 255, 255, 0.3);
  transition: all var(--transition-normal);
}

.principal-img:hover {
  transform: scale(1.05);
  box-shadow: 
    0 0 40px rgba(0, 255, 255, 0.8),
    0 0 80px rgba(0, 255, 255, 0.4);
}

.principal-message {
  text-align: left;
  color: var(--text-secondary);
  line-height: 1.8;
}

.principal-message p {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-base);
}

.principal-signature {
  text-align: right;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: var(--space-lg);
  font-style: italic;
}



/* =================================================================
  Category Info Styles
  ================================================================= */
.category-title.clickable {
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.category-title.clickable:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 15px var(--secondary-color);
}

.category-toggle {
  font-size: var(--font-size-sm);
  transition: all var(--transition-normal);
  color: var(--primary-color);
}

.category-info {
  display: none;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 10px;
  padding: var(--space-lg);
  margin: var(--space-md) 0;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.6;
  backdrop-filter: blur(10px);
}

.category-info p {
  margin-bottom: var(--space-md);
}

.category-info p:last-child {
  margin-bottom: 0;
}

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

/* =================================================================
  Responsive Design for New Sections
  ================================================================= */
@media (max-width: 768px) {
  .principal-title {
    font-size: var(--font-size-3xl);
  }
  
  .principal-content {
    padding: 0 var(--space-md);
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .principal-text-section {
    text-align: center;
  }
  
  .principal-signature {
    text-align: center;
  }
  
  .principal-img {
    width: 250px;
    height: 350px;
  }
  
  .category-title.clickable {
    flex-direction: column;
    gap: var(--space-xs);
  }
}

@media (max-width: 480px) {
  .principal-title {
    font-size: var(--font-size-2xl);
  }
  
  .principal-content {
    gap: var(--space-lg);
  }
  
  .principal-img {
    width: 200px;
    height: 280px;
  }
  
  .principal-name {
    font-size: var(--font-size-lg);
  }
  
  .category-info {
    padding: var(--space-md);
    margin: var(--space-sm) 0;
  }
}
/* Keep particles behind everything */
#particles-js {
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* Fixed top bar */
.event-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;                /* header height (desktop) */
  display: flex;
  align-items: center;
  padding: 0 .75rem;
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;               /* above everything */
}

/* Back button styling */
.event-back-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  padding: .5rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,0,255,0.35);
  background: rgba(255,0,255,0.08);
  box-shadow: 0 0 20px rgba(255,0,255,0.35);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

/* Page content spacing: push content below the fixed header */
.event-main-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 1rem 2rem;    /* top padding > header height */
}

/* Normal spacing for the card */
.event-card-minimal {
  margin-bottom: 2rem !important; /* !important in case an inline margin sneaks back */
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .event-topbar { height: 48px; padding: 0 .5rem; }
  .event-main-container { padding-top: 64px; }
  .event-back-btn { font-size: .95rem; padding: .4rem .7rem; }
}
.brochure-btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #00ffff, #0080ff);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brochure-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 1);
}
.brochure-btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #00ffff, #0080ff);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brochure-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 255, 255, 1);
}

