:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  /* RGB versions for opacity control */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;

  /* Background color tokens (Light Mode) */
  --color-bg-1: rgba(59, 130, 246, 0.08); /* Light blue */
  --color-bg-2: rgba(245, 158, 11, 0.08); /* Light yellow */
  --color-bg-3: rgba(34, 197, 94, 0.08); /* Light green */
  --color-bg-4: rgba(239, 68, 68, 0.08); /* Light red */
  --color-bg-5: rgba(147, 51, 234, 0.08); /* Light purple */
  --color-bg-6: rgba(249, 115, 22, 0.08); /* Light orange */
  --color-bg-7: rgba(236, 72, 153, 0.08); /* Light pink */
  --color-bg-8: rgba(6, 182, 212, 0.08); /* Light cyan */

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    /* RGB versions for opacity control (Dark Mode) */
    --color-gray-400-rgb: 119, 124, 124;
    --color-teal-300-rgb: 50, 184, 198;
    --color-gray-300-rgb: 167, 169, 169;
    --color-gray-200-rgb: 245, 245, 245;

    /* Background color tokens (Dark Mode) */
    --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
    --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
    --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
    --color-bg-4: rgba(185, 28, 28, 0.15); /* Dark red */
    --color-bg-5: rgba(107, 33, 168, 0.15); /* Dark purple */
    --color-bg-6: rgba(194, 65, 12, 0.15); /* Dark orange */
    --color-bg-7: rgba(190, 24, 93, 0.15); /* Dark pink */
    --color-bg-8: rgba(8, 145, 178, 0.15); /* Dark cyan */

    /* Semantic Color Tokens (Dark Mode) */
    --color-background: var(--color-charcoal-700);
    --color-surface: var(--color-charcoal-800);
    --color-text: var(--color-gray-200);
    --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
    --color-primary: var(--color-teal-300);
    --color-primary-hover: var(--color-teal-400);
    --color-primary-active: var(--color-teal-800);
    --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
    --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
    --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
    --color-border: rgba(var(--color-gray-400-rgb), 0.3);
    --color-error: var(--color-red-400);
    --color-success: var(--color-teal-300);
    --color-warning: var(--color-orange-400);
    --color-info: var(--color-gray-300);
    --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
    --color-btn-primary-text: var(--color-slate-900);
    --color-card-border: rgba(var(--color-gray-400-rgb), 0.2);
    --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* RGB versions for dark mode */
    --color-success-rgb: var(--color-teal-300-rgb);
    --color-error-rgb: var(--color-red-400-rgb);
    --color-warning-rgb: var(--color-orange-400-rgb);
    --color-info-rgb: var(--color-gray-300-rgb);
  }
}

/* Data attribute for manual theme switching */
[data-color-scheme="dark"] {
  /* RGB versions for opacity control (dark mode) */
  --color-gray-400-rgb: 119, 124, 124;
  --color-teal-300-rgb: 50, 184, 198;
  --color-gray-300-rgb: 167, 169, 169;
  --color-gray-200-rgb: 245, 245, 245;

  /* Colorful background palette - Dark Mode */
  --color-bg-1: rgba(29, 78, 216, 0.15); /* Dark blue */
  --color-bg-2: rgba(180, 83, 9, 0.15); /* Dark yellow */
  --color-bg-3: rgba(21, 128, 61, 0.15); /* Dark green */
  --color-bg-4: rgba(185, 28, 28, 0.15); /* Dark red */
  --color-bg-5: rgba(107, 33, 168, 0.15); /* Dark purple */
  --color-bg-6: rgba(194, 65, 12, 0.15); /* Dark orange */
  --color-bg-7: rgba(190, 24, 93, 0.15); /* Dark pink */
  --color-bg-8: rgba(8, 145, 178, 0.15); /* Dark cyan */

  /* Semantic Color Tokens (Dark Mode) */
  --color-background: var(--color-charcoal-700);
  --color-surface: var(--color-charcoal-800);
  --color-text: var(--color-gray-200);
  --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
  --color-primary: var(--color-teal-300);
  --color-primary-hover: var(--color-teal-400);
  --color-primary-active: var(--color-teal-800);
  --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
  --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
  --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
  --color-border: rgba(var(--color-gray-400-rgb), 0.3);
  --color-error: var(--color-red-400);
  --color-success: var(--color-teal-300);
  --color-warning: var(--color-orange-400);
  --color-info: var(--color-gray-300);
  --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
  --color-btn-primary-text: var(--color-slate-900);
  --color-card-border: rgba(var(--color-gray-400-rgb), 0.15);
  --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
  --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

  /* Common style patterns - updated for dark mode */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for dark mode */
  --color-success-rgb: var(--color-teal-300-rgb);
  --color-error-rgb: var(--color-red-400-rgb);
  --color-warning-rgb: var(--color-orange-400-rgb);
  --color-info-rgb: var(--color-gray-300-rgb);
}

[data-color-scheme="light"] {
  /* RGB versions for opacity control (light mode) */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);

  /* RGB versions for light mode */
  --color-success-rgb: var(--color-teal-500-rgb);
  --color-error-rgb: var(--color-red-500-rgb);
  --color-warning-rgb: var(--color-orange-500-rgb);
  --color-info-rgb: var(--color-slate-500-rgb);
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}
h2 {
  font-size: var(--font-size-3xl);
}
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

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

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

/* Events tabs (Innovex / Riwaayat) - Enhanced Animated Version */
.events-tabs { 
  display: flex; 
  gap: 16px; 
  align-items: center; 
  justify-content: center;
  margin: 20px auto;
  position: relative;
}

.events-tabs .event-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 16px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Animated background gradient */
.events-tabs .event-tab::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;
}

.events-tabs .event-tab:hover::before {
  left: 100%;
}

/* Glow effect on hover */
.events-tabs .event-tab::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, 
    rgba(122, 62, 202, 0.5), 
    rgba(0, 217, 255, 0.5),
    rgba(122, 62, 202, 0.5)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.events-tabs .event-tab:hover::after {
  opacity: 1;
}

/* Hover state */
.events-tabs .event-tab:hover {
  transform: translateY(-4px) scale(1.05);
  color: #ffffff;
  border-color: rgba(122, 62, 202, 0.4);
  background: rgba(122, 62, 202, 0.15);
  box-shadow: 
    0 8px 25px rgba(122, 62, 202, 0.3),
    0 0 30px rgba(0, 217, 255, 0.2),
    inset 0 0 20px rgba(122, 62, 202, 0.1);
}

/* Active state - Innovex (Tech) */
.events-tabs .event-tab.active {
  color: #ffffff;
  background: linear-gradient(135deg, 
    rgba(122, 62, 202, 0.25) 0%, 
    rgba(0, 217, 255, 0.2) 50%,
    rgba(122, 62, 202, 0.25) 100%
  );
  border-color: rgba(122, 62, 202, 0.6);
  box-shadow: 
    0 8px 30px rgba(122, 62, 202, 0.4),
    0 0 40px rgba(0, 217, 255, 0.3),
    inset 0 0 30px rgba(122, 62, 202, 0.15);
  transform: translateY(-2px) scale(1.02);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Pulse animation for active button */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 
      0 8px 30px rgba(122, 62, 202, 0.4),
      0 0 40px rgba(0, 217, 255, 0.3),
      inset 0 0 30px rgba(122, 62, 202, 0.15);
  }
  50% {
    box-shadow: 
      0 8px 35px rgba(122, 62, 202, 0.5),
      0 0 50px rgba(0, 217, 255, 0.4),
      inset 0 0 30px rgba(122, 62, 202, 0.2);
  }
}

/* Tab icon */
.events-tabs .event-tab .tab-icon {
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(122, 62, 202, 0.5));
}

.events-tabs .event-tab:hover .tab-icon {
  transform: rotate(15deg) scale(1.2);
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.8));
}

.events-tabs .event-tab.active .tab-icon {
  animation: icon-float 2s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.8));
}

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

/* Tab text */
.events-tabs .event-tab .tab-text {
  position: relative;
  z-index: 1;
  transition: text-shadow 0.3s ease;
}

