/* =============================================================
   ESILE — Portfolio Site Stylesheet
   Mobile-first. Custom properties → Reset → Layout → Sections.
   ============================================================= */

/* ─────────────────────────────────────────────────────────────
   CUSTOM PROPERTIES
───────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --c-bg:           #080808;
  --c-surface:      #111111;
  --c-surface-2:    #1c1c1c;
  --c-border:       rgba(255, 255, 255, 0.08);
  --c-text:         #f0ede8;
  --c-text-muted:   #7a7a7a;
  --c-accent:       #b8952a;
  --c-accent-light: #d4aa3a;
  --c-white:        #ffffff;

  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', serif;
  --font-body:    'Montserrat', system-ui, -apple-system, sans-serif;

  /* Fluid type scale */
  --text-xs:   clamp(0.7rem,  1.5vw, 0.8rem);
  --text-sm:   clamp(0.8rem,  2vw,   0.9rem);
  --text-base: clamp(0.9rem,  2vw,   1rem);
  --text-md:   clamp(1rem,    2.5vw, 1.125rem);
  --text-lg:   clamp(1.1rem,  3vw,   1.5rem);
  --text-xl:   clamp(1.5rem,  4vw,   2.5rem);
  --text-2xl:  clamp(2rem,    6vw,   4rem);
  --text-hero: clamp(4.5rem,  15vw,  11rem);

  /* Spacing */
  --space-xs:      0.5rem;
  --space-sm:      1rem;
  --space-md:      2rem;
  --space-lg:      4rem;
  --space-xl:      6rem;
  --space-section: clamp(5rem, 10vw, 9rem);

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 5vw, 4rem);
  --nav-height:    70px;

  /* Transitions */
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.0, 0.0, 0.2, 1);
  --t-fast:    0.15s;
  --t-base:    0.3s;
  --t-slow:    0.6s;
}

/* ─────────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--c-bg); /* dark fallback behind everything */
}

body {
  background: transparent; /* .site-bg provides the visual base */
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  /* Reserve space for scrollbar to prevent layout shift */
  scrollbar-gutter: stable;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* Accessible focus styles */
:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Respect user motion preference — disable all GSAP-driven animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto !important; }
}

/* ─────────────────────────────────────────────────────────────
   TYPOGRAPHY HELPERS
───────────────────────────────────────────────────────────── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: var(--space-lg);
}

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

.section-header--center {
  text-align: center;
}

/* ─────────────────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--space-section);
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85em 2em;
  background: var(--c-accent);
  color: var(--c-bg);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--c-accent);
  transition: background var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease);
  min-height: 48px; /* accessible tap target */
}

.btn:hover,
.btn:focus-visible {
  background: transparent;
  color: var(--c-accent);
  transform: translateY(-2px);
}

.btn--large {
  font-size: var(--text-base);
  padding: 1em 2.5em;
}

.btn--outline {
  background: transparent;
  color: var(--c-accent);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--c-accent);
  color: var(--c-bg);
}

/* ─────────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  /* Transitions from transparent to solid */
  background: transparent;
  transition: background var(--t-slow) var(--ease),
              backdrop-filter var(--t-slow) var(--ease),
              box-shadow var(--t-slow) var(--ease);
}

#site-header.nav-scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  letter-spacing: 0.1em;
  color: var(--c-white);
  transition: color var(--t-base) var(--ease);
  z-index: 110;
}

.nav-logo:hover { color: var(--c-accent); }

/* Hamburger button */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  z-index: 110;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-text);
  transition: transform var(--t-base) var(--ease),
              opacity var(--t-base) var(--ease);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

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

/* Hamburger → X animation */
.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile nav menu (drawer) */
.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  padding-top: calc(var(--nav-height) + 2rem);
  padding-inline: var(--container-pad);
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease-out);
  overflow-y: auto;
  z-index: 105;
}

.nav-menu.is-open {
  transform: translateX(0);
}

.nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-block: 0.35em;
  border-bottom: 1px solid var(--c-border);
  color: var(--c-text);
  transition: color var(--t-base) var(--ease),
              padding-left var(--t-base) var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--c-accent);
  padding-left: 0.5em;
}

/* Desktop nav */
@media (min-width: 1024px) {
  .nav-toggle { display: none; }

  .nav {
    max-width: none;
    padding-inline: clamp(1.5rem, 4vw, 5rem);
  }

  .nav-menu {
    position: static;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(0.5rem, 1.4vw, 1.4rem);
    background: transparent;
    padding: 0;
    transform: none;
    overflow: visible;
    z-index: auto;
    margin-left: auto;
  }

  .nav-link {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.08em;
    padding-block: 0;
    border-bottom: none;
    color: var(--c-text);
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--c-accent);
    transition: width var(--t-base) var(--ease);
  }

  .nav-link:hover,
  .nav-link:focus-visible {
    color: var(--c-accent);
    padding-left: 0;
  }

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

/* ─────────────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  /* svh avoids mobile browser-bar jump. Falls back to 100vh. */
  min-height: 100svh;
  min-height: 100vh; /* fallback */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--c-bg);
}

/* Video — all screen sizes */
.hero-video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.35) 0%,
    rgba(8, 8, 8, 0.15) 40%,
    rgba(8, 8, 8, 0.6)  100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: var(--container-pad);
}

.hero-eyebrow {
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
  /* Start hidden for GSAP animation */
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--c-white);
  margin-bottom: 2.5rem;
  /* Start hidden for GSAP animation */
  opacity: 0;
  transform: translateY(30px);
}

.hero-cta {
  opacity: 0;
  transform: translateY(20px);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

.scroll-cue-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
  50%       { opacity: 0.9; transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue-line { animation: none; opacity: 0.5; }
}

/* ─────────────────────────────────────────────────────────────
   MUSIC SECTION
───────────────────────────────────────────────────────────── */
.music-section {
  position: relative;
  overflow: hidden;
  background: #050507; /* very dark, slightly cool */
  isolation: isolate;
}

/* ── Blurred EP cover — ambient background ── */
.music-bg {
  position: absolute;
  inset: -25%;
  background: url('../data/thumbs/Photos%20EP%20-%20Iman%20Boutera/COVER%20EP%20(1).jpg') center / cover no-repeat;
  filter: blur(80px) saturate(1.6);
  opacity: 0.22;
  animation: music-bg-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes music-bg-drift {
  from { transform: scale(1)    translate(0,   0);   }
  to   { transform: scale(1.18) translate(3%, -4%);  }
}

/* Dark gradient vignette over the blurred bg */
.music-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, #050507 70%),
    linear-gradient(to bottom, rgba(5,5,7,0.4) 0%, rgba(5,5,7,0.7) 100%);
  z-index: 0;
  pointer-events: none;
}

/* ── Floating gold orbs ── */
.music-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.orb-1 {
  width: clamp(180px, 30vw, 500px);
  height: clamp(180px, 30vw, 500px);
  top: -8%;
  left: -8%;
  background: radial-gradient(circle, rgba(184,149,42,0.28) 0%, transparent 68%);
  animation: orb-a 14s ease-in-out infinite;
}

.orb-2 {
  width: clamp(120px, 22vw, 340px);
  height: clamp(120px, 22vw, 340px);
  bottom: 5%;
  right: 3%;
  background: radial-gradient(circle, rgba(184,149,42,0.18) 0%, transparent 68%);
  animation: orb-b 11s ease-in-out infinite;
}

.orb-3 {
  width: clamp(80px, 14vw, 200px);
  height: clamp(80px, 14vw, 200px);
  top: 40%;
  left: 55%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 68%);
  animation: orb-c 8s ease-in-out infinite;
}

