/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables for Design System - Light Theme Only */
:root {
  --background: 0 0% 100%;
  --foreground: 220 27% 4%;
  --card: 0 0% 100%;
  --card-foreground: 220 27% 4%;
  --popover: 0 0% 100%;
  --popover-foreground: 220 27% 4%;
  --primary: 263 85% 60%;
  --primary-foreground: 0 0% 100%;
  --secondary: 220 27% 96%;
  --secondary-foreground: 220 27% 4%;
  --muted: 220 27% 96%;
  --muted-foreground: 220 27% 30%;
  --accent: 32 95% 62%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 220 27% 90%;
  --input: 220 27% 90%;
  --ring: 263 85% 60%;
  --radius: 0.75rem;
  
  /* Custom KIT-Idea Hack theme */
  --gradient-primary: linear-gradient(135deg, hsl(263, 85%, 60%), hsl(280, 85%, 65%));
  --gradient-secondary: linear-gradient(135deg, hsl(32, 95%, 62%), hsl(45, 90%, 55%));
  --gradient-hero: linear-gradient(135deg, hsl(263, 85%, 60%), hsl(280, 85%, 65%), hsl(32, 95%, 62%));
  --glow-primary: 0 0 40px hsl(263, 85%, 60%, 0.2);
  --glow-accent: 0 0 30px hsl(32, 95%, 62%, 0.3);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  padding-top: 80px; /* Add padding to account for fixed navigation bar */
}

/* Utility classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Layout utilities */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Display utilities */
.flex { display: flex; }
.hidden { display: none; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Flexbox utilities */
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-col { flex-direction: column; }
.flex-shrink-0 { flex-shrink: 0; }

/* Grid utilities */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Spacing utilities */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Sizing utilities */
.w-4 { width: 1rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-64 { width: 16rem; }
.w-full { width: 100%; }
.w-1\/2 { width: 50%; }
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }

/* Typography utilities */
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Color utilities */
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-secondary { color: hsl(var(--secondary)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-foreground { color: hsl(var(--foreground)); }
.text-accent { color: hsl(var(--accent)); }
.text-white { color: white; }

/* Background utilities */
.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-gradient-primary { background: var(--gradient-primary); }

/* College Name Text - Enhanced Visibility */
.college-name-text {
  color: #ffffff !important;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.5), 0 0 20px rgba(0, 245, 255, 0.3);
  font-weight: 700 !important;
  background: linear-gradient(135deg, #ffffff, #00f5ff, #ffffff) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: collegeNameGlow 3s ease-in-out infinite;
}
.bg-gradient-secondary { background: var(--gradient-secondary); }
.bg-gradient-hero { background: var(--gradient-hero); }

/* Background opacity utilities */
.bg-background\/80 { background-color: hsl(var(--background) / 0.8); }
.bg-card\/50 { background-color: hsl(var(--card) / 0.5); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-primary\/20 { background-color: hsl(var(--primary) / 0.2); }

/* Border utilities */
.border { border: 1px solid hsl(var(--border)); }
.border-b { border-bottom: 1px solid hsl(var(--border)); }
.border-t { border-top: 1px solid hsl(var(--border)); }
.border-primary { border-color: hsl(var(--primary)); }
.border-border { border-color: hsl(var(--border)); }
.border-primary\/20 { border-color: hsl(var(--primary) / 0.2); }

/* Border radius utilities */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Shadow utilities */
.shadow-glow-primary { box-shadow: var(--glow-primary); }
.shadow-glow-accent { box-shadow: var(--glow-accent); }

/* Backdrop utilities */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }

/* Z-index utilities */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Overflow utilities */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

/* Opacity utilities */
.opacity-20 { opacity: 0.2; }
.opacity-30 { opacity: 0.3; }

/* Position utilities */
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:pr-12 { padding-right: 3rem; }
  .md\:pl-12 { padding-left: 3rem; }
  .md\:ml-auto { margin-left: auto; }
  .md\:text-right { text-align: right; }
  .md\:transform { transform: translateX(-50%); }
  .md\:-translate-x-1\/2 { transform: translateX(-50%); }
  .md\:left-1\/2 { left: 50%; }
  .md\:w-1\/2 { width: 50%; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* Animation utilities */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Transition utilities */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease; }
.duration-300 { transition-duration: 300ms; }

/* Hover utilities */
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:bg-primary:hover { background-color: hsl(var(--primary)); }
.hover\:text-primary-foreground:hover { color: hsl(var(--primary-foreground)); }
.hover\:shadow-glow-primary:hover { box-shadow: var(--glow-primary); }

/* Text utilities */
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.text-transparent { color: linear-gradient(135deg, #7f00ff, #e100ff); }

/* Custom styles for specific components */
.hero-section {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
}

/* Modern Hero Banner Styles */
.hero-banner {
  position: relative;
  background: url('BG01.png') center center/cover no-repeat;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 6rem);
  padding: 2rem 0;
  padding-top: 4rem; /* Account for fixed header */
  z-index: 1;
}



/* Interactive Spider Web Container */
.spider-web-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.15;
}

.spider-web-svg {
  width: 100%;
  height: 100%;
  filter: url(#webGlow);
}

/* Spider Web Lines */
.web-line {
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 1;
  stroke-dasharray: 5, 5;
  animation: webPulse 3s ease-in-out infinite;
}

.web-line-1 { animation-delay: 0s; }
.web-line-2 { animation-delay: 0.3s; }
.web-line-3 { animation-delay: 0.6s; }
.web-line-4 { animation-delay: 0.9s; }
.web-line-5 { animation-delay: 1.2s; }
.web-line-6 { animation-delay: 1.5s; }
.web-line-7 { animation-delay: 1.8s; }
.web-line-8 { animation-delay: 2.1s; }
.web-line-9 { animation-delay: 2.4s; }

/* Spider Web Spirals */
.web-spiral {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 0.5;
  stroke-dasharray: 3, 3;
  animation: webSpiral 8s linear infinite;
}

.web-spiral-1 { animation-delay: 0s; }
.web-spiral-2 { animation-delay: 2s; }
.web-spiral-3 { animation-delay: 4s; }

/* Spider Web Nodes */
.web-node {
  fill: rgba(255, 255, 255, 0.4);
  animation: webNodePulse 2s ease-in-out infinite;
}

.web-node-center {
  fill: rgba(255, 255, 255, 0.6);
  animation: webCenterPulse 1.5s ease-in-out infinite;
}

.web-node-1 { animation-delay: 0.2s; }
.web-node-2 { animation-delay: 0.4s; }
.web-node-3 { animation-delay: 0.6s; }
.web-node-4 { animation-delay: 0.8s; }
.web-node-5 { animation-delay: 1s; }
.web-node-6 { animation-delay: 1.2s; }
.web-node-7 { animation-delay: 1.4s; }
.web-node-8 { animation-delay: 1.6s; }

/* Floating Particles System */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  animation: particleFloat 12s linear infinite;
}

.particle-1 { top: 10%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 30%; left: 80%; animation-delay: 2s; }
.particle-3 { top: 50%; left: 10%; animation-delay: 4s; }
.particle-4 { top: 70%; left: 90%; animation-delay: 6s; }
.particle-5 { top: 20%; left: 50%; animation-delay: 8s; }
.particle-6 { top: 60%; left: 30%; animation-delay: 10s; }
.particle-7 { top: 40%; left: 70%; animation-delay: 1s; }
.particle-8 { top: 80%; left: 40%; animation-delay: 3s; }
.particle-9 { top: 15%; left: 60%; animation-delay: 5s; }
.particle-10 { top: 45%; left: 15%; animation-delay: 7s; }
.particle-11 { top: 75%; left: 85%; animation-delay: 9s; }
.particle-12 { top: 25%; left: 35%; animation-delay: 11s; }
.particle-13 { top: 55%; left: 65%; animation-delay: 1.5s; }
.particle-14 { top: 85%; left: 25%; animation-delay: 3.5s; }
.particle-15 { top: 35%; left: 75%; animation-delay: 5.5s; }
.particle-16 { top: 65%; left: 45%; animation-delay: 7.5s; }

/* Floating Orbs */
.floating-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.orb-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 20%;
  animation-delay: 3s;
}

.orb-3 {
  width: 100px;
  height: 100px;
  top: 40%;
  left: 70%;
  animation-delay: 6s;
}

.orb-4 {
  width: 50px;
  height: 50px;
  top: 80%;
  left: 30%;
  animation-delay: 9s;
}

.orb-5 {
  width: 70px;
  height: 70px;
  top: 10%;
  right: 30%;
  animation-delay: 12s;
}

.orb-6 {
  width: 90px;
  height: 90px;
  top: 70%;
  left: 50%;
  animation-delay: 15s;
}

/* Geometric Shapes */
.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.shape {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: shapeRotate 20s linear infinite;
}

.shape-1 {
  width: 40px;
  height: 40px;
  top: 25%;
  left: 25%;
  border-radius: 50%;
  animation-delay: 0s;
}

.shape-2 {
  width: 30px;
  height: 30px;
  top: 45%;
  right: 25%;
  transform: rotate(45deg);
  animation-delay: 5s;
}

.shape-3 {
  width: 50px;
  height: 50px;
  top: 65%;
  left: 15%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 10s;
}

.shape-4 {
  width: 35px;
  height: 35px;
  top: 15%;
  right: 15%;
  border-radius: 20%;
  animation-delay: 15s;
}

.shape-5 {
  width: 45px;
  height: 45px;
  top: 55%;
  left: 60%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation-delay: 20s;
}

.shape-6 {
  width: 25px;
  height: 25px;
  top: 35%;
  left: 80%;
  border-radius: 10%;
  animation-delay: 25s;
}

/* Light Rays */
.light-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.ray {
  position: absolute;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: raySweep 8s ease-in-out infinite;
}

.ray-1 {
  width: 2px;
  height: 100%;
  top: 0;
  left: 20%;
  animation-delay: 0s;
}

.ray-2 {
  width: 2px;
  height: 100%;
  top: 0;
  left: 50%;
  animation-delay: 2s;
}

.ray-3 {
  width: 2px;
  height: 100%;
  top: 0;
  left: 80%;
  animation-delay: 4s;
}

.ray-4 {
  width: 100%;
  height: 2px;
  top: 30%;
  left: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation-delay: 6s;
}

/* Animated Grid */
.animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}






/* Floating Animation Keyframes */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(1deg);
  }
  50% {
    transform: translateY(-30px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

@keyframes floatSideToSide {
  0%, 100% {
    transform: translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateX(12px) rotate(0.5deg);
  }
  50% {
    transform: translateX(25px) rotate(0deg);
  }
  75% {
    transform: translateX(12px) rotate(-0.5deg);
  }
}

@keyframes floatDiagonal {
  0%, 100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  25% {
    transform: translate(15px, -10px) rotate(1.5deg);
  }
  50% {
    transform: translate(30px, -20px) rotate(0deg);
  }
  75% {
    transform: translate(15px, -10px) rotate(-1.5deg);
  }
}

/* Additional floating animations for variety */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

@keyframes floatFast {
  0%, 100% {
    transform: translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateX(20px) rotate(1deg);
  }
  50% {
    transform: translateX(40px) rotate(0deg);
  }
  75% {
    transform: translateX(20px) rotate(-1deg);
  }
}

@keyframes floatSpiral {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  25% {
    transform: translate(10px, -8px) rotate(90deg);
  }
  50% {
    transform: translate(20px, -15px) rotate(180deg);
  }
  75% {
    transform: translate(10px, -8px) rotate(270deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(360deg);
  }
}

/* Cursor Trail Effects */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
  animation: cursorTrail 0.6s ease-out forwards;
}

@keyframes cursorTrail {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Magnetic Field Effect */
.magnetic-field {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: magneticPulse 2s ease-in-out infinite;
}

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

/* Cursor Glow Effect */
.cursor-glow {
  position: fixed;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease;
}

/* Interactive Ripple Effect */
.ripple-effect {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: ripple 0.8s ease-out forwards;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* Spider Web Animations */
@keyframes webPulse {
  0%, 100% {
    stroke-opacity: 0.3;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-opacity: 0.6;
    stroke-dashoffset: 10;
  }
}

@keyframes webSpiral {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 20;
  }
}

@keyframes webNodePulse {
  0%, 100% {
    r: 2;
    opacity: 0.4;
  }
  50% {
    r: 3;
    opacity: 0.8;
  }
}

@keyframes webCenterPulse {
  0%, 100% {
    r: 3;
    opacity: 0.6;
  }
  50% {
    r: 5;
    opacity: 1;
  }
}

/* Particle Animations */
@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px) scale(0.5);
    opacity: 0;
  }
}

/* Orb Animations */
@keyframes orbFloat {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  25% {
    transform: translateY(-20px) translateX(10px) scale(1.1);
  }
  50% {
    transform: translateY(-40px) translateX(0px) scale(1);
  }
  75% {
    transform: translateY(-20px) translateX(-10px) scale(1.1);
  }
}

/* Shape Animations */
@keyframes shapeRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Ray Animations */
@keyframes raySweep {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100px);
  }
}

/* Grid Animation */
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}


/* Cursor Interactive Web Effects */
.web-line:hover {
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 2;
  animation: webPulse 0.5s ease-in-out infinite;
}

.web-node:hover {
  fill: rgba(255, 255, 255, 0.9);
  r: 4;
  animation: webNodePulse 0.3s ease-in-out infinite;
}

.particle:hover {
  transform: scale(2);
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, transparent 70%);
}

.orb:hover {
  transform: scale(1.5);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.shape:hover {
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.3);
}

.ray:hover {
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}


.hero-bg-image {
  background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-size: cover;
  background-position: center;
  animation: backgroundMove 20s ease-in-out infinite;
}

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

/* Animated Background Overlay */
.animated-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  animation: overlayPulse 8s ease-in-out infinite;
  z-index: 1;
}

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

/* Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  border-radius: 50%;
  /* animation: float 6s ease-in-out infinite; */
}

.particle-1 {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 10%;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle-2 {
  width: 6px;
  height: 6px;
  top: 60%;
  left: 20%;
  background: linear-gradient(45deg, #4ecdc4, #6dd5ed);
  animation-delay: 2s;
  animation-duration: 10s;
}

.particle-3 {
  width: 3px;
  height: 3px;
  top: 30%;
  left: 80%;
  background: linear-gradient(45deg, #45b7d1, #74c0fc);
  animation-delay: 4s;
  animation-duration: 7s;
}

.particle-4 {
  width: 5px;
  height: 5px;
  top: 70%;
  left: 70%;
  background: linear-gradient(45deg, #96ceb4, #a8e6cf);
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle-5 {
  width: 4px;
  height: 4px;
  top: 40%;
  left: 50%;
  background: linear-gradient(45deg, #feca57, #ffd93d);
  animation-delay: 3s;
  animation-duration: 6s;
}

.particle-6 {
  width: 7px;
  height: 7px;
  top: 80%;
  left: 30%;
  background: linear-gradient(45deg, #ff9ff3, #f368e0);
  animation-delay: 5s;
  animation-duration: 11s;
}

.particle-7 {
  width: 3px;
  height: 3px;
  top: 10%;
  left: 60%;
  background: linear-gradient(45deg, #a8e6cf, #88d8a3);
  animation-delay: 2.5s;
  animation-duration: 8.5s;
}

.particle-8 {
  width: 5px;
  height: 5px;
  top: 50%;
  left: 90%;
  background: linear-gradient(45deg, #ffd93d, #ffed4e);
  animation-delay: 1.5s;
  animation-duration: 9.5s;
}

.particle-9 {
  width: 4px;
  height: 4px;
  top: 15%;
  left: 40%;
  background: linear-gradient(45deg, #74b9ff, #0984e3);
  animation-delay: 3.5s;
  animation-duration: 7.5s;
}

.particle-10 {
  width: 6px;
  height: 6px;
  top: 85%;
  left: 60%;
  background: linear-gradient(45deg, #fd79a8, #e84393);
  animation-delay: 4.5s;
  animation-duration: 9s;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% { 
    transform: translateY(-20px) translateX(10px) rotate(90deg);
    opacity: 1;
  }
  50% { 
    transform: translateY(-10px) translateX(-15px) rotate(180deg);
    opacity: 0.8;
  }
  75% { 
    transform: translateY(-30px) translateX(5px) rotate(270deg);
    opacity: 0.9;
  }
}

/* Geometric Shapes */
.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.shape {
  position: absolute;
  animation: geometricFloat 15s ease-in-out infinite;
}

.shape-1 {
  width: 60px;
  height: 60px;
  top: 15%;
  left: 10%;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(255, 142, 142, 0.2));
  border: 2px solid rgba(255, 107, 107, 0.4);
  animation-delay: 0s;
}

.shape-2 {
  width: 40px;
  height: 40px;
  top: 25%;
  right: 15%;
  background: linear-gradient(45deg, rgba(78, 205, 196, 0.3), rgba(109, 213, 237, 0.2));
  border: 2px solid rgba(78, 205, 196, 0.4);
  transform: rotate(45deg);
  animation-delay: 3s;
}

.shape-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  border-radius: 20%;
  background: linear-gradient(45deg, rgba(69, 183, 209, 0.3), rgba(116, 192, 252, 0.2));
  border: 2px solid rgba(69, 183, 209, 0.4);
  animation-delay: 6s;
}

.shape-4 {
  width: 50px;
  height: 50px;
  bottom: 30%;
  right: 25%;
  background: linear-gradient(45deg, rgba(254, 202, 87, 0.3), rgba(255, 217, 61, 0.2));
  border: 2px solid rgba(254, 202, 87, 0.4);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 9s;
}

.shape-5 {
  width: 35px;
  height: 35px;
  top: 45%;
  left: 5%;
  background: linear-gradient(45deg, rgba(150, 206, 180, 0.3), rgba(168, 230, 207, 0.2));
  border: 2px solid rgba(150, 206, 180, 0.4);
  border-radius: 50%;
  animation-delay: 12s;
}

.shape-6 {
  width: 45px;
  height: 45px;
  top: 70%;
  right: 5%;
  background: linear-gradient(45deg, rgba(255, 159, 243, 0.3), rgba(243, 104, 224, 0.2));
  border: 2px solid rgba(255, 159, 243, 0.4);
  transform: rotate(30deg);
  animation-delay: 15s;
}

@keyframes geometricFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Floating Orbs */
.floating-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 20%;
  animation-delay: 0s;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 70%);
}

.orb-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 20%;
  animation-delay: 3s;
  background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
}

.orb-3 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  left: 60%;
  animation-delay: 6s;
  background: radial-gradient(circle, rgba(69, 183, 209, 0.2) 0%, transparent 70%);
}

.orb-4 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 40%;
  animation-delay: 9s;
  background: radial-gradient(circle, rgba(254, 202, 87, 0.2) 0%, transparent 70%);
}

@keyframes orbFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-40px) scale(1.2);
    opacity: 0.6;
  }
}

/* Animated Grid */
.animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.3;
  z-index: 1;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Light Rays */
.light-rays {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.ray {
  position: absolute;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: rayMove 8s ease-in-out infinite;
}

.ray-1 {
  width: 2px;
  height: 200px;
  top: 20%;
  left: 30%;
  transform: rotate(45deg);
  animation-delay: 0s;
}

.ray-2 {
  width: 2px;
  height: 150px;
  top: 60%;
  right: 30%;
  transform: rotate(-30deg);
  animation-delay: 2.5s;
}

.ray-3 {
  width: 2px;
  height: 180px;
  bottom: 20%;
  left: 60%;
  transform: rotate(60deg);
  animation-delay: 5s;
}

@keyframes rayMove {
  0%, 100% { 
    opacity: 0;
    transform: rotate(45deg) scaleY(0);
  }
  50% { 
    opacity: 1;
    transform: rotate(45deg) scaleY(1);
  }
}

/* Enhanced Hero Title Container */
.hero-title-container {
  position: relative;
  display: inline-block;
  margin: 0 auto 0.5rem;
  padding-top: 2rem;
}

/* Enhanced Hero Title */
.hero-title {
  position: relative;
  z-index: 2;
  line-height: 0.9;
  overflow: visible;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 0.5rem;
  font-size: 8rem;
  font-family: 'Bungee', cursive;
  font-weight: 400;
  letter-spacing: 0.05em;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 107, 107, 0.8);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  animation: titleGlow 3s ease-in-out infinite alternate, rainbowShift 4s ease-in-out infinite;
  transform: perspective(500px) rotateX(10deg);
  text-stroke: 2px rgba(255, 255, 255, 0.3);
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
  padding: 20px 40px;
}



/* Clean 2025 Text */
.year-word {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 25px rgba(255, 107, 107, 0.8);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  animation: rainbowShift 3s ease-in-out infinite;
  transform: perspective(300px) rotateX(5deg);
  text-stroke: 1px rgba(255, 255, 255, 0.4);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}





/* Enhanced Word Styling */
.enhanced-word {
  position: relative;
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 0 25px rgba(255, 107, 107, 0.8);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  animation: wordFloat 2s ease-in-out infinite alternate, rainbowShift 3s ease-in-out infinite;
  transform: perspective(300px) rotateX(5deg);
  text-stroke: 1px rgba(255, 255, 255, 0.4);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

/* Removed hover effects */

/* Removed glow and shine effects */

/* Title Separator */
.title-separator {
  font-size: 0.9em;
  color: hsl(var(--primary));
  font-weight: 900;
  opacity: 1;
  transform: none;
}

/* Hero Year Styling */
.hero-year {
  position: relative;
  z-index: 2;
  line-height: 0.9;
  overflow: visible;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Year Word Special Effects */
.year-word {
  position: relative;
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Removed background effects */

/* No animation delays - static display */

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(50px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* Removed wordFloat animation */

/* Removed separatorPulse animation */

/* Removed yearGlow animation */

@keyframes titleBgGlow {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes titleParticles {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

/* Additional Title Effect Animations */
@keyframes wordRippleExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
}

@keyframes wordExplosion {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

@keyframes wordShake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  75% {
    transform: translateX(2px);
  }
}

@keyframes titleParticleFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--end-x), var(--end-y)) scale(0);
    opacity: 0;
  }
}

@keyframes titleGlowPulse {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
  }
  50% {
    filter: brightness(1.1) drop-shadow(0 0 20px rgba(102, 126, 234, 0.6));
  }
}

@keyframes yearSparkleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-30px) scale(0);
    opacity: 0;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 2.5rem !important;
  line-height: 1.4;
  color: #ffffff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  margin-bottom: 2rem;
}




/* Hero Timeline Button - Special Design */
.hero-btn-timeline {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  border: 2px solid transparent;
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  font-size: 0.95rem;
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.hero-btn-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-btn-timeline:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
  animation-duration: 1s;
}

.hero-btn-timeline:hover::before {
  opacity: 1;
}

.hero-btn-timeline .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.hero-btn-timeline:hover .btn-shine {
  left: 100%;
}

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

/* Hero Additional Buttons */
.hero-additional-buttons {
  margin-top: 1rem;
}

.hero-btn-rules,
.hero-btn-guidelines,
.hero-btn-achievements {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-btn-rules {
  border-color: #8b5cf6;
  color: #8b5cf6;
}

.hero-btn-rules:hover {
  background: #8b5cf6;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.hero-btn-guidelines {
  border-color: #3b82f6;
  color: #3b82f6;
}

.hero-btn-guidelines:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.hero-btn-achievements {
  border-color: #eab308;
  color: #eab308;
}

.hero-btn-achievements:hover {
  background: #eab308;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
}

.hero-btn-rules .btn-shine,
.hero-btn-guidelines .btn-shine,
.hero-btn-achievements .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hero-btn-rules:hover .btn-shine,
.hero-btn-guidelines:hover .btn-shine,
.hero-btn-achievements:hover .btn-shine {
  left: 100%;
}

/* Hero Login Button */
.hero-btn-login {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid #10b981;
  color: #10b981;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-btn-login:hover {
  background: #10b981;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.hero-btn-login .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.hero-btn-login:hover .btn-shine {
  left: 100%;
}

/* Hero Buttons Animation */
.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: buttonsReveal 1s ease-out 1.5s forwards;
  margin-bottom: 6rem;
  position: relative;
  z-index: 5;
}

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

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

/* Rainbow Shift Animation for Funky Headings */
@keyframes rainbowShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Word Float Animation */
@keyframes wordFloat {
  0%, 100% {
    transform: perspective(300px) rotateX(5deg) translateY(0px);
  }
  50% {
    transform: perspective(300px) rotateX(5deg) translateY(-5px);
  }
}

/* Funky Section Title Styling */
.instructions-title,
.timeline-title,
.benefits-title,
.faq-title {
  font-family: 'Fredoka One', cursive !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff) !important;
  background-size: 300% 300% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 0 20px rgba(255, 107, 107, 0.6) !important;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
  animation: rainbowShift 4s ease-in-out infinite !important;
  transform: perspective(400px) rotateX(8deg) !important;
  text-stroke: 1px rgba(255, 255, 255, 0.3) !important;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3) !important;
  transition: all 0.3s ease !important;
}

.instructions-title:hover,
.timeline-title:hover,
.benefits-title:hover,
.faq-title:hover {
  transform: perspective(400px) rotateX(8deg) scale(1.05) !important;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4)) !important;
}

/* Funky Card Title Styling */
.card-title,
.benefit-title {
  font-family: 'Righteous', cursive !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3, #54a0ff) !important;
  background-size: 200% 200% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: 0 0 15px rgba(255, 107, 107, 0.5) !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
  animation: rainbowShift 5s ease-in-out infinite !important;
  transform: perspective(200px) rotateX(3deg) !important;
  transition: all 0.3s ease !important;
}

.card-title:hover,
.benefit-title:hover {
  transform: perspective(200px) rotateX(3deg) scale(1.02) !important;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
}

/* Funky Button Text Styling */
.btn-text {
  font-family: 'Luckiest Guy', cursive !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

.btn-text:hover {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5) !important;
  transform: scale(1.02) !important;
}