.events-tabs .event-tab:hover .tab-text {
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

.events-tabs .event-tab.active .tab-text {
  text-shadow: 
    0 0 10px rgba(0, 217, 255, 0.8),
    0 0 20px rgba(122, 62, 202, 0.6);
}

/* Tab sub-heading */
.events-tabs .event-tab .tab-subheading {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-top: 4px;
  text-transform: lowercase;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.events-tabs .event-tab:hover .tab-subheading {
  color: rgba(255, 255, 255, 0.7);
}

.events-tabs .event-tab.active .tab-subheading {
  color: rgba(0, 217, 255, 0.8);
  text-shadow: 0 0 8px rgba(0, 217, 255, 0.4);
}

/* Click animation */
.events-tabs .event-tab:active {
  transform: translateY(-1px) scale(0.98);
  transition: transform 0.1s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .events-tabs {
    gap: 12px;
    margin: 16px auto;
  }
  
  .events-tabs .event-tab {
    padding: 10px 18px;
    font-size: 14px;
  }
  
  .events-tabs .event-tab .tab-icon {
    font-size: 16px;
  }
}

/* Cultural layout (Riwaayat) - Enhanced Premium Design */
.cultural-track { 
  display: flex; 
  gap: 24px; 
  padding: 30px 20px; 
  overflow-x: auto; 
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding: 0 20px;
  will-change: scroll-position;
  transform: translateZ(0);
}
.cultural-card {
  scroll-snap-align: center;
}

.cultural-track::-webkit-scrollbar {
  height: 8px;
}

.cultural-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.cultural-track::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(122, 62, 202, 0.6), rgba(0, 217, 255, 0.6));
  border-radius: 10px;
}

.cultural-track::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, rgba(122, 62, 202, 0.8), rgba(0, 217, 255, 0.8));
}

.cultural-card {
  flex: 0 0 280px;
  width: 280px;
  border-radius: 24px;
  background: linear-gradient(145deg, 
    rgba(255, 255, 255, 0.08) 0%, 
    rgba(255, 255, 255, 0.03) 50%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  padding: 16px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(122, 62, 202, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-origin: center;
  scroll-snap-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cultural-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;
}

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

.cultural-card:hover { 
  transform: translateY(-12px) scale(1.05); 
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(122, 62, 202, 0.3),
    0 0 60px rgba(0, 217, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  filter: saturate(1.15) brightness(1.05);
  border-color: rgba(122, 62, 202, 0.4);
}

.cultural-poster { 
  width: 100%; 
  height: 380px; 
  border-radius: 16px; 
  overflow: hidden; 
  background: linear-gradient(135deg, 
    rgba(122, 62, 202, 0.1), 
    rgba(6, 182, 212, 0.08)
  ); 
  display: flex; 
  align-items: center; 
  justify-content: center;
  position: relative;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    inset 0 0 30px rgba(122, 62, 202, 0.1);
  transition: all 0.5s ease;
  z-index: 0;
}

.cultural-card:hover .cultural-poster {
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.5),
    inset 0 0 40px rgba(122, 62, 202, 0.2);
  transform: scale(1.02);
}

.cultural-poster img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.cultural-card:hover .cultural-poster img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.05);
}

.cultural-title { 
  margin-top: 16px; 
  font-size: 1.1rem; 
  text-align: center; 
  color: #ffffff; 
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.cultural-card:hover .cultural-title {
  color: #ffffff;
  text-shadow: 
    0 2px 10px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(122, 62, 202, 0.4);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cultural-card {
    flex: 0 0 75vw;
    width: 75vw;
    min-width: 240px;
    max-width: 300px;
  }
  
  .cultural-poster {
    height: 320px;
  }
  
  .cultural-track {
    gap: 16px;
    padding: 20px 15px;
    scroll-padding: 0 15px;
    scroll-snap-type: x mandatory;
  }
  
  .cultural-title {
    font-size: 0.95rem;
    padding: 0 4px;
  }
}

@media (max-width: 480px) {
  .cultural-card {
    flex: 0 0 85vw;
    width: 85vw;
    min-width: 200px;
    padding: 12px;
  }
  
  .cultural-poster {
    height: 280px;
  }
  
  .cultural-title {
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.3;
  }
  
  .cultural-track {
    gap: 12px;
    padding: 15px 10px;
    scroll-padding: 0 10px;
    scroll-snap-type: x mandatory;
  }
}

@media (max-width: 360px) {
  .cultural-card {
    flex: 0 0 90vw;
    width: 90vw;
  }
  
  .cultural-poster {
    height: 250px;
  }
}



/* Hide default carousel nav when cultural view is active by toggling class on body later */
.hide-nav .carousel-nav-btn { display:none !important; }


.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
}

.btn--primary:active {
  background: var(--color-primary-active);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}

.btn--secondary:hover {
  background: var(--color-secondary-hover);
}

.btn--secondary:active {
  background: var(--color-secondary-active);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn--outline:hover {
  background: var(--color-secondary);
}

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}

/* Add a dark mode specific caret */
@media (prefers-color-scheme: dark) {
  select.form-control {
    background-image: var(--select-caret-dark);
  }
}

/* Also handle data-color-scheme */
[data-color-scheme="dark"] select.form-control {
  background-image: var(--select-caret-dark);
}

[data-color-scheme="light"] select.form-control {
  background-image: var(--select-caret-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(
    var(--color-success-rgb, 33, 128, 141),
    var(--status-bg-opacity)
  );
  color: var(--color-success);
  border: 1px solid
    rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(
    var(--color-error-rgb, 192, 21, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-error);
  border: 1px solid
    rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: var(--space-4);
}
.gap-8 {
  gap: var(--space-8);
}
.gap-16 {
  gap: var(--space-16);
}

.m-0 {
  margin: 0;
}
.mt-8 {
  margin-top: var(--space-8);
}
.mb-8 {
  margin-bottom: var(--space-8);
}
.mx-8 {
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}
.my-8 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: 0;
}
.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}
.px-8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}
.py-16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.px-16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

.block {
  display: block;
}
.hidden {
  display: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Dark mode specifics */
[data-color-scheme="dark"] .btn--outline {
  border: 1px solid var(--color-border-secondary);
}

@font-face {
  font-family: 'FKGroteskNeue';
  src: url('https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2')
    format('woff2');
}

/* END PERPLEXITY DESIGN SYSTEM */
/* Import Design System */
/* Light & Dark Theme Variables */
:root {
  --theme-bg: #000000;
  --theme-bg-alt: #0a0e27;
  --theme-text: #ffffff;
  --theme-text-secondary: rgba(255, 255, 255, 0.7);
  --theme-card-bg: rgba(10, 14, 39, 0.6);
  --theme-border: rgba(122, 62, 202, 0.4);
  --theme-select-caret: var(--select-caret-dark);
}

[data-theme="light"] {
  --theme-bg: #f5f5f5;
  --theme-bg-alt: #ffffff;
  --theme-text: #0a0e27;
  --theme-text-secondary: rgba(10, 14, 39, 0.7);
  --theme-card-bg: rgba(255, 255, 255, 0.95);
  --theme-border: rgba(122, 62, 202, 0.3);
  --theme-select-caret: var(--select-caret-light);
}

:root {
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --font-family-base: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-serif: "Playfair Display", Georgia, serif;
  
  /* Modern Color Palette 2025 */
  --modern-black: #000000;
  --modern-deep: #0a0e27;
  --modern-dark: #1a1a2e;
  --modern-purple: #7A3ECA;
  --modern-purple-bright: #9d4edd;
  --modern-cyan: #00d9ff;
  --modern-cyan-bright: #00f0ff;
  --modern-magenta: #ff006e;
  --modern-magenta-bright: #d946ef;
  --modern-orange: #ff9e1b;
  --modern-teal: #06d6d0;
  --modern-white: #ffffff;
  --modern-gray: #f5f5f5;
  --color-text-primary: #ffffff;
  --color-text-secondary: #a8a8b0;
  
  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  
  /* Effects */
  --blur-glass: blur(20px) saturate(180%);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-base);
  background: var(--theme-bg);
  color: var(--theme-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  transition: background 0.5s ease, color 0.5s ease;
}

[data-theme="light"] body {
  background: var(--theme-bg);
}

/* CRAZY SEXY UNBELIEVABLE LOADER */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0e27 0%, #7A3ECA 50%, #000000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: loaderFadeOut 0.8s ease 2.5s forwards;
}