@keyframes orb-a {
  0%, 100% { transform: translate(0,    0)    scale(1);    opacity: 0.8; }
  40%       { transform: translate(40px, -50px) scale(1.12); opacity: 1;   }
  70%       { transform: translate(-20px, 20px) scale(0.94); opacity: 0.7; }
}
@keyframes orb-b {
  0%, 100% { transform: translate(0,    0)    scale(1);    }
  50%       { transform: translate(-45px, -35px) scale(1.1);  }
}
@keyframes orb-c {
  0%, 100% { transform: translate(0, 0)    scale(1);    opacity: 0.6; }
  50%       { transform: translate(15px, -25px) scale(1.2); opacity: 1;   }
}

/* Content sits above all background layers */
.music-section > .container {
  position: relative;
  z-index: 1;
}

/* ── Layout ── */
.music-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* ── Cover — floating + glow ── */
.music-cover {
  flex-shrink: 0;
  max-width: 380px;
  margin-inline: auto;
  animation: cover-float 6s ease-in-out infinite;
}

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

.music-cover img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  animation: cover-glow 4s ease-in-out infinite;
}

@keyframes cover-glow {
  0%, 100% {
    box-shadow:
      0 0  30px rgba(184,149,42,0.08),
      0 25px 70px rgba(0,0,0,0.7);
  }
  50% {
    box-shadow:
      0 0  80px rgba(184,149,42,0.40),
      0 0 140px rgba(184,149,42,0.12),
      0 25px 70px rgba(0,0,0,0.7);
  }
}

/* ── Info block ── */
.music-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.spotify-wrap {
  border-radius: 12px;
  overflow: hidden;
}

.music-intro {
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240,237,232,0.85);
}

/* ── Streaming links ── */
.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.streaming-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6em 1.25em;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
  transition: border-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              background var(--t-base) var(--ease);
  min-height: 44px;
}

.streaming-link i { font-size: 1.1em; }

.streaming-link:hover,
.streaming-link:focus-visible {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: rgba(184,149,42,0.06);
}

@media (min-width: 900px) {
  .music-layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .music-cover {
    width: 340px;
    margin: 0;
    position: sticky;
    top: calc(var(--nav-height) + 2rem);
  }
  .music-info { flex: 1; }
}

/* ── Disable heavy blur animations on mobile — too GPU-expensive ── */
@media (max-width: 767px) {
  .music-bg { animation: none !important; }
  .orb      { animation: none !important; }
}

/* ── Respect prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  .music-bg,
  .orb,
  .music-cover,
  .music-cover img {
    animation: none !important;
  }
}


/* ─────────────────────────────────────────────────────────────
   BIO SECTION — full-bleed split layout
───────────────────────────────────────────────────────────── */
.bio-section {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  min-height: 100vh;
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
}

/* ── Left panel: diagonal split photos ── */
.bio-visual {
  --g: 6px; /* gap width between the two triangles */
  flex: 0 0 50%;
  display: grid;
  clip-path: inset(1px); /* hides sub-pixel seam */
  min-height: 55vw;
}

.bio-visual > img {
  --_p: calc(-1 * var(--g));
  grid-area: 1 / 1; /* both images stack in the same cell */
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  cursor: pointer;
  transition: clip-path 0.45s 0.08s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: clip-path;
}

/* Top-left triangle */
.bio-visual > img:first-child {
  clip-path: polygon(0 0, calc(100% + var(--_p)) 0, 0 calc(100% + var(--_p)));
}

/* Bottom-right triangle */
.bio-visual > img:last-child {
  clip-path: polygon(100% 100%, 100% calc(0% - var(--_p)), calc(0% - var(--_p)) 100%);
}

/* Hover: hovered image expands, other shrinks */
.bio-visual:hover > img:last-child,
.bio-visual:hover > img:first-child:hover {
  --_p: calc(50% - var(--g));
}

.bio-visual:hover > img:first-child,
.bio-visual:hover > img:first-child:hover + img {
  --_p: calc(-50% - var(--g));
}

/* ── Right panel: floating card ── */
.bio-panel {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--c-bg);
}

.bio-card {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: rgba(17, 17, 20, 0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 2px solid var(--c-accent);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0  4px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.04);
  animation: card-float 8s ease-in-out infinite;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  40%       { transform: translateY(-9px) rotate(0.25deg); }
  70%       { transform: translateY(-4px) rotate(-0.15deg); }
}