/* Pixel-Style Welcome Text */
.pixel-welcome-text,
.pixel-shine-text {
  font-family: 'Press Start 2P', monospace !important;
  font-size: 1.8rem !important;
  line-height: 1.6 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #00ff00 !important;
  text-shadow: 2px 2px 0px #00cc00 !important;
  background: linear-gradient(45deg, #00ff00, #00cc00, #009900, #006600) !important;
  background-size: 200% 200% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: pixelScan 3s linear infinite !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  position: relative !important;
  cursor: pointer !important;
}

.pixel-welcome-text:hover,
.pixel-shine-text:hover {
  transform: scale(1.05) rotate(0.5deg) !important;
  animation: pixelGlitch 0.3s ease-in-out infinite !important;
  text-shadow: 2px 2px 0px #00cc00 !important;
  filter: brightness(1.1) !important;
}

/* Pixel-style glow animation - simplified */
@keyframes pixelGlow {
  0% {
    text-shadow: 2px 2px 0px #00cc00;
  }
  100% {
    text-shadow: 2px 2px 0px #00cc00;
  }
}

/* Pixel scan line effect */
@keyframes pixelScan {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

/* Pixel glitch effect on hover */
@keyframes pixelGlitch {
  0%, 100% {
    transform: scale(1.1) rotate(1deg) translateX(0);
  }
  20% {
    transform: scale(1.1) rotate(1deg) translateX(-2px);
  }
  40% {
    transform: scale(1.1) rotate(1deg) translateX(2px);
  }
  60% {
    transform: scale(1.1) rotate(1deg) translateX(-1px);
  }
  80% {
    transform: scale(1.1) rotate(1deg) translateX(1px);
  }
}

/* Add pixel border effect */
.pixel-welcome-text::before,
.pixel-shine-text::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid #00ff00;
  border-style: dashed;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.pixel-welcome-text:hover::before,
.pixel-shine-text:hover::before {
  opacity: 0.6;
  animation: pixelBorderPulse 0.5s ease-in-out infinite alternate;
}

@keyframes pixelBorderPulse {
  0% {
    border-color: #00ff00;
    box-shadow: 0 0 2px #00ff00;
  }
  100% {
    border-color: #00cc00;
    box-shadow: 0 0 4px #00cc00;
  }
}

/* Responsive adjustments for pixel text */
@media (max-width: 768px) {
  .pixel-welcome-text,
  .pixel-shine-text {
    font-size: 0.6rem !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 480px) {
  .pixel-welcome-text,
  .pixel-shine-text {
    font-size: 0.5rem !important;
    line-height: 1.2 !important;
  }
}

/* Creative Instructions & Timeline Section */
.instructions-timeline-section {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
}

/* Combined Section Header */
.combined-header {
  text-align: center;
  margin-bottom: 4rem;
}

.combined-title {
  font-family: 'Righteous', cursive;
  color: #fff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

.combined-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Side by Side Container */
.side-by-side-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  align-items: stretch;
  min-height: 800px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-family: 'Righteous', cursive;
  font-size: 1.8rem;
  color: #a855f7;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(168, 85, 247, 0.3);
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

/* Instructions Side */
.instructions-side {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.instructions-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  justify-content: space-between;
}

.instruction-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: itemReveal 0.6s ease-out forwards;
}

.item-1 { animation-delay: 0.1s; }
.item-2 { animation-delay: 0.2s; }
.item-3 { animation-delay: 0.3s; }
.item-4 { animation-delay: 0.4s; }
.item-5 { animation-delay: 0.5s; }
.item-6 { animation-delay: 0.6s; }

.instruction-item:hover {
  transform: translateY(-5px);
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.instruction-number {
  width: 50px;
  height: 50px;
  background: #8b5cf6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  flex-shrink: 0;
}

.instruction-content {
  flex: 1;
}

.instruction-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.instruction-title {
  font-family: 'Righteous', cursive;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.instruction-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.instruction-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: #8b5cf6;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Center Divider */
.center-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.divider-line {
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #8b5cf6, #a855f7, #8b5cf6, transparent);
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
  animation: dividerPulse 3s ease-in-out infinite;
}

.divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: #8b5cf6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
  animation: iconSpin 4s linear infinite;
}

/* Timeline Side */
.timeline-side {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.timeline-events {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
  justify-content: space-between;
}

.timeline-event {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: itemReveal 0.6s ease-out forwards;
}

.event-1 { animation-delay: 0.1s; }
.event-2 { animation-delay: 0.2s; }
.event-3 { animation-delay: 0.3s; }
.event-4 { animation-delay: 0.4s; }
.event-5 { animation-delay: 0.5s; }
.event-6 { animation-delay: 0.6s; }
.event-7 { animation-delay: 0.7s; }
.event-8 { animation-delay: 0.8s; }

.timeline-event:hover {
  transform: translateY(-5px);
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.event-date {
  width: 70px;
  height: 70px;
  background: #8b5cf6;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  flex-shrink: 0;
  text-align: center;
  margin-right: 1rem;
}

.date-day {
  font-size: 1rem;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.date-month {
  font-size: 0.65rem;
  opacity: 0.9;
  text-align: center;
  margin-top: 2px;
}

/* Special styling for date ranges */
.date-day:contains("-") {
  font-size: 0.9rem;
  line-height: 1.2;
}

/* Ensure proper alignment for all date content */
.event-date .date-day,
.event-date .date-month {
  display: block;
  width: 100%;
  text-align: center;
}

.event-content {
  flex: 1;
}

.event-badge {
  display: inline-block;
  background: #a855f7;
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.event-title {
  font-family: 'Righteous', cursive;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.event-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Enhanced Background Effects */
.instructions-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
  animation: backgroundPulse 6s ease-in-out infinite;
  z-index: 1;
}

.instructions-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
  animation: lightSweep 8s ease-in-out infinite;
  z-index: 2;
}

/* Animated Background Elements */
.instructions-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Floating Code Blocks */
.floating-code-blocks {
  position: absolute;
  width: 100%;
  height: 100%;
}

.code-block {
  position: absolute;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.4rem;
  color: #a855f7;
  opacity: 0.2;
  animation: floatCode 8s ease-in-out infinite;
  text-shadow: 0 0 15px #a855f7;
  font-weight: bold;
  transition: all 0.3s ease;
}

.code-block:hover {
  opacity: 0.4;
  transform: scale(1.1);
}

.code-block-1 { top: 10%; left: 5%; animation-delay: 0s; }
.code-block-2 { top: 20%; right: 10%; animation-delay: 1.5s; }
.code-block-3 { top: 60%; left: 8%; animation-delay: 3s; }
.code-block-4 { top: 70%; right: 5%; animation-delay: 4.5s; }
.code-block-5 { top: 40%; left: 50%; animation-delay: 6s; }

/* Floating Icons */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  font-size: 2.5rem;
  animation: floatIcon 6s ease-in-out infinite;
  opacity: 0.2;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-icon:hover {
  opacity: 0.5;
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.icon-1 { top: 15%; left: 15%; animation-delay: 0s; }
.icon-2 { top: 25%; right: 20%; animation-delay: 1s; }
.icon-3 { top: 45%; left: 10%; animation-delay: 2s; }
.icon-4 { top: 55%; right: 15%; animation-delay: 3s; }
.icon-5 { top: 75%; left: 20%; animation-delay: 4s; }
.icon-6 { top: 35%; right: 30%; animation-delay: 5s; }

/* Circuit Lines */
.circuit-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #8b5cf6, #a855f7, #8b5cf6, transparent);
  background-size: 200% 100%;
  height: 3px;
  opacity: 0.2;
  animation: circuitPulse 4s ease-in-out infinite, circuitFlow 6s linear infinite;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
}

.line-1 { top: 30%; left: 0; width: 30%; animation-delay: 0s; }
.line-2 { top: 50%; right: 0; width: 25%; animation-delay: 1s; }
.line-3 { top: 70%; left: 0; width: 40%; animation-delay: 2s; }
.line-4 { top: 20%; right: 0; width: 35%; animation-delay: 3s; }

/* Additional Floating Particles */
.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 4;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #a855f7, transparent);
  border-radius: 50%;
  animation: particleFloat 8s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 40%; left: 80%; animation-delay: 1s; }
.particle-3 { top: 60%; left: 20%; animation-delay: 2s; }
.particle-4 { top: 80%; left: 70%; animation-delay: 3s; }
.particle-5 { top: 30%; left: 50%; animation-delay: 4s; }
.particle-6 { top: 70%; left: 30%; animation-delay: 5s; }
.particle-7 { top: 10%; left: 60%; animation-delay: 6s; }
.particle-8 { top: 50%; left: 90%; animation-delay: 7s; }

/* Glowing Orbs */
.glowing-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3), transparent);
  animation: orbFloat 10s ease-in-out infinite;
  filter: blur(1px);
}

.orb-1 {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.orb-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 25%;
  animation-delay: 3s;
}

.orb-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  left: 70%;
  animation-delay: 6s;
}

/* Title Decoration */
.title-decoration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.decoration-left,
.decoration-center,
.decoration-right {
  font-size: 2rem;
  color: #00ff88;
  animation: sparkle 2s ease-in-out infinite;
}

.decoration-center {
  animation-delay: 0.5s;
}

.decoration-right {
  animation-delay: 1s;
}

/* Spacious Hexagon Container */
.hexagon-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 50px;
  z-index: 10;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Central Hub */
.central-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
  background-size: 300% 300%;
  animation: hubRotate 6s ease-in-out infinite;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.4);
  z-index: 3;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.hub-icon {
  font-size: 4rem;
  margin-bottom: 10px;
  animation: hubBounce 2s ease-in-out infinite;
}

.hub-text {
  font-family: 'Righteous', cursive;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

/* Hexagon Grid */
.hexagon-grid {
  position: relative;
  width: 100%;
  height: 100%;
}

.hex-step {
  position: absolute;
  width: 250px;
  height: 250px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  animation: hexReveal 0.8s ease-out forwards;
}

.step-1 { top: 5%; left: 15%; animation-delay: 0.2s; }
.step-2 { top: 5%; right: 15%; animation-delay: 0.4s; }
.step-3 { top: 50%; left: 2%; animation-delay: 0.6s; }
.step-4 { top: 50%; right: 2%; animation-delay: 0.8s; }
.step-5 { bottom: 5%; left: 15%; animation-delay: 1.0s; }
.step-6 { bottom: 5%; right: 15%; animation-delay: 1.2s; }

.hex-step:hover {
  transform: scale(1.1) translateY(-10px);
  z-index: 4;
}

/* Hexagon Shape */
.hex-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
  background-size: 300% 300%;
  animation: hexRotate 4s ease-in-out infinite;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
  transition: all 0.3s ease;
}

.hex-step:hover .hex-shape {
  box-shadow: 0 20px 50px rgba(255, 107, 107, 0.5);
}

/* Hexagon Content */
.hex-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  text-align: center;
  overflow: hidden;
}

.step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 45px;
  height: 45px;
  background: #fff;
  color: #ff6b6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 3;
  border: 3px solid #ff6b6b;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: iconPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: 'Righteous', cursive;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  line-height: 1.2;
  word-wrap: break-word;
  hyphens: auto;
  position: relative;
  z-index: 1;
  max-width: 100%;
  overflow-wrap: break-word;
}

.step-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 500;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  position: relative;
  z-index: 1;
  overflow-wrap: break-word;
}

/* Connection Lines */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.line {
  position: absolute;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
  height: 2px;
  opacity: 0.6;
  animation: lineFlow 3s ease-in-out infinite;
  border-radius: 1px;
}

.line-1 { top: 20%; left: 50%; width: 25%; transform: translateX(-50%); animation-delay: 0s; }
.line-2 { top: 20%; right: 50%; width: 25%; transform: translateX(50%); animation-delay: 0.2s; }
.line-3 { top: 50%; left: 10%; width: 30%; transform: rotate(60deg); animation-delay: 0.4s; }
.line-4 { top: 50%; right: 10%; width: 30%; transform: rotate(-60deg); animation-delay: 0.6s; }
.line-5 { bottom: 20%; left: 50%; width: 25%; transform: translateX(-50%); animation-delay: 0.8s; }
.line-6 { bottom: 20%; right: 50%; width: 25%; transform: translateX(50%); animation-delay: 1.0s; }

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.float-element {
  position: absolute;
  font-size: 1.5rem;
  animation: floatAround 8s ease-in-out infinite;
  opacity: 0.7;
}

.elem-1 { top: 15%; left: 10%; animation-delay: 0s; }
.elem-2 { top: 15%; right: 10%; animation-delay: 1s; }
.elem-3 { top: 35%; left: 5%; animation-delay: 2s; }
.elem-4 { top: 35%; right: 5%; animation-delay: 3s; }
.elem-5 { bottom: 15%; left: 10%; animation-delay: 4s; }
.elem-6 { bottom: 15%; right: 10%; animation-delay: 5s; }

/* Gaming Rules Section */
.gaming-rules-section {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.gaming-rules-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
  background-size: 300% 100%;
  animation: rulesGlow 3s ease-in-out infinite;
}

.rules-subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* Animations */
@keyframes floatCode {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
  50% { transform: translateY(-20px) rotate(5deg); opacity: 0.2; }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
}

@keyframes circuitPulse {
  0%, 100% { opacity: 0.1; transform: scaleX(1); }
  50% { opacity: 0.3; transform: scaleX(1.1); }
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

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

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

@keyframes progressGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
  50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.8); }
}

@keyframes rulesGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* New Journey Animations */
@keyframes pathFlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 100%; }
}

@keyframes dotPulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.2); }
}

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

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

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

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
  25% { transform: translateY(-20px) translateX(10px); opacity: 0.8; }
  50% { transform: translateY(-10px) translateX(-5px); opacity: 0.4; }
  75% { transform: translateY(-15px) translateX(8px); opacity: 0.7; }
}

