/* ============================================
   BassDropNZ - DJ Website Template
   Color Palette:
     --black:       #0D0D0D
     --neon-purple:  #8B5CF6
     --neon-cyan:    #06B6D4
     --dark-purple:  #1E1533
     --white:        #FFFFFF
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --black: #0D0D0D;
  --neon-purple: #8B5CF6;
  --neon-cyan: #06B6D4;
  --dark-purple: #1E1533;
  --white: #FFFFFF;
  --neon-purple-rgb: 139, 92, 246;
  --neon-cyan-rgb: 6, 182, 212;
  --glow-purple: 0 0 10px rgba(139, 92, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.2);
  --glow-cyan: 0 0 10px rgba(6, 182, 212, 0.5), 0 0 40px rgba(6, 182, 212, 0.2);
  --text-glow-purple: 0 0 10px rgba(139, 92, 246, 0.8), 0 0 30px rgba(139, 92, 246, 0.4);
  --text-glow-cyan: 0 0 10px rgba(6, 182, 212, 0.8), 0 0 30px rgba(6, 182, 212, 0.4);
  --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.6s ease;
  --container-max: 1200px;
  --nav-height: 70px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--neon-purple);
}

ul { list-style: none; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--neon-purple);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
}

/* ---------- Selection ---------- */
::selection {
  background: rgba(139, 92, 246, 0.4);
  color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
  transition: background var(--transition-medium), box-shadow var(--transition-medium);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 2px 30px rgba(139, 92, 246, 0.15);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
  box-shadow: var(--glow-purple);
  border-radius: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.6);
  transition: width var(--transition-medium);
  border-radius: 1px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--neon-cyan);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-medium), opacity var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--neon-cyan);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--neon-cyan);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(30, 21, 51, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: right var(--transition-medium);
    border-left: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark-purple);
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

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

.footer-section h3 {
  font-size: 1.1rem;
  color: var(--neon-purple);
  text-shadow: var(--text-glow-purple);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--neon-cyan);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-medium);
}

.footer-social a:hover {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  color: var(--neon-cyan);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--neon-purple);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--neon-cyan);
  text-shadow: var(--text-glow-cyan);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) 1rem 4rem;
  overflow: hidden;
  background: url(https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1920&h=1080&fit=crop) center/cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: heroPulse 4s ease-in-out infinite;
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--neon-cyan);
  text-shadow: var(--text-glow-cyan);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  animation: neonPulse 3s ease-in-out infinite;
}

.hero-title .highlight-purple {
  color: var(--neon-purple);
  text-shadow: var(--text-glow-purple);
}

.hero-title .highlight-cyan {
  color: var(--neon-cyan);
  text-shadow: var(--text-glow-cyan);
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow: 0 0 10px rgba(139, 92, 246, 0.6), 0 0 30px rgba(139, 92, 246, 0.3), 0 0 60px rgba(139, 92, 246, 0.1);
  }
  50% {
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.9), 0 0 50px rgba(139, 92, 246, 0.5), 0 0 100px rgba(139, 92, 246, 0.2);
  }
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--neon-purple), #6d3fd4);
  color: var(--white);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), 0 0 60px rgba(139, 92, 246, 0.2);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

.btn-outline:hover {
  background: rgba(6, 182, 212, 0.1);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
  color: var(--neon-cyan);
}

/* ---------- Genre Tags ---------- */
.genre-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.genre-tag {
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(139, 92, 246, 0.08);
  transition: all var(--transition-medium);
}

.genre-tag:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.3);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 5rem 0;
}

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

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.section-header h2 span {
  color: var(--neon-purple);
  text-shadow: var(--text-glow-purple);
}

.section-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-cyan));
  margin: 1rem auto;
  border-radius: 2px;
  box-shadow: var(--glow-purple);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 0 3rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
              var(--dark-purple);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.page-hero h1 span {
  color: var(--neon-purple);
  text-shadow: var(--text-glow-purple);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.05rem;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: rgba(30, 21, 51, 0.5);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 8px;
  padding: 2rem;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
  opacity: 0;
  transition: opacity var(--transition-medium);
}

.card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 40px rgba(139, 92, 246, 0.1);
  transform: translateY(-4px);
}

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

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FEATURED MIXES (Home)
   ============================================ */
.featured-mixes {
  background: linear-gradient(180deg, var(--black) 0%, var(--dark-purple) 50%, var(--black) 100%);
}

.mix-card {
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.mix-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 8px 40px rgba(6, 182, 212, 0.1);
  transform: translateY(-4px);
}

.mix-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--dark-purple), rgba(139, 92, 246, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mix-card-image .play-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  transition: all var(--transition-medium);
  cursor: pointer;
}

.mix-card-image .play-icon::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 4px;
}

.mix-card:hover .play-icon {
  background: var(--neon-cyan);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.6);
  transform: scale(1.1);
}

.mix-card-body {
  padding: 1.5rem;
}

.mix-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.mix-card-body .mix-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.mix-card-body .mix-meta span {
  margin-right: 1rem;
}

/* ============================================
   EVENTS
   ============================================ */
.event-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: rgba(30, 21, 51, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all var(--transition-medium);
}

.event-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 4px 30px rgba(139, 92, 246, 0.1);
}

