/* ============================================================
   DJ MAVFLO — AA-Level Premium Design System
   Color Palette: Ivory & Emerald with Nigerian Accents
   ============================================================ */

:root {
  /* Colors */
  --ivory: hsl(48, 40%, 96%);
  --ivory-dark: hsl(48, 30%, 92%);
  --emerald: hsl(152, 60%, 38%);
  --emerald-bright: hsl(152, 70%, 48%);
  --emerald-glow: hsla(152, 70%, 48%, 0.4);
  --emerald-subtle: hsla(152, 60%, 38%, 0.1);
  --forest: hsl(160, 80%, 8%);
  --forest-light: hsl(160, 40%, 15%);
  --sage: hsl(120, 10%, 55%);
  --sage-light: hsl(120, 15%, 90%);
  --saffron: hsl(45, 90%, 55%);
  --white: #ffffff;
  --black: #050505;
  --glass-white: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-white-strong: rgba(255, 255, 255, 0.12);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Layout */
  --max-width: 1400px;
  --section-pad: clamp(6rem, 12vh, 12rem);
  --gutter: clamp(1.5rem, 4vw, 4rem);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.3s var(--ease-smooth);
  --t-smooth: 0.8s var(--ease-out-expo);
}

/* ============ RESET ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--emerald) var(--forest);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--forest);
}

::-webkit-scrollbar-thumb {
  background: var(--emerald);
  border-radius: 3px;
}

body {
  background-color: var(--ivory);
  color: var(--forest);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--t-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-padding {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: var(--forest);
  color: var(--ivory);
}

/* ============ PARTICLES CANVAS ============ */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

/* ============ CUSTOM CURSOR ============ */
@media (pointer: fine) {
  .cursor {
    width: 24px;
    height: 24px;
    border: 1.5px solid var(--emerald);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease-out, background 0.3s ease, border-color 0.3s ease;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
  }

  .cursor-follower {
    width: 6px;
    height: 6px;
    background: var(--emerald-bright);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.25s ease-out, opacity 0.3s ease;
    transform: translate(-50%, -50%);
  }
}

@media (pointer: coarse) {

  .cursor,
  .cursor-follower {
    display: none !important;
  }
}

/* ============ VIDEO INTRO ============ */
.video-intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--black);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.video-intro.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.intro-logo {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--ivory);
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  animation: intro-logo-in 1.5s 0.5s var(--ease-out-expo) forwards;
}

@keyframes intro-logo-in {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.intro-skip {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: var(--ivory);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  animation: intro-skip-in 0.5s 1.5s ease forwards;
}

@keyframes intro-skip-in {
  to {
    opacity: 1;
  }
}

.intro-skip:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.intro-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.intro-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-bright));
  transition: width 0.3s ease;
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all 0.4s var(--ease-smooth);
}

nav.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}

nav.scrolled .nav-links a,
nav.scrolled .btn-login {
  color: var(--ivory);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory) 25%, var(--emerald-bright) 50%, var(--saffron) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo span {
  /* Inherits gradient from parent */
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  position: relative;
  color: var(--forest);
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-bright));
  transition: width 0.4s var(--ease-out-expo);
  border-radius: 1px;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--emerald);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border: 1.5px solid var(--emerald);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--forest);
  transition: var(--t-fast);
  cursor: pointer;
}

.btn-login:hover {
  background: var(--emerald);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--emerald-glow);
}

.btn-login svg {
  width: 16px;
  height: 16px;
}

.user-profile {
  position: relative;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-bright));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--t-fast);
}

.user-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px var(--emerald-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  transition: var(--t-fast);
  border-radius: 1px;
}

nav.scrolled .hamburger span {
  background: var(--ivory);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-menu-content a {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: var(--ivory);
  font-weight: 700;
  transition: var(--t-fast);
  display: block;
}

.mobile-menu-content a:hover {
  color: var(--emerald-bright);
  transform: scale(1.05);
}

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.8rem;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-bright));
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--emerald-glow);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.8rem;
  border: 1.5px solid currentColor;
  color: inherit;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--t-fast);
}

.btn-outline:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--emerald-glow);
}