@keyframes loaderFadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

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

.glitch-text {
  font-size: clamp(60px, 15vw, 120px);
  font-weight: 900;
  color: #ffffff;
  position: relative;
  letter-spacing: 8px;
  text-transform: uppercase;
  animation: glitch 1s infinite;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch-text::before {
  color: #00d9ff;
  animation: glitchTop 0.5s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.glitch-text::after {
  color: #ff006e;
  animation: glitchBottom 0.7s infinite;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes glitchTop {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-3px); }
}

@keyframes glitchBottom {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(5px); }
  50% { transform: translateX(-5px); }
  75% { transform: translateX(3px); }
}

.loader-subtext {
  font-size: 14px;
  letter-spacing: 4px;
  color: #00d9ff;
  margin-top: 20px;
  font-weight: 600;
  animation: pulse 1.5s ease-in-out infinite;
}

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

.loader-bars {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}

.loader-bar {
  width: 8px;
  height: 40px;
  background: linear-gradient(135deg, #7A3ECA, #00d9ff);
  border-radius: 4px;
  animation: barBounce 0.8s ease-in-out infinite;
}

.loader-bar:nth-child(1) { animation-delay: 0s; }
.loader-bar:nth-child(2) { animation-delay: 0.15s; }
.loader-bar:nth-child(3) { animation-delay: 0.3s; }
.loader-bar:nth-child(4) { animation-delay: 0.45s; }

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

/* Creative floating theme FAB */
.theme-fab {
  position: fixed;
  right: 18px;
  top: 18px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(122,62,202,0.06));
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  cursor: pointer;
  z-index: 2000;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}
