/* fonts.css */
/* Custom Nerdi Gras Fonts */
/* Font-face declarations for uploaded custom fonts */

/* Megloria - Used for titles and headings */
@font-face {
    font-family: 'Megloria';
    src: url('/assets/fonts/MEGLORIA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Albertus Medium - Used for content and body text */
@font-face {
    font-family: 'Albertus';
    src: url('/assets/fonts/AlbertusMedium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Albertus';
    src: url('/assets/fonts/Albertus Medium Regular font.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Albertus';
    src: url('/assets/fonts/ALBR55W.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Albertus';
    src: url('/assets/fonts/ALBR56W.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Europa Regular - Additional font available */
@font-face {
    font-family: 'Europa';
    src: url('/assets/fonts/Europa Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Desdemona Black - Additional display font available */
@font-face {
    font-family: 'Desdemona';
    src: url('/assets/fonts/AnyConv.com__DESDEMONA BLACK REGULAR.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Font family CSS custom properties */
:root {
    /* Primary fonts for the site */
    --font-heading: 'Megloria', 'Fredoka One', cursive, sans-serif;
    --font-content: 'Albertus', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Megloria', 'Orbitron', monospace, sans-serif;
    --font-accent: 'Desdemona', 'Exo', sans-serif;
    
    /* Fallback fonts for different contexts */
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    --font-system: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Apply custom fonts to base elements */
body {
    font-family: var(--font-content);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* Specific heading styles with Megloria */
.hero-title,
.page-title,
.section-title,
.card-title,
.modal-title,
.admin-title,
.logo-title {
    font-family: var(--font-heading);
    font-weight: normal;
}

/* Content styles with Albertus */
p, li, td, th, label, input, textarea, select, button {
    font-family: var(--font-content);
}

/* Special display elements */
.display-text,
.countdown-number,
.stat-number {
    font-family: var(--font-display);
}

/* Navigation and UI elements */
.nav-link,
.btn,
.tab-btn {
    font-family: var(--font-content);
    font-weight: 500;
}

/* Ensure proper font loading */
.fonts-loading body {
    visibility: hidden;
}

.fonts-loaded body {
    visibility: visible;
}

/* Responsive font scaling */
@media (max-width: 768px) {
    :root {
        /* Slightly smaller fonts on mobile */
        --font-scale-mobile: 0.95;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-size: calc(1em * var(--font-scale-mobile, 1));
    }
}

/* Font feature settings for better rendering */
body {
    font-feature-settings: "kern" 1, "liga" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Specific overrides for custom fonts */
.megloria {
    font-family: var(--font-heading) !important;
}

.albertus {
    font-family: var(--font-content) !important;
}

.europa {
    font-family: 'Europa', var(--font-content);
}

.desdemona {
    font-family: var(--font-accent);
}

/* main.css */
/* Nerdi Gras Main Stylesheet */
/* Mobile-first responsive design with Mardi Gras inspired colors */

/* Import custom fonts */
@import url('fonts.css');

/* CSS Custom Properties (Variables) */
:root {
  /* Color Palette - Mardi Gras + Tech */
  --primary-purple: #667eea;
  --primary-blue: #764ba2;
  --mardi-gras-purple: #4b0082;
  --mardi-gras-green: #00a86b;
  --mardi-gras-gold: #ffd700;
  --carnival-orange: #ff6b35;
  --tech-cyan: #00d4ff;
  
  /* Neutrals */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
  --carnival-gradient: linear-gradient(45deg, var(--mardi-gras-purple), var(--mardi-gras-green), var(--mardi-gras-gold));
  --tech-gradient: linear-gradient(90deg, var(--tech-cyan), var(--primary-purple));
  
  /* Typography - Updated to use custom fonts */
  --font-primary: 'Albertus', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Megloria', 'Fredoka One', cursive, sans-serif;
  --font-display: 'Megloria', 'Orbitron', monospace, sans-serif;
  --font-accent: 'Desdemona', 'Exo', sans-serif;
  --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  
  /* Font Sizes - Responsive */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 3rem);
  --text-4xl: clamp(2.25rem, 1.8rem + 2.25vw, 4rem);
  --text-5xl: clamp(3rem, 2.4rem + 3vw, 5rem);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Layout - Responsive containers */
  --container-max: 1200px;
  --container-wide: 1400px;
  --container-padding: var(--space-md);
  --section-spacing: var(--space-4xl);
  
  /* Breakpoints */
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
  --bp-2xl: 1400px;
  
  /* Animation */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
}

/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--mardi-gras-purple);
  color: var(--white);
  padding: 8px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

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

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--dark-gray);
}

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

p {
  font-family: var(--font-primary);
  margin-bottom: var(--space-md);
}

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

a:hover, a:focus {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* Lists */
ul, ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

li {
  font-family: var(--font-primary);
  margin-bottom: var(--space-xs);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  user-select: none;
}

.btn:focus {
  outline: 2px solid var(--primary-purple);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: transparent;
}

.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, var(--mardi-gras-purple) 0%, var(--primary-blue) 100%);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-purple);
  border-color: var(--primary-purple);
}

.btn-secondary:hover, .btn-secondary:focus {
  background: var(--primary-purple);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-large {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--text-lg);
}

.btn-small {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--text-sm);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: all var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--container-padding);
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  color: var(--dark-gray);
}

.logo {
  height: 40px;
  width: auto;
  margin-right: var(--space-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  background: var(--carnival-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: carnival-shimmer 3s ease-in-out infinite;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--dark-gray);
  margin: 3px 0;
  transition: var(--transition-fast);
  border-radius: var(--radius-sm);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-lg);
}

.nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  padding: var(--space-sm) 0;
  position: relative;
}

.nav-link:hover, .nav-link:focus {
  color: var(--primary-purple);
  text-decoration: none;
}

.nav-link.active {
  color: var(--primary-purple);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: var(--radius-sm);
}

.nav-cta {
  margin-left: var(--space-md);
}

.nav-tickets {
  background: var(--mardi-gras-gold);
  color: var(--dark-gray);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

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

.nav-tickets:hover, .nav-tickets:focus {
  background: var(--carnival-orange);
  color: var(--white);
  text-decoration: none;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: var(--space-sm) 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-fast);
  list-style: none;
}

.nav-menu li:hover .dropdown-menu,
.nav-menu li:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: var(--space-sm) var(--space-lg);
  color: var(--dark-gray);
}

.dropdown-menu a:hover, .dropdown-menu a:focus {
  background: var(--light-gray);
  color: var(--primary-purple);
}

/* Main Content */
.main-content {
  padding-top: 80px; /* Account for fixed header */
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(70, 126, 234, 0.8) 0%,
    rgba(118, 75, 162, 0.7) 50%,
    rgba(75, 0, 130, 0.8) 100%
  );
  z-index: -1;
}

.hero-content {
  z-index: 1;
  max-width: 800px;
  padding: var(--space-2xl) var(--space-md);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 900;
  margin-bottom: var(--space-lg);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
}

.hero-title .highlight {
  background: var(--carnival-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: carnival-shimmer 3s ease-in-out infinite;
}

.hero-subtitle {
  display: block;
  font-size: var(--text-xl);
  font-weight: 400;
  margin-top: var(--space-sm);
  opacity: 0.9;
}

.hero-description {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2xl);
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3xl);
}

.hero-info {
  display: flex;
  gap: var(--space-2xl);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.9;
}

.info-item {
  text-align: center;
}

.info-item strong {
  display: block;
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
}

.info-item span {
  font-size: var(--text-sm);
  opacity: 0.8;
}

/* Countdown Timer */
.countdown-container {
  position: absolute;
  bottom: var(--space-2xl);
  left: 0;
  right: 0;
  z-index: 1;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 80px;
}

.countdown-number {
  font-family: var(--font-mono);
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--mardi-gras-gold);
}

.countdown-label {
  font-size: var(--text-sm);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Styles */
section {
  padding: var(--section-spacing) 0;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-3xl);
  font-family: var(--font-display);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Features Section */
.features {
  background: var(--light-gray);
}

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

.feature-card {
  background: var(--white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-purple);
}

.feature-icon {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-lg);
  display: block;
}

.feature-card h3 {
  margin-bottom: var(--space-md);
  color: var(--primary-purple);
}

.feature-link {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--primary-purple);
  font-weight: 600;
}