.event-date-box {
  min-width: 70px;
  text-align: center;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  padding: 0.75rem;
  flex-shrink: 0;
}

.event-date-box .month {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon-cyan);
}

.event-date-box .day {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin: 0.25rem 0;
}

.event-date-box .year {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

.event-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.event-info .event-venue {
  color: var(--neon-cyan);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.event-info .event-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.event-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  font-weight: 600;
}

.event-status.upcoming {
  background: rgba(6, 182, 212, 0.15);
  color: var(--neon-cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.event-status.past {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.event-status.soldout {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width: 480px) {
  .event-card {
    flex-direction: column;
    align-items: stretch;
  }
  .event-date-box {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--dark-purple), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.08);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text h2 span {
  color: var(--neon-purple);
  text-shadow: var(--text-glow-purple);
}

.about-text p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 8px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--neon-cyan);
  text-shadow: var(--text-glow-cyan);
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.25rem;
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.equipment-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(30, 21, 51, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 6px;
  transition: all var(--transition-medium);
}

.equipment-item:hover {
  border-color: rgba(6, 182, 212, 0.3);
}

.equipment-icon {
  width: 40px;
  height: 40px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.equipment-item h4 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.equipment-item p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   MIXES PAGE
   ============================================ */
.mixes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.mix-item {
  background: rgba(30, 21, 51, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.mix-item:hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 8px 40px rgba(6, 182, 212, 0.08);
  transform: translateY(-4px);
}

.mix-cover {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--dark-purple), rgba(6, 182, 212, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mix-cover .play-btn-large {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
  transition: all var(--transition-medium);
}

.mix-cover .play-btn-large::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 22px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 5px;
}

.mix-item:hover .play-btn-large {
  background: var(--neon-cyan);
  box-shadow: 0 0 50px rgba(6, 182, 212, 0.5);
  transform: scale(1.1);
}

.mix-details {
  padding: 1.25rem;
}

.mix-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.mix-details .meta-row {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.75rem;
}

.mix-details .genre-tags {
  justify-content: flex-start;
  margin-top: 0.75rem;
}

.embed-placeholder {
  background: rgba(13, 13, 13, 0.5);
  border: 1px dashed rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  margin-top: 1.5rem;
}

@media (max-width: 640px) {
  .mixes-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.booking-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--neon-purple);
  text-shadow: var(--text-glow-purple);
}

.booking-info p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.rates-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(30, 21, 51, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 6px;
}

.rate-item .rate-type {
  font-weight: 600;
  font-size: 0.9rem;
}

.rate-item .rate-price {
  color: var(--neon-cyan);
  font-weight: 700;
  text-shadow: var(--text-glow-cyan);
}

.rider-list {
  margin: 1rem 0;
}

.rider-list li {
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.rider-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--neon-cyan);
}

@media (max-width: 768px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-body);
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 6px;
  color: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--neon-purple);
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

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

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%238B5CF6' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.form-group select option {
  background: var(--dark-purple);
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-submit {
  margin-top: 1rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--neon-purple);
}

.contact-info p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.contact-details-list {
  margin-bottom: 2rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-detail-item .icon-box {
  width: 40px;
  height: 40px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-detail-item .detail-text .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
}

.contact-detail-item .detail-text .value {
  color: var(--white);
  font-size: 0.95rem;
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(30, 21, 51, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition-medium);
}

.social-link:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .social-links-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Staggered children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   NEON GLOW UTILITY CLASSES
   ============================================ */
.neon-border {
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: var(--glow-purple);
}

.neon-border-cyan {
  border: 1px solid rgba(6, 182, 212, 0.3);
  box-shadow: var(--glow-cyan);
}

.neon-text {
  color: var(--neon-purple);
  text-shadow: var(--text-glow-purple);
}

.neon-text-cyan {
  color: var(--neon-cyan);
  text-shadow: var(--text-glow-cyan);
}

.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
  margin: 2rem 0;
}

/* ============================================
   ACHIEVEMENTS
   ============================================ */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.achievement-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(30, 21, 51, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 8px;
  transition: all var(--transition-medium);
}

.achievement-card:hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.08);
}

.achievement-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.achievement-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.achievement-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ============================================
   BACKGROUND DECORATIONS
   ============================================ */
.bg-grid-pattern {
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
}

.bg-gradient-section {
  background: linear-gradient(180deg, var(--black) 0%, var(--dark-purple) 50%, var(--black) 100%);
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

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

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(139, 92, 246, 0.3); }
  50% { box-shadow: 0 0 25px rgba(139, 92, 246, 0.6), 0 0 50px rgba(139, 92, 246, 0.2); }
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(139, 92, 246, 0.2); }
  50% { border-color: rgba(6, 182, 212, 0.4); }
}

.animate-float { animation: float 3s ease-in-out infinite; }
.animate-glow { animation: glowPulse 2s ease-in-out infinite; }
.animate-border { animation: borderGlow 3s ease-in-out infinite; }

/* ============================================
   PRINT
   ============================================ */
@media print {
  .navbar, .hamburger, .nav-overlay, .footer { display: none; }
  body { background: white; color: black; }
  .hero { min-height: auto; padding: 2rem 0; }
}