/* New Hexagon Animations */
@keyframes hubRotate {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

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

@keyframes hexReveal {
  0% { opacity: 0; transform: scale(0.5) rotate(180deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

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

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

@keyframes lineFlow {
  0%, 100% { opacity: 0.6; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.2); }
}

@keyframes floatAround {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
  25% { transform: translateY(-15px) rotate(90deg); opacity: 1; }
  50% { transform: translateY(-10px) rotate(180deg); opacity: 0.5; }
  75% { transform: translateY(-20px) rotate(270deg); opacity: 0.8; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hexagon-container {
    height: 700px;
    padding: 50px 25px;
  }
  
  .hex-step {
    width: 200px;
    height: 200px;
  }
  
  .central-hub {
    width: 140px;
    height: 140px;
  }
  
  .hub-icon {
    font-size: 3rem;
  }
  
  .hub-text {
    font-size: 0.9rem;
  }
  
  .step-icon {
    font-size: 2.5rem;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-description {
    font-size: 0.75rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
  
  .gaming-rules-section {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hexagon-container {
    height: 600px;
    padding: 40px 20px;
  }
  
  .hex-step {
    width: 160px;
    height: 160px;
  }
  
  .central-hub {
    width: 120px;
    height: 120px;
  }
  
  .hub-icon {
    font-size: 2.5rem;
  }
  
  .hub-text {
    font-size: 0.8rem;
  }
  
  .step-icon {
    font-size: 2rem;
  }
  
  .step-title {
    font-size: 0.9rem;
  }
  
  .step-description {
    font-size: 0.65rem;
  }
  
  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }
  
  .float-element {
    font-size: 1.2rem;
  }
}

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

/* ========================================
   SPACIOUS VERTICAL TIMELINE LAYOUT
   ======================================== */

/* Spacious Timeline Container */
.spacious-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 40px;
  z-index: 10;
}

/* Timeline Central Line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #8b5cf6;
  border-radius: 3px;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
  z-index: 5;
}

.line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #a855f7;
  border-radius: 3px;
  animation: progressFill 3s ease-out forwards;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.6);
}

/* Timeline Steps */
.timeline-step {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 120px;
  opacity: 0;
  animation: stepReveal 0.8s ease-out forwards;
}

.step-1 { animation-delay: 0.2s; }
.step-2 { animation-delay: 0.4s; }
.step-3 { animation-delay: 0.6s; }
.step-4 { animation-delay: 0.8s; }
.step-5 { animation-delay: 1.0s; }
.step-6 { animation-delay: 1.2s; }

/* Left and Right Positioning */
.step-left {
  justify-content: flex-end;
  text-align: right;
}

.step-left .step-bubble {
  order: 2;
  margin-left: 40px;
}

.step-left .step-content {
  order: 1;
  margin-right: 40px;
}

.step-right {
  justify-content: flex-start;
  text-align: left;
}

.step-right .step-bubble {
  order: 1;
  margin-right: 40px;
}

.step-right .step-content {
  order: 2;
  margin-left: 40px;
}

/* Step Bubbles */
.step-bubble {
  position: relative;
  width: 120px;
  height: 120px;
  background: #8b5cf6;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

.step-bubble:hover {
  transform: scale(1.1) rotateY(10deg);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
  background: #a855f7;
}

.bubble-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: #a855f7;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  animation: bubbleGlow 3s ease-in-out infinite;
}

.step-bubble:hover .bubble-glow {
  opacity: 0.4;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 5px;
  animation: iconBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.step-number {
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Step Content */
.step-content {
  max-width: 400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.step-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.step-title {
  font-family: 'Righteous', cursive;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}

.step-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.step-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.feature {
  background: #8b5cf6;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
  background: #a855f7;
}

/* Responsive Design for Spacious Timeline */
@media (max-width: 768px) {
  .spacious-timeline {
    padding: 60px 20px;
  }
  
  .timeline-step {
    flex-direction: column;
    text-align: center;
    margin-bottom: 80px;
  }
  
  .step-left,
  .step-right {
    justify-content: center;
  }
  
  .step-left .step-bubble,
  .step-right .step-bubble {
    order: 1;
    margin: 0 0 30px 0;
  }
  
  .step-left .step-content,
  .step-right .step-content {
    order: 2;
    margin: 0;
    max-width: 100%;
  }
  
  .timeline-line {
    left: 30px;
    transform: none;
  }
  
  .step-bubble {
    width: 100px;
    height: 100px;
  }
  
  .step-icon {
    font-size: 2.5rem;
  }
  
  .step-title {
    font-size: 1.5rem;
  }
  
  .step-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .spacious-timeline {
    padding: 40px 15px;
  }
  
  .timeline-step {
    margin-bottom: 60px;
  }
  
  .step-bubble {
    width: 80px;
    height: 80px;
  }
  
  .step-icon {
    font-size: 2rem;
  }
  
  .step-number {
    font-size: 0.8rem;
  }
  
  .step-content {
    padding: 20px;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  .feature {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* ========================================
   MODERN STUDENT-ATTRACTIVE LAYOUT
   ======================================== */

/* Modern Steps Container */
.modern-steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 10;
}

/* Modern Step Cards */
.step-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  animation: cardReveal 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.step-card-1 { animation-delay: 0.1s; }
.step-card-2 { animation-delay: 0.2s; }
.step-card-3 { animation-delay: 0.3s; }
.step-card-4 { animation-delay: 0.4s; }
.step-card-5 { animation-delay: 0.5s; }
.step-card-6 { animation-delay: 0.6s; }

.step-card:hover {
  transform: translateY(-20px) scale(1.05) rotateY(5deg);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.step-card:hover .step-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.step-card:hover .step-title {
  color: #ff6b6b;
  text-shadow: 0 0 15px rgba(255, 107, 107, 0.6);
}

.step-card:hover .step-number {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 30px rgba(255, 107, 107, 0.8);
}

/* Card Glow Effect */
.card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
  background-size: 300% 300%;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  animation: gradientShift 3s ease-in-out infinite;
}

.step-card:hover .card-glow {
  opacity: 0.3;
}

/* Step Number */
.step-number {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 0.8rem;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  z-index: 3;
  border: 3px solid rgba(255, 255, 255, 0.3);
  animation: numberPulse 2s ease-in-out infinite;
}

/* Step Icon */
.step-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: iconBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Step Title */
.step-title {
  font-family: 'Righteous', cursive;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  line-height: 1.3;
}

/* Step Description */
.step-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 20px;
}

/* Card Accent */
.card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57, #ff9ff3);
  background-size: 300% 100%;
  animation: accentFlow 3s ease-in-out infinite;
  border-radius: 0 0 24px 24px;
}

/* Modern Floating Elements */
.modern-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: modernFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 10%; animation-delay: 1s; }
.icon-3 { top: 40%; left: 2%; animation-delay: 2s; }
.icon-4 { top: 60%; right: 5%; animation-delay: 3s; }
.icon-5 { bottom: 30%; left: 8%; animation-delay: 4s; }
.icon-6 { bottom: 15%; right: 15%; animation-delay: 5s; }
.icon-7 { top: 30%; left: 50%; animation-delay: 6s; }
.icon-8 { bottom: 40%; right: 50%; animation-delay: 7s; }

/* Modern Animations */
@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@keyframes modernFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-15px) rotate(5deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-20px) rotate(3deg);
    opacity: 0.9;
  }
}

/* Responsive Design for Modern Layout */
@media (max-width: 768px) {
  .modern-steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 15px;
  }
  
  .step-card {
    padding: 30px 20px;
  }
  
  .step-icon {
    font-size: 3rem;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .modern-steps-container {
    padding: 15px 10px;
  }
  
  .step-card {
    padding: 25px 15px;
  }
  
  .step-icon {
    font-size: 2.5rem;
  }
  
  .step-title {
    font-size: 1.2rem;
  }
  
  .step-description {
    font-size: 0.85rem;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.6rem;
  }
}

/* Enhanced Button Styles */
.hero-btn-primary {
  background: linear-gradient(45deg, #ff7e5f, #ff6b6b) !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(255, 126, 95, 0.4) !important;
  transition: all 0.3s ease !important;
}

.hero-btn-primary:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(255, 126, 95, 0.6) !important;
}

.hero-btn-secondary,
.hero-btn-tertiary {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  transition: all 0.3s ease !important;
}


.hero-btn-secondary:hover,
.hero-btn-tertiary:hover {
  transform: translateY(-3px) scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(255, 126, 95, 0.3) !important;
}

/* Enhanced Button Styles */
.hero-btn-primary,
.hero-btn-secondary,
.hero-btn-tertiary {
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* Smaller button size */
  font-size: 0.95rem !important; /* text-sm */
  padding: 0.6rem 1.25rem !important; /* px-5 py-2.5 */
  border-radius: 0.5rem !important; /* rounded-md */
  min-width: 120px !important;
  font-weight: 600 !important;
}

.hero-btn-primary:hover,
.hero-btn-secondary:hover,
.hero-btn-tertiary:hover {
  transform: translateY(-3px) scale(1.02);
}

.hero-btn-primary:active,
.hero-btn-secondary:active,
.hero-btn-tertiary:active {
  transform: translateY(-1px) scale(1.01);
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.6s ease;
}

.hero-btn-primary:hover .btn-shine,
.hero-btn-secondary:hover .btn-shine,
.hero-btn-tertiary:hover .btn-shine {
  left: 100%;
}








/* Responsive Countdown */
@media (max-width: 768px) {
  .countdown-container {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 16px;
  }
  
  .countdown-timer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    justify-items: center;
  }
  
  .countdown-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    text-align: center;
    width: 100%;
    min-width: 80px;
    animation: none;
  }
  
  .countdown-number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.25rem;
    display: block;
    text-shadow: 0 0 10px hsl(var(--primary) / 0.3);
  }
  
  .countdown-label {
    font-size: 0.75rem;
    color: hsl(var(--muted-foreground));
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .countdown-separator {
    display: none;
  }
  
  .countdown-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .countdown-date {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .countdown-container {
    padding: 1rem 0.75rem;
    margin: 0 0.25rem;
  }
  
  .countdown-timer {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .countdown-item {
    padding: 0.75rem 0.25rem;
    min-width: 70px;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .countdown-label {
    font-size: 0.65rem;
  }
  
  .countdown-title {
    font-size: 1rem;
  }
  
  .countdown-date {
    font-size: 0.8rem;
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: scrollIndicatorReveal 1s ease-out 2s forwards;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
}

@keyframes scrollIndicatorReveal {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, 
    hsl(var(--primary)), 
    transparent);
  position: relative;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid hsl(var(--primary));
  border-bottom: 2px solid hsl(var(--primary));
  transform: rotate(45deg);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.scroll-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Interactive Hover Effects */
.hero-banner:hover .particle {
  animation-duration: 4s;
}

.hero-banner:hover .shape {
  animation-duration: 8s;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 6rem;
    padding: 15px 30px;
  }
  
  .year-word {
    padding: 12px 25px;
  }
  
  .hero-banner {
    background-size: cover;
    background-position: center;
  }
  
  .hero-title::before,
  .hero-title::after {
    font-size: 2.5rem;
    left: -60px;
    right: -60px;
  }
  
  .hero-subtitle::before,
  .hero-subtitle::after {
    font-size: 1.2rem;
    left: -30px;
    right: -30px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-top: 2rem;
    padding: 10px 20px;
  }
  
  .year-word {
    padding: 8px 20px;
  }
  
  .hero-banner {
    background-size: cover;
    background-position: center;
  }
  
  .hero-title::before,
  .hero-title::after {
    font-size: 2rem;
    left: -40px;
    right: -40px;
  }
  
  .hero-subtitle::before,
  .hero-subtitle::after {
    font-size: 1rem;
    left: -25px;
    right: -25px;
  }
  
  .hero-banner::after {
    font-size: 1.5rem;
  }
  
  .hero-title-container {
    padding-top: 1rem;
  }
  
  .hero-subtitle {
    font-size: 2rem !important;
  }
  
  .hero-additional-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .hero-btn-rules,
  .hero-btn-guidelines,
  .hero-btn-achievements {
    min-width: 100px;
    font-size: 0.85rem;
    padding: 0.5rem 0.875rem;
  }
  
  .hero-btn-timeline {
    min-width: 100px;
    font-size: 0.85rem;
    padding: 0.5rem 0.875rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
    padding: 8px 15px;
  }
  
  .year-word {
    padding: 6px 15px;
  }
  
  .hero-banner {
    background-size: cover;
    background-position: center;
  }
  
  .hero-subtitle {
    font-size: 1.125rem !important;
  }
  
  .hero-additional-buttons {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  
  .hero-btn-rules,
  .hero-btn-guidelines,
  .hero-btn-achievements {
    min-width: 90px;
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
  }
  
  .hero-btn-timeline {
    min-width: 90px;
    font-size: 0.8rem;
    padding: 0.45rem 0.75rem;
  }
}
  
  .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  
  /* Mobile optimizations for enhanced banner elements */
  .tech-icon {
    font-size: 1.5rem;
    opacity: 0.4;
  }
  
  
  .binary-column {
    font-size: 0.6rem;
    width: 15px;
  }
  
  .particle {
    display: none;
  }
  
  .particle-medium,
  .particle-large,
  .particle-xl {
    display: none;
  }
  
  .shape {
    display: none;
  }
  
  .orb {
    display: none;
  }
  
  .ray {
    display: none;
  }
  
  .holographic-overlay {
    display: none;
  }
  
  .circuit-pattern {
    opacity: 0.05;
  }
  
  /* Mobile floating countdown timer */
  .floating-countdown-timer {
    position: fixed;
    top: 100px;
    right: 10px;
    left: auto;
    transform: none;
    margin: 0;
    max-width: 280px;
  }
  
  .floating-countdown {
    min-width: auto;
    padding: 1rem;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .countdown-label {
    font-size: 0.55rem;
  }
  
  .countdown-separator {
    font-size: 1.2rem;
  }
  
  /* Mobile Floating PNG Adjustments */
  .floating-png {
    opacity: 0.08;
  }
  
  .floating-png-1, .floating-png-3, .floating-png-6, .floating-png-9, .floating-png-11, .floating-png-13, .floating-png-15 {
    width: 35px;
    height: 35px;
  }
  
  .floating-png-2, .floating-png-4, .floating-png-7, .floating-png-8, .floating-png-12, .floating-png-14, .floating-png-16 {
    width: 28px;
    height: 28px;
  }
  
  .floating-png-5, .floating-png-10 {
    width: 25px;
    height: 25px;
  }
  
  /* Reduce animation intensity on mobile */
  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
    }
    25% {
      transform: translateY(-8px) rotate(0.5deg);
    }
    50% {
      transform: translateY(-15px) rotate(0deg);
    }
    75% {
      transform: translateY(-8px) rotate(-0.5deg);
    }
  }
  
  @keyframes floatSideToSide {
    0%, 100% {
      transform: translateX(0px) rotate(0deg);
    }
    25% {
      transform: translateX(6px) rotate(0.25deg);
    }
    50% {
      transform: translateX(12px) rotate(0deg);
    }
    75% {
      transform: translateX(6px) rotate(-0.25deg);
    }
  }
  
  @keyframes floatDiagonal {
    0%, 100% {
      transform: translate(0px, 0px) rotate(0deg);
    }
    25% {
      transform: translate(8px, -5px) rotate(0.75deg);
    }
    50% {
      transform: translate(15px, -10px) rotate(0deg);
    }
    75% {
      transform: translate(8px, -5px) rotate(-0.75deg);
    }
  }
  
  
  .orb {
    display: none;
  }
  
  .ray {
    display: none;
  }
  
  .animated-grid {
    opacity: 0.1;
  }
  
  .scroll-indicator {
    bottom: 0.5rem;
  }
  
  .hero-banner {
    padding: 1rem 0;
    padding-top: 3.5rem; /* Extra padding for mobile header */
    align-items: flex-start;
  }
  
  
  .hero-buttons {
    margin-bottom: 4rem;
  }
  
  /* Smaller buttons on mobile */
  .hero-btn-primary,
  .hero-btn-secondary,
  .hero-btn-tertiary {
    font-size: 0.9rem !important; /* text-sm */
    padding: 0.6rem 1.25rem !important; /* px-5 py-2.5 */
    min-width: 110px !important;
  }
}

@media (max-width: 480px) {
  .animated-overlay {
    opacity: 0.2;
  }
  
  .floating-particles,
  .geometric-shapes,
  .floating-orbs,
  .light-rays {
    display: none;
  }
  
  /* Ultra-small mobile optimizations for enhanced elements */
  .tech-icons-container {
    display: none;
  }
  
  
  .binary-rain {
    display: none;
  }
  
  .cursor-trail {
    display: none;
  }
  
  /* Ultra-small mobile countdown timer */
  .floating-countdown-timer {
    top: 80px;
    right: 5px;
    max-width: 250px;
  }
  
  .floating-countdown {
    padding: 0.8rem;
  }
  
  .countdown-number {
    font-size: 1.3rem;
  }
  
  .countdown-label {
    font-size: 0.5rem;
  }
  
  .countdown-separator {
    font-size: 1rem;
  }
  
  /* Ultra-small buttons on very small screens */
  .hero-btn-primary,
  .hero-btn-secondary,
  .hero-btn-tertiary {
    font-size: 0.8rem !important; /* text-xs */
    padding: 0.5rem 1rem !important; /* px-4 py-2 */
    min-width: 100px !important;
  }
  
  /* Mobile Header Ultra Small Screens */
  .nav-glass .container {
    padding: 0 0.5rem !important;
  }
  
  .nav-glass .flex {
    gap: 0.25rem;
  }
  
  .logo-container .text-xl {
    font-size: 1rem;
  }
  
  .mobile-menu {
    max-height: 95vh;
  }
  
  .mobile-nav-link {
    padding: 0.6rem 1rem;
    margin: 0.2rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .mobile-theme-toggle-btn,
  .mobile-login-button,
  .mobile-cta-button {
    padding: 0.6rem 1rem;
    margin: 0.2rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .hero-banner {
    padding-top: 3rem; /* Extra padding for ultra-small screens */
    align-items: flex-start;
  }
  
  /* Ultra-small mobile header optimizations */
  .lg\:hidden .text-sm {
    font-size: 0.65rem;
    line-height: 1.0;
  }
  
  .lg\:hidden .logo-container {
    width: 40px;
    height: 40px;
  }
  
  .lg\:hidden .logo-image {
    width: 40px;
    height: 40px;
  }
  
  .lg\:hidden .pdc-logo {
    width: 30px;
    height: 30px;
  }
  
  .lg\:hidden .mobile-menu-btn {
    width: 2rem;
    height: 2rem;
  }
}

/* Additional alignment fixes */
.hero-banner .container {
  width: 100%;
  margin: 0;
  padding: 0 2rem;
}

.hero-banner .max-w-4xl {
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
}

/* Enhanced Banner Elements */

/* Interactive Cursor Trail */
.cursor-trail {
  position: fixed;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.1s ease;
  opacity: 0;
}

.cursor-trail.active {
  opacity: 1;
}

/* Floating Technology Icons */
.tech-icons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.tech-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  transition: all 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.tech-icon:hover {
  opacity: 1;
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.tech-icon-1 { top: 10%; left: 10%; animation: floatTech 6s ease-in-out infinite; }
.tech-icon-2 { top: 20%; right: 15%; animation: floatTech 8s ease-in-out infinite 1s; }
.tech-icon-3 { top: 30%; left: 20%; animation: floatTech 7s ease-in-out infinite 2s; }
.tech-icon-4 { top: 15%; right: 25%; animation: floatTech 9s ease-in-out infinite 0.5s; }
.tech-icon-5 { top: 25%; left: 5%; animation: floatTech 6.5s ease-in-out infinite 1.5s; }
.tech-icon-6 { top: 35%; right: 10%; animation: floatTech 8.5s ease-in-out infinite 2.5s; }
.tech-icon-7 { top: 40%; left: 15%; animation: floatTech 7.5s ease-in-out infinite 3s; }
.tech-icon-8 { top: 50%; right: 20%; animation: floatTech 6.8s ease-in-out infinite 0.8s; }
.tech-icon-9 { top: 60%; left: 8%; animation: floatTech 8.2s ease-in-out infinite 1.8s; }
.tech-icon-10 { top: 70%; right: 12%; animation: floatTech 7.2s ease-in-out infinite 2.2s; }
.tech-icon-11 { top: 80%; left: 25%; animation: floatTech 9.2s ease-in-out infinite 0.2s; }
.tech-icon-12 { top: 85%; right: 8%; animation: floatTech 6.2s ease-in-out infinite 1.2s; }

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

/* Floating Code Snippets */

/* Circuit Pattern Background */
.circuit-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
}

.circuit-svg {
  width: 100%;
  height: 100%;
  animation: circuitPulse 15s ease-in-out infinite;
}

@keyframes circuitPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.5; }
}

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

@keyframes backgroundPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

@keyframes lightSweep {
  0% { transform: translateX(-100%) translateY(-100%); }
  100% { transform: translateX(100%) translateY(100%); }
}

@keyframes particleFloat {
  0%, 100% { 
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.6;
  }
  25% { 
    transform: translateY(-30px) translateX(15px) scale(1.2);
    opacity: 1;
  }
  50% { 
    transform: translateY(-15px) translateX(-10px) scale(0.8);
    opacity: 0.8;
  }
  75% { 
    transform: translateY(-40px) translateX(20px) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes orbFloat {
  0%, 100% { 
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  33% { 
    transform: translateY(-20px) translateX(10px) scale(1.1);
    opacity: 0.5;
  }
  66% { 
    transform: translateY(-10px) translateX(-15px) scale(0.9);
    opacity: 0.4;
  }
}

/* Spacious Timeline Animations */
@keyframes progressFill {
  from { height: 0%; }
  to { height: 100%; }
}

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

@keyframes bubbleGlow {
  0%, 100% { 
    opacity: 0.2;
  }
  50% { 
    opacity: 0.4;
  }
}

/* Side by Side Layout Animations */
@keyframes itemReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dividerPulse {
  0%, 100% { 
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
  }
  50% { 
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.8);
  }
}

@keyframes iconSpin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design for Side by Side Layout */
@media (max-width: 1200px) {
  .side-by-side-container {
    gap: 2rem;
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .side-by-side-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 1rem;
    min-height: auto;
  }
  
  .center-divider {
    display: none;
  }
  
  .instructions-side,
  .timeline-side {
    padding: 1.5rem;
    height: auto;
  }
  
  .instructions-list,
  .timeline-events {
    justify-content: flex-start;
    gap: 1.5rem;
  }
  
  .instruction-item,
  .timeline-event {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .instruction-number,
  .event-date {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  
  .event-date {
    width: 60px;
    height: 60px;
  }
  
  .date-day {
    font-size: 0.9rem;
  }
  
  .date-month {
    font-size: 0.6rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .combined-title {
    font-size: 2.5rem;
  }
  
  .combined-subtitle {
    font-size: 1rem;
  }
  
  .instructions-side,
  .timeline-side {
    padding: 1rem;
    height: auto;
  }
  
  .instructions-list,
  .timeline-events {
    justify-content: flex-start;
  }
  
  .instruction-item,
  .timeline-event {
    padding: 1rem;
  }
  
  .instruction-tags {
    justify-content: center;
  }
}

/* Floating Binary Code Rain */
.binary-rain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.binary-column {
  position: absolute;
  top: -100%;
  width: 20px;
  height: 200%;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  color: rgba(0, 255, 0, 0.3);
  line-height: 1.2;
  animation: binaryFall 20s linear infinite;
}

.binary-column-1 { left: 10%; animation-delay: 0s; }
.binary-column-2 { left: 25%; animation-delay: 4s; }
.binary-column-3 { left: 40%; animation-delay: 8s; }
.binary-column-4 { left: 60%; animation-delay: 12s; }
.binary-column-5 { left: 80%; animation-delay: 16s; }

@keyframes binaryFall {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}

/* Holographic Overlay */
.holographic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.02) 50%,
    transparent 70%
  );
  animation: holographicScan 8s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes holographicScan {
  0%, 100% { transform: translateX(-100%) skewX(-15deg); }
  50% { transform: translateX(100%) skewX(-15deg); }
}

/* Enhanced Particle System */
.particles-container .particle {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  animation: floatParticle 12s ease-in-out infinite;
}

/* Small Particles (4-7px) */
.particle-1 { width: 4px; height: 4px; top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { width: 6px; height: 6px; top: 30%; right: 15%; animation-delay: 2s; }
.particle-3 { width: 3px; height: 3px; top: 50%; left: 20%; animation-delay: 4s; }
.particle-4 { width: 5px; height: 5px; top: 70%; right: 25%; animation-delay: 6s; }
.particle-5 { width: 4px; height: 4px; top: 15%; left: 60%; animation-delay: 8s; }
.particle-6 { width: 7px; height: 7px; top: 40%; right: 5%; animation-delay: 10s; }
.particle-7 { width: 3px; height: 3px; top: 60%; left: 5%; animation-delay: 1s; }
.particle-8 { width: 5px; height: 5px; top: 80%; right: 30%; animation-delay: 3s; }
.particle-9 { width: 4px; height: 4px; top: 25%; left: 80%; animation-delay: 5s; }
.particle-10 { width: 6px; height: 6px; top: 45%; right: 40%; animation-delay: 7s; }
.particle-11 { width: 3px; height: 3px; top: 65%; left: 70%; animation-delay: 9s; }
.particle-12 { width: 5px; height: 5px; top: 85%; right: 60%; animation-delay: 11s; }
.particle-13 { width: 4px; height: 4px; top: 35%; left: 40%; animation-delay: 1.5s; }
.particle-14 { width: 6px; height: 6px; top: 55%; right: 70%; animation-delay: 3.5s; }
.particle-15 { width: 3px; height: 3px; top: 75%; left: 30%; animation-delay: 5.5s; }
.particle-16 { width: 5px; height: 5px; top: 90%; right: 10%; animation-delay: 7.5s; }

/* Medium Particles (8-12px) */
.particle-medium {
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  animation: floatParticleMedium 15s ease-in-out infinite;
}

.particle-17 { top: 12%; left: 8%; animation-delay: 0.5s; }
.particle-18 { top: 22%; right: 12%; animation-delay: 2.5s; }
.particle-19 { top: 32%; left: 15%; animation-delay: 4.5s; }
.particle-20 { top: 42%; right: 18%; animation-delay: 6.5s; }
.particle-21 { top: 52%; left: 12%; animation-delay: 8.5s; }
.particle-22 { top: 62%; right: 22%; animation-delay: 10.5s; }
.particle-23 { top: 72%; left: 18%; animation-delay: 1.5s; }
.particle-24 { top: 82%; right: 8%; animation-delay: 3.5s; }

/* Large Particles (15-20px) */
.particle-large {
  width: 18px;
  height: 18px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  animation: floatParticleLarge 18s ease-in-out infinite;
}

.particle-25 { top: 18%; left: 25%; animation-delay: 1s; }
.particle-26 { top: 38%; right: 35%; animation-delay: 3s; }
.particle-27 { top: 58%; left: 45%; animation-delay: 5s; }
.particle-28 { top: 78%; right: 25%; animation-delay: 7s; }
.particle-29 { top: 28%; left: 65%; animation-delay: 9s; }
.particle-30 { top: 68%; right: 55%; animation-delay: 11s; }

/* Extra Large Particles (25-30px) */
.particle-xl {
  width: 28px;
  height: 28px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: floatParticleXL 20s ease-in-out infinite;
}

.particle-31 { top: 25%; left: 35%; animation-delay: 2s; }
.particle-32 { top: 45%; right: 45%; animation-delay: 6s; }
.particle-33 { top: 65%; left: 55%; animation-delay: 10s; }
.particle-34 { top: 85%; right: 35%; animation-delay: 14s; }

@keyframes floatParticle {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.6;
  }
  25% { 
    transform: translateY(-20px) translateX(10px) scale(1.2);
    opacity: 0.8;
  }
  50% { 
    transform: translateY(-10px) translateX(-5px) scale(0.8);
    opacity: 0.4;
  }
  75% { 
    transform: translateY(-30px) translateX(5px) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes floatParticleMedium {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
    opacity: 0.7;
  }
  25% { 
    transform: translateY(-25px) translateX(15px) scale(1.3) rotate(90deg);
    opacity: 0.9;
  }
  50% { 
    transform: translateY(-15px) translateX(-10px) scale(0.9) rotate(180deg);
    opacity: 0.5;
  }
  75% { 
    transform: translateY(-35px) translateX(8px) scale(1.2) rotate(270deg);
    opacity: 0.8;
  }
}

@keyframes floatParticleLarge {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
    opacity: 0.5;
  }
  25% { 
    transform: translateY(-30px) translateX(20px) scale(1.4) rotate(45deg);
    opacity: 0.8;
  }
  50% { 
    transform: translateY(-20px) translateX(-15px) scale(0.8) rotate(90deg);
    opacity: 0.3;
  }
  75% { 
    transform: translateY(-40px) translateX(12px) scale(1.3) rotate(135deg);
    opacity: 0.7;
  }
}

@keyframes floatParticleXL {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
    opacity: 0.4;
  }
  25% { 
    transform: translateY(-35px) translateX(25px) scale(1.5) rotate(30deg);
    opacity: 0.7;
  }
  50% { 
    transform: translateY(-25px) translateX(-20px) scale(0.7) rotate(60deg);
    opacity: 0.2;
  }
  75% { 
    transform: translateY(-45px) translateX(15px) scale(1.4) rotate(90deg);
    opacity: 0.6;
  }
}




/* Floating Countdown Timer Container */
.floating-countdown-timer {
  position: fixed;
  top: 120px;
  right: 20px;
  z-index: 20;
  pointer-events: none;
}

/* Responsive positioning for different screen sizes */
@media (min-width: 1200px) {
  .floating-countdown-timer {
    right: 30px;
  }
  
}

@media (min-width: 1400px) {
  .floating-countdown-timer {
    right: 40px;
  }
  
}

@media (max-width: 1024px) {
  .floating-countdown-timer {
    right: 15px;
    top: 100px;
  }
  
  .floating-countdown {
    min-width: 250px;
    padding: 1.25rem;
  }
  
  .countdown-number {
    font-size: 1.6rem;
  }
  
}

/* Floating Countdown Card */
.floating-countdown {
  animation: floatCountdown 8s ease-in-out infinite;
  transition: all 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
}

.floating-countdown:hover {
  animation-play-state: paused;
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Countdown Header */
.countdown-header {
  text-align: center;
  margin-bottom: 1rem;
}

.countdown-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-date {
  font-size: 0.8rem;
  color: hsl(var(--primary));
  font-weight: 500;
}

/* Countdown Timer */
.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.countdown-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: hsl(var(--primary));
  line-height: 1;
  text-shadow: 0 0 10px hsl(var(--primary) / 0.5);
  margin-bottom: 0.25rem;
}

.countdown-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-separator {
  font-size: 1.5rem;
  font-weight: 800;
  color: hsl(var(--primary));
  margin: 0 0.25rem;
  text-shadow: 0 0 10px hsl(var(--primary) / 0.5);
}

@keyframes floatCountdown {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% { 
    transform: translateY(-8px) translateX(4px) rotate(1deg);
  }
  50% { 
    transform: translateY(-4px) translateX(-2px) rotate(-0.5deg);
  }
  75% { 
    transform: translateY(-12px) translateX(3px) rotate(0.5deg);
  }
}

/* Floating Buttons - Overridden by uniform styles */
.floating-btn {
  /* All styles now handled by uniform button styles above */
}

.floating-btn:hover {
  /* Hover styles handled by uniform button styles above */
}

.floating-btn:nth-child(1) { animation-delay: 0s; }
.floating-btn:nth-child(2) { animation-delay: 2s; }
.floating-btn:nth-child(3) { animation-delay: 4s; }

@keyframes floatButton {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% { 
    transform: translateY(-6px) translateX(3px) rotate(1deg);
  }
  50% { 
    transform: translateY(-3px) translateX(-1px) rotate(-0.5deg);
  }
  75% { 
    transform: translateY(-9px) translateX(2px) rotate(0.5deg);
  }
}

/* Childish Hover Effects */
.floating-btn:hover {
  animation: wiggle 0.5s ease-in-out;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(3deg); }
  75% { transform: rotate(-3deg); }
}

.floating-countdown:hover {
  animation: bounce 0.6s ease-in-out;
}

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

/* Playful Button Effects */
.floating-btn:active {
  animation: squish 0.2s ease-in-out;
}

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

/* Glow Effects on Hover */
.floating-btn:hover {
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(255, 255, 255, 0.1);
}

.floating-countdown:hover {
  box-shadow: 
    0 0 30px rgba(255, 255, 255, 0.2),
    0 0 60px rgba(255, 255, 255, 0.1);
}

/* Enhanced Floating Orbs */
.floating-orbs .orb {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  animation: floatOrb 15s ease-in-out infinite;
  filter: blur(1px);
}

.orb-1 { width: 80px; height: 80px; top: 10%; left: 15%; animation-delay: 0s; }
.orb-2 { width: 60px; height: 60px; top: 30%; right: 20%; animation-delay: 3s; }
.orb-3 { width: 100px; height: 100px; top: 50%; left: 5%; animation-delay: 6s; }
.orb-4 { width: 70px; height: 70px; top: 70%; right: 10%; animation-delay: 9s; }
.orb-5 { width: 90px; height: 90px; top: 20%; left: 70%; animation-delay: 12s; }
.orb-6 { width: 50px; height: 50px; top: 80%; right: 50%; animation-delay: 15s; }

@keyframes floatOrb {
  0%, 100% { 
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.3;
  }
  25% { 
    transform: translateY(-30px) translateX(15px) scale(1.1);
    opacity: 0.5;
  }
  50% { 
    transform: translateY(-15px) translateX(-10px) scale(0.9);
    opacity: 0.2;
  }
  75% { 
    transform: translateY(-40px) translateX(20px) scale(1.05);
    opacity: 0.6;
  }
}

/* Enhanced Geometric Shapes */
.geometric-shapes .shape {
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  pointer-events: none;
  animation: floatShape 18s ease-in-out infinite;
  backdrop-filter: blur(5px);
}

.shape-1 { 
  width: 40px; height: 40px; top: 20%; left: 25%; 
  border-radius: 50%; animation-delay: 0s; 
}
.shape-2 { 
  width: 30px; height: 30px; top: 40%; right: 30%; 
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%); animation-delay: 3s; 
}
.shape-3 { 
  width: 50px; height: 50px; top: 60%; left: 10%; 
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); animation-delay: 6s; 
}
.shape-4 { 
  width: 35px; height: 35px; top: 80%; right: 15%; 
  border-radius: 8px; animation-delay: 9s; 
}
.shape-5 { 
  width: 45px; height: 45px; top: 15%; left: 60%; 
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); animation-delay: 12s; 
}
.shape-6 { 
  width: 25px; height: 25px; top: 75%; right: 60%; 
  border-radius: 50%; animation-delay: 15s; 
}

@keyframes floatShape {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.4;
  }
  25% { 
    transform: translateY(-25px) rotate(90deg) scale(1.1);
    opacity: 0.6;
  }
  50% { 
    transform: translateY(-10px) rotate(180deg) scale(0.9);
    opacity: 0.3;
  }
  75% { 
    transform: translateY(-35px) rotate(270deg) scale(1.05);
    opacity: 0.7;
  }
}

/* Enhanced Light Rays */
.light-rays .ray {
  position: absolute;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  pointer-events: none;
  animation: raySweep 12s ease-in-out infinite;
}

.ray-1 { 
  width: 200px; height: 2px; top: 20%; left: -100px; 
  animation-delay: 0s; 
}
.ray-2 { 
  width: 150px; height: 2px; top: 40%; right: -100px; 
  animation-delay: 3s; 
}
.ray-3 { 
  width: 180px; height: 2px; top: 60%; left: -100px; 
  animation-delay: 6s; 
}
.ray-4 { 
  width: 160px; height: 2px; top: 80%; right: -100px; 
  animation-delay: 9s; 
}

@keyframes raySweep {
  0%, 100% { 
    transform: translateX(0px);
    opacity: 0;
  }
  50% { 
    transform: translateX(calc(100vw + 200px));
    opacity: 0.8;
  }
}

/* Enhanced Animated Grid */
.animated-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* About Section - Unique Modern Layout */
.about-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--secondary) / 0.1) 50%, 
    hsl(var(--background)) 100%);
  padding: 1rem 0;
  margin: 0;
}

/* Full Width Sections */
.w-full {
  width: 100% !important;
  max-width: none !important;
}

/* Override all container constraints */
.container {
  max-width: none !important;
  width: 100% !important;
}

/* Force full width on all sections */
section .w-full,
section .container {
  max-width: none !important;
  width: 100% !important;
}

/* Specific section overrides */
.hero-section .w-full,
.timeline-section .w-full,
.benefits-section .w-full,
.instructions-section .w-full,
.faq-section .w-full,
.footer-section .w-full {
  max-width: none !important;
  width: 100% !important;
}

/* Force full width on grid layouts */
.instructions-cards-grid-full,
.benefits-grid,
.faq-grid,
.footer-main {
  width: 100% !important;
  max-width: none !important;
}

/* Override any max-width constraints */
.max-w-4xl,
.max-w-2xl,
.max-w-xl {
  max-width: none !important;
  width: 100% !important;
}

/* FINAL OVERRIDE - Force full width on everything */
* {
  box-sizing: border-box;
}

section .w-full,
section .container,
.hero-section .w-full,
.timeline-section .w-full,
.benefits-section .w-full,
.instructions-section .w-full,
.faq-section .w-full,
.footer-section .w-full {
  max-width: none !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* SPECIFIC FAQ SECTION OVERRIDES */
.faq-section .faq-container,
.faq-section .faq-grid,
.faq-section .w-full {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.faq-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

/* SPECIFIC BENEFITS SECTION OVERRIDES */
.benefits-section .benefits-container,
.benefits-section .benefits-grid,
.benefits-section .w-full {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.benefits-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

/* SPECIFIC INSTRUCTIONS SECTION OVERRIDES */
.instructions-section .rules-container,
.instructions-section .rules-grid,
.instructions-section .w-full {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.instructions-section {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
}

/* Clean Two Column Layout Styles */
.about-left-content {
  position: relative;
  padding-right: 2rem;
}

.about-graphics-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding-left: 2rem;
}

.why-participate-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-title-wrapper {
  position: relative;
}

.about-title-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  border-radius: 2px;
  margin-top: 1rem;
}

.side-graphics-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 300px;
  position: relative;
  padding: 1.5rem;
  background: radial-gradient(circle at center, 
    rgba(255, 255, 255, 0.02) 0%, 
    transparent 70%);
  border-radius: 30px;
  overflow: hidden;
}

.side-graphics-container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 107, 107, 0.1) 60deg,
    transparent 120deg,
    rgba(78, 205, 196, 0.1) 180deg,
    transparent 240deg,
    rgba(69, 183, 209, 0.1) 300deg,
    transparent 360deg
  );
  animation: rotateGradient 20s linear infinite;
  z-index: 0;
}

.side-graphics-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, 
    rgba(255, 255, 255, 0.05) 0%, 
    transparent 50%),
    radial-gradient(circle at 70% 80%, 
    rgba(255, 255, 255, 0.03) 0%, 
    transparent 50%);
  z-index: 1;
}

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

/* Floating Cards with Cursor Interaction */
.side-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  position: relative;
  z-index: 2;
  perspective: 1000px;
}

.side-card {
  opacity: 0;
  transform: translateX(50px) scale(0.9) rotateY(15deg);
  animation: cardSlideIn 0.8s ease-out forwards;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.side-card:nth-child(1) {
  animation-delay: 0.2s;
}

.side-card:nth-child(2) {
  animation-delay: 0.4s;
}

.side-card:nth-child(3) {
  animation-delay: 0.6s;
}

/* Floating Animation */
.side-card {
  animation: cardSlideIn 0.8s ease-out forwards, floatCard 6s ease-in-out infinite;
}

.side-card:nth-child(1) {
  animation: cardSlideIn 0.8s ease-out 0.2s forwards, floatCard 6s ease-in-out infinite 0.2s;
}

.side-card:nth-child(2) {
  animation: cardSlideIn 0.8s ease-out 0.4s forwards, floatCard 6s ease-in-out infinite 0.4s;
}

.side-card:nth-child(3) {
  animation: cardSlideIn 0.8s ease-out 0.6s forwards, floatCard 6s ease-in-out infinite 0.6s;
}

@keyframes cardSlideIn {
  0% {
    opacity: 0;
    transform: translateX(50px) scale(0.9) rotateY(15deg);
  }
  60% {
    opacity: 0.8;
    transform: translateX(-10px) scale(1.05) rotateY(-5deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
  }
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px) rotateY(0deg);
  }
  25% {
    transform: translateY(-8px) rotateY(2deg);
  }
  50% {
    transform: translateY(-12px) rotateY(0deg);
  }
  75% {
    transform: translateY(-6px) rotateY(-2deg);
  }
}