/* Subtle gold corner accent */
.bio-card::before {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--c-accent);
  border-right: 2px solid var(--c-accent);
  opacity: 0.5;
}

.bio-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.bio-card p {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(240, 237, 232, 0.8);
  margin-bottom: 1rem;
}
.bio-card p:last-child { margin-bottom: 0; }

/* ── Mobile: stack vertically ── */
@media (max-width: 899px) {
  .bio-section { flex-direction: column; }
  .bio-visual  { min-height: 70vw; flex: none; width: 100%; }
  .bio-panel   { flex: none; width: 100%; }
}

/* ── Desktop: side by side ── */
@media (min-width: 900px) {
  .bio-section { flex-direction: row; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .bio-card { animation: none !important; }
}

/* ─────────────────────────────────────────────────────────────
   BOOKING SECTION
───────────────────────────────────────────────────────────── */
.booking-section {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.booking-container {
  text-align: center;
  max-width: 700px;
}

.booking-sub {
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--c-text-muted);
  margin-top: -2rem;
  margin-bottom: var(--space-md);
}

/* ─────────────────────────────────────────────────────────────
   GALLERY SECTION
───────────────────────────────────────────────────────────── */
.gallery-section {
  background: var(--c-surface);
  content-visibility: auto;
  contain-intrinsic-size: 0 2400px;
}

/* ── Filter tabs ── */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.45em 1.2em;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  background: transparent;
  cursor: pointer;
  transition: color var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              background var(--t-base) var(--ease);
  min-height: 40px;
}

.filter-btn:hover {
  color: var(--c-text);
  border-color: rgba(255,255,255,0.25);
}

.filter-btn.active {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-bg);
}

/* ── Masonry grid (CSS columns — natural image proportions) ── */
.gallery-grid {
  columns: 2;
  column-gap: 6px;
}

@media (min-width: 640px) {
  .gallery-grid { columns: 3; }
}

@media (min-width: 1024px) {
  .gallery-grid { columns: 4; column-gap: 8px; }
}

/* ── Gallery items ── */
.gallery-item {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--c-surface-2);
  isolation: isolate;
  /* Masonry: prevent image from being split across columns */
  break-inside: avoid;
  margin-bottom: 6px;
  /* Filtered-out state */
  transition: opacity 0.25s var(--ease);
}

.gallery-item.is-hidden {
  display: none;
}

@media (min-width: 1024px) {
  .gallery-item { margin-bottom: 8px; }
}

.gallery-item img {
  width: 100%;
  height: auto;       /* natural aspect ratio — no square crop */
  display: block;
  transform: translateZ(0);
  transition: transform var(--t-slow) var(--ease);
  will-change: transform;
}

/* Gold tint overlay */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(184, 149, 42, 0);
  transition: background var(--t-base) var(--ease);
  pointer-events: none;
  z-index: 1;
}

/* Photographer credit — slides up from bottom on hover */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 0.8rem 0.65rem;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateY(101%);
  transition: transform 0.35s var(--ease);
  pointer-events: none;
  z-index: 2;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05) translateZ(0);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  background: rgba(184, 149, 42, 0.12);
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption {
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   SOCIAL SECTION
───────────────────────────────────────────────────────────── */
.social-section {
  background: var(--c-bg);
}

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

.social-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--c-border);
  min-width: 90px;
  min-height: 90px;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  transition: border-color var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease);
}

.social-link i {
  font-size: 1.75rem;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-3px);
}

/* ─────────────────────────────────────────────────────────────
   MEDIA SECTION
───────────────────────────────────────────────────────────── */
.media-section {
  position: relative;
  overflow: hidden;
  background: #07070a;
  border-top: 1px solid var(--c-border);
  isolation: isolate;
}

