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

/* CSS Variables */
:root {
  --color-midnight: #0A0A1F;
  --color-sunset: #FFD37F;
  --color-clay: #B56335;
  --color-rose: #BA6F5D;
  --color-mint: #B5FFE1;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-neon: #D4FF6C;
  
  /* Typography */
  --font-primary: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-serif: 'Playfair Display', serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
  
  /* Z-index */
  --z-background: -1;
  --z-content: 1;
  --z-ui: 10;
  --z-modal: 100;
  --z-loading: 1000;
}

/* Base HTML and Body */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: var(--font-primary);
  background: var(--color-midnight);
  color: var(--color-white);
  overflow-x: hidden;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 6vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
  margin-bottom: var(--spacing-sm);
}

.italic {
  font-family: var(--font-serif);
  font-style: italic;
}

/* Main Layout */
.main-content {
  position: relative;
  z-index: var(--z-content);
}

/* Section Base */
section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--spacing-lg) var(--spacing-md);
}

@media (max-width: 768px) {
  section {
    padding: var(--spacing-md) var(--spacing-sm);
  }
}

.section-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Hero Section - Complete Redesign */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0A0A1F 0%, #1a1a3a 50%, #0A0A1F 100%);
  padding-bottom: var(--spacing-xl);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-background);
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 31, 0.85) 0%,
    rgba(26, 26, 58, 0.7) 30%,
    rgba(212, 255, 108, 0.1) 60%,
    rgba(10, 10, 31, 0.9) 100%
  );
}

.hero-content {
  text-align: center;
  z-index: 10;
  max-width: 600px;
  padding: var(--spacing-xl) var(--spacing-md) 0;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10vh;
}

/* Music Player Component - Repositioned */
.hero-music-player {
  margin-top: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
  display: flex;
  justify-content: center;
  width: 100%;
  opacity: 1;
  transform: translateY(0);
}

.music-player {
  background: rgba(10, 10, 31, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 255, 108, 0.3);
  border-radius: 20px;
  padding: var(--spacing-md);
  width: 320px;
  max-width: 90vw;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .music-player {
    width: 280px;
    padding: var(--spacing-sm);
  }
  
  .hero-content {
    padding-top: 8vh;
  }
  
  .typewriter-container {
    margin-bottom: var(--spacing-xs);
  }
  
  .hero-music-player {
    margin-top: 0.5rem;
    margin-bottom: var(--spacing-md);
  }
  
  .typewriter-title {
    margin-bottom: 0.25rem;
  }
}

.music-player:hover {
  border-color: rgba(212, 255, 108, 0.6);
  box-shadow: 0 20px 40px rgba(212, 255, 108, 0.2);
}

.album-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: var(--spacing-md);
  border-radius: 15px;
  overflow: hidden;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(212, 255, 108, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--color-midnight);
}

.play-button:hover {
  background: var(--color-neon);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 10px 30px rgba(212, 255, 108, 0.5);
}

.play-icon, .pause-icon {
  width: 24px;
  height: 24px;
}

.audio-waves {
  position: absolute;
  bottom: 15px;
  left: 15px;
  display: flex;
  gap: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.music-player.playing .audio-waves {
  opacity: 1;
}

.music-player.playing .cover-image {
  transform: scale(1.05);
}

.wave {
  width: 3px;
  height: 20px;
  background: var(--color-neon);
  border-radius: 1.5px;
  animation: wave 1s ease-in-out infinite;
}

.wave:nth-child(2) {
  animation-delay: 0.1s;
}

.wave:nth-child(3) {
  animation-delay: 0.2s;
}

.wave:nth-child(4) {
  animation-delay: 0.3s;
}

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

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

.track-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-neon);
  margin-bottom: 0.25rem;
}

.artist-name {
  font-size: 0.9rem;
  color: var(--color-white);
  opacity: 0.8;
  margin-bottom: var(--spacing-sm);
}

.track-time {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--color-white);
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-neon) 0%, var(--color-sunset) 100%);
  width: 0%;
  transition: width 0.3s ease;
}