.feature-link:hover {
  color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
  :root {
    --container-padding: var(--space-md);
    --section-spacing: var(--space-3xl);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--space-lg);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-cta {
    margin-left: 0;
    margin-top: var(--space-md);
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-info {
    flex-direction: column;
    gap: var(--space-lg);
  }
  
  .countdown {
    gap: var(--space-md);
  }
  
  .countdown-item {
    min-width: 60px;
    padding: var(--space-md);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .countdown-number {
    font-size: var(--text-xl);
  }
  
  .feature-card {
    padding: var(--space-lg);
  }
}

/* Desktop and Large Screen Responsive Design */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  :root {
    --container-padding: var(--space-lg);
  }
  
  .container {
    padding: 0 var(--container-padding);
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  :root {
    --container-padding: var(--space-xl);
    --section-spacing: var(--space-4xl);
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .nav-menu {
    position: static;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
  }
  
  .nav-cta {
    margin-left: var(--space-lg);
    margin-top: 0;
  }
  
  .hero-cta {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-lg);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  :root {
    --container-padding: var(--space-2xl);
  }
  
  .container {
    max-width: var(--container-max);
    margin: 0 auto;
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
  }
  
  .nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
  }
  
  /* Enhanced typography for larger screens */
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
  h3 { font-size: var(--text-3xl); }
  
  /* Better spacing for content */
  .section {
    padding: var(--space-4xl) 0;
  }
  
  .card {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  }
  
  .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  :root {
    --container-padding: var(--space-3xl);
  }
  
  .container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }
  
  .hero-section {
    min-height: 80vh;
  }
  
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .grid-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  
  /* Enhanced feature layouts */
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
  }
  
  /* Better navigation spacing */
  .nav-menu {
    gap: var(--space-xl);
  }
  
  .nav-link {
    padding: var(--space-sm) var(--space-md);
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  .container-wide {
    padding: 0 var(--space-4xl);
  }
  
  .hero-section {
    min-height: 85vh;
  }
  
  /* Ultra-wide layouts */
  .grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .section {
    padding: var(--space-4xl) 0 calc(var(--space-4xl) * 1.5);
  }
}

/* Print Styles */
@media print {
  .site-header,
  .mobile-menu-toggle,
  .hero-video,
  .countdown-container {
    display: none;
  }
  
  .main-content {
    padding-top: 0;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
    color: black;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-video {
    display: none;
  }
}

/* layout.css */
/* Nerdi Gras Layout System */
/* Reusable layout components and utilities */

/* Header and Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  z-index: var(--z-fixed);
  transition: all var(--transition-normal);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--container-padding);
  height: var(--header-height);
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: var(--space-md);
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
  color: var(--mardi-gras-gold);
  background: rgba(255, 215, 0, 0.1);
}

/* Main Content Areas */
.main-content {
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  background: var(--bg-primary);
}

.page-hero {
  padding: var(--space-4xl) 0;
  text-align: center;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(64, 224, 208, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  margin-bottom: var(--space-lg);
  background: var(--gradient-gold);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite alternate;
}

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

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

/* Section Layouts */
.section {
  padding: var(--section-spacing) 0;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Systems */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Card Components */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.card:hover {
  transform: translateY(-5px);
  background: var(--bg-hover);
  box-shadow: var(--shadow-glow);
}

.card-header {
  margin-bottom: var(--space-lg);
}

.card-title {
  margin-bottom: var(--space-sm);
}

.card-subtitle {
  color: var(--text-muted);
  font-size: var(--text-sm);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-carnival);
  background-size: 300% 100%;
  color: var(--white);
  animation: mardiGrasBtn 3s ease infinite;
}

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

.btn-secondary {
  background: rgba(64, 224, 208, 0.2);
  border: 2px solid var(--tech-cyan);
  color: var(--tech-cyan);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--mardi-gras-gold);
  color: var(--mardi-gras-gold);
}

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

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

/* Form Elements */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  color: var(--mardi-gras-gold);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.form-input {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(64, 224, 208, 0.3);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: all var(--transition-normal);
}

.form-input:focus {
  outline: none;
  border-color: var(--tech-cyan);
  box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.2);
}

.form-input::placeholder {
  color: var(--text-muted);
}

/* Modal System */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--bg-secondary);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  backdrop-filter: blur(15px);
  box-shadow: var(--shadow-xl);
}

.modal-header {
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-body {
  padding: var(--space-xl);
}

.modal-footer {
  padding: var(--space-lg) var(--space-xl) var(--space-xl);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
}

/* Footer */
.site-footer {
  background: var(--deep-purple);
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: var(--space-4xl);
}

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

.footer-section h3 {
  color: var(--mardi-gras-gold);
  margin-bottom: var(--space-md);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-menu {
    gap: var(--space-sm);
  }
  
  .nav-link {
    padding: var(--space-xs) var(--space-sm);
  }
}

@media (max-width: 768px) {
  .nav-container {
    padding: 0 var(--space-sm);
  }
  
  .page-hero {
    padding: var(--space-2xl) 0;
  }
  
  .section {
    padding: var(--space-2xl) 0;
  }
  
  .grid {
    gap: var(--space-md);
  }
  
  .card {
    padding: var(--space-lg);
  }
  
  .modal-content {
    width: 95%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .section-title {
    font-size: var(--text-2xl);
  }
  
  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
  }
}

/* components.css */
/* Nerdi Gras Components - Missing component styles */
/* Specific UI components to prevent conflicts */

/* Countdown Timer */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 100px;
}

.countdown-number {
  display: block;
  font-size: var(--text-3xl);
  font-weight: 900;
  font-family: var(--font-accent);
  color: var(--mardi-gras-gold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.countdown-label {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-top: var(--space-xs);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-normal);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--white);
  padding: var(--space-lg);
  transform: translateY(100%);
  transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: var(--space-md);
  max-width: 400px;
  margin: var(--space-lg) auto 0;
}

.newsletter-input {
  flex: 1;
  padding: var(--space-md);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  transition: var(--transition-normal);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--mardi-gras-purple);
  box-shadow: 0 0 0 3px rgba(111, 66, 193, 0.1);
}

.newsletter-button {
  padding: var(--space-md) var(--space-lg);
  background: var(--mardi-gras-purple);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.newsletter-button:hover {
  background: var(--electric-purple);
  transform: translateY(-2px);
}

/* Schedule Grid */
.schedule-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.schedule-day {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.schedule-day-title {
  font-family: var(--font-heading);
  color: var(--mardi-gras-purple);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.schedule-events {
  display: grid;
  gap: var(--space-md);
}

.schedule-event {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--light-gray);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--mardi-gras-purple);
}

.schedule-time {
  font-weight: 600;
  color: var(--mardi-gras-purple);
  min-width: 80px;
}

.schedule-event-title {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.schedule-event-desc {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: var(--medium-gray);
}

/* Notification System */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-modal);
  transform: translateX(100%);
  transition: var(--transition-normal);
  max-width: 300px;
  border-left: 4px solid var(--mardi-gras-green);
}

.notification.show {
  transform: translateX(0);
}

.notification.error {
  border-left-color: #dc3545;
}

.notification.warning {
  border-left-color: #ffc107;
}

/* Loading States */
.loading {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--light-gray);
  border-top: 2px solid var(--mardi-gras-purple);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Mobile Responsive Components */
@media (max-width: 768px) {
  .countdown-container {
    gap: var(--space-md);
  }
  
  .countdown-item {
    min-width: 80px;
    padding: var(--space-md);
  }
  
  .countdown-number {
    font-size: var(--text-2xl);
  }
  
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-md);
  }
  
  .schedule-event {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .schedule-time {
    min-width: auto;
  }
  
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .countdown-container {
    justify-content: space-between;
  }
  
  .countdown-item {
    flex: 1;
    min-width: 70px;
    padding: var(--space-sm);
  }
  
  .countdown-number {
    font-size: var(--text-xl);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Profile and Authentication Components */

/* Profile Page Sections */
.profile-main {
  min-height: 100vh;
}

.profile-hero {
  background: linear-gradient(135deg, var(--mardi-gras-purple) 0%, var(--electric-purple) 50%, var(--mardi-gras-purple) 100%);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.auth-section {
  margin: var(--space-xl) 0;
}

.auth-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  max-width: 500px;
  margin: 0 auto;
}

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

.auth-header h2 {
  color: var(--mardi-gras-gold);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

/* Authentication Toggle */
.auth-toggle {
  display: flex;
  margin-bottom: var(--space-lg);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-xs);
}

.toggle-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: var(--mardi-gras-gold);
  color: var(--mardi-gras-purple);
  font-weight: 600;
}

.toggle-btn:hover:not(.active) {
  background: rgba(255, 215, 0, 0.1);
}

/* Profile Navigation */
.profile-nav {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  flex-wrap: wrap;
}

.profile-tab {
  background: none;
  border: none;
  color: var(--white);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 3px solid transparent;
  font-family: var(--font-primary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.profile-tab.active {
  color: var(--mardi-gras-gold);
  border-bottom-color: var(--mardi-gras-gold);
  background: rgba(255, 215, 0, 0.1);
}

.profile-tab:hover:not(.active) {
  background: rgba(255, 215, 0, 0.05);
}

/* Profile Header */
.profile-header {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--mardi-gras-gold);
}

.profile-avatar {
  position: relative;
}

.profile-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--mardi-gras-gold);
}

.avatar-upload-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--mardi-gras-gold);
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-upload-btn svg {
  width: 12px;
  height: 12px;
  fill: var(--mardi-gras-purple);
}

.profile-info {
  flex: 1;
}

.profile-name {
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.profile-email {
  color: var(--medium-gray);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.profile-badges {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.badge {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-badge {
  background: rgba(64, 224, 208, 0.2);
  color: #40e0d0;
  border: 1px solid #40e0d0;
}

.role-badge {
  background: rgba(255, 215, 0, 0.2);
  color: var(--mardi-gras-gold);
  border: 1px solid var(--mardi-gras-gold);
}

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

.profile-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.profile-card h3 {
  color: var(--mardi-gras-gold);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: var(--space-md);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--mardi-gras-gold);
  font-family: var(--font-accent);
}

.stat-label {
  font-size: var(--text-xs);
  color: var(--medium-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Loading and Empty States */
.loading-state {
  text-align: center;
  padding: var(--space-xl);
  color: var(--medium-gray);
}

.empty-state {
  text-align: center;
  padding: var(--space-xl);
  color: var(--medium-gray);
}

.empty-state a {
  color: var(--mardi-gras-gold);
  text-decoration: none;
}

.empty-state a:hover {
  text-decoration: underline;
}

/* Loading Spinner */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl);
}

.loading-spinner .spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 215, 0, 0.3);
  border-top: 3px solid var(--mardi-gras-gold);
}

/* OAuth Section */
.oauth-section {
  margin-top: var(--space-xl);
  text-align: center;
}

.oauth-divider {
  position: relative;
  margin: var(--space-lg) 0;
  color: var(--medium-gray);
}

.oauth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 215, 0, 0.3);
}