.btn-small {
  padding: 0.8rem 1.8rem;
  font-size: 0.7rem;
}

/* ============ SECTION HEADERS ============ */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: var(--emerald-bright);
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0.5rem 1.2rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--emerald);
  border-radius: 100px;
  opacity: 0.3;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-bright), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--sage);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.section-cta {
  text-align: center;
  margin-top: 4rem;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: var(--ivory);
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-smoke {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(1.2);
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, hsla(152, 60%, 30%, 0.3) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.6) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 600;
  color: var(--emerald-bright);
  border: 1px solid rgba(110, 200, 160, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero-title {
  margin-bottom: 2rem;
}

.title-line {
  display: block;
  font-size: clamp(5rem, 14vw, 12rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.title-accent {
  background: linear-gradient(135deg, var(--emerald-bright) 0%, var(--emerald-bright) 60%, var(--saffron) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.05em;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-ctas .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--ivory);
}

.hero-ctas .btn-outline:hover {
  border-color: var(--emerald);
}

/* Floating Social Bar */
.social-float {
  position: absolute;
  left: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.social-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--t-fast);
}

.social-float-icon svg {
  width: 18px;
  height: 18px;
}

.social-float-icon:hover {
  color: var(--emerald-bright);
  transform: scale(1.2);
}

.social-float-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--emerald-bright), transparent);
  margin-top: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: var(--emerald-bright);
  animation: scroll-bounce 2s infinite;
  transform-origin: top;
}

@keyframes scroll-bounce {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }
}

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--forest);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  color: var(--ivory);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--emerald-bright), var(--saffron));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--emerald-bright);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ============ MUSIC ============ */
.music-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.music-card {
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.music-card:hover {
  transform: translateY(-8px);
  border-color: var(--emerald);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--emerald-glow);
}

.music-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.music-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.music-card:hover .music-card-image img {
  transform: scale(1.1);
}

.music-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.music-card:hover .music-card-overlay {
  opacity: 1;
}

.play-btn {
  width: 64px;
  height: 64px;
  background: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transform: scale(0.8);
  transition: var(--t-fast);
  box-shadow: 0 8px 30px var(--emerald-glow);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}

.play-btn:hover {
  transform: scale(1);
  background: var(--emerald-bright);
}

.music-card-info {
  padding: 1.5rem;
}

.music-tag {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--emerald-bright);
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(110, 200, 160, 0.3);
  border-radius: 100px;
  margin-bottom: 0.8rem;
}

.music-tag.trending {
  color: var(--saffron);
  border-color: rgba(230, 190, 50, 0.3);
}

.music-card-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: var(--ivory);
}

.music-card-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s var(--ease-out-expo);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.about-image-accent {
  position: absolute;
  inset: 0;
  border: 2px solid var(--emerald);
  border-radius: 20px;
  transform: translate(12px, 12px);
  z-index: -1;
  opacity: 0.3;
}

.about-floating-text {
  position: absolute;
  bottom: -1rem;
  right: -2rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--emerald);
  opacity: 0.7;
  max-width: 250px;
  text-align: right;
  line-height: 1.4;
}

.about-content .section-tag {
  padding-left: 0;
}

.about-content .section-tag::before {
  display: none;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--sage);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.signature-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-bright));
}

.about-signature span {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--emerald);
}

/* ============ VIDEO ============ */
.video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.video-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-white);
  padding: 8px;
}

.video-frame video {
  display: block;
  border-radius: 10px;
  width: 100%;
}

.video-glow {
  position: absolute;
  inset: -20px;
  border-radius: 24px;
  background: radial-gradient(ellipse at center, var(--emerald-glow), transparent 70%);
  z-index: -1;
  opacity: 0.4;
  filter: blur(40px);
}

/* ============ EVENTS ============ */
.events-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  border: 1px solid var(--sage-light);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.4s var(--ease-out-expo);
  background: var(--white);
}

.event-item:hover {
  transform: translateX(8px);
  border-color: var(--emerald);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), -4px 0 0 var(--emerald);
}

.event-date {
  text-align: center;
  min-width: 70px;
  padding: 1rem;
  background: var(--emerald-subtle);
  border-radius: 10px;
}