/* Typewriter Title */
.typewriter-container {
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.typewriter-title {
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  color: var(--color-neon);
  font-family: var(--font-primary);
  letter-spacing: -0.02em;
  text-shadow: 
    0 0 20px rgba(212, 255, 108, 0.5),
    0 0 40px rgba(212, 255, 108, 0.3);
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
  white-space: nowrap;
  border-right: 3px solid var(--color-neon);
  animation: blink 1s infinite;
}

.typewriter-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-mono);
  line-height: 1.5;
  margin-bottom: 0;
  text-align: center;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

/* Curved Design Elements */
.curved-element {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 120%;
  height: 400px;
  opacity: 0.15;
  z-index: 0;
}

.curved-path {
  stroke: var(--color-neon);
  stroke-width: 2;
  fill: none;
  filter: blur(2px);
  animation: pathGlow 4s ease-in-out infinite alternate;
}

@keyframes pathGlow {
  0% {
    opacity: 0.3;
    stroke-width: 2;
  }
  100% {
    opacity: 0.8;
    stroke-width: 3;
  }
}

/* Story Gallery - Integrated */
.story-gallery {
  margin-top: var(--spacing-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-sm);
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(212, 255, 108, 0.2);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2);
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-image {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(212, 255, 108, 0.7) 0%,
    rgba(255, 211, 127, 0.5) 50%,
    rgba(10, 10, 31, 0.8) 100%
  );
}

.overlay-content {
  position: absolute;
  bottom: var(--spacing-md);
  left: var(--spacing-md);
  right: var(--spacing-md);
  text-align: left;
  z-index: 2;
}

.overlay-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.overlay-content p {
  font-size: 0.9rem;
  color: var(--color-white);
  opacity: 0.9;
  font-family: var(--font-mono);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* Audio Controls Enhancement */
.audio-controls {
  position: fixed;
  top: var(--spacing-md);
  right: var(--spacing-md);
  z-index: var(--z-ui);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: rgba(10, 10, 31, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 255, 108, 0.2);
  border-radius: 50px;
  padding: var(--spacing-xs) var(--spacing-sm);
}

.audio-toggle {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-neon) 0%, var(--color-sunset) 100%);
  color: var(--color-midnight);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(212, 255, 108, 0.4);
}

.audio-visualizer {
  display: flex;
  align-items: end;
  gap: 2px;
  height: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.audio-visualizer.active {
  opacity: 1;
}

.audio-bar {
  width: 3px;
  background: linear-gradient(to top, var(--color-neon) 0%, var(--color-sunset) 100%);
  border-radius: 1.5px;
  transition: height 0.1s ease;
  min-height: 2px;
}

/* CTA Button Enhancement */
.cta-button {
  position: relative;
  padding: var(--spacing-md) var(--spacing-lg);
  background: linear-gradient(135deg, var(--color-neon) 0%, var(--color-sunset) 100%);
  border: none;
  border-radius: 50px;
  color: var(--color-midnight);
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
  margin: var(--spacing-md) 0;
}

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

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 255, 108, 0.4);
}

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

.cta-button:active {
  transform: translateY(-1px);
}

/* Fireflies Canvas */
.fireflies-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-background);
  pointer-events: none;
}

/* Global Section - Enhanced */
.global-section {
  background: linear-gradient(135deg, var(--color-midnight) 0%, rgba(26, 26, 58, 0.8) 100%);
  padding: var(--spacing-xl) var(--spacing-md);
  position: relative;
}

.global-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.global-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--spacing-xl);
  background: linear-gradient(135deg, var(--color-neon) 0%, var(--color-sunset) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(212, 255, 108, 0.3);
  line-height: 1.2;
}

.globe-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto var(--spacing-lg);
}

@media (max-width: 768px) {
  .globe-container {
    height: 350px;
    max-width: 350px;
  }
}

.globe-canvas {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(212, 255, 108, 0.15) 0%, rgba(10, 10, 31, 0.9) 70%);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(212, 255, 108, 0.4);
  box-shadow: 0 0 50px rgba(212, 255, 108, 0.2);
}

