/* ONSITE RECORDS ELITE DESIGN SYSTEM */
/* Premium Electronic Music Label CSS Framework */

:root {
  /* Core Brand Colors */
  --primary: #FF0040;
  --secondary: #FF0080;
  --dark: #0A0A0A;
  --darker: #000000;
  --light: #FFFFFF;
  --gray: #1A1A1A;
  --gray-light: #2A2A2A;
  --gray-text: #8A8A8A;
  
  /* Gradient System */
  --accent-gradient: linear-gradient(135deg, #FF0040, #FF0080, #8B0000);
  --dark-gradient: linear-gradient(180deg, #0A0A0A 0%, #000000 100%);
  --glow-gradient: radial-gradient(circle at center, rgba(255,0,64,0.2) 0%, transparent 70%);
  --neon-gradient: linear-gradient(45deg, #FF0040, #FF0080, #FF00FF, #8000FF);
  
  /* Typography */
  --font-heading: 'Inter', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
  
  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-xxl: 8rem;
  
  /* Animation */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --transition-base: 0.3s var(--ease-out-expo);
  --transition-slow: 0.6s var(--ease-out-expo);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.2);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 40px rgba(255,0,64,0.5);
  --shadow-neon: 0 0 80px rgba(255,0,128,0.8);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--darker);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

body.menu-open {
  overflow: hidden;
}

/* Slider Text Styles */
.hero-minimal-title {
  color: var(--primary) !important;
}

.slide-title {
  color: var(--primary) !important;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.slide-subtitle {
  color: var(--light) !important;
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.slide-description {
  color: var(--gray-text) !important;
}

/* Specific slide color overrides - All red for consistency */
.slide-title-white {
  color: var(--primary) !important;
}

.slide-subtitle-white {
  color: var(--primary) !important;
}

.slide-title-red {
  color: var(--primary) !important;
}

.slide-subtitle-red {
  color: var(--primary) !important;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { 
  font-size: clamp(3rem, 8vw, 7rem);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.75rem); }

/* Navigation Mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10001;
}

.hamburger {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--light);
  position: relative;
  transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--light);
  transition: all var(--transition-base);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Mobile menu active states */
.mobile-menu-toggle.active .hamburger {
  background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: all 0.1s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  background: rgba(255, 0, 64, 0.1);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

/* Particle Background */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--darker);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 200px;
  height: 200px;
  position: relative;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    filter: drop-shadow(0 0 30px rgba(255,0,64,0.8));
    transform: scale(1);
  }
  50% { 
    filter: drop-shadow(0 0 60px rgba(255,0,128,1));
    transform: scale(1.05);
  }
}

/* Navigation Bar */
.nav-elite {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 0, 64, 0.1);
  transition: all var(--transition-base);
}

.nav-elite.scrolled {
  padding: 1rem 3rem;
  background: rgba(0, 0, 0, 0.95);
  box-shadow: var(--shadow-lg);
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: transform var(--transition-base);
}

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

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-link {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color var(--transition-base);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition-base);
}

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

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

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

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,0,64,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,0,128,0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139,0,0,0.05) 0%, transparent 70%);
  animation: gradient-shift 20s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { transform: rotate(0deg) scale(1); }
  33% { transform: rotate(120deg) scale(1.1); }
  66% { transform: rotate(240deg) scale(0.9); }
}

.vinyl-disc {
  position: absolute;
  width: 400px;
  height: 400px;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  animation: spin-vinyl 20s linear infinite;
}

@keyframes spin-vinyl {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-xl);
  max-width: 1200px;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
  animation: glitch 3s ease-in-out infinite;
  position: relative;
}