.event-day {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--emerald);
}

.event-month {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--sage);
  margin-top: 0.3rem;
}

.event-info {
  flex: 1;
}

.event-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.event-info p {
  font-size: 0.9rem;
  color: var(--sage);
}

/* ============ CONTACT ============ */
.contact-container {
  text-align: center;
}

.contact-email {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 4rem;
  position: relative;
  transition: var(--t-fast);
}

.contact-email:hover {
  color: var(--emerald-bright);
}

.contact-email::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--emerald-bright));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out-expo);
}

.contact-email:hover::after {
  transform: scaleX(1);
}

.contact-socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background: var(--glass-white);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.4s var(--ease-out-expo);
}

.contact-social-link svg {
  width: 18px;
  height: 18px;
}

.contact-social-link:hover {
  background: var(--glass-white-strong);
  color: var(--emerald-bright);
  border-color: var(--emerald);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============ FOOTER ============ */
footer {
  background: var(--black);
  color: var(--ivory);
  padding: 6rem 0 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory) 25%, var(--emerald-bright) 50%, var(--saffron) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo span {
  /* Inherits gradient from parent */
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  max-width: 350px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--t-fast);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
}

.footer-socials a:hover {
  color: var(--emerald-bright);
  border-color: var(--emerald);
  transform: translateY(-3px);
}

.footer-nav-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--emerald-bright);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav-col a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--t-fast);
}

.footer-nav-col a:hover {
  color: var(--ivory);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

/* ============ AUTH MODAL ============ */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.auth-overlay.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  width: 100%;
  max-width: 440px;
  background: rgba(20, 30, 25, 0.9);
  backdrop-filter: blur(40px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.5s var(--ease-out-expo);
  margin: 1rem;
}

.auth-overlay.active .auth-modal {
  transform: translateY(0) scale(1);
}

.auth-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--t-fast);
  line-height: 1;
  background: none;
  border: none;
}

.auth-close:hover {
  color: var(--ivory);
  transform: rotate(90deg);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--emerald-bright);
  margin-bottom: 1rem;
}

.auth-header h3 {
  font-size: 1.8rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.auth-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.auth-message {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.auth-message.error {
  background: rgba(220, 60, 60, 0.15);
  border: 1px solid rgba(220, 60, 60, 0.3);
  color: #ff6b6b;
}

.auth-message.success {
  background: rgba(110, 200, 160, 0.15);
  border: 1px solid rgba(110, 200, 160, 0.3);
  color: var(--emerald-bright);
}

.auth-field {
  margin-bottom: 1.2rem;
}

.auth-field label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.auth-field input {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--ivory);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--t-fast);
  outline: none;
}

.auth-field input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.auth-field input:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 20px var(--emerald-glow);
}

.auth-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 1.2rem;
}

.auth-toggle {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.auth-toggle button {
  color: var(--emerald-bright);
  font-weight: 600;
  margin-left: 0.3rem;
  cursor: pointer;
  transition: var(--t-fast);
  background: none;
  border: none;
  font-size: 0.85rem;
}

.auth-toggle button:hover {
  text-decoration: underline;
}

/* ============ VIDEO INTRO ============ */
.video-intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-intro.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-skip {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.intro-skip:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.intro-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10001;
}

.intro-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--emerald-bright), var(--saffron));
  transition: width 0.3s linear;
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner {
    padding-top: 140px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .social-float {
    display: none;
  }

  .music-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content .section-title {
    text-align: center;
  }

  .about-floating-text {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .music-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .event-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-socials {
    flex-direction: column;
    align-items: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .scroll-indicator {
    display: none;
  }

  .auth-modal {
    padding: 2rem;
  }

  .intro-skip {
    bottom: 24px;
    right: 24px;
    padding: 8px 18px;
    font-size: 0.78rem;
  }

  .intro-progress {
    height: 4px;
  }
}

@media (max-width: 480px) {
  .title-line {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .hero-badge {
    font-size: 0.6rem;
    padding: 0.4rem 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .intro-skip {
    bottom: 18px;
    right: 18px;
    padding: 7px 14px;
    font-size: 0.72rem;
  }
}