.globe-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Location Dots - Enhanced */
.location-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.3s ease;
}

.location-dot:hover {
  transform: scale(1.3);
}

.location-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  pointer-events: all;
}

.dot-pulse {
  width: 100%;
  height: 100%;
  background: var(--color-neon);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 10px var(--color-neon);
}

.city-name {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--color-neon);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(10, 10, 31, 0.8);
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  border: 1px solid rgba(212, 255, 108, 0.3);
}

.location-dot:hover .city-name {
  opacity: 1;
}

/* Quote Cards - Enhanced */
.quotes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.quote-card {
  background: rgba(212, 255, 108, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 255, 108, 0.2);
  border-radius: 20px;
  padding: var(--spacing-md);
  transition: all 0.3s ease;
}

.quote-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 255, 108, 0.4);
  box-shadow: 0 10px 30px rgba(212, 255, 108, 0.1);
}

.quote-card p {
  font-style: italic;
  margin-bottom: var(--spacing-sm);
  color: var(--color-neon);
}

.quote-author {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-white);
  opacity: 0.8;
}

/* Countdown Timer */
.countdown-container {
  margin-top: var(--spacing-xl);
}

.countdown-title {
  margin-bottom: var(--spacing-md);
  color: var(--color-neon);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.time-unit {
  background: rgba(212, 255, 108, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 255, 108, 0.3);
  border-radius: 15px;
  padding: var(--spacing-md);
  min-width: 80px;
  text-align: center;
}

.time-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-neon);
  font-family: var(--font-mono);
}

.time-label {
  font-size: 0.8rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Story Section - Compact Design */
.story-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-midnight) 0%, rgba(26, 26, 58, 0.8) 100%);
  padding: var(--spacing-lg) var(--spacing-md);
}

.story-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.story-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-neon) 0%, var(--color-sunset) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: -1px;
  text-shadow: 0 0 30px rgba(212, 255, 108, 0.3);
}

.story-text {
  margin-bottom: var(--spacing-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.text-block {
  margin-bottom: var(--spacing-sm);
  opacity: 1;
}

.story-line {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--color-white);
  margin: 0;
  opacity: 1;
  transform: translateY(0);
  line-height: 1.5;
}

.story-line.italic {
  font-style: italic;
  opacity: 0.8;
  color: var(--color-neon);
  font-size: clamp(0.9rem, 2.2vw, 1.2rem);
}

.story-content {
  position: relative;
  z-index: var(--z-content);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.story-title {
  margin-bottom: var(--spacing-xl);
  background: linear-gradient(135deg, var(--color-clay) 0%, var(--color-neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-block {
  margin-bottom: var(--spacing-lg);
  opacity: 0;
  transform: translateY(50px);
}

.story-line {
  font-size: clamp(1.2rem, 4vw, 2rem);
  margin-bottom: var(--spacing-sm);
}

.story-line.italic {
  color: var(--color-neon);
  font-size: clamp(1rem, 3vw, 1.5rem);
}

/* Join Section - Clean */
.join-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-midnight) 0%, rgba(26, 26, 58, 0.8) 100%);
  padding: var(--spacing-xl) var(--spacing-md);
}

.join-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.join-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  background: linear-gradient(135deg, var(--color-neon) 0%, var(--color-sunset) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(212, 255, 108, 0.3);
}

.join-subtitle {
  margin-bottom: var(--spacing-xl);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-white);
  opacity: 0.9;
}

/* Email Form Enhancement */
.email-form {
  margin-bottom: var(--spacing-xl);
}

.input-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: rgba(212, 255, 108, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(212, 255, 108, 0.3);
  border-radius: 50px;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.input-container:focus-within {
  border-color: var(--color-neon);
  box-shadow: 0 0 20px rgba(212, 255, 108, 0.3);
}

.email-input {
  flex: 1;
  padding: var(--spacing-md) var(--spacing-lg);
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.1rem;
  font-family: var(--font-primary);
  outline: none;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.submit-button {
  background: linear-gradient(135deg, var(--color-neon) 0%, var(--color-sunset) 100%);
  border: none;
  border-radius: 50px;
  color: var(--color-midnight);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: var(--spacing-sm) var(--spacing-md);
  white-space: nowrap;
}

.submit-button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(212, 255, 108, 0.4);
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(212, 255, 108, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 255, 108, 0.2);
  border-radius: 25px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(212, 255, 108, 0.1);
  border-color: var(--color-neon);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 255, 108, 0.2);
}

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

/* Hashtags */
.hashtags {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.hashtag {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-neon);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.hashtag:hover {
  opacity: 1;
}

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

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

.loading-content {
  text-align: center;
  max-width: 300px;
}

.loading-logo {
  margin-bottom: var(--spacing-md);
}

.loading-logo-image {
  width: 100px;
  height: auto;
  animation: glow 2s ease-in-out infinite alternate;
}

.loading-text {
  margin-bottom: var(--spacing-md);
  font-family: var(--font-mono);
  color: var(--color-neon);
  font-size: 0.9rem;
}

.loading-bar {
  width: 200px;
  height: 4px;
  background: rgba(212, 255, 108, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--color-neon) 0%, var(--color-sunset) 100%);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(212, 255, 108, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(212, 255, 108, 0.8));
  }
}