.theme-fab:focus { outline: none; box-shadow: 0 8px 24px rgba(0,0,0,0.45); }
.theme-fab:active { transform: scale(0.98); }
.theme-fab-inner { position: relative; width: 34px; height: 34px; }
.theme-fab .icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: opacity 220ms ease, transform 300ms ease; }
.theme-fab .icon-sun { opacity: 1; transform-origin:center; }
.theme-fab .icon-moon { opacity: 0; transform-origin:center; }
.theme-fab.is-light { background: linear-gradient(135deg, #fff, #f0f4ff); border-color: rgba(122,62,202,0.12); }
.theme-fab.is-light .icon-sun { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
.theme-fab.is-light .icon-moon { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.theme-fab.is-dark { background: linear-gradient(135deg, #0f1724, #1a2330); border-color: rgba(255,255,255,0.04); }
.theme-fab.is-dark .icon-sun { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.theme-fab.is-dark .icon-moon { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }

@media (max-width: 768px) {
  .theme-fab { right: 12px; top: 12px; width:48px; height:48px; }
}

/* Modern Dynamic Background */
.modern-gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 25%, #7A3ECA 50%, #0a0e27 75%, #000000 100%);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: 0;
  transition: opacity 0.5s ease;
}

[data-theme="light"] .modern-gradient-bg {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 25%, #e0e7ff 50%, #f5f5f5 75%, #ffffff 100%);
  opacity: 0.8;
}

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

.particle-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle-field::before,
.particle-field::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: floatParticle 20s ease-in-out infinite;
}

.particle-field::before {
  background: radial-gradient(circle, #00d9ff 0%, transparent 70%);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-field::after {
  background: radial-gradient(circle, #ff006e 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
  animation-delay: 5s;
}

[data-theme="light"] .particle-field::after {
  background: radial-gradient(circle, rgba(0, 217, 255, 0.3) 0%, transparent 70%);
  opacity: 0.2;
}

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -50px) scale(1.1); }
  50% { transform: translate(-30px, 30px) scale(0.9); }
  75% { transform: translate(40px, 20px) scale(1.05); }
}

/* Modern Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(122, 62, 202, 0.2);
  transition: all 0.3s ease;
}

[data-theme="light"] .navbar {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(122, 62, 202, 0.3);
}

.navbar.scrolled {
  background: rgba(10, 14, 39, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-family-base);
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #00d9ff, #7A3ECA, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

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

.nav-link {
  color: var(--theme-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d9ff, #7A3ECA);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #00d9ff;
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--color-gold-royal);
  transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* Modern Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(122, 62, 202, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at bottom, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
              #000000;
}

[data-theme="light"] .hero-section {
  background: radial-gradient(ellipse at top, rgba(122, 62, 202, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at bottom, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
              #f5f5f5;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.shape-morph {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: morphShape 20s ease-in-out infinite;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7A3ECA 0%, transparent 70%);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #00d9ff 0%, transparent 70%);
  top: 30%;
  right: -5%;
  animation-delay: 7s;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #ff006e 0%, transparent 70%);
  bottom: 10%;
  left: 20%;
  animation-delay: 14s;
}

@keyframes morphShape {
  0%, 100% { transform: translate(0, 0) scale(1); border-radius: 50%; }
  25% { transform: translate(50px, -30px) scale(1.1); border-radius: 40% 60% 70% 30%; }
  50% { transform: translate(-40px, 40px) scale(0.9); border-radius: 60% 40% 30% 70%; }
  75% { transform: translate(30px, -50px) scale(1.05); border-radius: 30% 70% 50% 50%; }
}

.hero-container {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(122, 62, 202, 0.2);
  border: 1px solid rgba(122, 62, 202, 0.5);
  border-radius: 50px;
  color: #00d9ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 20px rgba(122, 62, 202, 0.3); }
  50% { box-shadow: 0 0 40px rgba(122, 62, 202, 0.6); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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



.hero-title {
  font-family: var(--font-family-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-title-reveal {
  font-size: clamp(72px, 12vw, 180px);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #ffffff 0%, #00d9ff 30%, #7A3ECA 60%, #ff006e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  line-height: 0.9;
  animation: titleReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.hero-title-year {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 16px;
  animation: titleReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 4px;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}

[data-theme="light"] .hero-tagline {
  color: rgba(10, 14, 39, 0.7);
}

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

/* Modern Countdown */
.countdown-modern {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 56px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

.countdown-box {
  background: rgba(10, 14, 39, 0.6);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(122, 62, 202, 0.4);
  border-radius: 16px;
  padding: 24px 28px;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.countdown-box:hover {
  transform: translateY(-8px);
  border-color: #00d9ff;
  box-shadow: 0 8px 32px rgba(0, 217, 255, 0.3), inset 0 0 20px rgba(0, 217, 255, 0.1);
}

.countdown-box:hover::before {
  left: 100%;
}

.countdown-num {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-family-base);
  background: linear-gradient(135deg, #ffffff, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

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

/* Modern Hero Button */
.hero-btn {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, #7A3ECA, #00d9ff);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(122, 62, 202, 0.4);
  animation: fadeInUp 1s ease 0.8s forwards;
  opacity: 0;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(122, 62, 202, 0.6);
}

.hero-btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 50px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1s forwards;
  opacity: 0;
}

.scroll-arrow {
  width: 20px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  position: relative;
}

.scroll-arrow::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* Section Common Styles */
section {
  padding: var(--space-3xl) 0;
  position: relative;
  background: transparent;
}

[data-theme="light"] section {
  background: transparent;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-chapter {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 12px;
  padding: 6px 16px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.1);
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-top: 12px;
  font-weight: 300;
  letter-spacing: 1px;
}

.section-title {
  font-family: var(--font-family-base);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #00d9ff, #7A3ECA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* About Section */
.about-section {
  background: linear-gradient(180deg, #000000 0%, #0a0e27 50%, #000000 100%);
}

.about-content {
  display: grid;
  gap: var(--space-lg);
}

.about-poster-card {
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: var(--blur-glass);
  border: 5px solid;
  border-image: linear-gradient(135deg, var(--color-gold-royal), var(--color-pink-hot), var(--color-blue-accent)) 1;
  border-radius: 0;
  padding: var(--space-xl);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
}

[data-theme="light"] .about-poster-card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.about-poster-card::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px dashed rgba(212, 175, 55, 0.3);
  pointer-events: none;
}

.about-poster-card.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

.poster-card-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.poster-title {
  font-family: var(--font-family-serif);
  font-size: 32px;
  color: var(--color-gold-royal);
  letter-spacing: 2px;
}

.poster-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--theme-text-secondary);
  margin-bottom: 20px;
}

[data-theme="light"] .poster-text {
  color: rgba(10, 14, 39, 0.8);
}

.about-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.info-card {
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: var(--blur-glass);
  border: 4px solid var(--color-blue-accent);
  border-radius: 0;
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .info-card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.info-card.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

.info-card:hover {
  border-color: var(--color-pink-hot);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
  transform: translate(-2px, -2px);
  background: rgba(255, 20, 147, 0.1);
}

.info-symbol {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  font-size: 56px;
  background: linear-gradient(135deg, #00d9ff, #7A3ECA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 16px rgba(0, 217, 255, 0.4));
  transition: all 0.3s ease;
  font-weight: 300;
  line-height: 1;
}

.info-card:hover .info-symbol {
  transform: scale(1.15) rotate(10deg);
  filter: drop-shadow(0 8px 24px rgba(0, 217, 255, 0.6)) drop-shadow(0 0 40px rgba(122, 62, 202, 0.4));
}

.info-card h4 {
  font-size: 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  font-weight: 600;
}

.info-card p {
  font-size: 16px;
  color: var(--theme-text-secondary);
  line-height: 1.6;
}

[data-theme="light"] .info-card p {
  color: rgba(10, 14, 39, 0.8);
}

/* Events Section */
.events-section {
  background: linear-gradient(180deg, #000000 0%, #0a0e27 50%, #000000 100%);
}

.events-filter {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  background: rgba(10, 14, 39, 0.6);
  border: 2px solid rgba(122, 62, 202, 0.4);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

[data-theme="light"] .filter-btn {
  background: rgba(255, 255, 255, 0.9);
  color: rgba(10, 14, 39, 0.8);
  border-color: rgba(122, 62, 202, 0.5);
}

.filter-btn:hover {
  border-color: #00d9ff;
  color: #00d9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 217, 255, 0.3);
}

.filter-btn.active {
  background: linear-gradient(135deg, #7A3ECA, #00d9ff);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 24px rgba(122, 62, 202, 0.5);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.event-card {
  background: var(--theme-card-bg);
  backdrop-filter: blur(20px);
  border: 2px solid;
  border-image: linear-gradient(135deg, #7A3ECA, #00d9ff, #ff006e) 1;
  border-radius: 20px;
  padding: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .event-card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(122, 62, 202, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(122, 62, 202, 0.4);
  border-image: linear-gradient(135deg, #00d9ff, #7A3ECA, #ff006e) 1;
}

.event-card:hover::before {
  opacity: 1;
}

.event-card-inner {
  position: relative;
  z-index: 1;
}

.event-card-header {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.event-title {
  font-family: var(--font-family-base);
  font-size: 28px;
  background: linear-gradient(135deg, #ffffff, #00d9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  letter-spacing: 0;
  font-weight: 700;
}

.event-tagline {
  display: block;
  font-size: 14px;
  color: var(--color-text-secondary);
  font-style: italic;
  letter-spacing: 1px;
}

.event-preview {
  font-size: 16px;
  color: var(--theme-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

[data-theme="light"] .event-preview {
  color: rgba(10, 14, 39, 0.7);
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--theme-text-secondary);
}

[data-theme="light"] .event-meta {
  color: rgba(10, 14, 39, 0.7);
}

.event-category {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #7A3ECA, #00d9ff);
  border: none;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(180deg, #000000 0%, #0a0e27 50%, #000000 100%);
}

/* Gallery Section - Coverflow Container */
.gallery-section .section-container {
    position: relative;
    padding: 0 20px;
}

/* Gallery Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gallery-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-img {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-close:hover {
    transform: scale(1.2);
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.gallery-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-prev { left: 20px; }
.gallery-lightbox-next { right: 20px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  background: rgba(26, 26, 46, 0.8);
  border: 5px solid var(--color-gold-royal);
  transition: var(--transition-smooth);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.4);
  transform: rotate(0deg);
}

[data-theme="light"] .gallery-item {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.gallery-item:nth-child(3n+1) {
  transform: rotate(-2deg);
}

.gallery-item:nth-child(3n+2) {
  transform: rotate(2deg);
}

.gallery-item:nth-child(3n) {
  transform: rotate(-1deg);
}

.gallery-item:hover {
  transform: rotate(0deg) scale(1.05);
  border-color: var(--color-pink-hot);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 20, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  font-size: 48px;
  color: var(--color-gold-royal);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 20, 0.95);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 10001;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 0;
  border: 8px solid var(--color-gold-royal);
  box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.7), inset 0 0 40px rgba(0, 0, 0, 0.5);
  animation: modalZoom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 10002;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--color-gold-royal);
  color: var(--color-gold-royal);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 32px;
  line-height: 1;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--color-gold-royal);
  color: var(--color-navy-deep);
}

/* Schedule Section */
.schedule-section {
  background: linear-gradient(180deg, #000000 0%, #0a0e27 50%, #000000 100%);
}

.schedule-timeline {
  position: relative;
  padding: 20px 0;
}

.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--color-gold-royal), transparent);
  transform: translateX(-50%);
}

.schedule-item {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.schedule-item.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

.schedule-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.schedule-item:nth-child(odd) .schedule-content {
  text-align: right;
}

.schedule-content {
  flex: 1;
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: var(--blur-glass);
  border: 4px solid var(--color-teal-electric);
  border-radius: 0;
  padding: var(--space-lg);
  transition: var(--transition-smooth);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.4);
  position: relative;
}

.schedule-content::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: var(--color-pink-hot);
  transform: rotate(45deg);
}

.schedule-content:hover {
  border-color: var(--color-gold-royal);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.5);
  transform: translate(-2px, -2px);
  background: rgba(0, 217, 217, 0.1);
}

.schedule-symbol {
  font-size: 64px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #00d9ff, #7A3ECA, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 16px rgba(0, 217, 255, 0.4));
  transition: all 0.3s ease;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

.schedule-content:hover .schedule-symbol {
  transform: scale(1.15) rotate(8deg);
  filter: drop-shadow(0 6px 24px rgba(0, 217, 255, 0.7)) drop-shadow(0 0 40px rgba(122, 62, 202, 0.5));
}

.schedule-time {
  font-size: 14px;
  color: var(--color-gold-light);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.schedule-title {
  font-family: var(--font-family-serif);
  font-size: 24px;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.schedule-date {
  font-size: 14px;
  color: var(--color-text-secondary);
}

/* Sponsors Section */
.sponsors-section {
  background: linear-gradient(180deg, #000000 0%, #0a0e27 50%, #000000 100%);
}

.sponsor-tier {
  margin-bottom: var(--space-xl);
}

.sponsor-tier-title {
  font-family: var(--font-family-serif);
  font-size: 28px;
  color: var(--color-gold-royal);
  text-align: center;
  margin-bottom: var(--space-lg);
  letter-spacing: 2px;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.sponsor-card {
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: var(--blur-glass);
  border: 4px solid var(--color-blue-accent);
  border-radius: 0;
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .sponsor-card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.sponsor-card:hover {
  border-color: var(--color-teal-electric);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.5);
  transform: translate(-2px, -2px);
}

.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  margin-bottom: var(--space-md);
  position: relative;
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.sponsor-card:hover .sponsor-logo img {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.4));
}

/* Fallback for text logos */
.sponsor-logo::after {
  content: attr(data-text);
  position: absolute;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gold-light);
  font-family: var(--font-family-serif);
}

.sponsor-logo img ~ ::after {
  display: none;
}

[data-theme="light"] .sponsor-logo img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

[data-theme="light"] .sponsor-card:hover .sponsor-logo img {
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.2));
}

.sponsor-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 500;
}

[data-theme="light"] .sponsor-card p {
  color: rgba(10, 14, 39, 0.8);
}

/* Responsive sponsor grid */
@media (max-width: 1200px) {
  .sponsor-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  
  .sponsor-logo {
    min-height: 80px;
  }
  
  .sponsor-logo img {
    max-height: 80px;
  }
}

@media (max-width: 768px) {
  .sponsor-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-sm);
  }
  
  .sponsor-card {
    padding: var(--space-md);
  }
  
  .sponsor-logo {
    min-height: 70px;
  }
  
  .sponsor-logo img {
    max-height: 70px;
  }
  
  .sponsor-tier-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .sponsor-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .sponsor-logo {
    min-height: 60px;
  }
  
  .sponsor-logo img {
    max-height: 60px;
  }
}

/* Results Section */
.results-section {
  background: linear-gradient(180deg, #000000 0%, #0a0e27 50%, #000000 100%);
}

.results-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.results-tab {
  padding: 12px 28px;
  background: rgba(26, 26, 46, 0.8);
  border: 3px solid var(--color-gold-royal);
  color: var(--color-text-secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}

.results-tab:hover {
  border-color: var(--color-pink-hot);
  color: var(--color-pink-hot);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
  transform: translate(-1px, -1px);
}

.results-tab.active {
  background: var(--color-gold-royal);
  color: var(--color-navy-deep);
  border-color: var(--color-navy-deep);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
  transform: translate(-2px, -2px);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.result-card {
  background: rgba(26, 26, 46, 0.8);
  backdrop-filter: var(--blur-glass);
  border: 4px solid var(--color-gold-royal);
  border-radius: 0;
  padding: var(--space-lg);
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.4);
}

.result-card.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

.result-card:hover {
  border-color: var(--color-pink-hot);
  box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.5);
  transform: translate(-2px, -2px);
}

.result-event {
  font-family: var(--font-family-serif);
  font-size: 22px;
  color: var(--color-gold-royal);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.result-position {
  margin-bottom: 12px;
}

.result-label {
  font-size: 12px;
  color: var(--color-gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 4px;
}

.result-name {
  font-size: 16px;
  color: var(--color-text-primary);
  font-weight: 500;
}



/* Committees Section */
.committees-section {
  background: linear-gradient(180deg, #000000 0%, #0a0e27 50%, #000000 100%);
}

.committees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.committee-card {
  background: var(--theme-card-bg);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(122, 62, 202, 0.4);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .committee-card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.committee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.committee-card:hover {
  border-color: #00d9ff;
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 217, 255, 0.3);
}

.committee-card:hover::before {
  opacity: 1;
}

.committee-symbol {
  font-size: 72px;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
  font-weight: 300;
  background: linear-gradient(135deg, #00d9ff, #7A3ECA, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 20px rgba(0, 217, 255, 0.5));
  line-height: 1;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.committee-card:hover .committee-symbol {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 8px 32px rgba(0, 217, 255, 0.8)) drop-shadow(0 0 40px rgba(122, 62, 202, 0.6));
}

.committee-name {
  font-family: var(--font-family-base);
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.committee-tagline {
  font-size: 14px;
  color: var(--theme-text-secondary);
  font-style: italic;
  position: relative;
  z-index: 1;
}

[data-theme="light"] .committee-tagline {
  color: rgba(10, 14, 39, 0.7);
}

/* Core Team Section - Creative People Icons */
.team-section {
  background: linear-gradient(180deg, #000000 0%, #0a0e27 50%, #000000 100%);
  position: relative;
}

.team-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(122, 62, 202, 0.1) 0%, transparent 70%);
  pointer-events: none;
}



.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  background: var(--theme-card-bg);
  border: 2px solid rgba(122, 62, 202, 0.4);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  backdrop-filter: blur(20px);
}

[data-theme="light"] .team-card {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.team-card.visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

.team-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #7A3ECA, #00d9ff, #ff006e);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(122, 62, 202, 0.4);
  border-color: #00d9ff;
}

.team-card:hover::before {
  opacity: 0.3;
}

.team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #7A3ECA, #00d9ff);
  border: 3px solid rgba(0, 217, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.4);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.team-photo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: rotate(45deg);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.team-card:hover .team-photo {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 48px rgba(0, 217, 255, 0.6), 0 0 60px rgba(122, 62, 202, 0.4);
}

/* PREMIUM DIRECTOR STYLING */
.team-card.director {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
  border: 3px solid #FFD700;
  box-shadow: 0 12px 48px rgba(255, 215, 0, 0.5), 0 0 80px rgba(255, 165, 0, 0.3);
  transform: scale(1.05);
  position: relative;
  overflow: hidden;
}

.team-card.director::before {
  opacity: 0.5;
}

.team-card.director::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #786a1d, #FFA500, #FFD700, #FFA500);
  background-size: 300% 300%;
  z-index: -1;
  border-radius: 20px;
  animation: gradientRotate 4s ease infinite;
}

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

.team-card.director .team-photo {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
  background-size: 200% 200%;
  animation: goldShine 3s ease infinite;
  border: 4px solid #FFD700;
  box-shadow: 0 12px 48px rgba(255, 215, 0, 0.7), 0 0 80px rgba(255, 165, 0, 0.5), inset 0 0 30px rgba(255, 215, 0, 0.3);
  position: relative;
}

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

/* crown removed for director */

.team-card.director:hover {
  transform: scale(1.1) translateY(-12px);
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.8), 0 0 100px rgba(255, 165, 0, 0.6);
}

.team-card.director:hover .team-photo {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 16px 64px rgba(255, 215, 0, 0.9), 0 0 100px rgba(255, 165, 0, 0.7);
}

.team-card.director .team-name {
  background: linear-gradient(135deg, #123027, #7f5301, #01230d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
  font-weight: 900;
  text-shadow: 0 2px 20px rgba(255, 215, 0, 0.5);
  letter-spacing: 1px;
}

.team-card.director .team-title {
  color: #584d0a;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 2px 12px rgba(255, 215, 0, 0.5);
  margin-top: 4px;
}

.team-card.director .team-role {
  color: #196245;
  font-size: 14px;
}

.team-card.director .team-dept {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0a0e27;
  border: 2px solid #FFD700;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5);
  font-weight: 700;
}

.team-name {
  font-family: var(--font-family-base);
  font-size: 20px;
  font-weight: 700;
  color: var(--theme-text);
  letter-spacing: 0;
  margin-bottom: 8px;
}

[data-theme="light"] .team-name {
  color: #0a0e27;
}

.team-title {
  font-size: 14px;
  font-weight: 600;
  color: #00d9ff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--theme-text-secondary);
  font-style: italic;
  margin-bottom: 4px;
}

[data-theme="light"] .team-role {
  color: rgba(10, 14, 39, 0.7);
}

.team-dept {
  font-size: 11px;
  color: #ff006e;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  background: rgba(255, 0, 110, 0.15);
  border: 1px solid rgba(255, 0, 110, 0.3);
  display: inline-block;
  margin-top: 12px;
  border-radius: 20px;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #0a0e27 0%, #000000 100%);
  padding: 64px 0 24px;
  border-top: 2px solid rgba(122, 62, 202, 0.4);
  position: relative;
  z-index: 100;
  margin-top: 96px;
}

[data-theme="light"] .footer {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  border-top: 2px solid rgba(122, 62, 202, 0.3);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 20px;
}

.footer-title {
  font-family: var(--font-family-base);
  font-size: 32px;
  background: linear-gradient(135deg, #ffffff, #00d9ff, #7A3ECA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 16px;
  color: #00d9ff;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.footer-text {
  font-size: 14px;
  color: var(--theme-text-secondary);
  line-height: 1.6;
}

[data-theme="light"] .footer-text {
  color: rgba(10, 14, 39, 0.7);
}

.footer-heading {
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-contact p {
  font-size: 14px;
  color: var(--theme-text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.6;
}

[data-theme="light"] .footer-contact p {
  color: rgba(10, 14, 39, 0.7);
}

.contact-icon {
  font-size: 18px;
  min-width: 24px;
}

.footer-address {
  font-size: 14px;
  color: var(--theme-text-secondary);
  line-height: 1.8;
}

[data-theme="light"] .footer-address {
  color: rgba(10, 14, 39, 0.7);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--theme-text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

[data-theme="light"] .footer-links a {
  color: rgba(10, 14, 39, 0.7);
}

.footer-links a:hover {
  color: #00d9ff;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(122, 62, 202, 0.3);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--theme-text-secondary);
  margin: 0;
}

[data-theme="light"] .footer-bottom p {
  color: rgba(10, 14, 39, 0.7);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 20, 0.9);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  position: relative;
  z-index: 10001;
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: var(--blur-glass);
  border: 6px solid var(--color-gold-royal);
  border-radius: 0;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl);
  box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(212, 175, 55, 0.1);
  animation: modalZoom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="light"] .modal-content {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.2), inset 0 0 30px rgba(212, 175, 55, 0.05);
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--color-pink-hot) 0px,
    var(--color-pink-hot) 15px,
    var(--color-blue-accent) 15px,
    var(--color-blue-accent) 30px
  );
}

.modal-content::-webkit-scrollbar {
  width: 8px;
}

.modal-content::-webkit-scrollbar-track {
  background: rgba(15, 15, 20, 0.5);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: var(--color-gold-royal);
  border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-light);
}

@keyframes modalZoom {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--color-gold-royal);
  color: var(--color-gold-royal);
  font-size: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  line-height: 1;
}

.modal-close:hover {
  background: var(--color-gold-royal);
  color: var(--color-navy-deep);
  transform: rotate(90deg);
}

#modalBody h2 {
  font-family: var(--font-family-serif);
  font-size: 36px;
  color: var(--color-gold-royal);
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

#modalBody h3 {
  font-family: var(--font-family-serif);
  font-size: 24px;
  color: var(--color-gold-light);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  letter-spacing: 1px;
}

#modalBody p {
  font-size: 16px;
  color: var(--theme-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

[data-theme="light"] #modalBody p {
  color: rgba(10, 14, 39, 0.8);
}

#modalBody .event-tagline {
  font-style: italic;
  color: var(--theme-text-secondary);
  margin-bottom: var(--space-md);
}

[data-theme="light"] #modalBody .event-tagline {
  color: rgba(10, 14, 39, 0.7);
}

#modalBody .modal-info-grid {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: rgba(15, 15, 20, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

#modalBody .modal-info-item {
  font-size: 16px;
  color: var(--theme-text-secondary);
}

[data-theme="light"] #modalBody .modal-info-item {
  color: rgba(10, 14, 39, 0.8);
}

#modalBody .modal-members {
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

#modalBody .modal-member {
  background: rgba(15, 15, 20, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: var(--space-md);
}

#modalBody .modal-member h4 {
  font-size: 20px;
  color: var(--color-gold-light);
  margin-bottom: 8px;
}

#modalBody .modal-member p {
  font-size: 14px;
  color: var(--theme-text-secondary);
  margin-bottom: 4px;
}

[data-theme="light"] #modalBody .modal-member p {
  color: rgba(10, 14, 39, 0.8);
}

#modalBody .modal-responsibilities {
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: rgba(15, 15, 20, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

#modalBody .modal-responsibilities ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#modalBody .modal-responsibilities li {
  font-size: 15px;
  color: var(--theme-text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

[data-theme="light"] #modalBody .modal-responsibilities li {
  color: rgba(10, 14, 39, 0.8);
}

#modalBody .modal-responsibilities li:last-child {
  border-bottom: none;
}

#modalBody .modal-responsibilities li::before {
  content: '✓';
  color: var(--color-gold-royal);
  margin-right: 12px;
  font-weight: bold;
}

#modalBody .modal-committee-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

#modalBody .modal-committee-header svg {
  filter: drop-shadow(0 4px 16px rgba(0, 217, 255, 0.4));
}