.oauth-divider span {
  background: linear-gradient(135deg, #1a0033, #2d1b69);
  padding: 0 var(--space-md);
  position: relative;
}

.oauth-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.btn-oauth {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border: 2px solid rgba(255, 215, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-oauth:hover {
  border-color: #40e0d0;
  background: rgba(64, 224, 208, 0.1);
  transform: translateY(-2px);
}

.oauth-icon {
  width: 20px;
  height: 20px;
}

/* Form Styles for Profile */
.form-row {
  display: flex;
  gap: var(--space-md);
}

.form-row .form-group {
  flex: 1;
}

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

.form-group label {
  display: block;
  color: var(--mardi-gras-gold);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mardi-gras-gold);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group small {
  color: var(--medium-gray);
  font-size: var(--text-xs);
  margin-top: var(--space-xs);
  display: block;
}

/* Responsive Design for Profile */
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
  
  .profile-nav {
    flex-direction: column;
    gap: 0;
  }
  
  .profile-tab {
    padding: var(--space-sm) var(--space-md);
    text-align: center;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .oauth-buttons {
    flex-direction: column;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .auth-card {
    padding: var(--space-lg);
    margin: 0 var(--space-md);
  }
  
  .profile-avatar img {
    width: 60px;
    height: 60px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* Enhanced Desktop & Large Screen Components */

/* Desktop Navigation Enhancements */
@media (min-width: 992px) {
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-xl);
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }
  
  .nav-link {
    position: relative;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
  }
  
  .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: var(--mardi-gras-gold);
    border-radius: var(--radius-full);
  }
  
  /* Dropdown menu enhancements */
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    min-width: 200px;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* Enhanced card layouts for desktop */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
  }
  
  .feature-card {
    transition: all var(--transition-normal);
  }
  
  .feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
      0 20px 40px rgba(0, 0, 0, 0.2),
      0 0 20px rgba(255, 215, 0, 0.1);
  }
  
  /* Desktop-optimized hero sections */
  .page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
  }
  
  /* Enhanced gallery for larger screens */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-2xl);
  }
  
  .gallery-item {
    transition: all var(--transition-normal);
  }
  
  .gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
  }
}

/* Extra Large Desktop (1200px+) */
@media (min-width: 1200px) {
  .nav-container {
    padding: var(--space-lg) var(--space-2xl);
  }
  
  .nav-menu {
    gap: var(--space-2xl);
  }
  
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-3xl);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-3xl);
  }
  
  /* Ultra-wide improvements */
  .section {
    padding: calc(var(--space-4xl) * 1.5) 0;
  }
  
  .container {
    padding: 0 var(--space-3xl);
  }
}

/* Large Desktop Specific Layouts */
@media (min-width: 1400px) {
  .mega-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-2xl);
  }
  
  .hero-section {
    min-height: 90vh;
  }
  
  /* Enhanced typography for ultra-wide */
  .page-title {
    font-size: clamp(3rem, 5vw, 6rem);
  }
  
  .hero-title {
    font-size: clamp(4rem, 6vw, 8rem);
  }
}

