/**
 * ELNE REEL — Official Multidisciplinary Artist Hub
 * Master Design System & Motion Graphics Engine
 */

:root {
  /* Anthracite Gray Luxury (Fixed - No White Theme) */
  --bg-base: #1c2027;
  --bg-surface: #242934;
  --bg-surface-elevated: #2e3442;
  --bg-glass: rgba(36, 41, 52, 0.82);
  --bg-glass-active: rgba(46, 52, 66, 0.95);

  --border-subtle: rgba(255, 255, 255, 0.12);
  --border-focus: rgba(245, 158, 11, 0.65);
  --border-gold: rgba(245, 158, 11, 0.45);

  --text-primary: #FFFFFF;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;

  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-glow: rgba(245, 158, 11, 0.4);

  --cyan: #06b6d4;
  --cyan-glow: rgba(6, 182, 212, 0.35);
  --rose: #f43f5e;
  --purple: #a855f7;

  /* Typography */
  --font-main: 'Montserrat', sans-serif;
  --font-display: 'Syne', sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Header height */
  --header-height: 80px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s var(--ease-out);
}

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

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

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-main);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
}

/* Ambient Canvas */
#ambient-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* ============================================================ */
/* DYNAMIC MOTION GRAPHICS & ENTRANCE ANIMATIONS                */
/* ============================================================ */

/* Glide Up (Default Entrance) */
.glide-up {
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.glide-up.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Glide From Left */
.glide-left {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.glide-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Glide From Right */
.glide-right {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.glide-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }
.delay-5 { transition-delay: 0.58s; }
.delay-6 { transition-delay: 0.7s; }

/* Interactive Hover Lift & Glow on Cards */
.chapter-card,
.portal-box-card,
.book-card-item,
.release-card-item,
.social-card-item,
.track-card,
.track-card-preview {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.35s ease;
}

/* Shimmer Light Reflection on Hover */
.chapter-card::after,
.portal-box-card::after,
.book-card-item::after,
.release-card-item::after,
.social-card-item::after,
.track-card::after,
.track-card-preview::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.75s ease;
  pointer-events: none;
}

.chapter-card:hover::after,
.portal-box-card:hover::after,
.book-card-item:hover::after,
.release-card-item:hover::after,
.social-card-item:hover::after,
.track-card:hover::after,
.track-card-preview:hover::after {
  left: 200%;
}

.chapter-card:hover,
.portal-box-card:hover,
.book-card-item:hover,
.track-card:hover,
.track-card-preview:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px var(--gold-glow);
}

/* Container */
.site-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ============================================================ */
/* 1. TOP HEADER & NAVIGATION                                   */
/* ============================================================ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--bg-glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: background-color 0.4s, border-color 0.4s;
}

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

/* Brand Logo */
.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease-out);
}

.brand-link:hover {
  transform: translateY(-1px);
}

.brand-monogram {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
  color: #000000;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px var(--gold-glow);
  flex-shrink: 0;
}

.brand-meta {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: 1.5px;
  color: var(--text-primary);
  line-height: 1.2;
}

.brand-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

/* Nav Menu Links (Desktop) */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-item-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  transition: all 0.25s var(--ease-out);
}

.nav-item-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-item-link.active {
  color: var(--text-primary);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold);
}

.secret-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  display: inline-block;
}

/* Nav Action Buttons */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme Toggle Button */
.btn-theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.btn-theme-toggle:hover {
  border-color: var(--gold);
  transform: rotate(20deg) scale(1.08);
  box-shadow: 0 0 14px var(--gold-glow);
}