/* Ambient background: orbs + dot grid + side accents */
.media-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Dot grid */
  background-image:
    radial-gradient(circle, rgba(184,149,42,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  /* Fade dot grid at edges */
  -webkit-mask-image:
    radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
  mask-image:
    radial-gradient(ellipse 85% 85% at 50% 50%, black 40%, transparent 100%);
  opacity: 0.35;
  animation: media-bg-drift 20s ease-in-out infinite alternate;
}

/* Glowing orbs on top of dot grid */
.media-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 8%  65%, rgba(184,149,42,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 92% 25%, rgba(184,149,42,0.08) 0%, transparent 65%);
  animation: media-bg-drift 16s ease-in-out infinite alternate;
}

/* Decorative vertical accent lines on left & right */
.media-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      transparent 5%,
      rgba(184,149,42,0.18) 30%,
      rgba(184,149,42,0.28) 50%,
      rgba(184,149,42,0.18) 70%,
      transparent 95%
    );
  width: 1px;
  left: clamp(20px, 4vw, 60px);
  right: auto;
  box-shadow: calc(clamp(20px, 4vw, 60px) * -1 + 100vw - clamp(20px, 4vw, 60px)) 0 0 rgba(184,149,42,0.18);
}

@keyframes media-bg-drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(1%, 2%); }
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin-inline: auto;
}

/* ── Card ── */
.media-card {
  display: block;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--t-base) var(--ease),
              transform var(--t-slow) var(--ease),
              box-shadow var(--t-slow) var(--ease);
}

.media-card:hover,
.media-card:focus-visible {
  border-color: rgba(184,149,42,0.5);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(184,149,42,0.15);
}

/* ── 16:9 cinematic frame ── */
.media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0a0a0d center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-size var(--t-slow) var(--ease);
}

.media-card:hover .media-frame {
  background-size: 108%;
}

/* Noise/grain texture */
.media-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

/* Vignette */
.media-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, transparent 40%, rgba(0,0,0,0.65) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Gold corner lines */
.media-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184,149,42,0.12);
  z-index: 2;
  pointer-events: none;
  transition: border-color var(--t-base) var(--ease);
}

.media-card:hover .media-frame::after {
  border-color: rgba(184,149,42,0.3);
}

/* Play button */
.media-play-btn {
  position: relative;
  z-index: 3;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 2px solid rgba(184,149,42,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 1.3rem;
  padding-left: 5px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease);
}

.media-card:hover .media-play-btn {
  background: rgba(184,149,42,0.2);
  border-color: var(--c-accent);
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(184,149,42,0.3);
}

/* Slide-up info overlay */
.media-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 2rem 1.25rem 1.1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transform: translateY(30%);
  transition: transform var(--t-slow) var(--ease);
}

.media-card:hover .media-overlay-info {
  transform: translateY(0);
}

.media-platform {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.media-show {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--c-white);
  line-height: 1.1;
}

.media-watch {
  margin-top: 0.4rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}

.media-card:hover .media-watch {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .media-bg { animation: none; }
}

/* ── Radio section ── */
.radio-block {
  margin-top: var(--space-xl);
  text-align: center;
}

/* Decorative divider */
.radio-divider {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: var(--space-md);
}

.radio-divider::before,
.radio-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,149,42,0.3), transparent);
}

.radio-divider-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio-divider-label i {
  color: var(--c-accent);
  font-size: 0.9em;
}

.radio-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
}

.radio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  min-width: 148px;
  flex: 1;
  max-width: 190px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base) var(--ease),
              background var(--t-base) var(--ease),
              transform var(--t-fast) var(--ease),
              box-shadow var(--t-base) var(--ease);
}

/* Animated ripple on hover (radio wave) */
.radio-card::before {
  content: '';
  position: absolute;
  width: 120%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(184,149,42,0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease);
  opacity: 0;
}