/* Creative Registration Button */
.register-btn-creative {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--color-gold-royal) 0%, var(--color-gold-light) 100%);
  color: var(--color-navy-deep);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

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

.register-btn-creative:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
}

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

.register-btn-creative .register-icon {
  font-size: 20px;
  display: inline-block;
  animation: sparkle 1.5s ease-in-out infinite;
}

.register-btn-creative .register-arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.register-btn-creative:hover .register-arrow {
  transform: translateX(4px);
}

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

[data-theme="light"] .register-btn-creative {
  background: linear-gradient(135deg, var(--color-gold-royal) 0%, var(--color-orange-500) 100%);
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

[data-theme="light"] .register-btn-creative:hover {
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.3);
}

/* Event Modal Actions Container */
.event-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
}

/* Instagram Button in Modal */
.instagram-btn-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 25%, #8134af 50%, #515bd4 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(245, 133, 41, 0.3);
}

.instagram-btn-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 133, 41, 0.5);
}

.instagram-btn-modal:active {
  transform: translateY(0);
}

.instagram-btn-modal svg {
  width: 20px;
  height: 20px;
}

[data-theme="light"] .instagram-btn-modal {
  box-shadow: 0 8px 20px rgba(245, 133, 41, 0.25);
}

[data-theme="light"] .instagram-btn-modal:hover {
  box-shadow: 0 12px 30px rgba(245, 133, 41, 0.4);
}