@keyframes blink {
  0%, 50% {
    border-color: var(--color-neon);
  }
  51%, 100% {
    border-color: transparent;
  }
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-midnight);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--color-neon) 0%, var(--color-sunset) 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, var(--color-sunset) 0%, var(--color-clay) 100%);
}

/* Selection */
::selection {
  background: rgba(212, 255, 108, 0.3);
  color: var(--color-white);
}

::-moz-selection {
  background: rgba(212, 255, 108, 0.3);
  color: var(--color-white);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 var(--spacing-sm);
  }
  
  .audio-controls {
    top: var(--spacing-sm);
    right: var(--spacing-sm);
  }
  
  .social-link .social-text {
    display: none;
  }
  
  .input-container {
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
  }
  
  .email-input {
    width: 100%;
    text-align: center;
  }
  
  .submit-button {
    width: 100%;
  }
}

/* Footer Styles */
.site-footer {
  background: linear-gradient(135deg, rgba(10, 10, 31, 0.95) 0%, rgba(26, 26, 58, 0.9) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 255, 108, 0.2);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: center;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-logo {
  width: 120px;
  height: auto;
}

.footer-tagline {
  color: var(--color-neon);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links h4,
.footer-social h4,
.footer-newsletter h4 {
  color: var(--color-neon);
  margin-bottom: var(--spacing-sm);
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.footer-link:hover {
  color: var(--color-neon);
  opacity: 1;
}

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

.social-icon-link {
  color: var(--color-white);
  text-decoration: none;
  padding: 0.5rem;
  background: rgba(212, 255, 108, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.9rem;
}

.social-icon-link:hover {
  background: rgba(212, 255, 108, 0.2);
  color: var(--color-neon);
  transform: translateY(-2px);
}

.footer-newsletter p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-white);
  opacity: 0.8;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 255, 108, 0.3);
  border-radius: 8px;
  color: var(--color-white);
  font-family: var(--font-primary);
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  border-color: var(--color-neon);
  box-shadow: 0 0 10px rgba(212, 255, 108, 0.2);
}

.newsletter-btn {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--color-neon) 0%, var(--color-sunset) 100%);
  border: none;
  border-radius: 8px;
  color: var(--color-midnight);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 255, 108, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(212, 255, 108, 0.1);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }
}

.footer-copy p {
  margin: 0;
  color: var(--color-white);
  opacity: 0.7;
  font-size: 0.85rem;
}

.footer-credits {
  font-family: var(--font-mono);
  color: var(--color-neon);
  opacity: 0.8;
}

.footer-hashtags {
  display: flex;
  gap: var(--spacing-sm);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.footer-hashtags span {
  color: var(--color-neon);
  opacity: 0.7;
}

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