.radio-card:hover::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.radio-card:hover {
  border-color: rgba(184,149,42,0.35);
  background: rgba(184,149,42,0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

/* On-air dot */
.radio-card::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
  opacity: 0;
  transition: opacity var(--t-base) var(--ease);
  box-shadow: 0 0 6px var(--c-accent);
}

.radio-card:hover::after {
  opacity: 1;
  animation: radio-blink 1.2s ease-in-out infinite;
}

@keyframes radio-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.radio-card img {
  height: 42px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity var(--t-base) var(--ease),
              transform var(--t-base) var(--ease);
  position: relative;
  z-index: 1;
}

.radio-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.radio-card span {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  text-align: center;
  transition: color var(--t-base) var(--ease);
  position: relative;
  z-index: 1;
}

.radio-card:hover span {
  color: var(--c-accent);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
.footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding-block: var(--space-lg);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--c-text);
  transition: color var(--t-base) var(--ease);
}

.footer-logo:hover { color: var(--c-accent); }

.footer-copy,
.footer-credit {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
}

.footer-credit a {
  color: var(--c-accent);
  transition: opacity var(--t-base);
}

.footer-credit a:hover { opacity: 0.7; }

/* ─────────────────────────────────────────────────────────────
   LIGHTBOX — full-screen carousel
───────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: #000;
  opacity: 0; /* GSAP animates this in */
}

.lightbox[hidden] { display: none; }
.lightbox.is-open { display: flex; }

/* ── Top bar ── */
.lb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.lb-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.lb-close:hover { color: #fff; background: rgba(255,255,255,0.1); }

.lb-counter {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.35);
}

/* ── Image stage ── */
.lb-stage {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  min-height: 0; /* important: lets flex children shrink */
}

.lb-stage.is-dragging { cursor: grabbing; }