/* Responsive actions */
@media (max-width: 768px) {
  .event-modal-actions {
    flex-direction: column;
  }

  .register-btn-creative,
  .instagram-btn-modal {
    width: 100%;
  }
}

/* Responsive Registration Button */
@media (max-width: 768px) {
  .register-btn-creative {
    width: 100%;
    padding: 12px 24px;
    font-size: 15px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }
  
  .nav-link {
    font-size: 13px;
  }
  
  .section-container {
    padding: 0 24px;
  }
}

@media (max-width: 1024px) {
  .schedule-timeline::before {
    left: 20px;
  }
  
  .schedule-item,
  .schedule-item:nth-child(odd) {
    flex-direction: row;
    padding-left: 60px;
  }
  
  .schedule-item:nth-child(odd) .schedule-content {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 20, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }
  
  [data-theme="light"] .nav-links {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(122, 62, 202, 0.3);
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .countdown-modern {
    gap: 12px;
  }
  
  .countdown-box {
    min-width: 90px;
    padding: 18px 20px;
  }
  
  .countdown-num {
    font-size: 36px;
  }
  
  .about-info-grid,
  .events-grid,
  .announcements-grid,
  .committees-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
  
  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
  
  .section-container {
    padding: 0 20px;
  }
  
  section {
    padding: var(--space-2xl) 0;
  }
  
  .modal-content {
    padding: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 12px 20px;
  }
  
  .nav-logo {
    font-size: 20px;
  }
  
  .hero-badge {
    font-size: 10px;
    padding: 6px 18px;
    letter-spacing: 1px;
  }
  
  .hero-container {
    padding: 20px;
  }
  
  .countdown-box {
    min-width: 75px;
    padding: 16px 18px;
  }
  
  .countdown-num {
    font-size: 32px;
  }
  
  .countdown-text {
    font-size: 10px;
  }
  
  .hero-btn {
    padding: 14px 36px;
    font-size: 14px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .poster-title {
    font-size: 24px;
  }
  
  .poster-text {
    font-size: 16px;
  }
  
  .event-title,
  .schedule-title,
  .result-event {
    font-size: 20px;
  }
  
  .events-filter,
  .results-tabs {
    gap: 12px;
  }
  
  .filter-btn,
  .results-tab {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .modal-content {
    padding: var(--space-md);
  }
  
  #modalBody h2 {
    font-size: 28px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .sponsor-grid {
    grid-template-columns: 1fr;
  }
  
  .results-grid {
    grid-template-columns: 1fr;
  }
}

/* Floating Instagram Button */
.instagram-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 25%, #8134af 50%, #515bd4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  box-shadow: 0 8px 25px rgba(245, 133, 41, 0.4);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
  border: none;
  cursor: pointer;
}

.instagram-fab:hover {
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 12px 35px rgba(245, 133, 41, 0.6);
}

.instagram-fab:active {
  transform: scale(0.95);
}

.instagram-fab svg {
  width: 28px;
  height: 28px;
  stroke-width: 0;
}

/* Pulse animation on load */
@keyframes pulse-instagram {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(245, 133, 41, 0.4), 0 0 0 0 rgba(245, 133, 41, 0.7);
  }
  50% {
    box-shadow: 0 8px 25px rgba(245, 133, 41, 0.4), 0 0 0 10px rgba(245, 133, 41, 0);
  }
}

.instagram-fab {
  animation: pulse-instagram 2s ease-in-out infinite;
}

.instagram-fab:hover {
  animation: none;
}

/* Responsive Instagram button */
@media (max-width: 768px) {
  .instagram-fab {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .instagram-fab svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .instagram-fab {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }

  .instagram-fab svg {
    width: 22px;
    height: 22px;
  }
}


/* =========================================
   2. THE WARP STREAM (Committees Coverflow)
   ========================================= */
/* =========================================
   COMMITTEES COVERFLOW (Final Robust Version)
   ========================================= */

/* 1. Main Container - Relative positioning is CRITICAL for buttons */
.committees-section .section-container {
    position: relative;
    padding: 0 20px; /* Prevent buttons from overlapping content on small screens */
}

/* 2. The Scrollable Area */
.coverflow-scene {
    width: 100%;
    height: 500px; /* Fixed height for the 3D scene */
    perspective: 1000px;
    display: flex;
    align-items: center;
    overflow-x: scroll; /* Enables native swipe on mobile */
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
    position: relative;
    /* smooth scrolling for touch devices */
    -webkit-overflow-scrolling: touch; 
    scroll-behavior: auto; /* We control smoothness via JS for buttons */
}
.coverflow-scene::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* 3. The Track & Cards */
.coverflow-track {
    display: flex;
    /* Exact center alignment logic */
    padding: 0 calc(50% - 125px); 
    gap: 40px;
    transform-style: preserve-3d;
    padding-bottom: 40px; /* Space for shadows */
}

.coverflow-card {
    flex: 0 0 250px; /* Fixed width */
    height: 340px;   /* Fixed height */
    
    /* Glassmorphism Look */
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    
    /* Flex Layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    
    /* Animation */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    
    /* Default Inactive State */
    transform: scale(0.85) rotateY(25deg);
    opacity: 0.5;
    filter: blur(3px) grayscale(0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Active State (Center Card) */
.coverflow-card.active {
    transform: scale(1.1) rotateY(0deg) translateZ(0);
    opacity: 1;
    filter: blur(0) grayscale(0);
    z-index: 10;
    border-color: #00d9ff;
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.6),
        0 0 30px rgba(0, 217, 255, 0.2);
    background: linear-gradient(145deg, rgba(20,20,35,0.9) 0%, rgba(10,10,20,0.95) 100%);
}

/* 4. Navigation Buttons */
.coverflow-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #00d9ff;
    color: #00d9ff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000; /* Ensure it's on top of cards */
    backdrop-filter: blur(5px);
    transition: all 0.2s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
    user-select: none;
    outline: none;
}

.coverflow-nav-btn:hover {
    background: #00d9ff;
    color: #000;
    box-shadow: 0 0 20px #00d9ff;
    transform: translateY(-50%) scale(1.1);
}

.coverflow-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.coverflow-prev { left: 10px; }
.coverflow-next { right: 10px; }

/* 5. Content Styling */
.coverflow-icon { font-size: 48px; margin-bottom: 15px; transition: 0.3s; }
.coverflow-title { font-size: 1.2rem; font-weight: 700; color: #fff; margin: 10px 0; }
.coverflow-members { margin-top: auto; font-size: 11px; padding: 6px 14px; background: rgba(0,217,255,0.1); border-radius: 20px; color: #00d9ff; border: 1px solid rgba(0,217,255,0.2); }

/* 6. Gallery Coverflow Cards - Image specific styling */
.gallery-coverflow-card {
    position: relative;
    overflow: hidden;
}

.gallery-coverflow-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-card-title {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-coverflow-card.active .gallery-card-title {
    opacity: 1;
}

/* 7. Responsive - Smaller cards for mobile */
@media (max-width: 768px) {
    .coverflow-scene { height: 450px; }
    .coverflow-card { flex: 0 0 220px; height: 300px; }
    .coverflow-nav-btn { width: 40px; height: 40px; font-size: 16px; background: rgba(0,0,0,0.8); }
    .coverflow-prev { left: 5px; }
    .coverflow-next { right: 5px; }
}
/* =========================================
   3. THE HOLOGRAPHIC STACK (Events)
   ========================================= */
.holo-stack-container {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.holo-card {
    position: sticky;
    top: 120px; /* Stick position */
    min-height: 450px;
    margin-bottom: 80px;
    
    background: rgba(16, 16, 28, 0.85);
    backdrop-filter: blur(30px); /* Frosted glass */
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.2); /* Highlight top edge */
    border-radius: 30px;
    
    box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    
    display: grid;
    grid-template-columns: 35% 65%;
    
    transform-origin: top center;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.holo-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--color-gold-royal);
    box-shadow: 0 -20px 50px rgba(122, 62, 202, 0.3);
}

.holo-visual {
    background: linear-gradient(160deg, rgba(122,62,202,0.2), rgba(0,0,0,0));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.05);
    position: relative;
}

.holo-visual::after {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.holo-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.holo-badge {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #00d9ff;
    color: #00d9ff;
    border-radius: 50px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    margin-bottom: 15px;
}

.holo-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .holo-card { grid-template-columns: 1fr; top: 90px; min-height: auto; }
    .holo-visual { height: 120px; font-size: 40px; }
    .gallery-3d-scene { height: 400px; }
    .gallery-ring { width: 200px; height: 140px; }
}



/* =========================================
   CREATIVE EVENTS CAROUSEL
   ========================================= */

.creative-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 0;
    perspective: 1000px;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    padding: 40px 20px; /* Space for shadows/hover effects */
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content; /* Allows track to grow */
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

/* THE CARD DESIGN */
.creative-card {
    position: relative;
    width: 320px;
    height: 450px;
    flex-shrink: 0;
    border-radius: 24px;
    background: rgba(20, 20, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    
    /* Flex layout for content */
    display: flex;
    flex-direction: column;
    user-select: none;
}

/* Active/Hover State */
.creative-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.6),
        0 0 20px var(--glow-color);
    border-color: var(--glow-color);
}

/* Visual Top Half */
.cc-visual {
    height: 45%;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255,255,255,0.1);
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cc-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(20, 20, 35, 1));
}