@keyframes glitch {
  0%, 100% { 
    text-shadow: 
      0.05em 0 0 rgba(255,0,64,0.75),
      -0.05em -0.025em 0 rgba(0,255,255,0.75),
      0.025em 0.05em 0 rgba(255,255,0,0.75);
  }
  14% {
    text-shadow: 
      0.05em 0 0 rgba(255,0,64,0.75),
      -0.05em -0.025em 0 rgba(0,255,255,0.75),
      0.025em 0.05em 0 rgba(255,255,0,0.75);
  }
  15% {
    text-shadow: 
      -0.05em -0.025em 0 rgba(255,0,64,0.75),
      0.025em 0.025em 0 rgba(0,255,255,0.75),
      -0.05em -0.05em 0 rgba(255,255,0,0.75);
  }
  49% {
    text-shadow: 
      -0.05em -0.025em 0 rgba(255,0,64,0.75),
      0.025em 0.025em 0 rgba(0,255,255,0.75),
      -0.05em -0.05em 0 rgba(255,255,0,0.75);
  }
  50% {
    text-shadow: 
      0.025em 0.05em 0 rgba(255,0,64,0.75),
      0.05em 0 0 rgba(0,255,255,0.75),
      0 -0.05em 0 rgba(255,255,0,0.75);
  }
  99% {
    text-shadow: 
      0.025em 0.05em 0 rgba(255,0,64,0.75),
      0.05em 0 0 rgba(0,255,255,0.75),
      0 -0.05em 0 rgba(255,255,0,0.75);
  }
}

.hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--gray-text);
  margin-bottom: var(--space-lg);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 1s ease forwards 0.5s;
}

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

.hero-cta {
  display: inline-flex;
  gap: var(--space-md);
  opacity: 0;
  animation: fade-up 1s ease forwards 0.8s;
}

/* Buttons */
.btn-primary {
  padding: 1rem 2.5rem;
  background: var(--accent-gradient);
  color: var(--light);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
}

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

.btn-primary:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

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

.btn-secondary {
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--light);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  color: var(--darker);
  background: var(--primary);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-glow);
}

/* Gallery Section */
.gallery-elite {
  padding: var(--space-xxl) var(--space-lg);
  background: var(--dark);
  position: relative;
}

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

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-sm);
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  color: var(--gray-text);
  font-size: 1.2rem;
  font-weight: 300;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.gallery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.gallery-card:hover {
  transform: translateY(-8px) rotateX(5deg);
  box-shadow: 
    0 20px 40px rgba(255,0,64,0.3),
    0 0 60px rgba(255,0,128,0.2);
  border-color: var(--primary);
}

.gallery-card:hover::before {
  opacity: 0.1;
}

.gallery-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, rgba(255,0,64,0.1), rgba(255,0,128,0.1));
  position: relative;
  overflow: hidden;
}

.gallery-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

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

.gallery-content {
  padding: var(--space-md);
}

.gallery-title {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--light);
}

.gallery-artist {
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.gallery-description {
  color: var(--gray-text);
  line-height: 1.6;
}

/* Articles Section */
.articles-elite {
  padding: var(--space-xxl) var(--space-lg);
  background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  max-width: 1400px;
  margin: 0 auto;
}

.article-card {
  position: relative;
  background: var(--gray);
  border-radius: 15px;
  overflow: hidden;
  transition: all var(--transition-base);
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.article-category {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: 0.5rem 1rem;
  background: var(--primary);
  color: var(--light);
  border-radius: 20px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  z-index: 1;
}

.article-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  animation: float 3s ease-in-out infinite;
}

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

.article-content {
  padding: var(--space-md);
}

.article-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--light);
}

.article-meta {
  display: flex;
  gap: var(--space-sm);
  color: var(--gray-text);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.reading-time::before {
  content: '⏱';
}

.article-excerpt {
  color: var(--gray-text);
  line-height: 1.6;
}

/* Skeleton Loading */
.skeleton {
  background: linear-gradient(90deg, 
    rgba(255,255,255,0.05) 25%, 
    rgba(255,255,255,0.1) 50%, 
    rgba(255,255,255,0.05) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

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

/* Events Section */
.events-elite {
  padding: var(--space-xxl) var(--space-lg);
  background: var(--darker);
  position: relative;
  overflow: hidden;
}

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

.event-poster {
  background: var(--gray);
  border: 3px solid var(--primary);
  border-radius: 0;
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
  transition: all var(--transition-base);
}

.event-poster:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-neon);
}

.event-date {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  transform: rotate(-5deg);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.event-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-venue {
  font-size: 1.2rem;
  color: var(--gray-text);
  margin-bottom: var(--space-md);
}

.event-countdown {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

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

.countdown-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Demo Submission Section */
.demo-submission {
  padding: var(--space-xxl) var(--space-lg);
  background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
  position: relative;
}

.demo-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.waveform-container {
  height: 200px;
  margin: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(0,0,0,0.5);
}

.waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 3px;
}

.waveform-bar {
  width: 4px;
  background: var(--primary);
  border-radius: 2px;
  animation: wave 1.5s ease-in-out infinite;
}

.waveform-bar:nth-child(odd) {
  animation-delay: 0.1s;
}

.waveform-bar:nth-child(even) {
  animation-delay: 0.2s;
}

@keyframes wave {
  0%, 100% { height: 20px; }
  50% { height: 80px; }
}

.drop-zone {
  border: 3px dashed var(--primary);
  border-radius: 20px;
  padding: var(--space-xl);
  margin: var(--space-lg) 0;
  transition: all var(--transition-base);
  position: relative;
  background: rgba(255,0,64,0.05);
}

.drop-zone.active {
  background: rgba(255,0,64,0.2);
  border-color: var(--secondary);
  transform: scale(1.02);
}

.drop-zone-text {
  font-size: 1.2rem;
  color: var(--gray-text);
  margin-bottom: var(--space-sm);
}

.upload-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  animation: bounce 2s ease-in-out infinite;
}

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

/* Audio Visualizer */
.audio-visualizer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(10px);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0 var(--space-md);
}