/* VIP Header Button */
.btn-vip-session {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.btn-vip-session:hover {
  background: var(--gold);
  color: #000000;
  box-shadow: 0 0 20px var(--gold-glow);
  transform: translateY(-1px);
}

.btn-vip-session.unlocked {
  background: rgba(6, 182, 212, 0.12);
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-vip-session.unlocked:hover {
  background: var(--cyan);
  color: #000000;
  box-shadow: 0 0 20px var(--cyan-glow);
}

/* Language Selector */
.lang-selector {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 3px 6px;
}

.lang-btn {
  background: none;
  border: none;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--text-primary);
  color: var(--bg-base);
}

/* Mobile Burger */
.btn-burger {
  display: none;
  background: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}

.burger-bar {
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  transition: all 0.3s var(--ease-out);
}

.btn-burger.open .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.btn-burger.open .burger-bar:nth-child(2) {
  opacity: 0;
}
.btn-burger.open .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  top: var(--header-height);
  background: var(--bg-base);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-link {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s;
}

.mobile-drawer-link:hover,
.mobile-drawer-link.active {
  color: var(--gold);
}

@media (max-width: 960px) {
  .nav-menu {
    display: none;
  }
  .btn-burger {
    display: flex;
  }
}

/* ============================================================ */
/* 2. GLOBAL COMPONENTS & BUTTONS                               */
/* ============================================================ */
main {
  padding-top: var(--header-height);
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.section-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-main-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-lead-text {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Buttons */
.btn-neon-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--gold) 0%, #d97706 100%);
  color: #000000;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 24px var(--gold-glow);
  transition: all 0.3s var(--ease-out);
}

.btn-neon-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px var(--gold-glow);
}

.btn-glass-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-glass-secondary:hover {
  border-color: var(--gold);
  background: var(--bg-surface-elevated);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================================ */
/* 3. HOME PAGE (INDEX.HTML) : STORYTELLING & MANIFESTO         */
/* ============================================================ */
.hero-story-section {
  padding: 100px 0 80px;
  text-align: center;
}

.story-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.story-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-giant-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #FFFFFF 30%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-punchline-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.hero-bio-glass-card {
  max-width: 900px;
  margin: 0 auto 48px;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: left;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.hero-bio-glass-card p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hero-bio-glass-card p:last-child {
  margin-bottom: 0;
}

.hero-bio-glass-card strong {
  color: var(--text-primary);
}

/* Key Stats Row */
.stats-badge-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 48px;
}

.stat-card-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.stat-card-pill:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.stat-num-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
  display: block;
}

.stat-desc-lbl {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-cta-button-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Storytelling Narrative Chapters */
.narrative-timeline-section {
  padding: 100px 0;
  position: relative;
}

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.chapter-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: all 0.35s var(--ease-out);
}

.chapter-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 20px var(--gold-glow);
}

.chapter-step-badge {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-block;
}

.chapter-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.chapter-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* 3 Interactive Portal Cards */
.portals-section {
  padding: 80px 0 120px;
}

.portals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.portal-box-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.portal-box-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 30px var(--gold-glow);
}

.portal-box-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--rose) 100%);
}

.portal-icon-hero {
  font-size: 38px;
  margin-bottom: 20px;
  display: inline-block;
}

.portal-badge-pill {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.portal-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.portal-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.portal-action-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
  transition: gap 0.2s;
}

.portal-box-card:hover .portal-action-cta {
  gap: 14px;
}

/* ============================================================ */
/* 4. MUSIQUE & CLIPS PAGE (MUSIQUE.HTML)                       */
/* ============================================================ */
.music-hero-section {
  padding: 80px 0 60px;
}

.video-cinema-box {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 32px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7), 0 0 35px var(--gold-glow);
  border: 1px solid var(--border-gold);
  background: #000000;
}

.yt-embed-iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.clip-narrative-bar {
  max-width: 1040px;
  margin: 0 auto 70px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.clip-narrative-text {
  flex: 1;
  min-width: 280px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* YouTube Music Hub Banner */
.yt-music-strip {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 50px;
  box-shadow: 0 15px 40px rgba(255, 0, 0, 0.15);
}

.yt-strip-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.yt-logo-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FF0000;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 24px rgba(255, 0, 0, 0.5);
  flex-shrink: 0;
}

.yt-strip-text h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 4px;
}