/* Content Bottom Half */
.cc-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.cc-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 10px;
    color: #fff;
}

.cc-title {
    font-family: var(--font-family-base);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.cc-desc {
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.cc-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #fff;
}

.cc-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.creative-card:hover .cc-arrow {
    background: var(--glow-color);
    color: #000;
    transform: rotate(-45deg);
}

/* NAVIGATION BUTTONS */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.carousel-nav-btn:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav-btn.prev { left: -20px; }
.carousel-nav-btn.next { right: -20px; }

/* Swipe Indicator */
.swipe-indicator {
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    margin-top: 10px;
    display: none; /* Hidden on desktop */
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .creative-carousel-wrapper {
        margin: 20px auto;
    }
    
    .creative-card {
        width: 280px;
        height: 400px;
    }

    .carousel-nav-btn {
      display: flex !important;
      opacity: 1 !important;
      pointer-events: auto !important;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      background: rgba(0,0,0,0.5);
      color: #fff;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 22px;
      border: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .carousel-nav-btn.prev {
      left: 8px;
    }
    .carousel-nav-btn.next {
      right: 8px;
    }
    
    .swipe-indicator {
        display: block;
    }
    
    .carousel-viewport {
        padding: 20px 10px;
    }
}


/* =========================================
   MODERN SPONSORS SECTION (Glassmorphism)
   ========================================= */
.modern-sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-tier-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sponsor-tier-head .sponsor-tier-title {
    margin-bottom: 0;
    text-align: left;
}

.sponsor-carousel-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sponsor-nav {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #fde047, #f97316);
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 15px 28px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.sponsor-nav:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 20px 34px rgba(249, 115, 22, 0.4);
}

.sponsor-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

[data-theme="light"] .sponsor-nav {
    border-color: rgba(17, 24, 39, 0.15);
    color: #111;
}

.sponsor-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 10px;
}

.sponsor-carousel-track {
    display: flex;
    gap: 24px;
    padding: 10px 6px;
    width: max-content;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.sponsor-carousel-track .modern-sponsor-card {
    flex: 0 0 clamp(240px, 28vw, 320px);
}

.modern-sponsor-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modern-sponsor-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5); /* Gold Border */
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 0.07);
}