.side-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05);
}

.side-card::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.8s ease;
}

.side-card:hover::before {
  left: 100%;
}

/* Cursor Interaction Effects */
.side-card:hover {
  transform: translateY(-15px) scale(1.08) rotateY(5deg) rotateX(5deg);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 40px rgba(255, 255, 255, 0.2),
    0 0 80px rgba(255, 255, 255, 0.1);
  animation-play-state: paused;
}

.side-card:hover .card-icon {
  transform: scale(1.3) rotate(10deg) translateZ(20px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
}

.side-card:hover .card-text {
  transform: translateX(8px) translateZ(10px);
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Magnetic Cursor Effect */
.side-card {
  will-change: transform;
}

.side-card:hover::before {
  left: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
}

/* 3D Tilt Effect */
.side-card:hover {
  transform-style: preserve-3d;
}

.side-card .card-icon,
.side-card .card-text {
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.side-card .card-icon {
  font-size: 2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}

.side-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.side-card .card-text {
  color: plum;
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.side-card:hover .card-text {
  color: rgba(255, 255, 255, 1);
  transform: translateX(5px);
}

/* Individual Card Enhancements with Floating Effects */
.side-card-1 {
  border-color: rgba(255, 107, 107, 0.3);
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.05) 0%, 
    rgba(255, 255, 255, 0.08) 100%);
  animation: cardSlideIn 0.8s ease-out 0.2s forwards, floatCard 6s ease-in-out infinite 0.2s, cardGlow1 4s ease-in-out infinite;
}

.side-card-1:hover {
  border-color: rgba(255, 107, 107, 0.6);
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.15) 0%, 
    rgba(255, 255, 255, 0.18) 100%);
  box-shadow: 
    0 20px 60px rgba(255, 107, 107, 0.3),
    0 0 0 1px rgba(255, 107, 107, 0.3),
    0 0 40px rgba(255, 107, 107, 0.2),
    0 0 80px rgba(255, 107, 107, 0.1);
}

.side-card-2 {
  border-color: rgba(78, 205, 196, 0.3);
  background: linear-gradient(135deg, 
    rgba(78, 205, 196, 0.05) 0%, 
    rgba(255, 255, 255, 0.08) 100%);
  animation: cardSlideIn 0.8s ease-out 0.4s forwards, floatCard 6s ease-in-out infinite 0.4s, cardGlow2 4s ease-in-out infinite 1s;
}

.side-card-2:hover {
  border-color: rgba(78, 205, 196, 0.6);
  background: linear-gradient(135deg, 
    rgba(78, 205, 196, 0.15) 0%, 
    rgba(255, 255, 255, 0.18) 100%);
  box-shadow: 
    0 20px 60px rgba(78, 205, 196, 0.3),
    0 0 0 1px rgba(78, 205, 196, 0.3),
    0 0 40px rgba(78, 205, 196, 0.2),
    0 0 80px rgba(78, 205, 196, 0.1);
}

.side-card-3 {
  border-color: rgba(69, 183, 209, 0.3);
  background: linear-gradient(135deg, 
    rgba(69, 183, 209, 0.05) 0%, 
    rgba(255, 255, 255, 0.08) 100%);
  animation: cardSlideIn 0.8s ease-out 0.6s forwards, floatCard 6s ease-in-out infinite 0.6s, cardGlow3 4s ease-in-out infinite 2s;
}

.side-card-3:hover {
  border-color: rgba(69, 183, 209, 0.6);
  background: linear-gradient(135deg, 
    rgba(69, 183, 209, 0.15) 0%, 
    rgba(255, 255, 255, 0.18) 100%);
  box-shadow: 
    0 20px 60px rgba(69, 183, 209, 0.3),
    0 0 0 1px rgba(69, 183, 209, 0.3),
    0 0 40px rgba(69, 183, 209, 0.2),
    0 0 80px rgba(69, 183, 209, 0.1);
}

/* Individual Card Glow Animations */
@keyframes cardGlow1 {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 20px rgba(255, 107, 107, 0.1);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 30px rgba(255, 107, 107, 0.2),
      0 0 60px rgba(255, 107, 107, 0.1);
  }
}

@keyframes cardGlow2 {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 20px rgba(78, 205, 196, 0.1);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 30px rgba(78, 205, 196, 0.2),
      0 0 60px rgba(78, 205, 196, 0.1);
  }
}

@keyframes cardGlow3 {
  0%, 100% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 20px rgba(69, 183, 209, 0.1);
  }
  50% {
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.1),
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 30px rgba(69, 183, 209, 0.2),
      0 0 60px rgba(69, 183, 209, 0.1);
  }
}

/* Side Visual - Enhanced with Modern Effects */
.side-visual {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.15));
  z-index: 2;
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  animation: visualAppear 1.2s ease-out 0.8s forwards;
}

@keyframes visualAppear {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.side-visual .visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.side-visual .visual-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: enhancedPulse 3s ease-in-out infinite;
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.side-visual .visual-circle-1 {
  width: 200px;
  height: 200px;
  animation-delay: 0s;
  border-color: rgba(255, 107, 107, 0.6);
  box-shadow: 
    0 0 40px rgba(255, 107, 107, 0.3),
    inset 0 0 40px rgba(255, 107, 107, 0.15),
    0 0 80px rgba(255, 107, 107, 0.1);
  animation: enhancedPulse 4s ease-in-out infinite, orbitRotate 15s linear infinite;
}

.side-visual .visual-circle-2 {
  width: 150px;
  height: 150px;
  animation-delay: 1.5s;
  border-color: rgba(78, 205, 196, 0.6);
  box-shadow: 
    0 0 35px rgba(78, 205, 196, 0.3),
    inset 0 0 35px rgba(78, 205, 196, 0.15),
    0 0 70px rgba(78, 205, 196, 0.1);
  animation: enhancedPulse 4s ease-in-out infinite 1.5s, orbitRotate 15s linear infinite reverse;
}

.side-visual .visual-circle-3 {
  width: 100px;
  height: 100px;
  animation-delay: 3s;
  border-color: rgba(69, 183, 209, 0.6);
  box-shadow: 
    0 0 30px rgba(69, 183, 209, 0.3),
    inset 0 0 30px rgba(69, 183, 209, 0.15),
    0 0 60px rgba(69, 183, 209, 0.1);
  animation: enhancedPulse 4s ease-in-out infinite 3s, orbitRotate 15s linear infinite;
}

@keyframes orbitRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

.side-visual .visual-center {
  position: absolute;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 50px rgba(255, 255, 255, 0.3),
    inset 0 3px 15px rgba(255, 255, 255, 0.4),
    0 0 100px rgba(255, 255, 255, 0.1);
  animation: centerGlow 3s ease-in-out infinite alternate, centerFloat 6s ease-in-out infinite;
  border: 3px solid rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.side-visual .visual-center::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.3) 90deg,
    transparent 180deg,
    rgba(255, 255, 255, 0.1) 270deg,
    transparent 360deg
  );
  animation: centerRotate 4s linear infinite;
  z-index: -1;
}

@keyframes centerFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

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

.side-visual .center-icon {
  font-size: 2rem;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
  animation: iconFloat 4s ease-in-out infinite, iconPulse 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.6));
  }
}

/* Enhanced Animations */
@keyframes enhancedPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes centerGlow {
  0% {
    box-shadow: 
      0 8px 25px rgba(0, 0, 0, 0.3),
      0 0 40px rgba(255, 255, 255, 0.2),
      inset 0 2px 10px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 
      0 8px 25px rgba(0, 0, 0, 0.3),
      0 0 60px rgba(255, 255, 255, 0.4),
      inset 0 2px 10px rgba(255, 255, 255, 0.5);
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

/* @keyframes sidePulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.08);
  }
} */

/* Responsive adjustments for clean layout */
@media (max-width: 1024px) {
  .about-main-content .grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-left-content {
    padding-right: 0;
    text-align: center;
  }
  
  .about-graphics-right {
    order: 2;
    min-height: 300px;
    padding-left: 0;
  }
  
  .side-graphics-container {
    flex-direction: row;
    max-width: none;
    justify-content: center;
    gap: 2rem;
  }
  
  .side-cards {
    flex-direction: row;
    gap: 1rem;
  }
  
  .side-card {
    padding: 1rem 1.25rem;
  }
  
  .side-card .card-icon {
    font-size: 1.75rem;
  }
  
  .side-card .card-text {
    font-size: 1rem;
  }
  
  .side-visual {
    width: 160px;
    height: 160px;
  }
  
  .side-visual .visual-circle-1 {
    width: 160px;
    height: 160px;
  }
  
  .side-visual .visual-circle-2 {
    width: 120px;
    height: 120px;
  }
  
  .side-visual .visual-circle-3 {
    width: 80px;
    height: 80px;
  }
  
  .side-visual .visual-center {
    width: 55px;
    height: 55px;
  }
  
  .side-visual .center-icon {
    font-size: 1.75rem;
  }
  
  .why-participate-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .about-main-content .grid {
    gap: 2rem;
  }
  
  .about-left-content {
    text-align: left;
  }
  
  .side-graphics-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .side-cards {
    flex-direction: column;
    gap: 1rem;
  }
  
  .side-card {
    padding: 1rem 1.25rem;
  }
  
  .side-card .card-icon {
    font-size: 1.5rem;
  }
  
  .side-card .card-text {
    font-size: 0.95rem;
  }
  
  .side-visual {
    width: 140px;
    height: 140px;
  }
  
  .side-visual .visual-circle-1 {
    width: 140px;
    height: 140px;
  }
  
  .side-visual .visual-circle-2 {
    width: 105px;
    height: 105px;
  }
  
  .side-visual .visual-circle-3 {
    width: 70px;
    height: 70px;
  }
  
  .side-visual .visual-center {
    width: 50px;
    height: 50px;
  }
  
  .side-visual .center-icon {
    font-size: 1.5rem;
  }
  
  .about-title {
    font-size: 2.5rem !important;
  }
  
  .about-subtitle {
    font-size: 1.125rem !important;
  }
  
  .about-content-title {
    font-size: 1.5rem !important;
  }
  
  .about-text-1,
  .about-text-2 {
    font-size: 1rem !important;
  }
}

/* Background Shapes */
.about-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(255, 107, 107, 0.1) 0%, 
    rgba(78, 205, 196, 0.1) 50%, 
    rgba(69, 183, 209, 0.1) 100%);
  /* animation: floatShape 20s ease-in-out infinite; */
}

.bg-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.bg-shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: -5%;
  animation-delay: 5s;
}

.bg-shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

.bg-shape-4 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 30%;
  animation-delay: 15s;
}

@keyframes floatShape {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Hero Section */
.about-hero {
  position: relative;
  z-index: 2;
}

.about-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.about-title-accent {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 2px;
  animation: accentGlow 3s ease-in-out infinite;
}

@keyframes accentGlow {
  0%, 100% { 
    width: 60px;
    opacity: 1;
  }
  50% { 
    width: 120px;
    opacity: 0.8;
  }
}

/* Floating Cards */
.floating-cards-container {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  /* animation: floatCard 6s ease-in-out infinite; */
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-card:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.15);
}

.floating-card-1 {
  top: 20%;
  right: 20%;
  animation-delay: 0s;
}

.floating-card-2 {
  top: 50%;
  right: 5%;
  animation-delay: 2s;
}

.floating-card-3 {
  top: 70%;
  right: 35%;
  animation-delay: 4s;
}

@keyframes floatCard {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  50% { 
    transform: translateY(-20px) rotate(5deg);
  }
}

.card-content {
  text-align: center;
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.card-text {
  font-weight: 600;
  color: hsl(var(--foreground));
}

/* Content Badge */
.content-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
}

/* Visual Container */
.visual-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.visual-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid hsl(var(--primary) / 0.3);
  animation: rotateCircle 10s linear infinite;
}

.visual-circle-1 {
  width: 300px;
  height: 300px;
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.visual-circle-2 {
  width: 200px;
  height: 200px;
  top: 50px;
  left: 50px;
  animation-delay: 3s;
  animation-direction: reverse;
}

.visual-circle-3 {
  width: 100px;
  height: 100px;
  top: 100px;
  left: 100px;
  animation-delay: 6s;
}

.visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.center-icon {
  font-size: 2rem;
}

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

/* Benefits Section - Standalone */
.benefits-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--secondary) / 0.1) 50%, 
    hsl(var(--background)) 100%);
  padding: 1rem 0;
  margin: 0;
}

/* Background Shapes for Benefits */
.benefits-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.benefit-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(255, 107, 107, 0.08) 0%, 
    rgba(78, 205, 196, 0.08) 50%, 
    rgba(69, 183, 209, 0.08) 100%);
  /* animation: floatShape 25s ease-in-out infinite; */
}

.benefit-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.benefit-shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: -3%;
  animation-delay: 5s;
}

.benefit-shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 10%;
  animation-delay: 10s;
}

.benefit-shape-4 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 20%;
  animation-delay: 15s;
}

/* Benefits Hero */
.benefits-hero {
  position: relative;
  z-index: 2;
}

.benefits-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.benefits-title-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 2px;
  animation: benefitsAccentGlow 3s ease-in-out infinite;
}

@keyframes benefitsAccentGlow {
  0%, 100% { 
    width: 120px;
    opacity: 1;
  }
  50% { 
    width: 180px;
    opacity: 0.8;
  }
}

.benefits-container {
  position: relative;
  z-index: 2;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  width: 100% !important;
  max-width: none !important;
}

.benefit-card {
  position: relative;
  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.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.benefit-card::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.6s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px hsl(var(--primary) / 0.2);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(var(--foreground));
}

.benefit-desc {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

/* CTA Section - Enhanced Attractive Design */
.about-cta-section {
  position: relative;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.15) 0%, 
    hsl(var(--accent) / 0.15) 50%,
    hsl(var(--primary) / 0.1) 100%);
  border: 1px solid hsl(var(--primary) / 0.2);
  border-radius: 40px;
  padding: 4rem 2rem;
  margin-top: 0;
  margin-bottom: 3rem;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px hsl(var(--primary) / 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.about-cta-section:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px hsl(var(--primary) / 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: hsl(var(--primary) / 0.3);
}

.about-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.05) 0%, 
    rgba(59, 130, 246, 0.03) 50%, 
    rgba(245, 158, 11, 0.05) 100%);
  border-radius: 40px;
  z-index: 1;
}

.about-cta-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, 
    hsl(var(--primary) / 0.1) 0%, 
    transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

/* Floating particles for CTA section */
.about-cta-section .floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.about-cta-section .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(45deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 50%;
  /* animation: floatParticle 8s ease-in-out infinite; */
}

.about-cta-section .particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.about-cta-section .particle:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  animation-duration: 8s;
}

.about-cta-section .particle:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
  animation-duration: 7s;
}

.about-cta-section .particle:nth-child(4) {
  top: 40%;
  right: 30%;
  animation-delay: 1s;
  animation-duration: 9s;
}

/* @keyframes floatParticle {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) translateX(10px) scale(1.2);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px) translateX(-15px) scale(0.8);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-30px) translateX(5px) scale(1.1);
    opacity: 0.9;
  }
} */

.cta-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
}

.about-cta-title {
  position: relative;
  margin-bottom: 1.5rem;
}

.cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary)) 0%, 
    hsl(var(--accent)) 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 
    0 10px 30px rgba(139, 92, 246, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.cta-badge:hover::before {
  left: 100%;
}

.cta-badge:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 
    0 15px 40px rgba(139, 92, 246, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

.about-cta-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  position: relative;
  z-index: 3;
}

.cta-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  color: white;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.about-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
}

.about-stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  flex: 1;
}

.about-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 25px 25px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-stat:hover::before {
  opacity: 1;
}

.about-stat:hover {
  transform: translateY(-10px) scale(1.03);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.18) 0%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: hsl(var(--accent));
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.about-stat:hover .stat-number {
  color: hsl(var(--primary));
  transform: scale(1.05);
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  line-height: 1.4;
  transition: color 0.3s ease;
}

.about-stat:hover .stat-label {
  color: hsl(var(--foreground));
}

.cta-visual {
  position: relative;
  width: 200px;
  height: 200px;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    hsl(var(--primary) / 0.3), 
    hsl(var(--accent) / 0.3));
  animation: ctaFloat 8s ease-in-out infinite;
}

.cta-shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.cta-shape-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.cta-shape-3 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes ctaFloat {
  0%, 100% { 
    transform: translateY(0px) scale(1);
  }
  50% { 
    transform: translateY(-20px) scale(1.1);
  }
}

/* Animation Classes */
.about-title,
.about-subtitle,
.about-content,
.about-content-title,
.about-text-1,
.about-text-2,
.benefit-card,
.about-cta-title,
.about-cta-text,
.about-stat {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-section.animate .about-title,
.about-section.animate .about-subtitle,
.about-section.animate .about-content,
.about-section.animate .about-content-title,
.about-section.animate .about-text-1,
.about-section.animate .about-text-2,
.about-section.animate .benefit-card,
.about-section.animate .about-cta-title,
.about-section.animate .about-cta-text,
.about-section.animate .about-stat {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .about-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .about-stat {
    padding: 1.5rem 1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .floating-cards-container {
    height: 300px;
  }
  
  .visual-container {
    width: 250px;
    height: 250px;
  }
  
  .about-cta-section {
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
  }
  
  .cta-badge {
    font-size: 1.25rem;
    padding: 0.6rem 1.5rem;
  }
  
  .about-cta-text {
    font-size: 1.1rem;
  }
  
  .benefits-section {
    padding: 1rem 0;
  }
  
  .benefits-title {
    font-size: 2.5rem;
  }
  
  .benefits-subtitle {
    font-size: 1.1rem;
  }
}

/* Problem Statements Section - Modern Layout */
.problems-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    hsl(var(--secondary) / 0.1) 0%, 
    hsl(var(--background)) 50%, 
    hsl(var(--secondary) / 0.1) 100%);
  contain: layout style paint;
  padding: 1rem 0;
  margin: 0;
}

/* Background Shapes */
.problems-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.problem-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(69, 183, 209, 0.1) 0%, 
    rgba(255, 107, 107, 0.1) 50%, 
    rgba(78, 205, 196, 0.1) 100%);
  animation: problemFloat 25s ease-in-out infinite;
}

.problem-shape-1 {
  width: 400px;
  height: 400px;
  top: 5%;
  left: -15%;
  animation-delay: 0s;
}

.problem-shape-2 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: -10%;
  animation-delay: 8s;
}

.problem-shape-3 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 10%;
  animation-delay: 16s;
}

.problem-shape-4 {
  width: 350px;
  height: 350px;
  top: 20%;
  right: 20%;
  animation-delay: 24s;
}

@keyframes problemFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-40px) rotate(180deg) scale(1.1);
    opacity: 0.6;
  }
}

/* Disable heavy animations on mobile for better performance */
@media (max-width: 768px) {
  .problem-shape {
    animation: none !important;
  }
  
  .problems-section {
    background: hsl(var(--background)) !important;
  }
  
  .problems-bg-shapes {
    display: none !important;
  }
}

/* Hero Section */
.problems-hero {
  position: relative;
  z-index: 2;
}

.problems-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.problems-title-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 2px;
  animation: problemAccentGlow 3s ease-in-out infinite;
}

@keyframes problemAccentGlow {
  0%, 100% { 
    width: 80px;
    opacity: 1;
  }
  50% { 
    width: 150px;
    opacity: 0.8;
  }
}

/* Problems Grid */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

/* Problem Cards */
.problem-card {
  position: relative;
  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;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transform: translateY(0);
}

.problem-card::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.6s ease;
  z-index: 1;
}

.problem-card:hover::before {
  left: 100%;
}

.problem-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px hsl(var(--primary) / 0.2);
}

/* Problem Header */
.problem-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.problem-number {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  line-height: 1;
}

.problem-code {
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: hsl(var(--accent));
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Problem Content */
.problem-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  line-height: 1.4;
  position: relative;
  z-index: 2;
}

.problem-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.problem-category {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
  position: relative;
  z-index: 2;
}

/* Staggered Animation Delays */
.problem-card-1 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards; }
.problem-card-2 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards; }
.problem-card-3 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards; }
.problem-card-4 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards; }
.problem-card-5 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards; }
.problem-card-6 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards; }
.problem-card-7 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards; }
.problem-card-8 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards; }
.problem-card-9 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards; }
.problem-card-10 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.0s forwards; }
.problem-card-11 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s forwards; }
.problem-card-12 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards; }
.problem-card-13 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s forwards; }
.problem-card-14 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s forwards; }
.problem-card-15 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards; }
.problem-card-16 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.6s forwards; }
.problem-card-17 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.7s forwards; }
.problem-card-18 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s forwards; }
.problem-card-19 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.9s forwards; }
.problem-card-20 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.0s forwards; }
.problem-card-21 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.1s forwards; }
.problem-card-22 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.2s forwards; }
.problem-card-23 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.3s forwards; }
.problem-card-24 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.4s forwards; }
.problem-card-25 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.5s forwards; }
.problem-card-26 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.6s forwards; }
.problem-card-27 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.7s forwards; }
.problem-card-28 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.8s forwards; }
.problem-card-29 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.9s forwards; }
.problem-card-30 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 3.0s forwards; }

/* Animation Classes */
.problems-title,
.problems-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.problems-title {
  animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}

.problems-subtitle {
  animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.problems-section.animate .problems-title,
.problems-section.animate .problems-subtitle,
.problems-section.animate .problem-card {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design for Problems */
@media (max-width: 768px) {
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .problem-card {
    padding: 1.5rem;
  }
  
  .problem-number {
    font-size: 1.5rem;
  }
  
  .problem-title {
    font-size: 1.125rem;
  }
  
  .problem-shape-1,
  .problem-shape-2,
  .problem-shape-3,
  .problem-shape-4 {
    display: none;
  }
  
  /* Mobile Table Optimizations */
  .problems-section table {
    font-size: 0.875rem;
  }
  
  .problems-section th,
  .problems-section td {
    padding: 0.75rem 0.5rem;
  }
  
  .problems-section th:first-child,
  .problems-section td:first-child {
    width: 3rem;
    min-width: 3rem;
  }
  
  .problems-section th:nth-child(2),
  .problems-section td:nth-child(2) {
    width: 5rem;
    min-width: 5rem;
  }
  
  .problems-section th:nth-child(3),
  .problems-section td:nth-child(3) {
    width: 8rem;
    min-width: 8rem;
  }
  
  .problems-section th:last-child,
  .problems-section td:last-child {
    min-width: 12rem;
  }
  
  /* Disable heavy animations on mobile */
  .problem-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .problems-section.animate .problem-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  /* Reduce backdrop blur for better performance */
  .problems-section table {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  
  /* Optimize table rendering on mobile */
  .problems-section table tbody tr {
    will-change: auto;
  }
  
  /* Use transform3d for hardware acceleration */
  .problems-section table {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  
  .problems-section table tbody tr:hover {
    background-color: hsl(var(--muted) / 0.3) !important;
    transition: background-color 0.2s ease;
  }
  
  /* Reduce table complexity for mobile */
  .problems-section table {
    border-collapse: separate;
    border-spacing: 0;
  }
  
  .problems-section table th,
  .problems-section table td {
    border-bottom: 1px solid hsl(var(--border) / 0.5);
  }
  
  .problems-section table tbody tr:last-child td {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  /* Ultra-mobile optimizations */
  .problems-section table {
    font-size: 0.8rem;
  }
  
  .problems-section th,
  .problems-section td {
    padding: 0.5rem 0.25rem;
  }
  
  .problems-section th:first-child,
  .problems-section td:first-child {
    width: 2.5rem;
    min-width: 2.5rem;
  }
  
  .problems-section th:nth-child(2),
  .problems-section td:nth-child(2) {
    width: 4rem;
    min-width: 4rem;
  }
  
  .problems-section th:nth-child(3),
  .problems-section td:nth-child(3) {
    width: 6rem;
    min-width: 6rem;
  }
  
  .problems-section th:last-child,
  .problems-section td:last-child {
    min-width: 10rem;
  }
  
  /* Hide problem shapes completely on very small screens */
  .problems-bg-shapes {
    display: none;
  }
}

/* Instructions Section - Modern Student Design */
.instructions-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  padding: 4rem 0;
  margin: 0;
  min-height: 100vh;
}

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

/* Modern Hexagonal Grid Layout */
.instructions-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

/* Full Width Modern Grid */
.instructions-cards-grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
  padding: 0 2rem;
  margin: 0;
  position: relative;
  z-index: 2;
}

.instruction-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
}

.instruction-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
  background-size: 300% 100%;
  animation: gradientFlow 3s ease infinite;
}

.instruction-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.instruction-card:hover::after {
  opacity: 1;
}

.instruction-card:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.instruction-card .card-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  animation: iconBounce 2s ease-in-out infinite;
}

.instruction-card .card-content {
  position: relative;
  z-index: 2;
}

.instruction-card .card-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
  z-index: 3;
}

.instruction-card .card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.instruction-card .card-description {
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.instruction-card .card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.instruction-card .card-tag {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(78, 205, 196, 0.2));
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.instruction-card .card-tag:hover {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

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

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

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .instructions-cards-grid-full {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .instruction-card {
    padding: 2rem 1.5rem;
  }
  
  .instruction-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
  }
  
  .instruction-card .card-title {
    font-size: 1.3rem;
  }
  
  .instruction-card .card-description {
    font-size: 0.95rem;
  }
  
  .instruction-card .card-badge {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
    top: -10px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .instructions-section {
    padding: 3rem 0;
  }
  
  .instructions-cards-grid-full {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem 1rem;
  }
  
  .instruction-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .instruction-card .card-title {
    font-size: 1.2rem;
  }
  
  .instruction-card .card-description {
    font-size: 0.9rem;
  }
  
  .instruction-card .card-badge {
    width: 35px;
    height: 35px;
    font-size: 0.7rem;
    top: -8px;
    right: 10px;
  }
}

.instruction-card-1 .card-badge {
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.2), 
    rgba(255, 107, 107, 0.1));
  color: #ff6b6b;
  border-color: rgba(255, 107, 107, 0.3);
}

.instruction-card-2 {
  border-color: rgba(78, 205, 196, 0.3);
}