.yt-strip-text p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Singles Grid */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.release-card-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease-out);
}

.release-card-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 15px var(--gold-glow);
}

.release-card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.release-card-item:hover .release-card-icon {
  background: var(--gold);
  color: #000000;
}

.release-card-info {
  flex: 1;
  min-width: 0;
}

.release-tag-year {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.release-song-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.release-song-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* Streaming Platforms Grid (Rock-Solid Cards) */
.socials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.social-card-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s var(--ease-out);
}

.social-card-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--gold-glow);
}

.sc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  margin-right: 16px;
  flex-shrink: 0;
  color: var(--text-primary);
}

.sc-spotify .sc-icon-wrap { color: #1DB954; }
.sc-apple .sc-icon-wrap { color: #FA243C; }
.sc-youtube .sc-icon-wrap { color: #FF0000; }
.sc-instagram .sc-icon-wrap { color: #E1306C; }
.sc-tiktok .sc-icon-wrap { color: #00F2FE; }
.sc-facebook .sc-icon-wrap { color: #1877F2; }

.sc-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sc-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--text-primary);
}

.sc-handle {
  font-size: 12px;
  color: var(--text-muted);
}

.sc-action-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--gold);
  transition: all 0.25s;
}

.social-card-item:hover .sc-action-badge {
  background: var(--gold);
  color: #000000;
  border-color: var(--gold);
}

/* ============================================================ */
/* 5. LIVRES & AUTEURE (LIVRES.HTML)                            */
/* ============================================================ */
.books-hero-section {
  padding: 80px 0 60px;
}

.author-manifesto-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  margin-bottom: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.author-manifesto-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--rose) 100%);
}

.author-hero-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 800;
  line-height: 1.6;
  color: var(--gold);
  margin-bottom: 28px;
  font-style: italic;
}

.author-bio-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.author-bio-body p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.author-bio-body p:last-child {
  margin-bottom: 0;
}

/* Books 3D Tilt Cards */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.book-card-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.book-card-item:hover {
  transform: translateY(-6px);
  border-color: var(--cyan);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px var(--cyan-glow);
}

.book-tag-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  align-self: flex-start;
}

.book-title-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.book-subtitle {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.book-synopsis {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
  flex-grow: 1;
}

.btn-book-amazon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 153, 0, 0.15);
  border: 1px solid rgba(255, 153, 0, 0.4);
  color: #ff9900;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-book-amazon-link:hover {
  background: #ff9900;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}

.amazon-master-cta {
  text-align: center;
  padding: 30px 0 80px;
}

.btn-amazon-epic {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 42px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
  color: #000000;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(255, 153, 0, 0.4);
  transition: all 0.3s var(--ease-out);
}

.btn-amazon-epic:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 45px rgba(255, 153, 0, 0.55);
}

/* ============================================================ */
/* 6. PROJET SECRET & KARAOKÉ KTV (PROJET-SECRET.HTML)          */
/* ============================================================ */
.secret-page-section {
  padding: 80px 0 100px;
}

.countdown-monument-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 35px var(--gold-glow);
}

.countdown-grid-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 36px 0;
  flex-wrap: wrap;
}

.cd-time-card {
  background: var(--bg-base);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  min-width: 110px;
  text-align: center;
}

.cd-digit {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.cd-unit {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

.cd-sep {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
}

/* Locked Vault Card */
.vault-locked-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
}

.vault-lock-symbol {
  font-size: 48px;
  margin-bottom: 12px;
  display: inline-block;
  filter: drop-shadow(0 0 20px var(--gold));
}

.code-digit-input {
  width: 100%;
  max-width: 280px;
  margin: 20px auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--bg-base);
  border: 2px solid var(--border-subtle);
  color: var(--gold);
  outline: none;
  transition: all 0.25s;
}

.code-digit-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}

.code-digit-input.error-shake {
  animation: shakeError 0.4s ease;
  border-color: #ff3344;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.vault-error-msg {
  color: #ff3344;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  display: none;
}