/* Three images side by side — only middle is visible */
.lb-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.lb-img {
  flex-shrink: 0;
  width: 100vw;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem 6vw;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* ── Click zones (left 30% / right 30% of stage) ── */
.lb-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  z-index: 3;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.lb-zone--l { left: 0;  padding-left: 1.5rem;  justify-content: flex-start; }
.lb-zone--r { right: 0; padding-right: 1.5rem; justify-content: flex-end; }

.lb-zone-icon {
  font-size: 3rem;
  font-weight: 100;
  color: rgba(255, 255, 255, 0);
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
}

.lb-zone--l:hover .lb-zone-icon {
  color: rgba(255, 255, 255, 0.55);
  transform: translateX(-4px);
}
.lb-zone--r:hover .lb-zone-icon {
  color: rgba(255, 255, 255, 0.55);
  transform: translateX(4px);
}

/* ── Thumbnail filmstrip ── */
.lb-strip-wrap {
  flex-shrink: 0;
  height: 76px;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lb-strip {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  height: 100%;
  width: 100%;
}
.lb-strip::-webkit-scrollbar { display: none; }

.lb-thumb {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  object-fit: cover;
  opacity: 0.3;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, outline-color 0.2s;
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.lb-thumb:hover  { opacity: 0.65; }
.lb-thumb.active {
  opacity: 1;
  transform: scale(1.1);
  outline-color: var(--c-accent);
}

/* ─────────────────────────────────────────────────────────────
   GSAP ANIMATION INITIAL STATES
   Elements start invisible; JS animates them in when scrolled.
   Reduced-motion override: skip immediately to visible.
───────────────────────────────────────────────────────────── */
[data-gsap] {
  opacity: 0;
  transform: translateY(30px);
}

/* Gallery items start invisible for their fade-in */
.gallery-item {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  [data-gsap],
  .gallery-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   FIXED SITE BACKGROUND
   One artist photo fixed to the viewport. Sections that were
   solid black become semi-transparent so this peeks through
   as you scroll — the image never moves, the content slides over it.
───────────────────────────────────────────────────────────── */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    url('../data/Photos%20EP%20-%20Iman%20Boutera/esile1.png')
    center / cover no-repeat;
  filter: brightness(0.22) saturate(0.75);
}

/* All page content sits in this wrapper above the fixed background */
.page-wrap {
  position: relative;
  z-index: 1;
}

/* Sections that open up to the background */
.booking-section { background: rgba(5, 5, 7, 0.68) !important; }
.social-section  { background: rgba(5, 5, 7, 0.68) !important; }
.footer          { background: rgba(5, 5, 7, 0.80) !important; }
.bio-panel       { background: rgba(5, 5, 7, 0.45) !important; }

/* Sections with their own rich backgrounds stay fully opaque */
/* .hero-section, .music-section, .gallery-section — unchanged   */

/* ─────────────────────────────────────────────────────────────
   UTILITY: no-overflow guard
───────────────────────────────────────────────────────────── */
body { overflow-x: clip; }

/* ─────────────────────────────────────────────────────────────
   LIVE VIDEOS CAROUSEL
───────────────────────────────────────────────────────────── */
.lives-section {
  position: relative;
  padding: 100px 0 130px;
  background: rgba(5, 5, 7, 0.68);
  overflow: hidden;
}

/* Atmospheric background: bottom stage glow + side accent clouds */
.lives-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 45% at 50% 115%, rgba(139, 92, 246, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 35% 50% at 10% 70%,  rgba(100, 60, 220, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 90% 70%,  rgba(100, 60, 220, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle vertical grid lines — concert stage grid feel */
.lives-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 79px,
    rgba(255, 255, 255, 0.018) 79px,
    rgba(255, 255, 255, 0.018) 80px
  );
  pointer-events: none;
}

.lives-stage {
  position: relative;
  margin-top: 52px;
}

/* Fade-out edges so side cards melt into darkness */
.lives-stage::before,
.lives-stage::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 12vw, 160px);
  z-index: 5;
  pointer-events: none;
}
.lives-stage::before {
  left: 0;
  background: linear-gradient(to right, rgba(5, 5, 7, 0.92) 0%, transparent 100%);
}
.lives-stage::after {
  right: 0;
  background: linear-gradient(to left,  rgba(5, 5, 7, 0.92) 0%, transparent 100%);
}

.lives-viewport {
  display: grid;
  grid-template-columns: 1fr;
  /* overflow: visible — the .lives-section already has overflow:hidden to clip edges */
  overflow: visible;
  /* ensure the viewport always has a proper height from the card's aspect ratio */
  min-height: calc(clamp(180px, 28vw, 280px) * 16 / 9);
  /* let JS handle horizontal swipes; browser keeps vertical page scroll */
  touch-action: pan-y;
}

.live-card {
  grid-area: 1 / 1;
  justify-self: start;
  align-self: start;
  width: clamp(180px, 28vw, 280px);
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transform-origin: center center;
  outline: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform   0.52s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity     0.52s ease,
    box-shadow  0.52s ease;
}

.live-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.live-card.is-active {
  outline-color: transparent;
  box-shadow:
    0 0 0 1px rgba(139, 92, 246, 0.45),
    0 8px 40px rgba(139, 92, 246, 0.25),
    0 24px 80px rgba(139, 92, 246, 0.15);
}

/* LIVE recording badge */
.live-card.is-active::before {
  content: '● LIVE';
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #fff;
  background: rgba(220, 38, 38, 0.88);
  padding: 4px 10px 3px;
  border-radius: 4px;
  text-transform: uppercase;
}

.live-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 52px 14px 14px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.live-card.is-active .live-info {
  opacity: 1;
}

.live-label {
  color: #d4c8ff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lives-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(8, 8, 12, 0.72);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: border-color 0.2s, background 0.2s, opacity 0.2s;
  backdrop-filter: blur(10px);
}

.lives-nav:hover:not(:disabled) {
  border-color: rgba(139, 92, 246, 0.5);
  background: rgba(139, 92, 246, 0.14);
}

.lives-nav:disabled {
  opacity: 0.22;
  cursor: default;
}

.lives-prev { left: 16px;  z-index: 10; }
.lives-next { right: 16px; z-index: 10; }

.lives-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.lives-dot {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.35s ease, width 0.35s ease;
}

.lives-dot.is-active {
  width: 36px;
  background: #8b5cf6;
}

@media (max-width: 600px) {
  .lives-nav { display: none; }
  .live-card  { width: clamp(150px, 52vw, 210px); }
}