.instruction-card-2 .card-badge {
  background: linear-gradient(135deg, 
    rgba(78, 205, 196, 0.2), 
    rgba(78, 205, 196, 0.1));
  color: #4ecdc4;
  border-color: rgba(78, 205, 196, 0.3);
}

.instruction-card-3 {
  border-color: rgba(69, 183, 209, 0.3);
}

.instruction-card-3 .card-badge {
  background: linear-gradient(135deg, 
    rgba(69, 183, 209, 0.2), 
    rgba(69, 183, 209, 0.1));
  color: #45b7d1;
  border-color: rgba(69, 183, 209, 0.3);
}

.instruction-card-4 {
  border-color: rgba(255, 193, 7, 0.3);
}

.instruction-card-4 .card-badge {
  background: linear-gradient(135deg, 
    rgba(255, 193, 7, 0.2), 
    rgba(255, 193, 7, 0.1));
  color: #ffc107;
  border-color: rgba(255, 193, 7, 0.3);
}

.instruction-card-5 {
  border-color: rgba(156, 39, 176, 0.3);
}

.instruction-card-5 .card-badge {
  background: linear-gradient(135deg, 
    rgba(156, 39, 176, 0.2), 
    rgba(156, 39, 176, 0.1));
  color: #9c27b0;
  border-color: rgba(156, 39, 176, 0.3);
}

.instruction-card-6 {
  border-color: rgba(76, 175, 80, 0.3);
}

.instruction-card-6 .card-badge {
  background: linear-gradient(135deg, 
    rgba(76, 175, 80, 0.2), 
    rgba(76, 175, 80, 0.1));
  color: #4caf50;
  border-color: rgba(76, 175, 80, 0.3);
}

/* Responsive Design for 3x2 Cards */
@media (max-width: 1024px) {
  .instructions-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .instructions-cards-grid-full {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding: 0 1.5rem;
  }
  
  .instruction-card {
    padding: 1.5rem;
  }
  
  .instruction-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .instruction-card .card-title {
    font-size: 1.125rem;
  }
  
  .instruction-card .card-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .instructions-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .instructions-cards-grid-full {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .instruction-card {
    padding: 1.25rem;
  }
  
  .instruction-card .card-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .instruction-card .card-title {
    font-size: 1rem;
  }
  
  .instruction-card .card-description {
    font-size: 0.85rem;
  }
  
  .instruction-card .card-badge {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* Background Shapes */
.instructions-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.instruction-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(78, 205, 196, 0.1) 0%, 
    rgba(69, 183, 209, 0.1) 50%, 
    rgba(255, 107, 107, 0.1) 100%);
  animation: instructionFloat 30s ease-in-out infinite;
}

.instruction-shape-1 {
  width: 350px;
  height: 350px;
  top: 5%;
  left: -10%;
  animation-delay: 0s;
}

.instruction-shape-2 {
  width: 250px;
  height: 250px;
  top: 40%;
  right: -8%;
  animation-delay: 10s;
}

.instruction-shape-3 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 15%;
  animation-delay: 20s;
}

.instruction-shape-4 {
  width: 300px;
  height: 300px;
  top: 25%;
  right: 25%;
  animation-delay: 30s;
}

@keyframes instructionFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.2;
  }
  50% { 
    transform: translateY(-50px) rotate(180deg) scale(1.1);
    opacity: 0.4;
  }
}

/* Hero Section */
.instructions-hero {
  position: relative;
  z-index: 2;
}

.instructions-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.instructions-title-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 2px;
  animation: instructionAccentGlow 4s ease-in-out infinite;
}

@keyframes instructionAccentGlow {
  0%, 100% { 
    width: 100px;
    opacity: 1;
  }
  50% { 
    width: 200px;
    opacity: 0.8;
  }
}

/* Timeline Container */
.instructions-timeline {
  position: relative;
  z-index: 2;
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, 
    hsl(var(--primary)) 0%, 
    hsl(var(--accent)) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  animation: timelinePulse 3s ease-in-out infinite;
}

@keyframes timelinePulse {
  0%, 100% { 
    opacity: 0.6;
    transform: translateX(-50%) scaleY(1);
  }
  50% { 
    opacity: 1;
    transform: translateX(-50%) scaleY(1.05);
  }
}

/* Timeline Steps */
.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-step:nth-child(odd) {
  flex-direction: row;
}

.timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-step:nth-child(even) .step-content {
  text-align: right;
}

/* Step Visual */
.step-visual {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 3rem;
}


.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  border: 3px solid hsl(var(--primary) / 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 15;
}

.step-connector {
  width: 4px;
  height: 60px;
  background: linear-gradient(180deg, 
    hsl(var(--primary) / 0.5), 
    hsl(var(--accent) / 0.5));
  margin-top: 1rem;
  border-radius: 2px;
  animation: connectorGlow 2s ease-in-out infinite;
}

@keyframes connectorGlow {
  0%, 100% { 
    opacity: 0.5;
    transform: scaleY(1);
  }
  50% { 
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* Step Content */
.step-content {
  flex: 1;
  max-width: 400px;
  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;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step-content::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.6s ease;
  z-index: 1;
}

.step-content:hover::before {
  left: 100%;
}

.step-content:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px hsl(var(--primary) / 0.2);
}

.step-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 50px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.step-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Rules Section */
.instructions-rules {
  position: relative;
  z-index: 2;
  margin-top: 6rem;
}

.rules-container {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.05) 0%, 
    hsl(var(--accent) / 0.05) 100%);
  border-radius: 30px;
  padding: 4rem 2rem;
  border: 1px solid hsl(var(--primary) / 0.2);
  position: relative;
  overflow: hidden;
}

.rules-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(78, 205, 196, 0.05) 0%, 
    rgba(69, 183, 209, 0.05) 25%, 
    rgba(255, 107, 107, 0.05) 50%, 
    rgba(254, 202, 87, 0.05) 75%, 
    rgba(78, 205, 196, 0.05) 100%);
  background-size: 400% 400%;
  animation: rulesGradientShift 10s ease infinite;
  opacity: 0.5;
}

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

.rules-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.rules-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  color: white;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.rules-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.rules-accent-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  margin: 0 auto;
  border-radius: 2px;
  animation: rulesLineGlow 3s ease-in-out infinite;
}

@keyframes rulesLineGlow {
  0%, 100% { 
    width: 100px;
    opacity: 1;
  }
  50% { 
    width: 150px;
    opacity: 0.8;
  }
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  width: 100% !important;
  max-width: none !important;
}

.rule-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  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;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.rule-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.6s ease;
}

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

.rule-item:hover {
  transform: translateY(-3px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.1),
    0 0 0 1px hsl(var(--primary) / 0.2);
}

.rule-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.rule-item:hover .rule-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rule-text {
  color: hsl(var(--foreground));
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Animation Classes */
.instructions-title,
.instructions-subtitle,
.timeline-step,
.rule-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instructions-section.animate .instructions-title,
.instructions-section.animate .instructions-subtitle,
.instructions-section.animate .timeline-step,
.instructions-section.animate .rule-item {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation Delays */
.timeline-step-1 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards; }
.timeline-step-2 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards; }
.timeline-step-3 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards; }
.timeline-step-4 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards; }
.timeline-step-5 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards; }
.timeline-step-6 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards; }

.rule-item-1 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards; }
.rule-item-2 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards; }
.rule-item-3 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards; }
.rule-item-4 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.0s forwards; }
.rule-item-5 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s forwards; }
.rule-item-6 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards; }
.rule-item-7 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s forwards; }
.rule-item-8 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s forwards; }

/* Responsive Design for Instructions */
@media (max-width: 1024px) {
  .timeline-container::before {
    left: 2rem;
  }
  
  .timeline-step {
    flex-direction: row !important;
    margin-left: 4rem;
  }
  
  .timeline-step .step-content {
    text-align: left !important;
  }
  
  .step-visual {
    margin: 0 2rem 0 0;
  }
}

@media (max-width: 768px) {
  .timeline-container::before {
    display: none;
  }
  
  .timeline-step {
    flex-direction: column !important;
    margin-left: 0;
    text-align: center;
  }
  
  .step-visual {
    margin: 0 0 2rem 0;
  }
  
  .step-connector {
    display: none;
  }
  
  .rules-grid {
    grid-template-columns: 1fr;
  }
  
  .instruction-shape-1,
  .instruction-shape-2,
  .instruction-shape-3,
  .instruction-shape-4 {
    display: none;
  }
}

/* Timeline Section - Modern GSAP-Style Layout */
.timeline-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--secondary) / 0.03) 50%, 
    hsl(var(--background)) 100%);
  padding: 0;
  margin: 0;
}

.timeline-hero {
  margin: 0 !important;
  padding: 0 !important;
}

.timeline-title {
  margin-bottom: 0 !important;
}

.timeline-subtitle {
  margin-top: 0.5rem !important;
  margin-bottom: 0 !important;
}

/* Background Shapes */
.timeline-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.timeline-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(78, 205, 196, 0.08) 0%, 
    rgba(69, 183, 209, 0.08) 50%, 
    rgba(255, 107, 107, 0.08) 100%);
  animation: timelineFloat 25s ease-in-out infinite;
}

.timeline-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.timeline-shape-2 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: -3%;
  animation-delay: 8s;
}

.timeline-shape-3 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: 10%;
  animation-delay: 16s;
}

.timeline-shape-4 {
  width: 180px;
  height: 180px;
  top: 60%;
  right: 20%;
  animation-delay: 24s;
}

@keyframes timelineFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-40px) rotate(180deg) scale(1.05);
    opacity: 0.6;
  }
}

/* Hero Section */
.timeline-hero {
  position: relative;
  z-index: 2;
}

.timeline-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-title-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 2px;
  animation: timelineAccentGlow 3s ease-in-out infinite;
}

@keyframes timelineAccentGlow {
  0%, 100% { 
    width: 120px;
    opacity: 1;
  }
  50% { 
    width: 180px;
    opacity: 0.8;
  }
}

/* Roadmap Container */
.roadmap-container {
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  padding: 0 1rem;
  min-height: 300px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: thin;
  scrollbar-color: hsl(var(--primary) / 0.3) transparent;
  margin-left: calc(-50vw + 50%);
}

/* Custom scrollbar for roadmap */
.roadmap-container::-webkit-scrollbar {
  height: 8px;
}

.roadmap-container::-webkit-scrollbar-track {
  background: transparent;
}

.roadmap-container::-webkit-scrollbar-thumb {
  background: hsl(var(--primary) / 0.3);
  border-radius: 4px;
}

.roadmap-container::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--primary) / 0.5);
}


/* Timeline Nodes */
.timeline-nodes {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 1rem;
  gap: 0.5rem;
  width: 100%;
  height: 400px;
  max-width: none;
  margin: 0 auto;
}


.timeline-set {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 0.5rem;
}


.timeline-gap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 100%;
  position: relative;
}

.gap-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, 
    transparent 0%, 
    hsl(var(--primary) / 0.3) 20%, 
    hsl(var(--primary) / 0.6) 50%, 
    hsl(var(--primary) / 0.3) 80%, 
    transparent 100%);
  border-radius: 1px;
  margin-bottom: 1rem;
}


@keyframes trainMove {
  0% {
    transform: translateX(0);
  }
  70% {
    transform: translateX(-50%);
  }
  85% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Roadmap Timeline Nodes */
.timeline-node.roadmap-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  max-width: calc(12.5% - 0.5rem);
  min-width: 120px;
  margin: 0 0.25rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  padding-top: 2rem;
}

.timeline-node.roadmap-node.animate {
  opacity: 1;
  transform: translateY(0);
}




.node-connector {
  width: 6px;
  height: 80px;
  background: linear-gradient(180deg, 
    hsl(var(--primary) / 0.4), 
    hsl(var(--accent) / 0.4));
  margin-top: 1rem;
  border-radius: 3px;
  animation: nodeConnectorGlow 2.5s ease-in-out infinite;
}

@keyframes nodeConnectorGlow {
  0%, 100% { 
    opacity: 0.6;
    transform: scaleY(1);
  }
  50% { 
    opacity: 1;
    transform: scaleY(1.1);
  }
}

/* Node Content */
.node-content {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: linear-gradient(135deg, 
    hsl(var(--card) / 0.9), 
    hsl(var(--card) / 0.7));
  border: 1px solid hsl(var(--border) / 0.5);
  border-radius: 1rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
  min-height: 200px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 0.5rem;
}

.node-content::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.6s ease;
  z-index: 1;
}

.node-content:hover::before {
  left: 100%;
}

.node-content:hover {
  transform: translateY(-8px) scale(1.03);
  background: rgba(255, 255, 255, 0.08);
  border-color: hsl(var(--primary) / 0.5);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px hsl(var(--primary) / 0.2);
}

.content-badge {
  display: inline-block;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.15), 
    hsl(var(--accent) / 0.15));
  border: 1px solid hsl(var(--primary) / 0.4);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: hsl(var(--primary));
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 2;
}

.content-date {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.8rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.content-title {
  font-size: 1rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.6rem;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  word-wrap: break-word;
  hyphens: auto;
}

.content-description {
  font-size: 0.8rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.3;
  position: relative;
  z-index: 2;
  word-wrap: break-word;
  hyphens: auto;
}

/* Animation Classes */
.timeline-title,
.timeline-subtitle,
.timeline-node {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-section.animate .timeline-title,
.timeline-section.animate .timeline-subtitle,
.timeline-section.animate .timeline-node {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation Delays */
.timeline-node-1 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards; }
.timeline-node-2 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards; }
.timeline-node-3 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards; }
.timeline-node-4 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards; }
.timeline-node-5 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards; }
.timeline-node-6 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards; }
.timeline-node-7 { animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards; }
.timeline-node-8 { animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards; }

/* Responsive Design for Timeline */
@media (max-width: 1024px) {
  .timeline-track::before {
    left: 2rem;
  }
  
  .timeline-node {
    flex-direction: row !important;
    margin-left: 5rem;
  }
  
  .timeline-node .node-content {
    text-align: left !important;
  }
  
  .node-visual {
    margin: 0 2rem 0 0;
  }
  
  
}

/* Medium screens - reduce spacing */
@media (max-width: 1200px) {
  .roadmap-container {
    padding: 0 0.5rem;
  }
  
  .timeline-nodes {
    gap: 0.25rem;
    height: 380px;
    padding: 0 1rem;
  }
  
  .timeline-node.roadmap-node {
    flex: 1;
    max-width: calc(12.5% - 0.25rem);
    min-width: 120px;
    margin: 0 0.125rem;
  }
  
  .node-content {
    padding: 1rem 0.5rem;
    min-height: 180px;
    height: auto;
  }
  
  .content-title {
    font-size: 0.9rem;
  }
  
  .content-description {
    font-size: 0.75rem;
  }
  
}

/* Small screens - stack vertically */
@media (max-width: 768px) {
  .roadmap-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    margin-left: 0;
    padding: 0 1rem;
    min-height: 300px;
    overflow-x: visible;
  }
  
  .timeline-nodes {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    min-width: auto;
    height: auto;
    padding: 3rem 0;
    width: 100%;
    animation: none;
  }
  
  
  .timeline-set {
    width: 100%;
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .timeline-node.roadmap-node {
    flex: none;
    max-width: 100%;
    width: 100%;
    margin: 0;
    height: auto;
    justify-content: flex-start;
  }
  
  
  
  
  .node-content {
    height: auto;
    min-height: 180px;
    padding: 1.5rem;
    margin-bottom: 0;
    overflow: visible;
  }
  
  .content-title {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  
  .content-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .timeline-shape-1,
  .timeline-shape-2,
  .timeline-shape-3,
  .timeline-shape-4 {
    display: none;
  }
}

/* FAQ Section - Modern GSAP-Style Layout */
.faq-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--secondary) / 0.05) 50%, 
    hsl(var(--background)) 100%);
  padding: 1rem 0;
  margin: 0;
}

/* Background Shapes */
.faq-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.faq-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(78, 205, 196, 0.06) 0%, 
    rgba(69, 183, 209, 0.06) 50%, 
    rgba(255, 107, 107, 0.06) 100%);
  animation: faqFloat 30s ease-in-out infinite;
}

.faq-shape-1 {
  width: 200px;
  height: 200px;
  top: 5%;
  left: -3%;
  animation-delay: 0s;
}

.faq-shape-2 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: -2%;
  animation-delay: 6s;
}

.faq-shape-3 {
  width: 180px;
  height: 180px;
  bottom: 30%;
  left: 5%;
  animation-delay: 12s;
}

.faq-shape-4 {
  width: 120px;
  height: 120px;
  top: 50%;
  right: 15%;
  animation-delay: 18s;
}

.faq-shape-5 {
  width: 160px;
  height: 160px;
  bottom: 10%;
  right: 5%;
  animation-delay: 24s;
}

@keyframes faqFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.2;
  }
  50% { 
    transform: translateY(-30px) rotate(180deg) scale(1.1);
    opacity: 0.4;
  }
}

/* Hero Section */
.faq-hero {
  position: relative;
  z-index: 2;
}

.faq-title-wrapper {
  position: relative;
  margin-bottom: 2rem;
}

.faq-title-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border-radius: 2px;
  animation: faqAccentGlow 3s ease-in-out infinite;
}

@keyframes faqAccentGlow {
  0%, 100% { 
    width: 120px;
    opacity: 1;
  }
  50% { 
    width: 180px;
    opacity: 0.8;
  }
}

/* FAQ Container */
.faq-container {
  position: relative;
  z-index: 2;
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  align-items: start;
  width: 100% !important;
  max-width: none !important;
}

/* FAQ Items */
.faq-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-card {
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.05) 0%, rgba(0, 255, 255, 0.05) 50%, rgba(255, 255, 0, 0.05) 100%);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 0, 255, 0.2);
  border-radius: 25px;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: fit-content;
  box-shadow: 
    0 8px 32px rgba(255, 0, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.05), 
    transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.faq-card:hover::before {
  left: 100%;
}

.faq-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: linear-gradient(135deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 255, 255, 0.1) 50%, rgba(255, 255, 0, 0.1) 100%);
  border-color: rgba(255, 0, 255, 0.4);
  box-shadow: 
    0 20px 40px rgba(255, 0, 255, 0.2),
    0 0 0 2px rgba(0, 255, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* FAQ Header */
.faq-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.faq-icon {
  flex-shrink: 0;
}

.faq-icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.15), 
    hsl(var(--accent) / 0.15));
  border: 2px solid hsl(var(--primary) / 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-icon-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    hsl(var(--primary) / 0.1), 
    hsl(var(--accent) / 0.1));
  border-radius: 50%;
  animation: faqIconRotate 6s linear infinite;
  z-index: 1;
}

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

.faq-icon-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: hsl(var(--primary));
  position: relative;
  z-index: 2;
}

.faq-button {
  flex: 1;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff !important;
  line-height: 1.4;
  transition: color 0.3s ease;
  text-shadow: 0 0 8px rgba(0, 245, 255, 0.3);
}

.faq-button:hover .faq-question {
  color: #00f5ff !important;
  text-shadow: 0 0 12px rgba(0, 245, 255, 0.6);
}

.faq-arrow {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-plus,
.faq-minus {
  position: absolute;
  font-size: 1.5rem;
  font-weight: 300;
  color: #ffffff !important;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(0, 245, 255, 0.4);
}

.faq-minus {
  opacity: 0;
  transform: rotate(180deg);
}

.faq-card.active .faq-plus {
  opacity: 0;
  transform: rotate(180deg);
}

.faq-card.active .faq-minus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq-card.active .faq-icon-circle {
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.25), 
    hsl(var(--accent) / 0.25));
  border-color: hsl(var(--primary) / 0.5);
  transform: scale(1.1);
}

/* FAQ Content */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
}

.faq-card.active .faq-content {
  max-height: 200px;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #e0e0e0 !important;
  line-height: 1.6;
  font-size: 0.95rem;
  text-shadow: 0 0 5px rgba(0, 245, 255, 0.2);
}

/* Animation Classes */
.faq-title,
.faq-subtitle,
.faq-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-section.animate .faq-title,
.faq-section.animate .faq-subtitle,
.faq-section.animate .faq-item {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation Delays */
.faq-item-1 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards; }
.faq-item-2 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards; }
.faq-item-3 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards; }
.faq-item-4 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards; }
.faq-item-5 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards; }
.faq-item-6 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s forwards; }
.faq-item-7 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards; }
.faq-item-8 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards; }
.faq-item-9 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s forwards; }
.faq-item-10 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.0s forwards; }
.faq-item-11 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s forwards; }
.faq-item-12 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s forwards; }
.faq-item-13 { animation: slideInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s forwards; }

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .faq-card {
    border-radius: 15px;
  }
  
  .faq-header {
    padding: 1.25rem;
    gap: 0.75rem;
  }
  
  .faq-icon-circle {
    width: 40px;
    height: 40px;
  }
  
  .faq-icon-text {
    font-size: 1rem;
  }
  
  .faq-question {
    font-size: 1rem;
  }
  
  .faq-answer {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .faq-shape-1,
  .faq-shape-2,
  .faq-shape-3,
  .faq-shape-4,
  .faq-shape-5 {
    display: none;
  }
}

@media (max-width: 480px) {
  .faq-grid {
    gap: 1rem;
  }
  
  .faq-header {
    padding: 1rem;
    gap: 0.5rem;
  }
  
  .faq-icon-circle {
    width: 35px;
    height: 35px;
  }
  
  .faq-icon-text {
    font-size: 0.9rem;
  }
  
  .faq-question {
    font-size: 0.95rem;
  }
  
  .faq-answer {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.85rem;
  }
}

/* Enhanced 3D Drone Animation Styles */
.drone-container {
  position: fixed;
  top: 50px;
  right: -200px;
  z-index: 1000;
  pointer-events: none;
  animation: drone3DEntry 4s ease-out forwards;
  perspective: 1200px;
}

/* Drone carrying navbar elements */
.drone-cargo {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgba(20, 20, 30, 0.9) 50%, 
    rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 245, 255, 0.1);
  opacity: 0;
  animation: cargoReveal 0.5s ease-out 1.5s forwards, cargoDrop 0.8s ease-in 2.5s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.drone-cargo::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(0, 245, 255, 0.3);
}

.drone-cargo::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 12px;
  background: linear-gradient(to top, rgba(0, 245, 255, 0.6), rgba(0, 245, 255, 0.2));
  animation: cableGlow 2s ease-in-out infinite;
}

.cargo-logo {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: white;
  font-weight: bold;
}

.cargo-text {
  font-size: 0.7rem;
  color: #00f5ff;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 245, 255, 0.5);
}

.cargo-nav {
  display: flex;
  gap: 0.3rem;
}

.cargo-nav-item {
  width: 20px;
  height: 20px;
  background: rgba(0, 245, 255, 0.2);
  border: 1px solid rgba(0, 245, 255, 0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: #00f5ff;
}

.drone {
  position: relative;
  width: 120px;
  height: 80px;
  margin-bottom: 40px;
  transform-style: preserve-3d;
  animation: drone3DRotate 0.1s linear infinite;
}

.drone-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(20deg) rotateY(-15deg) rotateZ(5deg);
  width: 60px;
  height: 35px;
  background: linear-gradient(135deg, #0a0a0a, #2a2a2a, #1a1a1a, #0a0a0a);
  border-radius: 15px;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(0, 245, 255, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.15),
    inset 0 -2px 0 rgba(0, 0, 0, 0.4),
    inset 2px 0 0 rgba(0, 245, 255, 0.1),
    inset -2px 0 0 rgba(0, 128, 255, 0.1);
  border: 2px solid rgba(0, 245, 255, 0.4);
}

.drone-body::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(5deg) rotateY(2deg);
  width: 45px;
  height: 25px;
  background: linear-gradient(135deg, #1a1a1a, #3a3a3a, #2a2a2a);
  border-radius: 12px;
  box-shadow: 
    inset 0 2px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3),
    0 0 15px rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.2);
}

.drone-body::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(10deg) rotateY(-5deg);
  width: 35px;
  height: 20px;
  background: linear-gradient(135deg, #0f0f0f, #2f2f2f);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.drone-propeller {
  position: absolute;
  width: 35px;
  height: 4px;
  background: linear-gradient(90deg, #00f5ff, #0080ff, #00f5ff, #00aaff);
  border-radius: 3px;
  animation: propeller3DSpin 0.03s linear infinite;
  box-shadow: 
    0 0 20px rgba(0, 245, 255, 0.9),
    0 0 40px rgba(0, 245, 255, 0.5),
    0 0 60px rgba(0, 245, 255, 0.2);
  transform-style: preserve-3d;
  border: 1px solid rgba(0, 245, 255, 0.3);
}

.drone-propeller::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #00f5ff, #ffffff);
  border-radius: 1px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.drone-propeller.top-left {
  top: 8px;
  left: 8px;
  transform-origin: center;
  transform: rotateX(25deg) rotateY(-20deg) rotateZ(10deg);
}

.drone-propeller.top-right {
  top: 8px;
  right: 8px;
  transform-origin: center;
  transform: rotateX(25deg) rotateY(20deg) rotateZ(-10deg);
}

.drone-propeller.bottom-left {
  bottom: 8px;
  left: 8px;
  transform-origin: center;
  transform: rotateX(-25deg) rotateY(-20deg) rotateZ(10deg);
}

.drone-propeller.bottom-right {
  bottom: 8px;
  right: 8px;
  transform-origin: center;
  transform: rotateX(-25deg) rotateY(20deg) rotateZ(-10deg);
}

.drone-cable {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) rotateX(20deg) rotateY(-5deg);
  width: 4px;
  height: 40px;
  background: linear-gradient(180deg, #888, #555, #222, #111);
  border-radius: 3px;
  box-shadow: 
    0 0 12px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(0, 245, 255, 0.1);
  border: 1px solid rgba(0, 245, 255, 0.2);
}

.drone-cable::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotateX(10deg);
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #00f5ff, #0080ff, #00aaff);
  border-radius: 50%;
  box-shadow: 
    0 0 15px rgba(0, 245, 255, 0.8),
    0 0 30px rgba(0, 245, 255, 0.4),
    0 0 45px rgba(0, 245, 255, 0.2);
  animation: cableGlow 2s ease-in-out infinite;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.drone-cable::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.3), transparent);
  border-radius: 50%;
  animation: cableAura 3s ease-in-out infinite;
}

/* 3D Drone Additional Effects */
.drone::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(15deg) rotateY(-10deg);
  width: 45px;
  height: 25px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(0, 128, 255, 0.1));
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
  z-index: -1;
  animation: droneAura 3s ease-in-out infinite;
}