.audio-visualizer.active {
  display: flex;
}

.frequency-bar {
  width: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
  transition: height 0.1s ease;
}

/* Dark Mode Toggle */
.theme-toggle {
  position: fixed;
  top: 100px;
  right: 30px;
  width: 60px;
  height: 30px;
  background: var(--gray);
  border-radius: 30px;
  cursor: pointer;
  z-index: 1001;
  border: 2px solid var(--primary);
  transition: all var(--transition-base);
}

.theme-toggle-handle {
  width: 26px;
  height: 26px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all var(--transition-base);
}

.theme-toggle.active .theme-toggle-handle {
  transform: translateX(30px);
}

/* Light Theme */
body.light-theme {
  --dark: #FFFFFF;
  --darker: #F5F5F5;
  --light: #0A0A0A;
  --gray: #E0E0E0;
  --gray-light: #D0D0D0;
  --gray-text: #606060;
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--ease-out-expo);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Performance Metrics */
.performance-metrics {
  position: fixed;
  bottom: 20px;
  left: 20px;
  padding: 10px 15px;
  background: rgba(0,0,0,0.8);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  border-radius: 5px;
  z-index: 9999;
  display: none;
}

.performance-metrics.show {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block !important;
    position: relative;
    z-index: 10002;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  .hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--light);
    position: relative;
    transition: all 0.3s ease;
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: var(--light);
    transition: all 0.3s ease;
  }

  .hamburger::before { 
    top: -8px; 
    left: 0;
  }
  .hamburger::after { 
    bottom: -8px; 
    left: 0;
  }

  /* Hamburger active animation */
  .mobile-menu-toggle.active .hamburger {
    background: transparent;
  }

  .mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }

  .mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
  }
  
  /* Mobile logo size - much smaller for iPhone */
  .logo-img {
    height: 35px !important;
    width: auto;
    max-width: 120px;
  }
  
  /* Navigation adjustments for mobile */
  .nav-elite {
    padding: 1rem 1rem;
  }
  
  .nav-container {
    padding: 0;
    position: relative;
  }
  
  /* Mobile menu styles - iPhone specific */
  .nav-links, .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    gap: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-links.active, .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-link {
    font-size: 1.8rem;
    padding: 1.2rem 2rem;
    color: var(--light);
    border: 2px solid transparent;
    border-radius: 8px;
    width: 90%;
    max-width: 300px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
  }
  
  .nav-link:hover,
  .nav-link:active {
    background: rgba(255, 0, 64, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
  }
  
  /* Close button in mobile menu */
  .nav-links::before, .nav-menu::before {
    content: '✕';
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 10003;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
    -webkit-tap-highlight-color: transparent;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .events-container {
    padding: var(--space-md);
  }
  
  /* Reduce button sizes on mobile */
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    margin: 0.3rem;
  }
  
  .hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
}

/* iPhone specific fixes */
@media (max-width: 480px) {
  .logo-img {
    height: 30px !important;
    max-width: 100px;
  }
  
  .nav-elite {
    padding: 0.8rem 1rem;
  }
  
  .nav-link {
    font-size: 1.6rem;
    padding: 1rem 1.5rem;
  }
}

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

/* Print Styles */
@media print {
  .nav-elite, .theme-toggle, .audio-visualizer, .cursor, .cursor-follower {
    display: none !important;
  }
}