/* homepage.css */
        body {
            font-family: 'Exo', sans-serif;
            background: linear-gradient(135deg, #1a0015 0%, #0f1a0f 25%, #1a1500 50%, #1a0015 75%, #0f1a0f 100%);
            background-size: 400% 400%;
            animation: mardiGrasGradient 15s ease infinite;
            color: #FFFFFF;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            position: relative;
        }
        
        @keyframes mardiGrasGradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(75, 0, 130, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 50% 90%, rgba(34, 139, 34, 0.05) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
        }
        
        .hero-title {
            font-family: 'Megloria', 'Fredoka One', cursive;
            font-size: 4rem;
            font-weight: normal;
            background: linear-gradient(45deg, #FFFF00, #FF69B4, #00FF7F, #FFFF00);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mardiGrasText 4s ease infinite;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 1px 1px 2px rgba(0, 0, 0, 1);
            margin-bottom: 1rem;
            letter-spacing: 2px;
            position: relative;
            transform: rotate(-2deg);
            filter: brightness(1.3) contrast(1.2);
        }
        
        .hero-title::after {
            content: '🎭 ⚜️ 🎪';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1.5rem;
            animation: float 3s ease-in-out infinite;
        }
        
        @keyframes mardiGrasText {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes float {
            0%, 100% { transform: translateX(-50%) translateY(0px); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            color: #FFD700;
            margin-bottom: 2rem;
            font-style: italic;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            font-weight: 600;
        }
        
        .hero-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .info-item {
            background: linear-gradient(135deg, rgba(75, 0, 130, 0.8), rgba(34, 139, 34, 0.8));
            padding: 2rem;
            border-radius: 15px;
            border: 3px solid #FFD700;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }
        
        .info-item::before {
            content: '⚜️';
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 1.5rem;
            color: #FFD700;
            opacity: 0.7;
        }
        
        .info-item strong {
            display: block;
            font-size: 1.5rem;
            color: #FFD700;
            margin-bottom: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }
        
        .countdown {
            background: linear-gradient(135deg, rgba(75, 0, 130, 0.9), rgba(34, 139, 34, 0.6), rgba(75, 0, 130, 0.9));
            padding: 3rem;
            border-radius: 20px;
            margin: 3rem 0;
            border: 4px solid #FFD700;
            box-shadow: 
                0 0 30px rgba(255, 215, 0, 0.5),
                inset 0 0 30px rgba(255, 215, 0, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .countdown::before {
            content: '🎭 🎪 🎨 🎭 🎪 🎨 🎭 🎪 🎨';
            position: absolute;
            top: 0;
            left: -100%;
            width: 200%;
            height: 100%;
            display: flex;
            align-items: center;
            font-size: 2rem;
            opacity: 0.1;
            animation: mardiGrasScroll 20s linear infinite;
            pointer-events: none;
        }
        
        @keyframes mardiGrasScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(50%); }
        }
        
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #4B0082, #FFD700, #228B22, #FFD700, #4B0082);
            background-size: 300% 100%;
            color: #FFFFFF;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.2rem;
            margin: 1rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 3px solid #FFD700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            position: relative;
            overflow: hidden;
            animation: mardiGrasBtn 3s ease infinite;
        }
        
        .btn::before {
            content: '✨';
            position: absolute;
            left: -20px;
            top: 50%;
            transform: translateY(-50%);
            animation: sparkle 2s ease infinite;
        }
        
        .btn::after {
            content: '✨';
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            animation: sparkle 2s ease infinite 1s;
        }
        
        @keyframes mardiGrasBtn {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        @keyframes sparkle {
            0%, 100% { opacity: 0; transform: translateY(-50%) scale(0.5); }
            50% { opacity: 1; transform: translateY(-50%) scale(1); }
        }
        
        .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 
                0 15px 30px rgba(255, 215, 0, 0.4),
                0 0 20px rgba(75, 0, 130, 0.3);
            border-color: #FFFFFF;
        }
        
        .ticket-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0;
        }
        
        .btn-tickets {
            position: relative;
            overflow: hidden;
        }
        
        .btn-tickets.primary-cta {
            background: linear-gradient(45deg, #ff6b35, #ffd700, #40e0d0);
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }
        
        .btn-tickets.secondary-cta {
            background: linear-gradient(45deg, #2d1b69, #40e0d0);
            border: 2px solid #ffd700;
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid #ffd700;
            color: #ffd700;
        }
        
        .btn-outline:hover {
            background: #ffd700;
            color: #1a0033;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .ticket-availability {
            margin-top: 1.5rem;
            padding: 1rem;
            background: rgba(64, 224, 208, 0.1);
            border-radius: 10px;
            border: 1px solid rgba(64, 224, 208, 0.3);
        }
        
        .availability-loading {
            color: #40e0d0;
            font-style: italic;
        }
        
        .availability-status {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .availability-item {
            flex: 1;
            min-width: 200px;
            text-align: center;
        }
        
        .availability-label {
            font-weight: bold;
            color: #ffd700;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .availability-count {
            font-size: 1.2rem;
            color: #40e0d0;
        }
        
        .availability-count.low {
            color: #ff6b35;
            animation: pulse 2s infinite;
        }
        
        .event-description {
            font-size: 1.2rem;
            line-height: 1.6;
            margin: 1.5rem 0;
            color: #FFFFFF;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
            background: linear-gradient(45deg, rgba(75, 0, 130, 0.3), rgba(34, 139, 34, 0.3));
            padding: 1rem;
            border-radius: 10px;
            border: 2px solid #FFD700;
            position: relative;
            z-index: 2;
        }
        
        .ticket-countdown {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(75, 0, 130, 0.7), rgba(34, 139, 34, 0.4), rgba(75, 0, 130, 0.7));
            border-radius: 20px;
            border: 3px solid #FFD700;
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
            position: relative;
            overflow: hidden;
        }
        
        .ticket-countdown::before {
            content: '🎊 🎉 🎊 🎉 🎊 🎉 🎊 🎉 🎊';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            font-size: 1.5rem;
            text-align: center;
            opacity: 0.3;
            animation: celebration 5s ease infinite;
        }
        
        @keyframes celebration {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        .countdown-section {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .countdown-number {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(45deg, #FFD700, #FFFFFF, #FFD700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            display: block;
            animation: pulse 2s ease infinite;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            color: #FFD700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }
        
        .quick-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .quick-link {
            background: linear-gradient(45deg, rgba(75, 0, 130, 0.8), rgba(34, 139, 34, 0.8));
            color: #FFD700;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            border: 2px solid #FFD700;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            position: relative;
            overflow: hidden;
        }
        
        .quick-link::before {
            content: '⚜️';
            position: absolute;
            left: 5px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.8rem;
            opacity: 0.7;
        }
        
        .quick-link:hover {
            background: linear-gradient(45deg, #FFD700, #228B22, #4B0082);
            color: #FFFFFF;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
            border-color: #FFFFFF;
        }
        
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: #ffd700;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .hero-announcement {
            background: linear-gradient(135deg, rgba(75, 0, 130, 0.8), rgba(255, 215, 0, 0.2), rgba(34, 139, 34, 0.8));
            border: 4px solid #FFD700;
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
        }
        
        .hero-announcement::before {
            content: '⚜️ 🎭 ⚜️ 🎪 ⚜️ 🎨 ⚜️ 🎭 ⚜️';
            position: absolute;
            top: -10px;
            left: 0;
            width: 100%;
            font-size: 1.5rem;
            opacity: 0.3;
            animation: mardiGrasFloat 8s ease infinite;
        }
        
        @keyframes mardiGrasFloat {
            0%, 100% { transform: translateX(-10px); }
            50% { transform: translateX(10px); }
        }
        
        .hero-announcement h2 {
            color: #FFD700;
            font-size: 2rem;
            margin-bottom: 1rem;
            text-shadow: 
                2px 2px 4px rgba(0, 0, 0, 0.7),
                0 0 20px rgba(255, 215, 0, 0.6);
            position: relative;
            z-index: 2;
        }
        
        .announcement-highlights {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .highlight {
            background: linear-gradient(45deg, rgba(75, 0, 130, 0.8), rgba(34, 139, 34, 0.8));
            color: #FFD700;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: bold;
            font-size: 0.9rem;
            border: 2px solid #FFD700;
            white-space: nowrap;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            transition: all 0.3s ease;
        }
        
        .highlight:hover {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        
        /* New Sections Styling */
        .section-title {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            background: linear-gradient(45deg, #FFD700, #4B0082, #228B22, #FFD700);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: mardiGrasText 5s ease infinite;
            text-align: center;
            margin: 3rem 0 1rem 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            position: relative;
        }
        
        .section-title::before {
            content: '⚜️';
            position: absolute;
            left: -2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            animation: float 3s ease infinite;
        }
        
        .section-title::after {
            content: '⚜️';
            position: absolute;
            right: -2rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            animation: float 3s ease infinite 1.5s;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #FFD700;
            margin-bottom: 3rem;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            font-weight: 500;
        }
        
        /* Guests Section */
        .guests-section {
            margin: 4rem 0;
            padding: 3rem 0;
            background: linear-gradient(135deg, rgba(75, 0, 130, 0.6), rgba(255, 215, 0, 0.1), rgba(34, 139, 34, 0.4));
            border-radius: 20px;
            border: 3px solid #FFD700;
            box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .guests-section::before {
            content: '🎭 👑 🎪 🌟 🎨 👑 🎭 🌟 🎪 🎨';
            position: absolute;
            top: 10px;
            left: -100%;
            width: 200%;
            height: 100%;
            display: flex;
            align-items: flex-start;
            font-size: 1.5rem;
            opacity: 0.1;
            animation: mardiGrasScroll 25s linear infinite;
            pointer-events: none;
        }
        
        .guests-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .guest-card {
            background: rgba(26, 0, 51, 0.8);
            border-radius: 15px;
            overflow: hidden;
            border: 2px solid rgba(64, 224, 208, 0.3);
            transition: all 0.3s ease;
        }
        
        .guest-card:hover {
            transform: translateY(-5px);
            border-color: #ffd700;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
        }
        
        .guest-image {
            height: 200px;
            background: linear-gradient(45deg, #2d1b69, #40e0d0);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .guest-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .guest-info {
            padding: 1.5rem;
        }
        
        .guest-info h3 {
            color: #ffd700;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        
        .guest-title {
            color: #40e0d0;
            font-weight: bold;
            margin-bottom: 1rem;
            font-style: italic;
        }
        
        .guest-events {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .event-tag {
            background: rgba(255, 107, 53, 0.2);
            color: #ff6b35;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(255, 107, 53, 0.5);
        }
        
        .guest-cta {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 215, 0, 0.3);
        }
        
        /* Enhanced Guest Profile Sections */
        .guest-achievements {
            margin: 1.5rem 0;
            padding: 1rem;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 10px;
            border-left: 4px solid #ffd700;
        }
        
        .guest-achievements h4 {
            color: #ffd700;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            font-family: 'Megloria', 'Fredoka One', cursive;
        }
        
        .guest-achievements ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .guest-achievements li {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
            font-size: 0.9rem;
        }
        
        .guest-achievements li:before {
            content: "✨";
            position: absolute;
            left: 0;
            color: #40e0d0;
        }
        
        .guest-expertise {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        
        .expertise-tag {
            background: rgba(64, 224, 208, 0.2);
            color: #40e0d0;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(64, 224, 208, 0.5);
            transition: all 0.3s ease;
        }
        
        .expertise-tag:hover {
            background: rgba(64, 224, 208, 0.3);
            transform: scale(1.05);
        }
        
        .guest-social {
            margin: 1.5rem 0;
            padding: 1rem;
            background: rgba(64, 224, 208, 0.1);
            border-radius: 10px;
            border-left: 4px solid #40e0d0;
        }
        
        .guest-social h4 {
            color: #40e0d0;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            font-family: 'Megloria', 'Fredoka One', cursive;
        }
        
        .social-link {
            display: inline-block;
            color: #40e0d0;
            text-decoration: none;
            margin-right: 1rem;
            margin-bottom: 0.5rem;
            padding: 0.25rem 0.5rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .social-link:hover {
            background: rgba(64, 224, 208, 0.2);
            color: #ffd700;
            transform: translateY(-2px);
        }
        
        .guest-schedule {
            margin: 1.5rem 0;
            padding: 1rem;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 10px;
            border-left: 4px solid #ff6b35;
        }
        
        .guest-schedule h4 {
            color: #ff6b35;
            font-size: 1rem;
            margin-bottom: 0.75rem;
            font-family: 'Megloria', 'Fredoka One', cursive;
        }
        
        .guest-schedule ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .guest-schedule li {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
            padding: 0.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .guest-schedule li:hover {
            background: rgba(255, 107, 53, 0.2);
            transform: translateX(5px);
        }
        
        /* Volunteer Section */
        .volunteer-section {
            margin: 4rem 0;
            padding: 3rem 0;
            background: linear-gradient(135deg, rgba(34, 139, 34, 0.6), rgba(255, 215, 0, 0.1), rgba(75, 0, 130, 0.4));
            border-radius: 20px;
            border: 3px solid #228B22;
            box-shadow: 0 0 25px rgba(34, 139, 34, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .volunteer-section::before {
            content: '🤝 ⚜️ 🎪 🤝 ⚜️ 🎪 🤝 ⚜️ 🎪 🤝';
            position: absolute;
            bottom: 10px;
            left: -100%;
            width: 200%;
            height: 100%;
            display: flex;
            align-items: flex-end;
            font-size: 1.5rem;
            opacity: 0.1;
            animation: mardiGrasScroll 30s linear infinite reverse;
            pointer-events: none;
        }
        
        .volunteer-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .benefit-card {
            background: rgba(26, 0, 51, 0.6);
            padding: 1.5rem;
            border-radius: 15px;
            text-align: center;
            border: 2px solid rgba(64, 224, 208, 0.3);
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-3px);
            border-color: #40e0d0;
            box-shadow: 0 10px 20px rgba(64, 224, 208, 0.2);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .benefit-card h3 {
            color: #ffd700;
            margin-bottom: 1rem;
        }
        
        .volunteer-roles {
            margin: 3rem 0;
            text-align: center;
        }
        
        .volunteer-roles h3 {
            color: #40e0d0;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }
        
        .roles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 1rem 0;
        }
        
        .role-item {
            background: rgba(255, 215, 0, 0.1);
            color: #ffd700;
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            font-weight: bold;
        }
        
        .volunteer-cta {
            text-align: center;
            margin-top: 2rem;
        }
        
        .volunteer-note {
            margin-top: 1rem;
            color: #ff6b35;
            font-weight: bold;
            font-size: 0.9rem;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .container {
                padding: 1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .guests-grid {
                grid-template-columns: 1fr;
            }
            .volunteer-benefits {
                grid-template-columns: 1fr;
            }
            .roles-grid {
                grid-template-columns: 1fr;
            }
            .ticket-countdown {
                gap: 1rem;
            }
            .countdown-number {
                font-size: 2rem;
            }
            .announcement-highlights {
                flex-direction: column;
                align-items: center;
            }
        }
        
        /* Navigation Styles */
        :root {
            --nav-bg-primary: #1a0033;
            --nav-bg-secondary: #2d1b69;
            --nav-accent: #ffd700;
            --nav-text: #ffffff;
            --nav-link-hover: #40e0d0;
            --nav-glow-opacity: 0.3;
            --nav-shadow-opacity: 0.2;
            --nav-glow: rgba(255, 215, 0, var(--nav-glow-opacity));
            --nav-shadow: rgba(64, 224, 208, var(--nav-shadow-opacity));
        }

        .site-header {
            background: linear-gradient(135deg, rgba(26, 0, 21, 0.95) 0%, rgba(15, 26, 15, 0.95) 50%, rgba(26, 21, 0, 0.95) 100%);
            border-bottom: 3px solid var(--nav-accent);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(15px);
        }

        /* Enhanced site header - fixed floating navigation */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            background: rgba(26, 0, 21, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
            z-index: 9999;
            transition: all 0.3s ease;
        }

        .site-header.scrolled {
            background: rgba(26, 0, 21, 0.98);
            box-shadow: 0 2px 30px rgba(0, 0, 0, 0.9);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 2rem;
            position: relative;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 1001;
        }

        .logo-link {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .logo-link:hover {
            transform: scale(1.02);
            filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
        }

        .logo {
            height: 50px;
            width: auto;
            filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));
            transition: all 0.3s ease;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1;
        }

        .logo-title {
            font-family: 'Megloria', 'Fredoka One', cursive;
            font-size: 1.5rem;
            font-weight: normal;
            color: #FFFFFF;
            background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 
                0 0 10px rgba(255, 215, 0, 0.8),
                2px 2px 4px rgba(0, 0, 0, 0.9),
                4px 4px 8px rgba(0, 0, 0, 0.6);
            letter-spacing: 1px;
            filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
            animation: logoGlow 3s ease-in-out infinite alternate;
        }
        
        @keyframes logoGlow {
            0% { 
                background-position: 0% 50%;
                filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
            }
            100% { 
                background-position: 100% 50%;
                filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.9));
            }
        }

        .logo-subtitle {
            font-family: 'Orbitron', monospace;
            font-size: 0.75rem;
            font-weight: 700;
            color: #FF69B4;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            letter-spacing: 2px;
            margin-top: -2px;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            background: none;
            border: 2px solid var(--nav-accent);
            border-radius: 8px;
            padding: 0.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
            gap: 0.25rem;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 0.5rem 1rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.9rem;
            border-radius: 20px;
            transition: all 0.3s ease;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }

        .nav-link:hover {
            color: #FFD700;
            background: rgba(255, 215, 0, 0.15);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
            text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
        }

        .nav-link.active {
            color: #FFD700;
            background: rgba(255, 215, 0, 0.2);
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
        }

        /* Dropdown menu styles */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(26, 0, 21, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
            list-style: none;
            margin: 0.5rem 0 0 0;
            padding: 0.5rem 0;
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .nav-menu li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            color: #FFD700;
            background: rgba(255, 215, 0, 0.1);
        }

        .nav-tickets {
            background: linear-gradient(45deg, #FF69B4, #FFD700);
            color: #1a0015;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
            text-shadow: none;
        }

        .nav-tickets:hover {
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
            background: linear-gradient(45deg, #FFD700, #FF69B4);
        }

        /* Body padding to account for fixed header */
        body {
            padding-top: 80px;
        }

        /* Mobile navigation styles */
        @media (max-width: 1023px) {
            .nav-container {
                padding: 0.5rem 1rem;
            }
            
            .logo {
                height: 40px;
            }
            
            .logo-title {
                font-size: 1.25rem;
            }
            
            .logo-subtitle {
                font-size: 0.7rem;
            }
            
            .mobile-menu-toggle {
                display: flex;
                z-index: 1002;
            }
            
            .hamburger {
                width: 20px;
                height: 2px;
                background: #FFD700;
                margin: 3px 0;
                transition: all 0.3s ease;
                border-radius: 2px;
            }
            
            .mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            
            .mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
                opacity: 0;
            }
            
            .mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(26, 0, 21, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 1.5rem;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-20px);
                transition: all 0.3s ease;
                z-index: 1001;
                padding: 2rem;
            }
            
            .nav-menu.mobile-open {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            
            .nav-link {
                font-size: 1.1rem;
                padding: 1rem 2rem;
                text-align: center;
                min-width: 200px;
            }
            
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: none;
                border: none;
                box-shadow: none;
                margin: 0.5rem 0 0 0;
                padding: 0;
            }
            
            .nav-tickets {
                padding: 1rem 2rem;
                font-size: 1.1rem;
                margin-top: 1rem;
            }
        }

        .login-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            color: var(--nav-text);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-family: 'Fredoka One', cursive;
            font-weight: 400;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }

        .login-btn:hover {
            background: rgba(64, 224, 208, 0.2);
            border-color: var(--nav-link-hover);
            color: var(--nav-link-hover);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(64, 224, 208, 0.3);
        }
        
        /* Swipeable Sections Styles */
        .swipe-container {
            width: 100%;
            min-height: calc(100vh - 80px);
            margin-top: -80px;
            padding-top: 80px;
            position: relative;
            background: linear-gradient(135deg, #1a0015 0%, #0f1a0f 25%, #1a1500 50%, #1a0015 75%, #0f1a0f 100%);
            background-size: 400% 400%;
            animation: mardiGrasGradient 15s ease infinite;
            overflow-x: hidden;
        }
        
        .sections-wrapper {
            display: flex;
            width: 400%; /* 4 sections * 100% */
            min-height: 100vh;
            transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        .swipe-section {
            width: 25%; /* 100% / 4 sections */
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 1rem;
            box-sizing: border-box;
            opacity: 0.7;
            transition: opacity 0.5s ease;
            overflow-y: auto;
            flex-shrink: 0; /* Prevent sections from shrinking */
            position: relative; /* Ensure proper positioning */
        }
        
        .swipe-section.active {
            opacity: 1;
        }
        
        .section-content {
            max-width: 1400px;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            text-align: center;
            padding: 4rem 2rem;
            min-height: calc(100vh - 4rem);
            visibility: visible;
            opacity: 1;
            position: relative;
            z-index: 1;
        }
        
        /* Navigation Dots */
        .section-nav {
            position: fixed;
            top: 50%;
            right: 2rem;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 1000;
        }
        
        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 2px solid rgba(255, 215, 0, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-dot:hover {
            background: rgba(255, 215, 0, 0.3);
            border-color: #ffd700;
            transform: scale(1.2);
        }
        
        .nav-dot.active {
            background: #ffd700;
            border-color: #ffd700;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }
        
        /* Swipe Arrows */
        .swipe-arrow {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 215, 0, 0.2);
            border: 2px solid rgba(255, 215, 0, 0.5);
            color: #ffd700;
            font-size: 2rem;
            font-weight: bold;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Fredoka One', cursive;
        }
        
        .swipe-prev {
            left: 2rem;
        }
        
        .swipe-next {
            right: 5rem; /* Account for nav dots */
        }
        
        .swipe-arrow:hover {
            background: rgba(255, 215, 0, 0.4);
            border-color: #ffd700;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        
        /* Section Headers */
        .section-header {
            margin-bottom: 3rem;
        }
        
        .section-title {
            font-family: 'Fredoka One', cursive;
            font-size: 3rem;
            background: linear-gradient(45deg, #FFFF00, #FF69B4, #00FF7F, #FFFF00);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: mardiGrasText 4s ease infinite;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
            margin-bottom: 1rem;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            line-height: 1.6;
        }
        
        /* Hero Section Specific */
        .hero-section .hero-header {
            margin-bottom: 2rem;
        }
        
        .hero-section .hero-title {
            font-family: 'Fredoka One', cursive;
            font-size: 4rem;
            background: linear-gradient(45deg, #FFFF00, #FF69B4, #00FF7F, #FFFF00);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: mardiGrasText 4s ease infinite;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
            transform: rotate(-2deg);
            margin-bottom: 0.5rem;
        }
        
        .hero-section .hero-subtitle {
            font-family: 'Dancing Script', cursive;
            font-size: 1.8rem;
            color: #40e0d0;
            font-weight: 600;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            margin-bottom: 2rem;
        }
        
        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            width: 100%;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #ffd700;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            filter: drop-shadow(0 0 10px currentColor);
        }
        
        .feature-card h3 {
            font-family: 'Fredoka One', cursive;
            font-size: 1.5rem;
            color: #ffd700;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .feature-card p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        /* Desktop-specific improvements */
        @media (min-width: 1024px) {
            .swipe-section {
                align-items: center;
                padding: 2rem;
            }
            
            .section-content {
                justify-content: center;
                min-height: auto;
                padding: 2rem 3rem;
                max-width: 95%;
                width: 100%;
            }
            
            /* Ensure content areas have proper spacing */
            .hero-section .section-content {
                gap: 2rem;
                max-width: 95%;
            }
            
            .features-section .section-content {
                gap: 3rem;
                max-width: 95%;
            }
            
            .guests-section .section-content {
                gap: 3rem;
                max-width: 95%;
            }
            
            .volunteer-section .section-content {
                gap: 2rem;
                max-width: 95%;
            }
            
            /* Features grid wider on desktop */
            .features-grid {
                max-width: none;
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
                padding: 0 2rem;
            }
            
            /* Guest cards layout */
            .guests-showcase {
                max-width: none;
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem;
                padding: 0 2rem;
            }
        }
        
        /* Large desktop screens */
        @media (min-width: 1400px) {
            .swipe-section {
                padding: 2rem 4rem;
            }
            
            .section-content {
                max-width: 1200px;
                padding: 2rem 4rem;
                width: 100%;
            }
            
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 4rem;
            }
            
            .guests-showcase {
                grid-template-columns: repeat(3, 1fr);
                gap: 4rem;
            }
        }
        
        /* Force proper desktop layout - debug styles */
        @media (min-width: 1024px) {
            .swipe-container {
                width: 100% !important;
                max-width: none !important;
            }
            
            .sections-wrapper {
                width: 400% !important;
            }
            
            .swipe-section {
                width: 25% !important;
                flex-shrink: 0 !important;
            }
        }
        
        /* Tablet and mobile responsive design */
        @media (max-width: 1023px) {
            .section-nav {
                bottom: 2rem;
                top: auto;
                right: 50%;
                transform: translateX(50%);
                flex-direction: row;
            }
            
            .swipe-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.5rem;
            }
            
            .swipe-prev {
                left: 1rem;
            }
            
            .swipe-next {
                right: 1rem;
            }
        }
        
        /* Social Sharing Panel */
        .social-share-panel {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        
        .share-toggle {
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            color: #000;
            font-weight: bold;
        }
        
        .share-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }
        
        .share-options {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }
        
        .share-options.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .share-btn {
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid transparent;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .share-btn:hover {
            transform: scale(1.1);
            border-color: #ffd700;
            background: rgba(255, 215, 0, 0.2);
        }
        
        .share-btn.facebook:hover {
            background: rgba(66, 103, 178, 0.8);
            color: white;
        }
        
        .share-btn.twitter:hover {
            background: rgba(29, 161, 242, 0.8);
            color: white;
        }
        
        .share-btn.linkedin:hover {
            background: rgba(40, 103, 178, 0.8);
            color: white;
        }
        
        .share-btn.copy-link:hover {
            background: rgba(34, 197, 94, 0.8);
            color: white;
        }
        
        @media (max-width: 768px) {
            .swipe-section {
                padding: 1rem;
                min-height: 100dvh;
            }
            
            .section-content {
                padding: 2rem 0;
                min-height: calc(100dvh - 2rem);
            }
            
            .social-share-panel {
                right: 10px;
                top: auto;
                bottom: 100px;
                transform: none;
            }
            
            .share-toggle {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .share-btn {
                width: 35px;
                height: 35px;
                font-size: 0.9rem;
            }
            
            .hero-section .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .feature-card {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .swipe-container {
                min-height: 100dvh;
            }
            
            .sections-wrapper {
                min-height: 100dvh;
            }
            
            .hero-section .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .hero-section .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .section-content {
                padding: 1.5rem 0;
            }
        }
        
        /* Additional Component Styles */
        .hero-announcement {
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
        }
        
        .hero-announcement h2 {
            font-family: 'Fredoka One', cursive;
            color: #ffd700;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .announcement-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .highlight {
            background: rgba(64, 224, 208, 0.2);
            border: 1px solid rgba(64, 224, 208, 0.5);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            color: #40e0d0;
            font-weight: 600;
        }
        
        .hero-info {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .info-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 215, 0, 0.3);
            backdrop-filter: blur(5px);
        }
        
        .info-item strong {
            display: block;
            color: #ffd700;
            font-family: 'Fredoka One', cursive;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .info-item span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }
        
        .countdown {
            margin-bottom: 2rem;
        }
        
        .ticket-countdown {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin: 2rem 0;
        }
        
        .countdown-section {
            text-align: center;
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            backdrop-filter: blur(10px);
        }
        
        .countdown-number {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffd700;
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            line-height: 1;
        }
        
        .countdown-label {
            font-family: 'Fredoka One', cursive;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .ticket-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .btn {
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-family: 'Fredoka One', cursive;
            font-weight: 400;
            font-size: 1rem;
            border: 2px solid;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            cursor: pointer;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
        }
        
        .btn-tickets {
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            color: #1a0033;
            border-color: #ffd700;
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
        }
        
        .btn-tickets:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
            filter: brightness(1.1);
        }
        
        .btn-outline {
            background: rgba(255, 255, 255, 0.1);
            color: #ffd700;
            border-color: #ffd700;
        }
        
        .btn-outline:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        }
        
        .quick-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .quick-link {
            background: rgba(64, 224, 208, 0.1);
            border: 1px solid rgba(64, 224, 208, 0.3);
            color: #40e0d0;
            padding: 0.75rem 1.5rem;
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .quick-link:hover {
            background: rgba(64, 224, 208, 0.2);
            border-color: #40e0d0;
            transform: translateY(-2px);
        }
        
        /* Guests Section */
        .guests-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            width: 100%;
            margin-bottom: 2rem;
        }
        
        .guest-card {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .guest-card:hover {
            transform: translateY(-10px);
            border-color: #ffd700;
            box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
        }
        
        .guest-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .guest-image img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }
        
        .guest-info h3 {
            font-family: 'Fredoka One', cursive;
            color: #ffd700;
            margin-bottom: 0.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .guest-title {
            color: #40e0d0;
            font-style: italic;
            margin-bottom: 1rem;
        }
        
        .guest-events {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .event-tag {
            background: rgba(64, 224, 208, 0.2);
            border: 1px solid rgba(64, 224, 208, 0.5);
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.8rem;
            color: #40e0d0;
        }
        
        .guest-cta {
            text-align: center;
            margin-top: 2rem;
        }
        
        /* Volunteer Section */
        .volunteer-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 800px;
            width: 100%;
            margin-bottom: 2rem;
        }
        
        .benefit-card {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            border-color: #ffd700;
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
        }
        
        .benefit-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .benefit-card h3 {
            font-family: 'Fredoka One', cursive;
            color: #ffd700;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        .volunteer-roles {
            margin: 2rem 0;
            text-align: center;
        }
        
        .volunteer-roles h3 {
            font-family: 'Fredoka One', cursive;
            color: #ffd700;
            margin-bottom: 1rem;
        }
        
        .roles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .role-item {
            background: rgba(64, 224, 208, 0.1);
            border: 1px solid rgba(64, 224, 208, 0.3);
            padding: 0.75rem;
            border-radius: 10px;
            color: #40e0d0;
            font-size: 0.9rem;
        }
        
        .volunteer-cta {
            text-align: center;
            margin-top: 2rem;
        }
        
        .volunteer-note {
            color: rgba(255, 255, 255, 0.7);
            font-style: italic;
            margin-top: 1rem;
        }
        
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 10000;
            animation: fadeIn 0.3s ease-out;
        }
        
        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }
        
        .modal-content {
            background: linear-gradient(135deg, rgba(26, 0, 21, 0.95) 0%, rgba(15, 26, 15, 0.95) 50%, rgba(26, 21, 0, 0.95) 100%);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            max-width: 500px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            backdrop-filter: blur(15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            animation: slideIn 0.3s ease-out;
        }
        
        .modal-header {
            padding: 2rem 2rem 1rem;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h2 {
            font-family: 'Fredoka One', cursive;
            color: #ffd700;
            margin: 0;
            font-size: 1.5rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .modal-close {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 2rem;
            cursor: pointer;
            padding: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .modal-close:hover {
            background: rgba(255, 0, 0, 0.2);
            color: #ff6b6b;
            transform: scale(1.1);
        }
        
        .modal-body {
            padding: 2rem;
        }
        
        .auth-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .form-group label {
            font-family: 'Fredoka One', cursive;
            color: #ffd700;
            font-size: 0.9rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }
        
        .form-group input {
            padding: 1rem;
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }
        
        .form-group input:focus {
            outline: none;
            border-color: #ffd700;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
        }
        
        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .form-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .form-actions .btn {
            flex: 1;
            min-width: 150px;
        }
        
        .auth-links {
            text-align: center;
            margin-top: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.75rem;
        }
        
        .auth-links a {
            color: #40e0d0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }
        
        .auth-links a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        
        .auth-divider {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
        }
        
        /* Profile Modal Specific Styles */
        .profile-info {
            display: flex;
            gap: 1rem;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .profile-avatar {
            flex-shrink: 0;
        }
        
        .avatar-placeholder {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff6b35, #ffd700);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #1a0033;
        }
        
        .profile-details h3 {
            font-family: 'Fredoka One', cursive;
            color: #ffd700;
            margin: 0 0 0.5rem 0;
            font-size: 1.3rem;
        }
        
        .profile-details p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }
        
        .profile-badges {
            margin-top: 0.5rem;
        }
        
        .badge {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            background: rgba(64, 224, 208, 0.2);
            color: #40e0d0;
            border: 1px solid rgba(64, 224, 208, 0.3);
        }
        
        .profile-sections {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .profile-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }
        
        .profile-section h4 {
            font-family: 'Fredoka One', cursive;
            color: #ffd700;
            margin: 0 0 1rem 0;
            font-size: 1.1rem;
        }
        
        .schedule-preview {
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .preferences-form {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .preferences-form label {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .preferences-form label:hover {
            color: #ffd700;
        }
        
        .preferences-form input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: #ffd700;
        }
        
        .profile-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100%);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes slideOutRight {
            from {
                opacity: 1;
                transform: translateX(0);
            }
            to {
                opacity: 0;
                transform: translateX(100%);
            }
        }
        
        /* Success Message Styling */
        .success-message {
            text-align: center;
            padding: 2rem;
        }
        
        .success-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .success-message h3 {
            font-family: 'Fredoka One', cursive;
            color: #ffd700;
            margin: 0 0 1rem 0;
            font-size: 1.5rem;
        }
        
        .success-message p {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .modal-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        
        /* Social Login Styling */
        .social-login-options {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .btn-social {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 2px solid transparent;
        }
        
        .btn-google {
            background: #fff;
            color: #333;
            border-color: #dadce0;
        }
        
        .btn-google:hover {
            background: #f8f9fa;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transform: translateY(-2px);
        }
        
        .btn-facebook {
            background: #1877F2;
            color: #fff;
        }
        
        .btn-facebook:hover {
            background: #166fe5;
            box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
            transform: translateY(-2px);
        }
        
        .btn-discord {
            background: #5865F2;
            color: #fff;
        }
        
        .btn-discord:hover {
            background: #4752c4;
            box-shadow: 0 4px 12px rgba(88, 101, 242, 0.3);
            transform: translateY(-2px);
        }
        
        .social-icon {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
        }
        
        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: rgba(255, 215, 0, 0.3);
        }
        
        .divider span {
            padding: 0 1rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        /* Responsive Modal Design */
        @media (max-width: 768px) {
            .modal {
                padding: 1rem;
            }
            
            .modal-content {
                max-height: 95vh;
            }
            
            .modal-header,
            .modal-body {
                padding: 1.5rem;
            }
            
            .form-actions {
                flex-direction: column;
            }
            
            .form-actions .btn {
                min-width: unset;
            }
            
            .profile-info {
                flex-direction: column;
                text-align: center;
            }
            
            .profile-actions {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .modal-header h2 {
                font-size: 1.2rem;
            }
            
            .avatar-placeholder {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }


/* vibrant.css */
/* Nerdi Gras Vibrant Design - Awesome Con Inspired */
/* Enhanced visual design with dynamic colors and engaging layouts */

/* Enhanced Color Palette - Mardi Gras + Tech */
:root {
  /* Primary Mardi Gras Colors */
  --mardi-gras-purple: #6f42c1;
  --mardi-gras-gold: #ffd700;
  --mardi-gras-green: #198754;
  
  /* Enhanced Purple Spectrum */
  --electric-purple: #8a2be2;
  --deep-purple: #4b0082;
  --royal-purple: #663399;
  --light-purple: #ddd6fe;
  
  /* Neon Accents */
  --neon-green: #39ff14;
  --neon-pink: #ff1493;
  --neon-cyan: #00ffff;
  --neon-orange: #ff4500;
  
  /* Dark Theme Base */
  --dark-bg: #0a0a0a;
  --dark-surface: #1a1a1a;
  --dark-card: #2a2a2a;
  --dark-border: #333333;
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  
  /* Dynamic Gradients */
  --hero-gradient: linear-gradient(135deg, var(--mardi-gras-purple) 0%, var(--electric-purple) 25%, var(--mardi-gras-green) 50%, var(--mardi-gras-gold) 100%);
  --card-gradient: linear-gradient(145deg, var(--dark-card) 0%, rgba(111, 66, 193, 0.1) 100%);
  --button-gradient: linear-gradient(45deg, var(--mardi-gras-purple), var(--electric-purple));
  --accent-gradient: linear-gradient(90deg, var(--neon-green), var(--neon-cyan), var(--neon-pink));
  
  /* Shadows and Effects */
  --glow-purple: 0 0 20px rgba(111, 66, 193, 0.5);
  --glow-gold: 0 0 20px rgba(255, 215, 0, 0.5);
  --glow-neon: 0 0 30px rgba(57, 255, 20, 0.7);
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --hover-lift: 0 20px 40px rgba(111, 66, 193, 0.2);
  
  /* Typography */
  --font-display: 'Exo', 'Impact', 'Arial Black', Arial, sans-serif;
  --font-primary: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Orbitron', 'Courier New', monospace;
  
  /* Animations */
  --animation-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --animation-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --animation-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: var(--hero-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--mardi-gras-gold);
  text-shadow: var(--glow-gold);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--electric-purple);
}

/* Enhanced Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--mardi-gras-purple);
  z-index: 1000;
  transition: all var(--animation-normal);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: var(--card-shadow);
}

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

.logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: var(--accent-gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  text-shadow: var(--glow-neon);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all var(--animation-fast);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--button-gradient);
  transition: left var(--animation-normal);
  z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
  left: 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--glow-purple);
}

.nav-tickets {
  background: var(--button-gradient);
  color: var(--text-primary);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: pulse-glow 2s ease-in-out infinite;
  box-shadow: var(--glow-purple);
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: var(--glow-purple);
    transform: scale(1);
  }
  50% { 
    box-shadow: var(--glow-gold);
    transform: scale(1.05);
  }
}

/* Epic Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--hero-gradient);
  opacity: 0.1;
  animation: hero-pulse 4s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.2; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-title {
  margin-bottom: 2rem;
  animation: title-entrance 1s ease-out;
}

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

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--mardi-gras-gold);
  margin-bottom: 1rem;
  font-weight: 400;
  animation: subtitle-entrance 1s ease-out 0.3s both;
}

@keyframes subtitle-entrance {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
  animation: description-entrance 1s ease-out 0.6s both;
}

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

/* Enhanced Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--animation-normal);
  position: relative;
  overflow: hidden;
  min-width: 180px;
}

.btn-primary {
  background: var(--button-gradient);
  color: var(--text-primary);
  box-shadow: var(--glow-purple);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--hover-lift);
}

.btn-secondary {
  background: transparent;
  color: var(--mardi-gras-gold);
  border: 2px solid var(--mardi-gras-gold);
}

.btn-secondary:hover {
  background: var(--mardi-gras-gold);
  color: var(--dark-bg);
  box-shadow: var(--glow-gold);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  min-width: 220px;
}

.hero-cta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: cta-entrance 1s ease-out 0.9s both;
}

@keyframes cta-entrance {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Countdown Enhancement */
.countdown-container {
  position: relative;
  z-index: 2;
  animation: countdown-entrance 1s ease-out 1.2s both;
}

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

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  background: var(--card-gradient);
  border: 2px solid var(--mardi-gras-purple);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  min-width: 100px;
  backdrop-filter: blur(10px);
  transition: all var(--animation-normal);
}

.countdown-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-purple);
  border-color: var(--mardi-gras-gold);
}

.countdown-number {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--mardi-gras-gold);
  display: block;
  text-shadow: var(--glow-gold);
}

.countdown-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-top: 0.5rem;
}

/* Enhanced Sections */
section {
  padding: 6rem 0;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

/* Dynamic Features Grid */
.features {
  background: var(--dark-surface);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(111, 66, 193, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(25, 135, 84, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--card-gradient);
  border: 2px solid var(--dark-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all var(--animation-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transition: transform var(--animation-normal);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--hover-lift);
  border-color: var(--mardi-gras-purple);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.feature-card h3 {
  color: var(--mardi-gras-gold);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.feature-link {
  color: var(--electric-purple);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 2px solid var(--electric-purple);
  border-radius: 25px;
  transition: all var(--animation-fast);
}

.feature-link:hover {
  background: var(--electric-purple);
  color: var(--text-primary);
  box-shadow: var(--glow-purple);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }
  
  .logo-text {
    font-size: 1.5rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--animation-normal);
    border-top: 2px solid var(--mardi-gras-purple);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .countdown {
    gap: 1rem;
  }
  
  .countdown-item {
    min-width: 80px;
    padding: 1rem;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
.btn:focus,
.nav-link:focus {
  outline: 3px solid var(--mardi-gras-gold);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }
  
  .site-header,
  .hero-video,
  .countdown-container {
    display: none;
  }
  
  .btn {
    border: 2px solid black;
    background: white;
    color: black;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --dark-bg: #000000;
    --dark-surface: #000000;
    --dark-card: #000000;
  }
}

/* social-feeds.css */
/**
 * Social Media Integration Styles
 * Responsive social feed display and sharing components
 */

/* Social Wall Container */
.social-wall {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.social-wall-header {
    text-align: center;
    margin-bottom: 3rem;
}

.social-wall-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #2d1b69;
    margin-bottom: 1rem;
}

.social-hashtags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hashtag {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.hashtag:hover {
    transform: scale(1.05);
}

/* Social Posts Grid */
.social-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Individual Post Styles */
.social-post {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.social-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.post-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.post-header i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.post-user {
    flex: 1;
}

.username {
    font-weight: 700;
    color: #333;
    display: block;
}

.timestamp {
    font-size: 0.8rem;
    color: #666;
}

.post-media {
    position: relative;
    overflow: hidden;
}

.post-media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.social-post:hover .post-media img {
    transform: scale(1.05);
}

.post-content {
    padding: 1rem;
}

.post-content p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.post-stats {
    display: flex;
    gap: 1rem;
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
    color: #666;
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-link {
    display: block;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: background 0.3s ease;
}

.post-link:hover {
    background: #e9ecef;
    color: #333;
}

/* Platform-specific styling */
.instagram-post {
    border-top: 3px solid #E4405F;
}

.twitter-post {
    border-top: 3px solid #1DA1F2;
}

.facebook-post {
    border-top: 3px solid #1877F2;
}

.tiktok-post {
    border-top: 3px solid #000000;
}

/* TikTok video styling */
.tiktok-video {
    position: relative;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.tiktok-video:hover .play-button {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Social Wall Footer */
.social-wall-footer {
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-link.twitter {
    background: #1DA1F2;
    color: white;
}

.social-link.facebook {
    background: #1877F2;
    color: white;
}

.social-link.tiktok {
    background: #000000;
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Fallback Content */
.social-fallback {
    padding: 2rem;
}

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

.social-link-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-link-card.instagram:hover {
    border-color: #E4405F;
}

.social-link-card.twitter:hover {
    border-color: #1DA1F2;
}

.social-link-card.facebook:hover {
    border-color: #1877F2;
}

.social-link-card.tiktok:hover {
    border-color: #000000;
}

.social-link-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-link-card.instagram i {
    color: #E4405F;
}

.social-link-card.twitter i {
    color: #1DA1F2;
}

.social-link-card.facebook i {
    color: #1877F2;
}

.social-link-card.tiktok i {
    color: #000000;
}

.social-link-card h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Social Share Buttons */
.social-share-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 600;
    color: #666;
    margin-right: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn.twitter {
    background: #1DA1F2;
    color: white;
}

.share-btn.facebook {
    background: #1877F2;
    color: white;
}

.share-btn.linkedin {
    background: #0077B5;
    color: white;
}

.share-btn.native {
    background: #6c757d;
    color: white;
}

.share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Social Share Container */
.social-share-container {
    margin: 2rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

/* Embedded Social Widgets */
.social-widget {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-widget h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #2d1b69;
    margin-bottom: 1rem;
    text-align: center;
}

/* Instagram Embed */
.instagram-embed {
    max-width: 540px;
    margin: 0 auto;
}

/* Twitter Embed */
.twitter-embed {
    max-width: 550px;
    margin: 0 auto;
}

/* Live Social Feed */
.live-feed-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #27ae60;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* Social Media Floating Widget */
.social-floating-widget {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.floating-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-social-btn:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-wall-header h2 {
        font-size: 2rem;
    }
    
    .social-posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-hashtags {
        gap: 0.5rem;
    }
    
    .hashtag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        min-width: 250px;
    }
    
    .social-share-buttons {
        justify-content: center;
    }
    
    .social-floating-widget {
        right: 1rem;
        bottom: 1rem;
    }
    
    .floating-social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .social-wall {
        padding: 2rem 0;
    }
    
    .social-wall-header h2 {
        font-size: 1.75rem;
    }
    
    .social-posts-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .social-post {
        margin: 0 0.5rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .social-wall {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    }
    
    .social-post {
        background: #34495e;
        color: #ecf0f1;
    }
    
    .post-content p {
        color: #ecf0f1;
    }
    
    .username {
        color: #ecf0f1;
    }
    
    .post-link {
        background: #2c3e50;
        color: #bdc3c7;
    }
    
    .post-link:hover {
        background: #34495e;
        color: #ecf0f1;
    }
    
    .social-widget {
        background: #34495e;
        color: #ecf0f1;
    }
    
    .social-link-card {
        background: #34495e;
        color: #ecf0f1;
    }
}

/* admin-dashboard.css */
/**
 * Admin Dashboard Styles for Nerdi Gras
 * Professional dark theme with cyberpunk accents
 */

/* Base admin styles */
.admin-container {
    display: flex;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    font-family: 'Inter', sans-serif;
    color: #e0e6ed;
}

/* Sidebar */
.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-right: 1px solid #333;
    padding: 0;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
}

.admin-logo {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #333;
    text-align: center;
}

.admin-logo i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
    display: block;
}

.admin-logo h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.admin-nav ul {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    margin: 0.25rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(4px);
}

.nav-item.active {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.2));
    border-left: 3px solid #ffd700;
}

.nav-item i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 20px;
    color: #ffd700;
}

.nav-item span {
    font-weight: 500;
}

/* Admin user section */
.admin-user {
    padding: 1.5rem;
    border-top: 1px solid #333;
    margin-top: auto;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.user-info i {
    font-size: 2rem;
    color: #ffd700;
    margin-right: 0.75rem;
}

.btn-logout {
    width: 100%;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* Main content */
.admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.admin-header {
    background: rgba(26, 26, 46, 0.95);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #333;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: between;
    align-items: center;
}

.header-content h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.last-updated {
    color: #9ca3af;
    font-size: 0.875rem;
}

.btn-refresh {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-refresh:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-1px);
}

/* Sections */
.admin-section {
    display: none;
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.admin-section.active {
    display: block;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 53, 0.2));
    border-radius: 12px;
    margin-bottom: 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #ffd700;
}

.stat-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #e0e6ed;
}

.stat-content p {
    margin: 0 0 0.5rem 0;
    color: #9ca3af;
    font-weight: 500;
}

.stat-change {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

/* Dashboard widgets */
.dashboard-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.widget {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.widget-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    display: flex;
    justify-content: between;
    align-items: center;
}

.widget-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #e0e6ed;
}

.widget-header a {
    color: #ffd700;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.widget-content {
    padding: 1.5rem;
}

/* Status grid */
.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-good {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Data tables */
.section-controls {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 2rem;
}

.filters {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filters select,
.filters input {
    padding: 0.5rem 0.75rem;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 6px;
    color: #e0e6ed;
    font-size: 0.875rem;
}

.filters select:focus,
.filters input:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.data-table {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    overflow: hidden;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #ffd700;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    vertical-align: top;
}

.data-table tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* Vendor info styles */
.vendor-info strong {
    display: block;
    color: #e0e6ed;
    margin-bottom: 0.25rem;
}

.vendor-info small {
    color: #9ca3af;
    font-size: 0.875rem;
}

.contact-info div {
    color: #e0e6ed;
    margin-bottom: 0.25rem;
}

.contact-info small {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Status badges */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
}

.status-badge.approved {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.status-badge.rejected {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
}

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(75, 85, 99, 0.8);
    color: #e0e6ed;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    background: rgba(75, 85, 99, 1);
    border-color: #ffd700;
}

.btn-success {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
}

.btn-danger {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    color: white;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.modal-header h3 {
    margin: 0;
    color: #e0e6ed;
}

.close {
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.close:hover {
    color: #ffd700;
}

/* Form styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e6ed;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 6px;
    color: #e0e6ed;
    font-size: 0.875rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Vendor details */
.vendor-details h4 {
    margin: 0 0 1rem 0;
    color: #ffd700;
    font-size: 1.25rem;
}

.detail-grid {
    display: grid;
    gap: 1rem;
}

.detail-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0.5rem;
    align-items: start;
}

.detail-item label {
    font-weight: 600;
    color: #9ca3af;
    margin: 0;
}

.detail-item span {
    color: #e0e6ed;
}

/* Review actions */
.review-actions {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.review-actions textarea {
    width: 100%;
    margin-bottom: 1rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Alerts */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    z-index: 1100;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
}

.alert-error {
    background: linear-gradient(45deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
    color: white;
    border-left: 4px solid #dc2626;
}

.alert-success {
    background: linear-gradient(45deg, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 0.9));
    color: white;
    border-left: 4px solid #16a34a;
}

/* Loading states */
.loading {
    text-align: center;
    color: #9ca3af;
    font-style: italic;
    padding: 2rem;
}

.no-data {
    text-align: center;
    color: #9ca3af;
    font-style: italic;
    padding: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .admin-container {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        height: auto;
        position: fixed;
        top: 0;
        left: -100%;
        z-index: 999;
        transition: left 0.3s ease;
    }
    
    .admin-sidebar.mobile-open {
        left: 0;
    }
    
    .admin-main {
        margin-left: 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-widgets {
        grid-template-columns: 1fr;
    }
    
    .section-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .filters {
        flex-wrap: wrap;
    }
    
    .button-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .admin-section {
        padding: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .data-table {
        overflow-x: auto;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

/* navigation-reworked.css */
/* Reworked Responsive Navigation Styles */
/* Consistent with site fonts: Megloria (headings), Albertus (body), Orbitron (display) */

.site-header {
  background: linear-gradient(135deg, #1a0033 0%, #0f1a0f 25%, #1a1500 50%, #1a0033 75%, #0f1a0f 100%);
  background-size: 400% 400%;
  animation: mardiGrasGradient 20s ease infinite;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* TOP ROW: Social Media + Logo + CTA Buttons */
.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: var(--space-lg);
}

/* Social Media Section (Left) */
.social-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  transition: all var(--transition-normal);
  color: var(--mardi-gras-gold);
  text-decoration: none;
}

.social-link:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.social-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Logo Section (Center - Spanning Width) */
.logo-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.main-logo {
  height: auto;
  max-height: 80px;
  width: auto;
  transition: transform var(--transition-normal);
}

.logo-link:hover .main-logo {
  transform: scale(1.05);
}

.logo-tagline {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.tagline-text {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--mardi-gras-gold);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.event-date {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* CTA Section (Right) */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.cta-tickets {
  background: linear-gradient(45deg, var(--mardi-gras-gold), #ffed4e);
  color: var(--dark-gray);
  font-weight: 700;
  font-family: var(--font-accent);
}

.cta-auth {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--font-primary);
}

.cta-auth:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--mardi-gras-gold);
}

/* BOTTOM ROW: Navigation Menu + Countdown */
.header-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: var(--space-lg);
}

/* Countdown Timer (Bottom Left) */
.nav-countdown-container {
  flex-shrink: 0;
}

.countdown-compact {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.countdown-compact .countdown-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 215, 0, 0.2);
  min-width: 50px;
}

.countdown-compact .countdown-number {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--mardi-gras-gold);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  line-height: 1;
}

.countdown-compact .countdown-label {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  color: var(--white);
  margin-top: 2px;
}

/* Navigation Menu (Bottom Right) */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  gap: 4px;
}

.hamburger {
  width: 25px;
  height: 3px;
  background: var(--mardi-gras-gold);
  border-radius: 2px;
  transition: all var(--transition-normal);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--mardi-gras-gold);
  transform: translateY(-2px);
}

.nav-link.active {
  background: rgba(255, 215, 0, 0.2);
  color: var(--mardi-gras-gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: var(--mardi-gras-gold);
  border-radius: var(--radius-full);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-lg);
  min-width: 200px;
  padding: var(--space-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all var(--transition-normal);
  z-index: 1000;
  list-style: none;
  margin: 0;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu .nav-link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  margin: 0;
  width: 100%;
  text-align: left;
}

.dropdown-menu .nav-link:hover {
  background: rgba(255, 215, 0, 0.2);
}

/* RESPONSIVE BREAKPOINTS */

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .header-container {
    padding: 0 var(--space-xl);
  }
  
  .main-logo {
    max-height: 100px;
  }
  
  .tagline-text {
    font-size: var(--text-xl);
  }
  
  .countdown-compact .countdown-number {
    font-size: var(--text-xl);
  }
  
  .nav-menu {
    gap: var(--space-xl);
  }
}

/* Desktop (992px and up) */
@media (min-width: 992px) {
  .header-top-row {
    padding: var(--space-lg) 0;
  }
  
  .header-bottom-row {
    padding: var(--space-md) 0;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
  }
  
  .social-icon {
    width: 24px;
    height: 24px;
  }
  
  .main-logo {
    max-height: 120px;
  }
  
  .tagline-text {
    font-size: var(--text-2xl);
  }
  
  .event-date {
    font-size: var(--text-base);
  }
  
  .countdown-compact .countdown-unit {
    padding: var(--space-sm) var(--space-md);
    min-width: 60px;
  }
  
  .countdown-compact .countdown-number {
    font-size: var(--text-2xl);
  }
  
  .nav-link {
    font-size: var(--text-lg);
  }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .header-container {
    padding: 0 var(--space-2xl);
  }
  
  .social-section {
    gap: var(--space-lg);
  }
  
  .cta-section {
    gap: var(--space-lg);
  }
  
  .main-logo {
    max-height: 140px;
  }
  
  .nav-menu {
    gap: var(--space-2xl);
  }
  
  .countdown-compact {
    gap: var(--space-md);
  }
  
  .countdown-compact .countdown-unit {
    min-width: 70px;
  }
}

/* MOBILE RESPONSIVE DESIGN */
@media (max-width: 767px) {
  .header-container {
    padding: 0 var(--space-md);
  }
  
  /* Mobile: Stack layout */
  .header-top-row {
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-md) 0;
  }
  
  .social-section {
    order: 3;
    justify-content: center;
  }
  
  .logo-section {
    order: 1;
  }
  
  .cta-section {
    order: 2;
    justify-content: center;
  }
  
  .main-logo {
    max-height: 60px;
  }
  
  .tagline-text {
    font-size: var(--text-base);
  }
  
  .event-date {
    font-size: var(--text-xs);
  }
  
  /* Mobile navigation */
  .header-bottom-row {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: stretch;
  }
  
  .nav-countdown-container {
    display: flex;
    justify-content: center;
  }
  
  .countdown-compact .countdown-unit {
    min-width: 45px;
    padding: 6px var(--space-sm);
  }
  
  .countdown-compact .countdown-number {
    font-size: var(--text-base);
  }
  
  .countdown-compact .countdown-label {
    font-size: 10px;
  }
  
  /* Mobile menu */
  .mobile-menu-toggle {
    display: flex;
    align-self: center;
  }
  
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: var(--space-xl);
    gap: var(--space-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    border-top: 1px solid rgba(255, 215, 0, 0.3);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    text-align: center;
    padding: var(--space-md);
    font-size: var(--text-lg);
  }
  
  .dropdown-menu {
    position: static;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: var(--space-sm);
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  /* Mobile menu toggle animation */
  .mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Very small devices */
@media (max-width: 480px) {
  .header-container {
    padding: 0 var(--space-sm);
  }
  
  .social-section {
    gap: var(--space-sm);
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }
  
  .cta-section {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .btn {
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-md);
  }
  
  .countdown-compact {
    gap: var(--space-xs);
  }
  
  .countdown-compact .countdown-unit {
    min-width: 40px;
    padding: 4px var(--space-xs);
  }
  
  .countdown-compact .countdown-number {
    font-size: var(--text-sm);
  }
  
  .countdown-compact .countdown-label {
    font-size: 9px;
  }
}


/* Navigation CTA Button Stacking Fix - Added Tue Jul  1 19:34:57 UTC 2025 */
.cta-section .btn {
  display: flex !important;
  width: 100%;
  max-width: 140px;
}

/* Ensure CTA buttons stack vertically on all screen sizes */
.cta-section {
  flex-direction: column !important;
}

.cta-section .btn {
  display: block !important;
  text-align: center;
  margin-bottom: 0;
}