.drone::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(15deg) rotateY(-10deg);
  width: 50px;
  height: 30px;
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.05), rgba(0, 128, 255, 0.05));
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
  z-index: -2;
  animation: droneAura 4s ease-in-out infinite reverse;
}

@keyframes droneAura {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) rotateX(15deg) rotateY(-10deg) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) rotateX(15deg) rotateY(-10deg) scale(1.1);
  }
}

/* Modern Dark Navigation Bar Styles */
.nav-glass {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.95) 0%, 
    rgba(20, 20, 30, 0.9) 50%, 
    rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 245, 255, 0.1),
    0 0 0 1px rgba(0, 245, 255, 0.05),
    inset 0 1px 0 rgba(0, 245, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  top: -200px;
  left: 100vw;
  z-index: 50;
  overflow: visible;
  width: 100% !important;
  animation: navBarDrop 3s ease-out 2.5s forwards;
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Navbar 3D Effects */
.nav-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 245, 255, 0.05), 
    rgba(0, 128, 255, 0.03),
    rgba(0, 245, 255, 0.05));
  border-radius: 0 0 20px 20px;
  z-index: -1;
  animation: navbarGlow 4s ease-in-out infinite;
}

.nav-glass::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, 
    rgba(0, 245, 255, 0.1), 
    rgba(0, 128, 255, 0.05),
    rgba(0, 245, 255, 0.1));
  border-radius: 25px;
  z-index: -2;
  animation: navbarAura 3s ease-in-out infinite;
}

@keyframes navbarGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

@keyframes navbarAura {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.05);
  }
}

/* Small Countdown Banner */
.countdown-banner {
  background: linear-gradient(135deg, 
    rgba(0, 245, 255, 0.15), 
    rgba(0, 128, 255, 0.15));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 245, 255, 0.3);
  padding: 0.5rem 0;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
}

.countdown-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.countdown-banner-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 245, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.countdown-banner-timer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.countdown-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 245, 255, 0.4);
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  min-width: 35px;
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.2);
}

.countdown-banner-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: #00f5ff;
  line-height: 1;
  text-shadow: 0 0 8px rgba(0, 245, 255, 0.5);
}

.countdown-banner-label {
  font-size: 0.6rem;
  font-weight: 500;
  color: rgba(0, 245, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  line-height: 1;
  margin-top: 0.125rem;
}

.countdown-banner-separator {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(0, 245, 255, 0.7);
  margin: 0 0.125rem;
  text-shadow: 0 0 5px rgba(0, 245, 255, 0.3);
}

/* Navigation Container - Full Width */
.nav-glass .container {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 2rem !important;
}

/* Mobile Header Layout Fixes */
@media (max-width: 1024px) {
  .nav-glass .container {
    padding: 0 1rem !important;
  }
  
  .nav-glass .flex {
    gap: 1rem;
  }
}

/* Professional Mobile Header Styles */
.mobile-header {
  display: none;
  width: 100%;
  padding: 0.75rem 0;
}

.mobile-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.mobile-kit-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mobile-logo-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-logo-fallback {
  display: none;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  border-radius: 50%;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
}

.mobile-college-name {
  flex: 1;
  text-align: center;
  padding: 0 0.75rem;
  min-width: 0;
}

.mobile-right-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.mobile-pdc-logo {
  display: flex;
  align-items: center;
}

.mobile-pdc-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-college-text {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff !important;
  text-shadow: 0 0 8px rgba(0, 245, 255, 0.5), 0 0 16px rgba(0, 245, 255, 0.3);
  background: linear-gradient(135deg, #ffffff, #00f5ff, #ffffff) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  display: block;
  word-break: break-word;
  animation: collegeNameGlow 3s ease-in-out infinite;
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 1001;
  position: relative;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .nav-glass .container {
    padding: 0 1rem !important;
  }
  
  /* Countdown banner mobile styles */
  .countdown-banner-content {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  
  .countdown-banner-text {
    font-size: 0.7rem;
  }
  
  .countdown-banner-timer {
    gap: 0.25rem;
  }
  
  .countdown-banner-item {
    min-width: 30px;
    padding: 0.2rem 0.4rem;
  }
  
  .countdown-banner-number {
    font-size: 0.8rem;
  }
  
  .countdown-banner-label {
    font-size: 0.55rem;
  }
  
  .countdown-banner-separator {
    font-size: 0.7rem;
  }
  
  /* Hide desktop layout on mobile */
  .hidden.lg\:flex {
    display: none !important;
  }
  
  /* Show mobile layout */
  .mobile-header {
    display: block !important;
  }
  
  .lg\:hidden {
    display: none !important;
  }
  
  /* Mobile header single row layout */
  .mobile-header-top {
    gap: 0.5rem;
  }
  
  .mobile-college-text {
    font-size: 0.75rem;
    line-height: 1.1;
  }
}

/* Ultra-small mobile screens */
@media (max-width: 480px) {
  .mobile-header {
    padding: 0.5rem 0;
  }
  
  .mobile-logo-image {
    width: 45px;
    height: 45px;
  }
  
  .mobile-logo-fallback {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  
  .mobile-pdc-image {
    width: 35px;
    height: 35px;
  }
  
  .mobile-college-text {
    font-size: 0.7rem;
    line-height: 1.1;
  }
  
  .mobile-menu-btn {
    width: 2.25rem;
    height: 2.25rem;
  }
  
  .mobile-right-section {
    gap: 0.5rem;
  }
  
  .mobile-college-text {
    font-size: 0.65rem;
    line-height: 1.0;
  }
  
  .mobile-header-top {
    gap: 0.25rem;
  }
}

/* Mobile header styles */
.mobile-college-text {
  color: hsl(var(--foreground));
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-menu-btn {
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn:hover {
  background: rgba(0, 0, 0, 0.15);
}

.hamburger-line {
  background: hsl(var(--foreground));
}

/* Mobile countdown styles */
.countdown-item {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.countdown-number {
  color: hsl(var(--foreground));
}

.countdown-label {
  color: hsl(var(--muted-foreground));
}

/* Footer Container - Full Width */
.footer-section .container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 2rem;
}

/* Logo Text Responsive */
.nav-glass .flex .flex-col .text-xl {
  font-size: 1.125rem;
  line-height: 1.2;
}

/* Responsive Navigation Container */
@media (max-width: 1024px) {
  .nav-glass .container .flex {
    gap: 2rem;
  }
  
  .nav-glass .flex .flex-col .text-xl {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .nav-glass .container .flex {
    padding: 0 1rem;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .nav-glass .flex .flex-col .text-xl {
    font-size: 0.875rem;
  }
  
  .nav-glass .flex .flex-col .text-xs {
    font-size: 0.7rem;
  }
}

@media (max-width: 640px) {
  .nav-glass .container .flex {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 0.75rem;
  }
  
  .nav-glass .flex .flex-col .text-xl {
    font-size: 0.8rem;
    text-align: center;
  }
}

/* Responsive Footer Container */
@media (max-width: 768px) {
  .footer-section .container {
    padding: 0 1rem;
  }
}

.nav-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    rgba(255, 255, 255, 0.1), 
    rgba(255, 255, 255, 0.3), 
    transparent);
  animation: shimmer 3s ease-in-out infinite;
}

.nav-glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.05), 
    transparent);
  animation: slide 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes slide {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Enhanced 3D Drone Animation Keyframes */
@keyframes drone3DEntry {
  0% {
    right: -200px;
    top: 50px;
    transform: rotateY(0deg) rotateX(0deg) scale(0.8);
    opacity: 1;
  }
  15% {
    right: 50px;
    top: 100px;
    transform: rotateY(-10deg) rotateX(8deg) scale(0.9);
    opacity: 1;
  }
  30% {
    right: 150px;
    top: 80px;
    transform: rotateY(-20deg) rotateX(5deg) scale(1.0);
    opacity: 1;
  }
  45% {
    right: 250px;
    top: 60px;
    transform: rotateY(-30deg) rotateX(-5deg) scale(1.0);
    opacity: 1;
  }
  60% {
    right: 350px;
    top: 40px;
    transform: rotateY(-40deg) rotateX(10deg) scale(0.95);
    opacity: 0.9;
  }
  75% {
    right: 450px;
    top: 20px;
    transform: rotateY(-50deg) rotateX(-10deg) scale(0.9);
    opacity: 0.7;
  }
  90% {
    right: 550px;
    top: 10px;
    transform: rotateY(-60deg) rotateX(0deg) scale(0.8);
    opacity: 0.4;
  }
  100% {
    right: 650px;
    top: 0px;
    transform: rotateY(-70deg) rotateX(0deg) scale(0.7);
    opacity: 0;
  }
}

@keyframes cargoReveal {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.8);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes cargoDrop {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) translateY(10px) scale(0.95);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(50px) scale(0.8);
  }
}

@keyframes drone3DRotate {
  0% { transform: rotateY(0deg) rotateX(0deg); }
  25% { transform: rotateY(5deg) rotateX(2deg); }
  50% { transform: rotateY(0deg) rotateX(0deg); }
  75% { transform: rotateY(-5deg) rotateX(-2deg); }
  100% { transform: rotateY(0deg) rotateX(0deg); }
}

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

@keyframes cableGlow {
  0%, 100% {
    box-shadow: 
      0 0 15px rgba(0, 245, 255, 0.8),
      0 0 30px rgba(0, 245, 255, 0.4),
      0 0 45px rgba(0, 245, 255, 0.2);
    transform: translateX(-50%) scale(1);
  }
  50% {
    box-shadow: 
      0 0 25px rgba(0, 245, 255, 1),
      0 0 50px rgba(0, 245, 255, 0.6),
      0 0 75px rgba(0, 245, 255, 0.3);
    transform: translateX(-50%) scale(1.2);
  }
}

@keyframes cableAura {
  0%, 100% {
    opacity: 0.3;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1.3);
  }
}

@keyframes navBarDrop {
  0% {
    top: -200px;
    left: 100vw;
    opacity: 0;
    transform: translateX(0) translateY(0) rotateY(0deg) scale(0.8);
  }
  10% {
    opacity: 0;
    left: 100vw;
    top: -200px;
    transform: translateX(0) translateY(0) rotateY(0deg) scale(0.8);
  }
  20% {
    opacity: 0.3;
    left: 80vw;
    top: -150px;
    transform: translateX(0) translateY(0) rotateY(5deg) scale(0.85);
  }
  30% {
    opacity: 0.5;
    left: 60vw;
    top: -100px;
    transform: translateX(0) translateY(0) rotateY(10deg) scale(0.9);
  }
  40% {
    opacity: 0.7;
    left: 40vw;
    top: -50px;
    transform: translateX(0) translateY(0) rotateY(15deg) scale(0.95);
  }
  50% {
    opacity: 0.8;
    left: 20vw;
    top: -20px;
    transform: translateX(0) translateY(0) rotateY(18deg) scale(1.0);
  }
  60% {
    opacity: 0.9;
    left: 0;
    top: -10px;
    transform: translateX(0) translateY(0) rotateY(20deg) scale(1.0);
  }
  70% {
    opacity: 1;
    left: 0;
    top: -5px;
    transform: translateX(0) translateY(0) rotateY(15deg) scale(1.0);
  }
  80% {
    opacity: 1;
    left: 0;
    top: -2px;
    transform: translateX(0) translateY(0) rotateY(5deg) scale(1.0);
  }
  88% {
    opacity: 1;
    left: 0;
    top: 2px;
    transform: translateX(0) translateY(0) rotateY(2deg) scale(1.0);
  }
  96% {
    opacity: 1;
    left: 0;
    top: -1px;
    transform: translateX(0) translateY(0) rotateY(1deg) scale(1.0);
  }
  100% {
    opacity: 1;
    left: 0;
    top: 0;
    transform: translateX(0) translateY(0) rotateY(0deg) scale(1.0);
  }
}

@keyframes collegeNameGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5), 0 0 20px rgba(0, 245, 255, 0.3);
  }
  50% {
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.8), 0 0 30px rgba(0, 245, 255, 0.5);
  }
}

/* Navigation Links */
.nav-link {
  position: relative;
  padding: 0.75rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 0.875rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  z-index: 1;
  text-shadow: 0 0 5px rgba(0, 245, 255, 0.1);
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 245, 255, 0.15), 
    rgba(0, 128, 255, 0.1),
    rgba(0, 245, 255, 0.1));
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.875rem;
  transform: scale(0.8);
  z-index: -1;
}

.nav-link::after {
  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 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.875rem;
  z-index: -1;
}

.nav-link:hover {
  color: #00f5ff;
  transform: translateY(-2px) scale(1.02);
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
}

.nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
  box-shadow: 
    0 4px 20px rgba(0, 245, 255, 0.3),
    inset 0 1px 0 rgba(0, 245, 255, 0.2);
}

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

.nav-link:active {
  transform: translateY(-1px) scale(1.01);
}

.nav-link:focus {
  outline: 2px solid rgba(0, 245, 255, 0.5);
  outline-offset: 2px;
}

/* CTA Button */
.nav-cta-button {
  position: relative;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #00f5ff, #0080ff);
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0.875rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 245, 255, 0.4);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* White layer animation removed */

.nav-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 245, 255, 0.6);
  filter: brightness(1.1);
}

/* White layer hover animation removed */

.nav-cta-button:active {
  transform: translateY(-1px);
}

/* Login Button */
.nav-login-button {
  position: relative;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  overflow: hidden;
  text-shadow: 0 0 5px rgba(0, 245, 255, 0.1);
}

/* White layer animation removed */

.nav-login-button:hover {
  color: #00f5ff;
  border-color: rgba(0, 245, 255, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 245, 255, 0.2);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

/* White layer hover animation removed */

.nav-login-button:active {
  transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 245, 255, 0.3);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 1001;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 245, 255, 0.1);
}

.mobile-menu-btn:hover {
  background: rgba(0, 245, 255, 0.1);
  border-color: rgba(0, 245, 255, 0.5);
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}


.hamburger-line {
  width: 1.25rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
  box-shadow: 0 0 3px rgba(0, 245, 255, 0.2);
}

.hamburger-line:not(:last-child) {
  margin-bottom: 0.25rem;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(0.375rem) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-0.375rem) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 1.5rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  max-height: 85vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}


.mobile-menu.active {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Ensure mobile menu doesn't cover hero content */
@media (max-width: 1024px) {
  .mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 70vh;
  }
}

/* Ensure mobile menu is visible on small screens */
@media (max-width: 1024px) {
  .mobile-menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    border-radius: 0 0 1rem 1rem;
    max-height: 90vh;
  }
  
  .mobile-menu-header {
    padding: 0.75rem 1rem;
  }
  
  .mobile-menu-kit-logo {
    width: 35px;
    height: 35px;
  }
  
  .mobile-menu-kit-fallback {
    width: 35px;
    height: 35px;
  }
  
  .mobile-menu-pdc-logo {
    width: 30px;
    height: 30px;
  }
  
  .mobile-menu-close-btn {
    width: 32px;
    height: 32px;
  }
  
  .mobile-nav-link {
    padding: 0.75rem 1.25rem;
    margin: 0.25rem 0.75rem;
    font-size: 0.95rem;
  }
  
  .mobile-theme-toggle-btn,
  .mobile-login-button,
  .mobile-cta-button {
    width: 100%;
    margin: 0.25rem 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .mobile-theme-toggle-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: hsl(var(--foreground));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .mobile-theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }
  
  .mobile-login-button {
    background: transparent;
    border: 1px solid hsl(var(--primary) / 0.3);
    color: hsl(var(--primary));
  }
  
  .mobile-login-button:hover {
    background: hsl(var(--primary) / 0.1);
    border-color: hsl(var(--primary) / 0.5);
  }
  
  .mobile-cta-button {
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    border: none;
    color: white;
    font-weight: 600;
  }
  
  .mobile-cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
  }
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: hsl(var(--muted-foreground));
  font-weight: 500;
  font-size: 1rem;
  border-radius: 0.875rem;
  margin: 0.25rem 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.15), 
    hsl(var(--accent) / 0.1),
    hsl(var(--primary) / 0.1));
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.875rem;
  transform: scale(0.8);
  z-index: -1;
}

.mobile-nav-link::after {
  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.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0.875rem;
  z-index: -1;
}

.mobile-nav-link:hover {
  color: hsl(var(--foreground));
  transform: translateX(8px) scale(1.02);
  text-shadow: 0 0 20px hsl(var(--primary) / 0.3);
}

.mobile-nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
  box-shadow: 
    0 4px 20px hsl(var(--primary) / 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.mobile-cta-button {
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px hsl(var(--primary) / 0.3);
  margin: 0.25rem auto;
  display: block;
  width: fit-content;
}

.mobile-cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px hsl(var(--primary) / 0.4);
}

.mobile-login-button {
  padding: 0.875rem 2rem;
  background: transparent;
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin: 0.25rem auto;
  display: block;
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.mobile-login-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.1), hsl(var(--accent) / 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.875rem;
}

.mobile-login-button:hover {
  color: hsl(var(--primary));
  border-color: hsl(var(--primary) / 0.5);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px hsl(var(--primary) / 0.2);
}

.mobile-login-button:hover::before {
  opacity: 1;
}

/* Responsive adjustments for navigation */
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
}

@media (max-width: 1023px) {
  .lg\:hidden { 
    display: flex !important; 
    width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  .hidden.lg\:flex { display: none !important; }
}

@media (max-width: 1023px) {
  .mobile-menu-btn {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
 
  
  .nav-glass .container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Scroll effect for navigation */
.nav-glass.scrolled {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%, 
    rgba(15, 23, 42, 0.9) 50%, 
    rgba(15, 23, 42, 0.95) 100%);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.nav-glass.scrolled::before {
  animation-duration: 2s;
}

.nav-glass.scrolled::after {
  animation-duration: 3s;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.1) contrast(1.1);
  border-radius: 49%;
}

.nav-glass .group:hover .logo-image {
  transform: scale(1.1) rotate(5deg);
  filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.nav-glass .group:active .logo-image {
  transform: scale(1.05) rotate(2deg);
}

.nav-glass .group:hover .logo-container {
  transform: scale(1.05);
}

/* PDC Logo Styles */
.pdc-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pdc-logo-container:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.pdc-logo {
  height: 60px;
  width: 60px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1) contrast(1);
  border-radius: 50%;
}

/* Mobile PDC Logo - Next to KIT Logo */
.pdc-logo-container-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pdc-logo-container-mobile:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.pdc-logo-mobile {
  height: 70px;
  width: 70px;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
}

/* Responsive logo sizing */
@media (max-width: 640px) {
  .logo-container {
    width: 40px;
    height: 40px;
  }
  
  .logo-image {
    width: 40px;
    height: 40px;
  }
  
  .nav-glass .group span {
    font-size: 0.875rem;
  }
  
  .pdc-logo-container {
    width: 50px;
    height: 50px;
  }
  
  .pdc-logo {
    height: 40px;
    width: 40px;
  }
  
  .pdc-logo-container-mobile {
    width: 40px;
    height: 40px;
    margin-left: 0.25rem;
  }
  
  .pdc-logo-mobile {
    height: 40px;
    width: 40px;
  }
}

/* Theme Toggle Button Styles */
.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.theme-toggle-btn:active {
  transform: translateY(0);
}

.theme-toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun-icon,
.moon-icon {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: hsl(var(--foreground));
}

.sun-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.moon-icon {
  opacity: 0;
  transform: rotate(180deg) scale(0.8);
}

/* Light theme icon states */

/* Mobile Theme Toggle Button */
.mobile-theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: hsl(var(--foreground));
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.25rem auto;
  width: fit-content;
}

.mobile-theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.mobile-theme-toggle-btn .theme-toggle-icon {
  width: 20px;
  height: 20px;
}

.theme-toggle-text {
  transition: all 0.3s ease;
}

/* Smooth theme transitions */
* {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}


/* Modern Footer Styles */
.footer-section {
  background: linear-gradient(135deg, 
    hsl(var(--background)) 0%, 
    hsl(var(--secondary) / 0.8) 50%, 
    hsl(var(--background)) 100%);
  border-top: 1px solid hsl(var(--border) / 0.5);
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1rem 0;
  margin: 0;
}

/* Ultra-Compact Footer - No Legal Links, Minimal Spacing */
.compact-footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  border-top: 2px solid #8b5cf6;
  padding: 1.5rem 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 -5px 20px rgba(139, 92, 246, 0.3);
  min-height: 120px;
}

.compact-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.compact-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #8b5cf6, #a855f7, #8b5cf6, transparent);
  animation: footerScan 3s ease-in-out infinite;
  z-index: 2;
}

@keyframes footerScan {
  0%, 100% {
    opacity: 0;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(100%);
  }
}

.footer-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.footer-decoration-1 {
  width: 8px;
  height: 8px;
  background: #8b5cf6;
  border-radius: 50%;
  top: 20%;
  left: 10%;
  animation: floatUp 4s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

.footer-decoration-2 {
  width: 6px;
  height: 6px;
  background: #a855f7;
  border-radius: 50%;
  top: 60%;
  right: 15%;
  animation: floatDown 3s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.6);
}

.footer-decoration-3 {
  width: 4px;
  height: 4px;
  background: #8b5cf6;
  border-radius: 50%;
  top: 40%;
  left: 80%;
  animation: floatSide 5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(139, 92, 246, 0.6);
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
}

@keyframes floatDown {
  0%, 100% {
    transform: translateY(0px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(15px);
    opacity: 1;
  }
}

@keyframes floatSide {
  0%, 100% {
    transform: translateX(0px);
    opacity: 0.6;
  }
  50% {
    transform: translateX(-15px);
    opacity: 1;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  gap: 3rem;
  min-height: 120px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: start;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 350px;
}

.footer-brand:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.brand-logo {
  flex-shrink: 0;
}

.logo-img {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-circle {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  animation: logoPulse 2s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
}

.logo-circle:hover {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 6px 25px rgba(168, 85, 247, 0.6);
}

.logo-circle::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8b5cf6, #a855f7, #8b5cf6);
  border-radius: 10px;
  z-index: -1;
  animation: logoBorder 3s linear infinite;
}

.brand-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #8b5cf6;
  margin: 0 0 0.25rem 0;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
  animation: brandGlow 3s ease-in-out infinite alternate;
}

.brand-info p {
  font-size: 0.9rem;
  color: #a855f7;
  margin: 0;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
  animation: subtitleFloat 2.5s ease-in-out infinite alternate;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-self: center;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
}

.footer-links:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.footer-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #8b5cf6;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
  animation: titleGlow 3s ease-in-out infinite alternate;
  position: relative;
  padding-bottom: 0.25rem;
}

.footer-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

.footer-links a {
  color: #8b5cf6;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.1rem 0;
  position: relative;
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
  animation: linkGlow 4s ease-in-out infinite alternate;
  line-height: 1.2;
}

.footer-links a:hover {
  color: #a855f7;
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.8);
  transform: translateY(-2px);
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-self: end;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 350px;
}

.footer-contact:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.footer-contact .footer-section-title {
  align-self: center;
  margin-bottom: 0.5rem;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.85rem;
  color: #8b5cf6;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  animation: contactGlow 3s ease-in-out infinite alternate;
  line-height: 1.3;
}

.contact-box:hover {
  transform: translateY(-2px) scale(1.02);
  color: #a855f7;
  text-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
  animation: contactPulse 0.5s ease-in-out;
}

.contact-box::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #8b5cf6, #a855f7);
  transition: height 0.3s ease;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
}

.contact-box:hover::before {
  height: 100%;
}

.contact-icon {
  font-size: 1.1rem;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.6));
  animation: iconFloat 2s ease-in-out infinite alternate;
}

.contact-box:hover .contact-icon {
  transform: scale(1.2) rotate(360deg);
  filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.8));
}

/* Gaming Animations */
@keyframes contactGlow {
  0% {
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
  }
  100% {
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
  }
}

@keyframes contactPulse {
  0% {
    transform: translateY(-2px) scale(1.02);
  }
  50% {
    transform: translateY(-2px) scale(1.05);
  }
  100% {
    transform: translateY(-2px) scale(1.02);
  }
}

@keyframes iconFloat {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-3px);
  }
}

@keyframes linkGlow {
  0% {
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
  }
  100% {
    text-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
  }
}

@keyframes brandGlow {
  0% {
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
  }
  100% {
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
  }
}

@keyframes subtitleFloat {
  0% {
    transform: translateY(0px);
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
  }
  100% {
    transform: translateY(-2px);
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.6);
  }
}

@keyframes logoPulse {
  0% {
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  }
  100% {
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
  }
}

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

@keyframes copyrightGlow {
  0% {
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
  }
  100% {
    text-shadow: 0 0 12px rgba(139, 92, 246, 0.6);
  }
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.6);
  }
  100% {
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
  }
}

.footer-bottom {
  text-align: center;
  padding-top: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: #8b5cf6;
  margin: 0;
  font-weight: 500;
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.4);
  animation: copyrightGlow 4s ease-in-out infinite alternate;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .footer-content {
    gap: 1.5rem;
  }
  
  .footer-links {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .compact-footer {
    padding: 1rem 0;
    min-height: 100px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .footer-brand {
    justify-self: center;
    padding: 0.75rem;
    max-width: 100%;
  }
  
  .footer-links {
    justify-self: center;
    gap: 0.5rem;
    align-items: center;
  }
  
  .footer-contact {
    justify-self: center;
    align-items: center;
    padding: 0.75rem;
    min-width: auto;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .contact-box {
    font-size: 0.8rem;
    padding: 0.6rem 0;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 0 0.75rem;
    gap: 0.75rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  .contact-box {
    font-size: 0.75rem;
    padding: 0.5rem 0;
  }
  
  .footer-bottom p {
    font-size: 0.65rem;
  }
}

/* Background Shapes */
.footer-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, 
    rgba(78, 205, 196, 0.05) 0%, 
    rgba(69, 183, 209, 0.05) 50%, 
    rgba(255, 107, 107, 0.05) 100%);
  animation: footerFloat 20s ease-in-out infinite;
}

.footer-shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.footer-shape-2 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: -3%;
  animation-delay: 5s;
}

.footer-shape-3 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: 10%;
  animation-delay: 10s;
}

.footer-shape-4 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 20%;
  animation-delay: 15s;
}

@keyframes footerFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: translateY(-20px) rotate(180deg) scale(1.1);
    opacity: 0.6;
  }
}

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

/* Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-icon {
  flex-shrink: 0;
  position: relative;
}

.footer-logo-image {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  object-fit: contain;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.footer-logo-image:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.4);
}

.footer-logo-fallback {
  position: absolute;
  top: 0;
  left: 0;
}

.footer-logo-circle {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.footer-logo-circle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(255, 255, 255, 0.1), 
    rgba(255, 255, 255, 0.05));
  border-radius: 16px;
  animation: footerLogoRotate 8s linear infinite;
  z-index: 1;
}

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

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 2;
}

.footer-brand-title {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1.2;
}

.footer-brand-subtitle {
  font-size: 0.9rem;
  color: hsl(var(--muted-foreground));
  margin: 0;
  font-weight: 500;
}

.footer-description {
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-size: 1rem;
  max-width: 400px;
}

/* Social Links */
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: hsl(var(--muted-foreground));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-social-link::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.6s ease;
  z-index: 1;
}

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

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: hsl(var(--primary) / 0.3);
  color: hsl(var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Links Grid */

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 200px;
}