/* Keypad Grid for Mobile */
.keypad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 280px;
  margin: 18px auto 0;
}

.key-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  padding: 14px 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s;
}

.key-btn:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--gold);
}

.key-btn:active {
  transform: scale(0.95);
}

/* VIP Unlocked Area */
.vip-unlocked-area {
  margin-top: 60px;
  animation: fadeIn 0.6s var(--ease-out);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.vip-banner-indicator {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid var(--cyan);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.btn-lock-session {
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid var(--rose);
  color: var(--rose);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-lock-session:hover {
  background: var(--rose);
  color: #000000;
}

/* Album Out of Frame Hero */
.album-reveal-layout {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

@media (max-width: 960px) {
  .album-reveal-layout {
    grid-template-columns: 1fr;
  }
}

.cover-card-3d {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 35px var(--gold-glow);
  border: 1px solid var(--border-gold);
}

.cover-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.track-card-preview {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s var(--ease-out);
}

.track-card-preview:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.track-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.track-num-badge {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 900;
  color: var(--gold);
}

.track-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.track-card-quote {
  font-size: 13px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 14px;
  padding-left: 10px;
  border-left: 2px solid var(--gold);
}

.track-card-exp {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* KTV Big Screen Karaoke Lounge */
.ktv-stage-container {
  background: radial-gradient(circle at 50% 40%, #151828 0%, #060709 100%);
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9), 0 0 50px var(--gold-glow);
}

.ktv-stage-container:fullscreen {
  border: none;
  border-radius: 0;
  padding: 60px 40px;
  width: 100vw;
  height: 100vh;
}

.ktv-visualizer-canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 180px;
  pointer-events: none;
  opacity: 0.45;
}

.ktv-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.ktv-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.ktv-center-lyrics-stage {
  text-align: center;
  padding: 60px 20px;
  position: relative;
  z-index: 2;
}

.ktv-line-past {
  font-size: clamp(16px, 2.5vw, 24px);
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: 20px;
  min-height: 36px;
}

.ktv-line-current {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ktv-words-holder {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.25;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}

.ktv-word {
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.15s var(--ease-out);
}

.ktv-word.active-word {
  color: var(--gold);
  text-shadow: 0 0 25px var(--gold-glow), 0 0 45px var(--gold);
  transform: scale(1.08);
}

.ktv-word.past-word {
  color: rgba(255, 255, 255, 0.85);
}

.ktv-line-preview {
  margin-top: 24px;
  font-size: clamp(15px, 2.2vw, 20px);
  color: var(--text-muted);
  min-height: 30px;
}

.ktv-bottom-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
}

.ktv-controls-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ktv-play-main {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: #000000;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 24px var(--gold-glow);
  transition: transform 0.2s;
}

.btn-ktv-play-main:hover {
  transform: scale(1.08);
}

.btn-ktv-skip {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-ktv-skip:hover {
  border-color: var(--gold);
}

.ktv-song-pills-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: 500px;
  padding: 4px 0;
}

.ktv-song-pill {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
}

.ktv-song-pill.active {
  background: var(--gold);
  color: #000000;
  border-color: var(--gold);
}

/* ============================================================ */
/* 7. FOOTER                                                    */
/* ============================================================ */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 40px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.footer-inner-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-nav-links a:hover {
  color: var(--gold);
}

.footer-copy-text {
  width: 100%;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* Toast Box */
.toast-box {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--gold-glow);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s var(--ease-out);
}

.toast-box.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================ */
/* 8. VIP MODAL (GLOBAL POPUP)                                  */
/* ============================================================ */
.vip-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.vip-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.vip-modal-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85), 0 0 45px var(--gold-glow);
  transform: translateY(24px) scale(0.95);
  transition: transform 0.35s var(--ease-out);
}

.vip-modal-backdrop.active .vip-modal-window {
  transform: translateY(0) scale(1);
}

.vip-modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.vip-modal-close-btn:hover {
  color: var(--gold);
}