/* Glow Effect */
.sponsor-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s ease;
    pointer-events: none;
}

.modern-sponsor-card:hover .sponsor-glow {
    opacity: 1;
    transform: scale(1);
}

/* Logo Styling */
.sponsor-logo-wrapper {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
    background: #fff; /* White bg for logos to pop */
    border-radius: 50%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: transform 0.4s ease;
    border: 4px solid transparent;
}

.modern-sponsor-card.no-logo .sponsor-logo-wrapper {
    background: rgba(255, 255, 255, 0.06);
    border: 2px dashed rgba(148, 163, 184, 0.5);
    box-shadow: inset 0 0 25px rgba(15, 23, 42, 0.6);
}

.modern-sponsor-card:hover .sponsor-logo-wrapper {
    transform: scale(1.1) rotate(5deg);
    border-color: #FFD700;
}

.sponsor-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.sponsor-initials {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-family: var(--font-family-base, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
}

.sponsor-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.sponsor-desc {
    font-size: 0.9rem;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sponsor-subheading {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 4px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

@media (max-width: 640px) {
    .sponsor-tier-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .sponsor-nav {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .sponsor-carousel-track .modern-sponsor-card {
        flex: 0 0 80vw;
    }
}

/* =========================================
   HERO FLOATING SPONSORS
   ========================================= */
.hero-floating-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2; /* Behind text (10) but above BG shapes (1) */
    overflow: hidden;
}

.floating-sponsor-orb {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    animation: floatAround 15s infinite ease-in-out;
    opacity: 0.7;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0); /* GPU acceleration */
}

/* Major Sponsors - Premium Gold Glow */
.floating-sponsor-orb.major-sponsor,
.floating-sponsor-orb.sponsor-major {
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 50px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 220, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.4);
    opacity: 0.85;
    animation: floatAround 14s infinite ease-in-out, pulseGlow 3s infinite ease-in-out;
}

/* Associated Collaborators - Purple/Blue Glow */
.floating-sponsor-orb.associated-collaborator,
.floating-sponsor-orb.sponsor-associated {
    box-shadow: 
        0 0 25px rgba(122, 62, 202, 0.5),
        0 0 40px rgba(0, 217, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 240, 255, 0.85));
    border: 2px solid rgba(122, 62, 202, 0.3);
    opacity: 0.7;
    animation: floatAround 16s infinite ease-in-out, shimmer 4s infinite ease-in-out;
}

/* Web Host Providers - Cyan/Teal Glow */
.floating-sponsor-orb.webhost-provider,
.floating-sponsor-orb.sponsor-webhost {
    box-shadow: 
        0 0 28px rgba(6, 182, 212, 0.6),
        0 0 45px rgba(6, 182, 212, 0.3),
        0 0 60px rgba(0, 217, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(220, 255, 255, 0.88));
    border: 2px solid rgba(6, 182, 212, 0.4);
    opacity: 0.75;
    animation: floatAround 18s infinite ease-in-out, rotateGlow 5s infinite linear;
}

.floating-sponsor-orb:hover {
    opacity: 1 !important;
    z-index: 100; /* Bring to front on hover */
    transform: scale(1.15) !important;
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.8),
        0 0 60px rgba(255, 215, 0, 0.5),
        0 0 80px rgba(255, 215, 0, 0.3) !important;
}

/* Creative Animation Keyframes */
@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.6),
            0 0 50px rgba(255, 215, 0, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 0 40px rgba(255, 215, 0, 0.8),
            0 0 70px rgba(255, 215, 0, 0.5),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

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

@keyframes rotateGlow {
    0% { 
        box-shadow: 
            0 0 28px rgba(6, 182, 212, 0.6),
            0 0 45px rgba(0, 217, 255, 0.3);
    }
    25% { 
        box-shadow: 
            0 0 35px rgba(0, 217, 255, 0.7),
            0 0 55px rgba(6, 182, 212, 0.4);
    }
    50% { 
        box-shadow: 
            0 0 28px rgba(6, 182, 212, 0.6),
            0 0 45px rgba(0, 217, 255, 0.3);
    }
    75% { 
        box-shadow: 
            0 0 35px rgba(0, 217, 255, 0.7),
            0 0 55px rgba(6, 182, 212, 0.4);
    }
}

.floating-sponsor-orb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    pointer-events: none;
}

/* Floating Animation Keyframes */
@keyframes floatAround {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -50px) rotate(10deg); }
    50% { transform: translate(-20px, 40px) rotate(-5deg); }
    75% { transform: translate(-40px, -20px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-floating-container {
        /* Reduce animation complexity on mobile */
        transform: translateZ(0);
    }
    
    .floating-sponsor-orb {
        width: 50px;
        height: 50px;
        padding: 8px;
        opacity: 0.6; /* Less intrusive on mobile */
        animation-duration: 18s; /* Slower animation for better performance */
    }
    
    .floating-sponsor-orb.major-sponsor,
    .floating-sponsor-orb.sponsor-major {
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    }
    
    .floating-sponsor-orb.associated-collaborator,
    .floating-sponsor-orb.sponsor-associated {
        box-shadow: 0 0 18px rgba(122, 62, 202, 0.4);
    }
    
    .floating-sponsor-orb.webhost-provider,
    .floating-sponsor-orb.sponsor-webhost {
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
    }
}

@media (max-width: 480px) {
    .floating-sponsor-orb {
        width: 45px;
        height: 45px;
        padding: 6px;
        opacity: 0.5;
    }
    
    /* Simplify animations on very small screens */
    .floating-sponsor-orb.major-sponsor,
    .floating-sponsor-orb.sponsor-major {
        animation: floatAround 20s infinite ease-in-out;
    }
    
    .floating-sponsor-orb.associated-collaborator,
    .floating-sponsor-orb.sponsor-associated {
        animation: floatAround 22s infinite ease-in-out;
    }
    
    .floating-sponsor-orb.webhost-provider,
    .floating-sponsor-orb.sponsor-webhost {
        animation: floatAround 24s infinite ease-in-out;
    }
}



/* =========================================
   NEON STREAM SCHEDULE STYLES
   ========================================= */

.schedule-section {
    background: linear-gradient(180deg, #000000 0%, #0a0e27 50%, #000000 100%);
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

/* Tabs */
.stream-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    z-index: 10;
    position: relative;
}

.stream-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stream-tab-btn.active {
    background: linear-gradient(135deg, #00d9ff, #7A3ECA);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

/* Stream Container */
.stream-container {
    display: none;
    position: relative;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stream-container.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Buttons */
.stream-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid #00d9ff;
    color: #00d9ff;
    font-size: 20px;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.stream-nav:hover {
    background: #00d9ff;
    color: #000;
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.stream-nav.prev { left: 10px; }
.stream-nav.next { right: 10px; }

/* The Track */
.stream-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    padding: 40px 60px; /* Space for buttons */
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.stream-track::-webkit-scrollbar { display: none; }

/* Event Card */
.stream-card {
    flex: 0 0 300px;
    background: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    transition: all 0.3s ease;
}

/* Neon Connector Line */
.stream-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -40px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,217,255,0.2), rgba(0,217,255,0.8));
    z-index: -1;
}

.stream-card:first-child::before { display: none; }

.stream-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(20, 20, 35, 0.9);
    border-color: #00d9ff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(0, 217, 255, 0.15);
    z-index: 5;
}

.stream-time {
    font-size: 12px;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.1);
    padding: 6px 12px;
    border-radius: 30px;
    width: fit-content;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.stream-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.stream-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

/* Scroll Hint */
.scroll-hint {
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
}

.mobile-hint { display: none; }

/* Responsive */
@media (max-width: 768px) {
    .stream-card { flex: 0 0 260px; min-height: 200px; }
    .stream-nav { display: none; } /* Hide buttons on mobile */
    .stream-track { padding: 40px 20px; }
    .desktop-hint { display: none; }
    .mobile-hint { display: inline-block; }
}