/* Mobile Footer Responsive Styles */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .footer-brand {
    text-align: center;
    align-items: center;
  }
  
  .footer-description {
    text-align: center;
    max-width: 100%;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  
  .footer-column {
    padding-left: 0;
    align-items: center;
  }
  
  .footer-column-title {
    text-align: center;
  }
  
  .footer-column-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-link-list {
    align-items: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .footer-contact-item {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 1.5rem 0;
  }
  
  
  .footer-column {
    gap: 1rem;
  }
  
  .footer-column-title {
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .footer-contact-item {
    font-size: 0.9rem;
  }
}

.footer-column-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin: 0;
  position: relative;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.footer-link:hover {
  color: hsl(var(--primary));
  padding-left: 12px;
}

.footer-link:hover::before {
  width: 8px;
}

/* Contact Info */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  color: hsl(var(--foreground));
  transform: translateX(4px);
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: hsl(var(--primary));
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background: rgba(255, 255, 255, 0.1);
  border-color: hsl(var(--primary) / 0.3);
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid hsl(var(--border) / 0.3);
  padding: 2rem 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Mobile Footer Bottom Responsive */
@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-bottom {
    padding: 1.5rem 0;
  }
  
  .footer-copyright p {
    font-size: 0.85rem;
  }
  
  .footer-built {
    font-size: 0.8rem;
  }
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-copyright p {
  margin: 0;
  color: hsl(var(--muted-foreground));
  font-size: 0.9rem;
}

.footer-built {
  font-size: 0.85rem;
}

.footer-heart {
  color: #ff6b6b;
  animation: footerHeartBeat 2s ease-in-out infinite;
}

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

.footer-legal {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-legal-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: hsl(var(--primary));
  transition: width 0.3s ease;
}

.footer-legal-link:hover {
  color: hsl(var(--primary));
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
}

@media (max-width: 768px) {
  .footer-main {
    padding: 3rem 0;
    gap: 2.5rem;
  }
  
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-shape-1,
  .footer-shape-2,
  .footer-shape-3,
  .footer-shape-4 {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 2rem 0;
  }
  
  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-description {
    text-align: center;
    max-width: 100%;
  }
  
  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }
}


/* Button styles */
button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

button:focus {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

/* Link styles */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: hsl(var(--primary));
}

/* Form styles */
input, textarea, select {
  font-family: inherit;
  background-color: hsl(var(--input));
  border: 1px solid hsl(var(--border));
  border-radius: calc(var(--radius) - 2px);
  padding: 0.5rem 0.75rem;
  color: hsl(var(--foreground));
  width: 100%;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

/* Card styles */
.card {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid hsl(var(--border));
}

th {
  background-color: hsl(var(--muted));
  font-weight: 600;
}

tr:hover {
  background-color: hsl(var(--muted) / 0.5);
}

/* Accordion styles */
.accordion-item {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.accordion-trigger {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
}

.accordion-content {
  padding: 0 1.5rem 1.5rem;
  color: hsl(var(--muted-foreground));
}

/* Timeline styles */
.timeline-line {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-primary);
}

.timeline-dot {
  position: absolute;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: hsl(var(--primary));
  border-radius: 50%;
  border: 4px solid hsl(var(--background));
  box-shadow: var(--glow-primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .text-5xl {
    font-size: 2.5rem;
  }
  
  .text-7xl {
    font-size: 3.5rem;
  }
  
  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Custom Registration Pop-up Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-container {
  position: relative;
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  transform: scale(0.8) translateY(50px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active .popup-container {
  transform: scale(1) translateY(0);
}

.popup-content {
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.95) 0%, 
    rgba(30, 41, 59, 0.95) 50%, 
    rgba(15, 23, 42, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.popup-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.1) 0%, 
    rgba(59, 130, 246, 0.05) 50%, 
    rgba(245, 158, 11, 0.1) 100%);
  border-radius: 24px;
  z-index: 1;
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem 2rem;
  position: relative;
  z-index: 2;
}

.popup-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, 
    hsl(var(--primary) / 0.2), 
    hsl(var(--accent) / 0.2));
  border: 1px solid hsl(var(--primary) / 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  animation: popupIconPulse 2s ease-in-out infinite;
}

@keyframes popupIconPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 hsl(var(--primary) / 0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 0 8px hsl(var(--primary) / 0.1);
  }
}

.popup-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: hsl(var(--foreground));
  transform: scale(1.1);
}

.popup-body {
  padding: 0 2rem 2rem 2rem;
  text-align: center;
  position: relative;
  z-index: 2;
}

.popup-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.popup-message {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.6;
}

.popup-date {
  color: hsl(var(--accent));
  font-weight: 600;
  background: linear-gradient(135deg, 
    hsl(var(--accent)), 
    hsl(var(--primary)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.popup-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1rem 0.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.countdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(139, 92, 246, 0.1), 
    rgba(59, 130, 246, 0.05));
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.countdown-item:hover::before {
  opacity: 1;
}

.countdown-item:hover {
  transform: translateY(-2px);
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.countdown-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}

.countdown-label {
  display: block;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.popup-footer {
  padding: 0 2rem 2rem 2rem;
  position: relative;
  z-index: 2;
}

.popup-button {
  width: 100%;
  background: linear-gradient(135deg, 
    hsl(var(--primary)), 
    hsl(var(--accent)));
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.popup-button:hover::before {
  left: 100%;
}

.popup-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.popup-button:active {
  transform: translateY(0);
}

/* Responsive Design for Pop-up */
@media (max-width: 768px) {
  .popup-container {
    max-width: 400px;
    width: 95%;
  }
  
  .popup-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
  }
  
  .popup-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  
  .popup-footer {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  
  .popup-title {
    font-size: 1.5rem;
  }
  
  .popup-message {
    font-size: 1rem;
  }
  
  .popup-countdown {
    gap: 0.75rem;
  }
  
  .countdown-item {
    padding: 0.75rem 0.25rem;
  }
  
  .countdown-number {
    font-size: 1.25rem;
  }
  
  .countdown-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .popup-countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

/* Light Theme Support for Pop-up */

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--accent)));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, hsl(var(--primary) / 0.9), hsl(var(--accent) / 0.9));
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Mobile responsiveness for back to top button */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
    
    /* Ultra-mobile header optimizations */
    .logo-container {
        width: 45px;
        height: 45px;
    }
    
    .logo-image {
        width: 45px;
        height: 45px;
    }
    
    .nav-glass .flex .flex-col .text-xl {
        font-size: 0.75rem;
        line-height: 1.1;
    }
    
    .mobile-menu-btn {
        width: 2rem;
        height: 2rem;
    }
    
    .mobile-menu-header {
        padding: 0.5rem 0.75rem;
    }
    
    .mobile-menu-kit-logo {
        width: 30px;
        height: 30px;
    }
    
    .mobile-menu-kit-fallback {
        width: 30px;
        height: 30px;
    }
    
    .mobile-menu-pdc-logo {
        width: 25px;
        height: 25px;
    }
    
    .mobile-menu-close-btn {
        width: 28px;
        height: 28px;
    }
}

/* Gaming Environment Background */
.gaming-environment {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Circuit Board Pattern */
.circuit-board {
  position: absolute;
  width: 100%;
  height: 100%;
}

.circuit-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
  opacity: 0.4;
  animation: circuitFlow 8s linear infinite;
}

.line-1 {
  top: 20%;
  left: 0;
  width: 100%;
  height: 2px;
  animation-delay: 0s;
}

.line-2 {
  top: 0;
  left: 30%;
  width: 2px;
  height: 100%;
  animation-delay: 2s;
}

.line-3 {
  bottom: 30%;
  left: 0;
  width: 100%;
  height: 2px;
  animation-delay: 4s;
}

.line-4 {
  top: 0;
  right: 25%;
  width: 2px;
  height: 100%;
  animation-delay: 6s;
}

/* Floating Code Blocks */
.floating-code {
  position: absolute;
  width: 100%;
  height: 100%;
}

.code-block {
  position: absolute;
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  color: #8b5cf6;
  opacity: 0.6;
  animation: codeFloat 12s ease-in-out infinite;
}

.cb-1 { top: 15%; left: 10%; animation-delay: 0s; }
.cb-2 { top: 25%; right: 20%; animation-delay: 2.4s; }
.cb-3 { top: 60%; left: 15%; animation-delay: 4.8s; }
.cb-4 { bottom: 30%; right: 15%; animation-delay: 7.2s; }
.cb-5 { bottom: 20%; left: 25%; animation-delay: 9.6s; }

/* Gaming HUD Elements */
.hud-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hud-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid #8b5cf6;
  opacity: 0.7;
}

.corner-tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: 20px;
  right: 20px;
  border-left: none;
  border-bottom: none;
}

.corner-bl {
  bottom: 20px;
  left: 20px;
  border-right: none;
  border-top: none;
}

.corner-br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

/* Gaming Dashboard Header */
.dashboard-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gaming-hud-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hud-brackets {
  font-family: 'Orbitron', monospace;
  font-size: 4rem;
  color: #8b5cf6;
  font-weight: bold;
  animation: bracketPulse 2s ease-in-out infinite;
}

.dashboard-title {
  font-family: 'Bungee', cursive;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowShift 4s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  letter-spacing: 2px;
}

.dashboard-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hud-status-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.status-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 10px;
}

.status-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  color: #a855f7;
  margin-bottom: 0.5rem;
}

.status-value {
  font-family: 'Bungee', cursive;
  font-size: 1.2rem;
  color: #8b5cf6;
  font-weight: bold;
}

/* Dashboard Layout */
.dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
  align-items: start;
  min-height: 600px;
}

/* Rules Command Center */
.rules-command-center {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.command-header {
  text-align: center;
  margin-bottom: 3rem;
}

.command-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.command-title h3 {
  font-family: 'Righteous', cursive;
  font-size: 2.2rem;
  color: #ff6b35;
  text-shadow: 0 2px 10px rgba(255, 107, 53, 0.4);
}

.command-icon {
  font-size: 2rem;
  animation: iconPulse 2s ease-in-out infinite;
}

.command-subtitle {
  font-family: 'Rajdhani', sans-serif;
  color: #ffa726;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Perfect 3x3 Grid Layout - 100% Page Width with Solid Colors */
.rules-radar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 2rem;
  justify-items: stretch;
  align-items: stretch;
  position: relative;
  background: rgba(108, 92, 231, 0.1);
  border: 2px solid #6c5ce7;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(108, 92, 231, 0.3);
}

.rules-radar::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(108, 92, 231, 0.05);
  animation: rotate 20s linear infinite;
  z-index: 0;
}

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

/* Solid color particles for clean effect */
.rules-radar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, #6c5ce7, transparent),
    radial-gradient(2px 2px at 40px 70px, #a29bfe, transparent),
    radial-gradient(1px 1px at 90px 40px, #fd79a8, transparent),
    radial-gradient(1px 1px at 130px 80px, #fdcb6e, transparent),
    radial-gradient(2px 2px at 160px 30px, #6c5ce7, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

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

/* Rule Cards - Perfect Grid Fill with Student Magic */
.rule-node {
  width: 100%;
  height: 100%;
  min-height: 200px;
  cursor: pointer;
  animation: slideInUp 0.6s ease-out forwards;
  opacity: 0;
  margin: 0;
  position: relative;
  display: flex;
  align-items: stretch;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rule-node:hover {
  cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="14" fill="none" stroke="%236c5ce7" stroke-width="2"/><circle cx="16" cy="16" r="8" fill="%236c5ce7" opacity="0.3"/><circle cx="16" cy="16" r="4" fill="%236c5ce7"/></svg>'), auto;
  transform: translateY(-8px) scale(1.05);
  z-index: 10;
}

.node-content {
  background: rgba(108, 92, 231, 0.25);
  border: 2px solid #6c5ce7;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(108, 92, 231, 0.3);
}

.node-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #6c5ce7;
  border-radius: 20px;
  padding: 2px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  z-index: -1;
  opacity: 0.8;
}

.node-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s;
}

.node-content:hover {
  transform: scale(1.05);
  background: rgba(108, 92, 231, 0.25);
  box-shadow: 0 20px 40px rgba(108, 92, 231, 0.4);
  border-color: #a29bfe;
  animation: bounce 0.6s ease-in-out;
}

.node-content:hover::after {
  left: 100%;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: scale(1.05); }
  40% { transform: scale(1.08); }
  60% { transform: scale(1.06); }
}

.node-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: #6c5ce7;
  filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.8));
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

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

.rule-node:hover .node-icon {
  transform: scale(1.2) rotate(10deg);
  color: #a29bfe;
  filter: drop-shadow(0 0 15px rgba(162, 155, 254, 1));
  animation: none;
}

.node-title {
  font-family: 'Righteous', cursive;
  color: #ff6b35;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  line-height: 1.1;
  font-weight: 700;
}

.rule-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #6c5ce7;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Righteous', cursive;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
  border: 3px solid #ffffff;
  z-index: 10;
  animation: pulse 2s infinite;
  transition: all 0.3s ease;
}

.rule-node:hover .rule-number {
  transform: scale(1.2) rotate(360deg);
  background: #a29bfe;
  box-shadow: 0 6px 20px rgba(162, 155, 254, 0.6);
  animation: none;
}

.node-desc {
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease;
}

.rule-node:hover .node-desc {
  transform: scale(1.05);
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 1);
}

/* When there's no title, center the description */
.node-content:not(:has(.node-title)) .node-desc {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* Fallback for browsers that don't support :has() - all rules now have no titles */
.node-1 .node-desc,
.node-2 .node-desc,
.node-3 .node-desc,
.node-4 .node-desc,
.node-5 .node-desc,
.node-6 .node-desc,
.node-7 .node-desc,
.node-8 .node-desc,
.node-9 .node-desc,
.node-10 .node-desc {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  margin-top: 0.5rem;
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
  line-height: 1.2;
  transition: all 0.3s ease;
}

/* Animation delays for staggered effect */
.node-1 { animation-delay: 0.1s; }
.node-2 { animation-delay: 0.2s; }
.node-3 { animation-delay: 0.3s; }
.node-4 { animation-delay: 0.4s; }
.node-5 { animation-delay: 0.5s; }
.node-6 { animation-delay: 0.6s; }
.node-7 { animation-delay: 0.7s; }
.node-8 { animation-delay: 0.8s; }
.node-9 { animation-delay: 0.9s; }
.node-10 { animation-delay: 1.0s; }

/* Slide in animation */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Rewards Achievement Gallery */
.rewards-gallery {
  position: relative;
  margin-top: 0;
  padding-top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.gallery-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.gallery-title h3 {
  font-family: 'Righteous', cursive;
  font-size: 2.2rem;
  color: #6c5ce7;
  text-shadow: 0 2px 10px rgba(108, 92, 231, 0.4);
  margin: 0;
  padding: 1rem 0;
  white-space: nowrap;
}

.gallery-icon {
  font-size: 2rem;
  animation: iconPulse 2s ease-in-out infinite;
}

.gallery-subtitle {
  font-family: 'Rajdhani', sans-serif;
  color: #a29bfe;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Achievement Cards Grid */
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.achievement-card {
  position: relative;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.15), rgba(162, 155, 254, 0.05));
  border: 2px solid rgba(108, 92, 231, 0.3);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  animation: achievementReveal 0.8s ease-out forwards;
  opacity: 0;
  overflow: hidden;
}

.achievement-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: rgba(108, 92, 231, 0.6);
  box-shadow: 0 20px 40px rgba(108, 92, 231, 0.3);
}

.achievement-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
}

.achievement-1 .achievement-badge,
.achievement-6 .achievement-badge {
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  color: white;
}

.achievement-2 .achievement-badge,
.achievement-5 .achievement-badge {
  background: linear-gradient(45deg, #a29bfe, #6c5ce7);
  color: white;
}

.achievement-3 .achievement-badge {
  background: linear-gradient(45deg, #fd79a8, #e84393);
  color: white;
}

.achievement-4 .achievement-badge {
  background: linear-gradient(45deg, #00cec9, #55a3ff);
  color: white;
}

.achievement-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: achievementFloat 3s ease-in-out infinite;
}

.achievement-name {
  font-family: 'Righteous', cursive;
  color: #6c5ce7;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.achievement-desc {
  font-family: 'Rajdhani', sans-serif;
  color: #a29bfe;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  font-weight: 500;
}

.achievement-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.achievement-tag {
  background: rgba(108, 92, 231, 0.2);
  color: #a29bfe;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(108, 92, 231, 0.3);
}

.achievement-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: achievementGlow 4s ease-in-out infinite;
}

.achievement-card:hover .achievement-glow {
  opacity: 1;
}

/* Animation delays for achievements */
.achievement-1 { animation-delay: 0.1s; }
.achievement-2 { animation-delay: 0.2s; }
.achievement-3 { animation-delay: 0.3s; }
.achievement-4 { animation-delay: 0.4s; }
.achievement-5 { animation-delay: 0.5s; }
.achievement-6 { animation-delay: 0.6s; }

/* Gaming Stats HUD */
.gaming-stats-hud {
  margin-top: 4rem;
}

.hud-panel {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-display {
  text-align: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.05));
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  transition: all 0.3s ease;
  animation: statReveal 1s ease-out forwards;
  opacity: 0;
  min-width: 120px;
}

.stat-display:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  animation: statIconPulse 2s ease-in-out infinite;
}

.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: bold;
  color: #8b5cf6;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.stat-label {
  font-family: 'Rajdhani', sans-serif;
  color: #c084fc;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hud-panel .stat-display:nth-child(1) { animation-delay: 0.2s; }
.hud-panel .stat-display:nth-child(2) { animation-delay: 0.4s; }
.hud-panel .stat-display:nth-child(3) { animation-delay: 0.6s; }

/* Gaming Dashboard Animations */
@keyframes circuitFlow {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

@keyframes codeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(-5px) rotate(-5deg); }
  75% { transform: translateY(-20px) rotate(3deg); }
}

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

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

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

@keyframes radarPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

@keyframes nodeReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes achievementReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) rotateX(90deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes achievementFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-5px) rotate(2deg); }
  66% { transform: translateY(-2px) rotate(-2deg); }
}

@keyframes achievementGlow {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

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

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

/* Responsive Design for Gaming Dashboard */
@media (max-width: 1200px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .rules-radar {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1.2rem;
    padding: 1.5rem;
  }
  
  .rule-node {
    min-height: 180px;
  }
}

@media (max-width: 768px) {
  .dashboard-title {
    font-size: 3rem;
  }
  
  .hud-brackets {
    font-size: 2.5rem;
  }
  
  .hud-status-bar {
    flex-direction: column;
    gap: 1rem;
  }
  
  .rules-radar {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 1rem;
    padding: 1.2rem;
  }
  
  .rule-node {
    min-height: 160px;
  }
  
  .node-title {
    font-size: 1rem;
  }
  
  .rule-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
    top: -8px;
    right: -8px;
  }
  
  .node-desc {
    font-size: 2.2rem;
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
  }
  
  .achievement-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
  }
  
  .gallery-title h3 {
    font-size: 1.8rem;
  }
  
  .hud-panel {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .dashboard-layout {
    padding: 1rem;
    gap: 2rem;
  }
  
  .dashboard-title {
    font-size: 2.5rem;
  }
  
  .hud-brackets {
    font-size: 2rem;
  }
  
  .rules-radar {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 1fr);
    gap: 0.8rem;
    padding: 1rem;
    max-width: 100%;
  }
  
  .rule-node {
    min-height: 140px;
  }
  
  .node-title {
    font-size: 0.9rem;
  }
  
  .rule-number {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    top: -6px;
    right: -6px;
  }
  
  .node-desc {
    font-size: 2rem;
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
  }
  
  .achievement-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  
  .gallery-title h3 {
    font-size: 1.5rem;
  }
  
  .achievement-card {
    padding: 1rem;
  }
  
  .hud-panel {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 320px) {
  .rules-radar {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 1fr);
    gap: 0.6rem;
    padding: 0.8rem;
    max-width: 100%;
  }
  
  .rule-node {
    min-height: 120px;
  }
  
  .node-title {
    font-size: 0.8rem;
  }
  
  .rule-number {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    top: -5px;
    right: -5px;
  }
  
  .node-desc {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
  }
}

/* ===== INTERACTIVE Q&A CHAT SECTION ===== */
.qa-chat-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 20%, #330066 40%, #6600cc 60%, #9900ff 80%, #0a0a0a 100%);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* Chat Environment Background */
.chat-environment {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* FAQ Unique Background Elements */
.qa-chat-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
  animation: faqBackgroundPulse 8s ease-in-out infinite;
  z-index: 1;
}

.qa-chat-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, transparent 40%, rgba(255, 0, 255, 0.03) 50%, transparent 60%),
    linear-gradient(-45deg, transparent 40%, rgba(0, 255, 255, 0.03) 50%, transparent 60%);
  background-size: 100px 100px, 80px 80px;
  animation: faqPatternMove 20s linear infinite;
  z-index: 1;
}

/* Floating Chat Bubbles */
.floating-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* FAQ Floating Geometric Shapes */
.faq-floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.faq-shape {
  position: absolute;
  opacity: 0.1;
  animation: faqShapeFloat 15s ease-in-out infinite;
}

.faq-shape-1 {
  top: 10%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  border-radius: 50%;
  animation-delay: 0s;
}

.faq-shape-2 {
  top: 20%;
  right: 15%;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ffff00, #ff00ff);
  transform: rotate(45deg);
  animation-delay: 3s;
}

.faq-shape-3 {
  bottom: 30%;
  left: 20%;
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #00ffff, #ffff00);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 6s;
}

.faq-shape-4 {
  top: 60%;
  right: 25%;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #ff00ff, #00ffff);
  border-radius: 20%;
  animation-delay: 9s;
}

.faq-shape-5 {
  bottom: 15%;
  right: 10%;
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #ffff00, #ff00ff);
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation-delay: 12s;
}

.chat-bubble {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: bubbleFloat 8s ease-in-out infinite;
}

.bubble-1 { top: 10%; left: 5%; animation-delay: 0s; }
.bubble-2 { top: 20%; right: 10%; animation-delay: 1.3s; }
.bubble-3 { top: 60%; left: 8%; animation-delay: 2.6s; }
.bubble-4 { bottom: 25%; right: 12%; animation-delay: 3.9s; }
.bubble-5 { top: 45%; left: 85%; animation-delay: 5.2s; }
.bubble-6 { bottom: 45%; left: 25%; animation-delay: 6.5s; }

/* Digital Rain Effect */
.digital-rain {
  position: absolute;
  width: 100%;
  height: 100%;
}

.rain-drop {
  position: absolute;
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  color: #8b5cf6;
  opacity: 0.7;
  animation: rainFall 6s linear infinite;
}

.drop-1 { left: 10%; animation-delay: 0s; }
.drop-2 { left: 25%; animation-delay: 1s; }
.drop-3 { left: 40%; animation-delay: 2s; }
.drop-4 { left: 60%; animation-delay: 3s; }
.drop-5 { left: 75%; animation-delay: 4s; }
.drop-6 { left: 90%; animation-delay: 5s; }

/* Network Lines */
.network-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.network-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
  opacity: 0.3;
  animation: networkPulse 4s ease-in-out infinite;
}

.line-1 {
  top: 30%;
  left: 0;
  width: 100%;
  height: 1px;
  animation-delay: 0s;
}

.line-2 {
  top: 0;
  left: 70%;
  width: 1px;
  height: 100%;
  animation-delay: 1.3s;
}

.line-3 {
  bottom: 40%;
  left: 0;
  width: 100%;
  height: 1px;
  animation-delay: 2.6s;
}

/* Chat Header */
.chat-header {
  text-align: center;
  margin-bottom: 3rem;
}

.chat-status-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 25px;
  padding: 0.8rem 2rem;
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}

.status-dot.online {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-text {
  font-family: 'Rajdhani', sans-serif;
  color: #10b981;
  font-weight: 600;
  font-size: 1rem;
}

.typing-indicator {
  display: flex;
  gap: 3px;
}

.typing-indicator span {
  width: 4px;
  height: 4px;
  background: #8b5cf6;
  border-radius: 50%;
  animation: typingDots 1.4s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

.chat-title {
  font-family: 'Bungee', cursive;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffeaa7);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbowShift 4s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.chat-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  margin-bottom: 2rem;
}

.quick-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.quick-btn {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  padding: 0.8rem 1.5rem;
  color: #c084fc;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.quick-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.2));
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

/* Chat Conversation */
.chat-conversation {
  max-width: 900px;
  margin: 0 auto;
}

.chat-container {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  max-height: 600px;
  overflow-y: auto;
}

/* Custom Scrollbar */
.chat-container::-webkit-scrollbar {
  width: 6px;
}

.chat-container::-webkit-scrollbar-track {
  background: rgba(139, 92, 246, 0.1);
  border-radius: 3px;
}

.chat-container::-webkit-scrollbar-thumb {
  background: rgba(139, 92, 246, 0.5);
  border-radius: 3px;
}

.chat-container::-webkit-scrollbar-thumb:hover {
  background: rgba(139, 92, 246, 0.7);
}

/* Chat Messages */
.chat-message {
  display: flex;
  margin-bottom: 1.5rem;
  animation: messageSlide 0.5s ease-out;
}

.question-msg {
  justify-content: flex-end;
}

.answer-msg {
  justify-content: flex-start;
}

.message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 0.8rem;
}

.student-avatar {
  background: linear-gradient(135deg, #ff6b6b, #ffa726);
  border: 2px solid rgba(255, 107, 107, 0.3);
  order: 2;
}

.bot-avatar {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border: 2px solid rgba(139, 92, 246, 0.3);
  order: 1;
}

.message-bubble {
  max-width: 70%;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  position: relative;
  animation: bubblePop 0.3s ease-out;
}

.question-bubble {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(255, 167, 38, 0.1));
  border: 1px solid rgba(255, 107, 107, 0.3);
  order: 1;
  border-bottom-right-radius: 5px;
}

.answer-bubble {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.3);
  order: 2;
  border-bottom-left-radius: 5px;
}

.message-text {
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff !important;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.message-time {
  font-family: 'Orbitron', monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.question-msg .message-time {
  text-align: left;
}

/* Typing Dots Animation */
.typing-dots {
  display: flex;
  gap: 4px;
  margin-bottom: 0.5rem;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: #8b5cf6;
  border-radius: 50%;
  animation: typingDots 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

/* Chat Input Area */
.chat-input-area {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.input-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.chat-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 25px;
  padding: 1rem 1.5rem;
  color: #ffffff !important;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  outline: none;
  transition: all 0.3s ease;
}

.chat-input:focus {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.chat-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.send-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.quick-suggestions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.suggestion-tag {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 15px;
  padding: 0.5rem 1rem;
  color: #e0c3fc;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.suggestion-tag:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-2px);
}

/* Chat Animations */
@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(5deg); }
  50% { transform: translateY(-5px) rotate(-5deg); }
  75% { transform: translateY(-20px) rotate(3deg); }
}

/* FAQ Background Animations */
@keyframes faqBackgroundPulse {
  0%, 100% { 
    opacity: 0.3;
    transform: scale(1);
  }
  50% { 
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes faqPatternMove {
  0% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(20px) translateY(-10px); }
  50% { transform: translateX(-10px) translateY(20px); }
  75% { transform: translateX(15px) translateY(5px); }
  100% { transform: translateX(0) translateY(0); }
}

@keyframes faqShapeFloat {
  0%, 100% { 
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.1;
  }
  25% { 
    transform: translateY(-20px) rotate(90deg) scale(1.1);
    opacity: 0.2;
  }
  50% { 
    transform: translateY(-10px) rotate(180deg) scale(0.9);
    opacity: 0.15;
  }
  75% { 
    transform: translateY(-30px) rotate(270deg) scale(1.05);
    opacity: 0.25;
  }
}

@keyframes rainFall {
  0% { transform: translateY(-100vh); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(100vh); opacity: 0; }
}

@keyframes networkPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

@keyframes statusPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes typingDots {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-10px); }
}

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

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

/* Responsive Design for Chat Section */
@media (max-width: 768px) {
  .chat-title {
    font-size: 3rem;
  }
  
  .quick-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .chat-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .message-bubble {
    max-width: 85%;
  }
  
  .quick-suggestions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .chat-title {
    font-size: 2.5rem;
  }
  
  .chat-status-bar {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .chat-container {
    padding: 1rem;
    margin: 0 0.5rem;
  }
  
  .message-bubble {
    max-width: 90%;
    padding: 0.8rem 1.2rem;
  }
  
  .message-text {
    font-size: 0.9rem;
  }
  
  .chat-input {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .send-btn {
    width: 45px;
    height: 45px;
  }
}

/* ===== MODERN CLEAN FOOTER ===== */
.modern-footer-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
}

/* Clean Background */
.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
}

/* Footer Header */
.footer-header {
  position: relative;
  z-index: 10;
}

.footer-title {
  font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(135deg, #ffffff, #c084fc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
}

/* Main Footer Content */
.footer-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

/* Brand Section */
.footer-brand-section {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.footer-brand-section:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.brand-logo-wrapper {
  flex-shrink: 0;
}

.brand-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 2px solid rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
}

.brand-logo-img:hover {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.logo-placeholder {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(139, 92, 246, 0.3);
}

.logo-letter {
  font-family: 'Bungee', cursive;
  font-size: 1.8rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-name {
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.brand-year {
  font-family: 'Rajdhani', sans-serif;
  color: #c084fc;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(139, 92, 246, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  display: inline-block;
}

.brand-description {
  font-family: 'Rajdhani', sans-serif;
  color: #e0e0e0;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.creators-credit {
  color: #c084fc;
  font-weight: 700;
}

/* Navigation Section */
.footer-nav-section {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.footer-nav-section:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.nav-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.footer-nav-link {
  display: block;
  padding: 0.8rem 1rem;
  color: #e0e0e0;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.footer-nav-link:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

/* Contact Section */
.footer-contact-section {
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.footer-contact-section:hover {
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateX(3px);
}

.contact-icon {
  color: #c084fc;
  flex-shrink: 0;
}

.contact-item span {
  font-family: 'Rajdhani', sans-serif;
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Social Media */
.social-media {
  margin-top: 1rem;
}

.social-title {
  font-family: 'Rajdhani', sans-serif;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  color: #c084fc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  position: relative;
  z-index: 10;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-family: 'Rajdhani', sans-serif;
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-link {
  font-family: 'Rajdhani', sans-serif;
  color: #c084fc;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
}

.footer-legal-link:hover {
  color: #ffffff;
  background: rgba(139, 92, 246, 0.2);
  transform: translateY(-1px);
}

/* Responsive Design for Modern Footer */
@media (max-width: 1024px) {
  .footer-main-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .footer-title {
    font-size: 2.5rem;
  }
  
  .footer-subtitle {
    font-size: 1rem;
  }
  
  .footer-brand-section,
  .footer-nav-section,
  .footer-contact-section {
    padding: 1.5rem;
  }
  
  .brand-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .modern-footer-section {
    padding: 3rem 0 1.5rem;
  }
  
  .footer-title {
    font-size: 2rem;
  }
  
  .footer-brand-section,
  .footer-nav-section,
  .footer-contact-section {
    padding: 1rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .social-links {
    gap: 0.8rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* ===== GAMING DASHBOARD SECTION ===== */
.gaming-dashboard-section {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #0f0f23 100%);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.rules-benefits-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.6;
  animation: floatAround 20s infinite linear;
}

.element-1 { top: 10%; left: 10%; animation-delay: 0s; }
.element-2 { top: 20%; right: 15%; animation-delay: 2s; }
.element-3 { top: 60%; left: 5%; animation-delay: 4s; }
.element-4 { bottom: 30%; right: 10%; animation-delay: 6s; }
.element-5 { top: 40%; left: 80%; animation-delay: 8s; }
.element-6 { bottom: 20%; left: 20%; animation-delay: 10s; }
.element-7 { top: 70%; right: 25%; animation-delay: 12s; }
.element-8 { bottom: 50%; left: 60%; animation-delay: 14s; }

/* Animated Particles */
.animated-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #8b5cf6;
  border-radius: 50%;
  opacity: 0.7;
  animation: particleMove 15s infinite linear;
}

.p-1 { top: 20%; left: 30%; animation-delay: 0s; }
.p-2 { top: 50%; left: 70%; animation-delay: 3s; }
.p-3 { top: 80%; left: 20%; animation-delay: 6s; }
.p-4 { top: 30%; right: 20%; animation-delay: 9s; }
.p-5 { bottom: 40%; left: 80%; animation-delay: 12s; }
.p-6 { bottom: 70%; right: 40%; animation-delay: 15s; }

/* Gradient Orbs */
.gradient-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  animation: orbFloat 20s infinite ease-in-out;
}

.orb-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -150px;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  right: -100px;
  animation-delay: 7s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 14s;
}

/* Main Title */
.main-title {
  font-family: 'Bungee', cursive;
  background: linear-gradient(45deg, #8b5cf6, #a855f7, #c084fc, #8b5cf6);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.main-subtitle {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Container Layout */
.rules-benefits-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  align-items: stretch;
  min-height: 700px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: iconPulse 2s ease-in-out infinite;
}

.section-title {
  font-family: 'Righteous', cursive;
  font-size: 2rem;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

.section-subtitle {
  font-family: 'Rajdhani', sans-serif;
  color: #a855f7;
  font-size: 1.1rem;
  font-weight: 500;
}

/* Rules Side */
.rules-side {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rules-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  justify-content: space-between;
}

.rule-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 15px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: itemReveal 0.6s ease-out forwards;
  position: relative;
  overflow: hidden;
}

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

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

.rule-item:hover {
  transform: translateY(-5px);
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.rule-number {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: bold;
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(139, 92, 246, 0.3);
  animation: numberGlow 2s ease-in-out infinite;
}

.rule-content {
  flex: 1;
}

.rule-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.rule-title {
  font-family: 'Righteous', cursive;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.rule-description {
  color: #c084fc;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Center Divider */
.center-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.divider-line {
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #8b5cf6, transparent);
  position: relative;
  animation: dividerPulse 3s ease-in-out infinite;
}

.divider-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #8b5cf6;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
  animation: iconPulse 2s ease-in-out infinite;
}

.divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  background: #1a1a2e;
  padding: 1rem;
  border-radius: 50%;
  border: 2px solid #8b5cf6;
  animation: iconSpin 10s linear infinite;
}

/* Benefits Side */
.benefits-side {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  justify-content: space-between;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 15px;
  transition: all 0.3s ease;
  opacity: 0;
  animation: itemReveal 0.6s ease-out forwards;
  position: relative;
  overflow: hidden;
}

.benefit-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.benefit-item:hover .benefit-glow {
  opacity: 1;
  animation: glowShift 2s ease-in-out infinite;
}

.benefit-item:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
}

.benefit-icon {
  font-size: 2rem;
  animation: iconFloat 3s ease-in-out infinite;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-family: 'Righteous', cursive;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.benefit-description {
  color: #c084fc;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.benefit-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(139, 92, 246, 0.2);
  color: #c084fc;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Animation Delays */
.rule-1 { animation-delay: 0.1s; }
.rule-2 { animation-delay: 0.2s; }
.rule-3 { animation-delay: 0.3s; }
.rule-4 { animation-delay: 0.4s; }
.rule-5 { animation-delay: 0.5s; }
.rule-6 { animation-delay: 0.6s; }
.rule-7 { animation-delay: 0.7s; }
.rule-8 { animation-delay: 0.8s; }
.rule-9 { animation-delay: 0.9s; }

.benefit-1 { animation-delay: 0.1s; }
.benefit-2 { animation-delay: 0.2s; }
.benefit-3 { animation-delay: 0.3s; }
.benefit-4 { animation-delay: 0.4s; }
.benefit-5 { animation-delay: 0.5s; }
.benefit-6 { animation-delay: 0.6s; }

/* New Animations */
@keyframes floatAround {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(90deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
  75% { transform: translateY(-30px) rotate(270deg); }
}

@keyframes particleMove {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
}

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

@keyframes numberGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.5); }
  50% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.8); }
}

@keyframes glowShift {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

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

@keyframes iconSpin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design for Rules & Benefits */
@media (max-width: 768px) {
  .rules-benefits-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    height: auto;
  }
  
  .center-divider {
    display: none;
  }
  
  .rules-list,
  .benefits-list {
    justify-content: flex-start;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .rules-benefits-container {
    padding: 1rem;
    gap: 1.5rem;
  }
  
  .rule-item,
  .benefit-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .rules-list,
  .benefits-list {
    gap: 1rem;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
    }
}

/* Authentication Modal Styles */
.auth-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease;
}

.auth-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-modal-content {
  background: linear-gradient(135deg, hsl(var(--background)), hsl(var(--card)));
  border-radius: 20px;
  padding: 0;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid hsl(var(--border));
  position: relative;
  animation: slideIn 0.3s ease;
}

.auth-modal-header {
  background: var(--gradient-primary);
  color: white;
  padding: 20px 30px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.auth-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.auth-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.auth-modal-body {
  padding: 30px;
}

.auth-form-group {
  margin-bottom: 20px;
}

.auth-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: hsl(var(--foreground));
  font-size: 0.9rem;
}

.auth-form-group input,
.auth-form-group select,
.auth-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid hsl(var(--border));
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

.auth-form-group input:focus,
.auth-form-group select:focus,
.auth-form-group textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
  transform: translateY(-2px);
}

.auth-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.auth-form-group small {
  display: block;
  margin-top: 5px;
  color: hsl(var(--muted-foreground));
  font-size: 0.8rem;
}

.auth-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.auth-checkbox input[type="checkbox"] {
  width: auto;
  margin: 0;
  transform: scale(1.2);
}

.checkmark {
  color: hsl(var(--primary));
  font-weight: 600;
}

.auth-submit-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px hsl(var(--primary) / 0.3);
}

.auth-submit-btn:active {
  transform: translateY(0);
}

.auth-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.auth-switch {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid hsl(var(--border));
}

.auth-switch a {
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.auth-switch a:hover {
  color: hsl(var(--primary) / 0.8);
  text-decoration: underline;
}

/* Auth Signup Section */
.auth-signup-section {
  margin-top: 25px;
}

.auth-divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.auth-divider span {
  background: #1a1a1a;
  color: #9ca3af;
  padding: 0 15px;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.auth-signup-btn {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  position: relative;
  overflow: hidden;
}

.auth-signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.auth-signup-btn:active {
  transform: translateY(0);
}

.auth-signup-btn .btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.auth-signup-btn:hover .btn-icon {
  transform: scale(1.1);
}

.auth-signup-btn .btn-text {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Signup button loading state */
.auth-signup-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.auth-signup-btn:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.auth-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.auth-logout-btn {
  background: hsl(var(--destructive));
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-logout-btn:hover {
  background: hsl(var(--destructive) / 0.8);
  transform: translateY(-2px);
}

#user-details {
  background: hsl(var(--muted));
  padding: 20px;
  border-radius: 10px;
  margin-top: 15px;
}

#user-details h4 {
  margin-bottom: 10px;
  color: hsl(var(--primary));
}

#user-details p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from { 
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to { 
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile Responsive for Auth Modals */
@media (max-width: 768px) {
  .auth-modal-content {
    width: 95%;
    margin: 20px;
    max-height: 95vh;
  }
  
  .auth-modal-header {
    padding: 15px 20px;
  }
  
  .auth-modal-header h2 {
    font-size: 1.3rem;
  }
  
  .auth-modal-body {
    padding: 20px;
  }
  
  .auth-form-group input,
  .auth-form-group select,
  .auth-form-group textarea {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
}

/* Enhanced Login Form Styles */
.password-input-container {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-container input {
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #64748b;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.password-toggle:hover {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

.auth-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #64748b;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid #64748b;
  border-radius: 4px;
  background: transparent;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: #3b82f6;
  border-color: #3b82f6;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-password-link {
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-password-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.form-error {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-error.show {
  display: block;
}

.btn-loading {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loading-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Enhanced Auth Submit Button */
.auth-submit-btn {
  width: 100%;
  padding: 12px 24px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.auth-submit-btn:active {
  transform: translateY(0);
}

.auth-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Mobile Responsive for Enhanced Login */
@media (max-width: 768px) {
  .auth-form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .forgot-password-link {
    align-self: flex-end;
  }
}
  
  .auth-submit-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* News Ticker Below Title */
.news-ticker-below-title {
  width: 100%;
  max-width: 800px;
  margin: 1rem auto 2rem auto;
  background: linear-gradient(135deg, #10b981, #059669) !important;
  border: 6px solid #ff0000 !important;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 
    0 0 0 3px #ffffff !important,
    0 0 0 6px #0000ff !important,
    0 8px 25px rgba(255, 0, 0, 0.8) !important;
  position: relative;
  z-index: 10;
  opacity: 1 !important;
  animation: none !important;
  padding: 10px !important;
}

.news-ticker-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  animation: scrollLeft 25s linear infinite;
  padding: 0.75rem 1rem;
  height: 50px;
}

.news-ticker-icon {
  font-size: 1.25rem;
  animation: bounce 2s infinite;
  flex-shrink: 0;
}

.news-ticker-text {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

/* Pause animation on hover */
.news-ticker-below-title:hover .news-ticker-content {
  animation-play-state: paused;
}

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

@keyframes scrollLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Amazing News Ticker Animations */
.news-ticker-below-title {
  position: relative;
  overflow: hidden;
}

.news-ticker-below-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s infinite;
  z-index: 1;
}

.news-ticker-below-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 25%, 
    transparent 75%, 
    rgba(255, 255, 255, 0.1) 100%);
  animation: pulseGlow 2s ease-in-out infinite;
  z-index: 1;
}

.news-ticker-content {
  position: relative;
  z-index: 2;
}

.news-ticker-text {
  color: #ffd700 !important;
  font-family: 'Orbitron', 'Courier New', monospace !important;
  font-weight: 800 !important;
  font-size: 1.1rem !important;
  text-shadow: 
    0 0 10px #ffd700,
    0 0 20px #ffd700,
    0 0 30px #ffd700,
    2px 2px 4px rgba(0, 0, 0, 0.8) !important;
  animation: yellowGlow 2s ease-in-out infinite alternate !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

@keyframes yellowGlow {
  0% {
    color: #ffd700 !important;
    text-shadow: 
      0 0 10px #ffd700,
      0 0 20px #ffd700,
      0 0 30px #ffd700,
      2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    transform: scale(1) !important;
  }
  100% {
    color: #ffff00 !important;
    text-shadow: 
      0 0 15px #ffff00,
      0 0 25px #ffff00,
      0 0 35px #ffff00,
      3px 3px 6px rgba(0, 0, 0, 0.9) !important;
    transform: scale(1.02) !important;
  }
}

.news-ticker-icon {
  animation: bounce 2s infinite, rotate 4s linear infinite, glow 1.5s ease-in-out infinite alternate;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

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

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes glow {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    transform: scale(1);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
  }
}

/* Responsive design for news ticker below title */
@media (max-width: 768px) {
  .news-ticker-below-title {
    max-width: 95%;
    margin: 0.5rem auto 1.5rem auto;
  }
  
  .news-ticker-content {
    height: 45px;
    padding: 0.5rem 0.75rem;
    animation-duration: 20s;
  }
  
  .news-ticker-icon {
    font-size: 1rem;
  }
  
  .news-ticker-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .news-ticker-below-title {
    max-width: 98%;
    margin: 0.25rem auto 1rem auto;
  }
  
  .news-ticker-content {
    height: 40px;
    padding: 0.4rem 0.5rem;
    animation-duration: 15s;
  }
  
  .news-ticker-icon {
    font-size: 0.9rem;
  }
  
  .news-ticker-text {
    font-size: 0.8rem;
  }
}

/* Premium Equal-Sized Buttons - Override All Existing Styles */
.hero-all-buttons .floating-btn {
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  transform-style: preserve-3d !important;
  backface-visibility: hidden !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  width: 200px !important;
  height: 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border-radius: 12px !important;
  font-size: 0.9rem !important;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Premium Hover Effects */
.hero-all-buttons .floating-btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Premium Active Effects */
.hero-all-buttons .floating-btn:active {
  transform: translateY(-4px) scale(1.02);
  transition: all 0.1s ease;
}

/* Premium Shine Effect */
.hero-all-buttons .floating-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.hero-all-buttons .floating-btn:hover::before {
  left: 100%;
}

/* Premium Glow Effect */
.hero-all-buttons .floating-btn::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    rgba(255, 255, 255, 0.1), 
    transparent, 
    rgba(255, 255, 255, 0.1));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.hero-all-buttons .floating-btn:hover::after {
  opacity: 1;
}

/* Premium Button Text - Ensure Identical Styling */
.hero-all-buttons .floating-btn .btn-text,
.hero-btn-primary .btn-text,
.hero-btn-login .btn-text {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  font-family: 'Luckiest Guy', cursive !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
  font-size: inherit !important;
  color: inherit !important;
  text-transform: inherit !important;
}

.hero-all-buttons .floating-btn:hover .btn-text {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Premium Button Shine */
.hero-all-buttons .floating-btn .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.hero-all-buttons .floating-btn:hover .btn-shine {
  left: 100%;
}

/* Premium Button Animations */
@keyframes premiumFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg);
  }
  50% { 
    transform: translateY(-3px) rotate(1deg);
  }
}

@keyframes premiumPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

.hero-all-buttons .floating-btn {
  animation: premiumFloat 4s ease-in-out infinite;
}

.hero-all-buttons .floating-btn:nth-child(1) { animation-delay: 0s; }
.hero-all-buttons .floating-btn:nth-child(2) { animation-delay: 0.5s; }
.hero-all-buttons .floating-btn:nth-child(3) { animation-delay: 1s; }
.hero-all-buttons .floating-btn:nth-child(4) { animation-delay: 1.5s; }
.hero-all-buttons .floating-btn:nth-child(5) { animation-delay: 2s; }
.hero-all-buttons .floating-btn:nth-child(6) { animation-delay: 2.5s; }
.hero-all-buttons .floating-btn:nth-child(7) { animation-delay: 3s; }

/* Override All Specific Button Classes - PERFECTLY UNIFORM */
.hero-btn-primary,
.hero-btn-login,
.hero-btn-secondary,
.hero-btn-timeline,
.hero-btn-rules,
.hero-btn-guidelines,
.hero-btn-achievements,
.floating-btn {
  background: transparent !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  width: 180px !important;
  height: 50px !important;
  border-radius: 12px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.1),
    0 8px 25px rgba(0, 0, 0, 0.2) !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  animation: subtleFloat 3s ease-in-out infinite !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(10px) !important;
  flex-shrink: 0 !important;
  min-width: 180px !important;
  max-width: 180px !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
}

/* Attractive Hover Effects */
.hero-btn-primary:hover,
.hero-btn-login:hover,
.hero-btn-secondary:hover,
.hero-btn-timeline:hover,
.hero-btn-rules:hover,
.hero-btn-guidelines:hover,
.hero-btn-achievements:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  transform: translateY(-8px) scale(1.05) !important;
  box-shadow: 
    0 0 30px rgba(255, 255, 255, 0.3),
    0 0 60px rgba(255, 255, 255, 0.2),
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  animation: subtleFloat 2s ease-in-out infinite !important;
}

/* Subtle Button Animations */
@keyframes subtleFloat {
  0%, 100% { 
    transform: translateY(0px);
  }
  50% { 
    transform: translateY(-3px);
  }
}

/* Subtle Shine Effect */
.hero-btn-primary::before,
.hero-btn-login::before,
.hero-btn-secondary::before,
.hero-btn-timeline::before,
.hero-btn-rules::before,
.hero-btn-guidelines::before,
.hero-btn-achievements::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 0.6s ease;
  z-index: 1;
}

.hero-btn-primary:hover::before,
.hero-btn-login:hover::before,
.hero-btn-secondary:hover::before,
.hero-btn-timeline:hover::before,
.hero-btn-rules:hover::before,
.hero-btn-guidelines:hover::before,
.hero-btn-achievements:hover::before {
  left: 100%;
}

/* Button Container - Uniform Spacing */
.hero-all-buttons {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.hero-buttons-row {
  display: flex !important;
  gap: 1rem !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}

/* Mobile Responsive - Keep Buttons Centered */
@media (max-width: 768px) {
  .hero-all-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding: 0 1rem !important;
    text-align: center !important;
  }
  
  .hero-buttons-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 1rem !important;
    text-align: center !important;
  }
  
  .hero-buttons-row .floating-btn {
    width: 180px !important;
    height: 50px !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Ensure all hero buttons are centered on mobile */
  .hero-btn-primary,
  .hero-btn-login,
  .hero-btn-secondary,
  .hero-btn-timeline,
  .hero-btn-rules,
  .hero-btn-guidelines,
  .hero-btn-achievements {
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }
  
  /* Force center alignment for all button containers */
  .hero-buttons,
  .hero-additional-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  .hero-buttons .floating-btn,
  .hero-additional-buttons .floating-btn {
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .hero-all-buttons {
    padding: 0 0.5rem !important;
    text-align: center !important;
  }
  
  .hero-buttons-row {
    gap: 0.75rem !important;
    text-align: center !important;
  }
  
  .hero-buttons-row .floating-btn {
    width: 160px !important;
    height: 45px !important;
    font-size: 0.75rem !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Force center alignment on small mobile */
  .hero-buttons,
  .hero-additional-buttons {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .hero-buttons .floating-btn,
  .hero-additional-buttons .floating-btn {
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

.hero-buttons-row .floating-btn {
  flex: 0 0 180px !important;
  width: 180px !important;
  height: 50px !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Force all hero buttons to be identical - Exclude header navigation */
.hero-btn-primary,
.hero-btn-login,
.hero-btn-secondary,
.hero-btn-timeline,
.hero-btn-rules,
.hero-btn-guidelines,
.hero-btn-achievements,
.hero-all-buttons button,
.hero-all-buttons a {
  background: transparent !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  width: 180px !important;
  height: 50px !important;
  border-radius: 12px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  box-shadow: 
    0 0 20px rgba(255, 255, 255, 0.1),
    0 8px 25px rgba(0, 0, 0, 0.2) !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  animation: subtleFloat 3s ease-in-out infinite !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
  backdrop-filter: blur(10px) !important;
  flex-shrink: 0 !important;
  min-width: 180px !important;
  max-width: 180px !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
}

/* Header navigation buttons - Clean button style */
.nav-login-button,
.nav-cta-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  color: white !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  width: auto !important;
  height: auto !important;
  border-radius: 8px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  text-decoration: none !important;
  display: inline-block !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  margin: 0 4px !important;
  padding: 10px 20px !important;
  position: relative !important;
  overflow: visible !important;
  animation: none !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: none !important;
  flex-shrink: 1 !important;
  min-width: auto !important;
  max-width: none !important;
  white-space: nowrap !important;
  transition: all 0.3s ease !important;
  cursor: pointer !important;
}

/* Header button hover effects */
.nav-login-button:hover,
.nav-cta-button:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

/* Header button active effects */
.nav-login-button:active,
.nav-cta-button:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}

/* YouTube Videos Section Styling */
.youtube-videos-section {
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}

.videos-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-video-icons {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: floatVideoIcon 6s ease-in-out infinite;
}

.video-icon-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.video-icon-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1.5s;
}

.video-icon-3 {
  top: 40%;
  left: 80%;
  animation-delay: 3s;
}

.video-icon-4 {
  top: 80%;
  left: 20%;
  animation-delay: 4.5s;
}

@keyframes floatVideoIcon {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
    opacity: 0.2;
  }
}

.videos-title {
  font-family: 'Orbitron', 'Courier New', monospace;
  background: linear-gradient(45deg, #ffffff, #f0f0f0, #ffffff);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 3s ease-in-out infinite;
}

.videos-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(255, 255, 255, 0.2);
}

.video-container iframe {
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  border: none;
}

.video-wrapper:hover .video-container iframe {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.video-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-top: 0.75rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
  padding: 0 0.5rem;
}

/* Mobile Responsive Videos */
@media (max-width: 768px) {
  .videos-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .videos-grid {
    gap: 1rem;
    max-width: 350px;
  }
  
  .video-wrapper {
    margin: 0 0.5rem;
  }
  
  .videos-container {
    max-width: 80%;
  }
  
  .video-title {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .videos-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .videos-grid {
    gap: 0.75rem;
    max-width: 280px;
  }
  
  .video-wrapper {
    margin: 0 0.25rem;
  }
  
  .videos-container {
    max-width: 75%;
  }
  
  .video-title {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
}

/* Override Hover States for All Buttons */
.hero-btn-primary:hover,
.hero-btn-login:hover,
.hero-btn-secondary:hover,
.hero-btn-timeline:hover,
.hero-btn-rules:hover,
.hero-btn-guidelines:hover,
.hero-btn-achievements:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
  color: white !important;
  transform: translateY(-8px) scale(1.05) !important;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(255, 255, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

