/* ════════════════════════════════════════════
   FONTS
════════════════════════════════════════════ */
@font-face {
  font-family: 'Gotham';
  src: url('font/GothamBold.ttf') format('truetype');
  font-weight: 700;
}
@font-face {
  font-family: 'Gotham';
  src: url('font/GothamLight.ttf') format('truetype');
  font-weight: 300;
}
@font-face {
  font-family: 'Gotham';
  src: url('font/GothamMedium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'GothamBlack';
  src: url('font/Gotham-Black.otf') format('opentype');
  font-weight: 900;
}

/* ════════════════════════════════════════════
   TOKENS
════════════════════════════════════════════ */
:root {
  --bg:        #080808;
  --bg2:       #050505;
  --dim:       #111111;
  --pink:      #7a7a7a;
  --pink-dim:  rgba(232, 0, 90, 0.15);
  --white:     #f0f0f0;
  --gray:      #666666;
  --gray2:     #333333;
  --font:      'Gotham', 'Inter', sans-serif;
  --font-blk:  'GothamBlack', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
}
body::-webkit-scrollbar { display: none; }

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0,0,0,.7) 0%, transparent 100%);
  transition: background .4s;
}
.navbar.scrolled {
  background: rgba(5,5,5,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav-inner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  height: 90px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.nav-links { display: flex; gap: 40px; }
.nav-links a {
  font-family: var(--font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .18em;
  text-decoration: none;
  color: var(--white);
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }

/* ════════════════════════════════════════════
   SECTION 1 — INTRO
════════════════════════════════════════════ */
.intro {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* YouTube iframe background */
#ytBg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
#ytBgFrame {
  /* Cover-fit: the iframe must be wider/taller than the viewport */
  position: absolute;
  top: 50%; left: 50%;
  /* 16:9 ratio — make it at least 100vw wide and 100vh tall */
  width: max(100vw, 177.78vh);   /* 177.78vh = 100vh * (16/9) */
  height: max(100vh, 56.25vw);   /* 56.25vw  = 100vw * (9/16) */
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}
/* Shield — covers YouTube's play button during initial load, then fades out */
#ytBgShield {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.8s ease;
}
#ytBgShield.hidden { opacity: 0; }

/* Canvas for spotlight */
#lightCanvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* God rays */
.god-ray {
  position: absolute;
  top: 0;
  width: 180px;
  height: 110vh;
  background: linear-gradient(to bottom, rgba(160, 180, 255, 0), transparent);
  pointer-events: none;
  z-index: 2;
  transform-origin: top center;
  opacity: 0;
  transition: opacity 2.5s ease;
}
.god-ray.lit { opacity: 1; }
.ray-1 { left: 50%; transform: translateX(-50%) rotate(-5deg);  width: 220px; }
.ray-2 { left: 50%; transform: translateX(-65%) rotate(-1deg);  width: 140px; background: linear-gradient(to bottom, rgba(120,150,255,.05), transparent); }
.ray-3 { left: 50%; transform: translateX(-35%) rotate(5deg);   width: 140px; background: linear-gradient(to bottom, rgba(120,150,255,.05), transparent); }

/* Intro content wrapper */
.intro-content {
  position: relative;
  z-index: 3;
  width: 100%; height: 100%;
}

/* Character */
.character-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(.16,1,.3,1), transform 1.6s cubic-bezier(.16,1,.3,1);
  transform: translateX(-50%) translateY(40px);
  isolation: isolate;
}
.character-wrap.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* Character image — transparent PNG */
.character {
  width: auto;
  height: auto;
  position: relative;
  opacity: 5%;
  z-index: 2;
  animation: charFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(56, 56, 56, 0.35)) drop-shadow(0 30px 50px rgba(0,0,0,.9));
  transition: opacity .8s ease;
  cursor: default;
}
.character.pixel-hover {
  opacity: 80%;
  cursor: pointer;
}
@keyframes charFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(5px); }
}
.char-glow-ring {
  position: absolute;
  bottom: 20px;
  width: min(320px, 45vw);
  height: 40px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.45) 0%, transparent 70%);
  filter: blur(18px);
  z-index: 1;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: .5; transform: scaleX(1); }
  50%     { opacity: 1;  transform: scaleX(1.25); }
}
.char-shadow {
  width: min(260px, 38vw);
  height: 16px;
  background: radial-gradient(ellipse, rgba(0,0,0,.6) 0%, transparent 70%);
  position: absolute;
  bottom: -2px;
  z-index: 0;
}

/* Intro text — bottom left */
.intro-text {
  position: absolute;
  bottom: 60px; left: 56px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease .6s, transform 1s ease .6s;
}
.intro-text.visible { opacity: 1; transform: translateY(0); }

.intro-tag {
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 14px;
}
.intro-title {
  font-family: var(--font-blk);
  font-size: clamp(56px, 9vw, 110px);
  line-height: .88;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -.02em;
}
.intro-title em {
  background: linear-gradient(to right, #444, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  display: inline-block;
  padding-right: 0.5em; /* Prevent italic clipping on the right edge */
}
.intro-sub {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--white);
  font-weight: 300;
}

/* Barcode decoration — top right */
.barcode {
  position: absolute;
  top: 130px; right: 48px;
  opacity: 0;
  transition: opacity 1s ease 1s;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.barcode.visible { opacity: .35; }
.barcode-lines {
  display: flex;
  gap: 2px;
  align-items: flex-end;
  height: 36px;
}
.barcode-lines::before {
  /* CSS barcode simulation via repeating linear gradient */
  content: '';
  display: block;
  width: 80px; height: 100%;
  background: repeating-linear-gradient(
    90deg,
    #fff 0px, #fff 2px,
    transparent 2px, transparent 4px,
    #fff 4px, #fff 5px,
    transparent 5px, transparent 8px,
    #fff 8px, #fff 11px,
    transparent 11px, transparent 13px,
    #fff 13px, #fff 14px,
    transparent 14px, transparent 17px,
    #fff 17px, #fff 20px
  );
}
.barcode-text {
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--gray);
}

/* Top label row */
.intro-tags-row {
  position: absolute;
  flex-direction: column;
  top: 80px; left: 48px;
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: opacity 1s ease .8s;
  padding-top: 60px;
}
.intro-tags-row.visible { opacity: 1; }
.tag {
  font-size: 10px;
  letter-spacing: .12em;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.171);
  color: rgba(255, 255, 255, 0.678);
}
.tag-pink { border-color: var(--pink); color: var(--pink); }

/* Scroll-fade overlay */
.intro-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  z-index: 6;
  pointer-events: none;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 28px; right: 48px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 1s ease 2s;
}
.scroll-hint.visible { opacity: .4; }
.scroll-hint span {
  font-size: 9px;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
  color: var(--gray);
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity:1; }
  49%  { transform: scaleY(1); transform-origin: top; opacity:1; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity:0; }
}

/* ════════════════════════════════════════════
   SECTION 2 — WORK
════════════════════════════════════════════ */
.work {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  padding: 100px 56px 100px;
}

/* top border divider */
.work::before {
  content: '';
  position: absolute;
  top: 0; left: 56px; right: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--pink) 0%, rgba(255,255,255,.1) 40%, transparent 100%);
}

.work-header {
  margin-bottom: 56px;
}
.work-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.work-tag {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--gray);
}
.work-year {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--pink);
}
.work-title {
  font-family: var(--font-blk);
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 16px;
}
.work-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 10px;
  letter-spacing: .2em;
  color: var(--gray);
}
.wm-sep { color: var(--gray2); }
.wm-pink { color: var(--pink); }

/* Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.loading-state {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 100px 0;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: .2em;
}
.loader {
  width: 32px; height: 32px;
  border: 1px solid var(--gray2);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Video card */
.video-card {
  position: relative;
  background: var(--dim);
  border: 1px solid rgba(255,255,255,.05);
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s ease, border-color .3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: cardIn .5s ease forwards;
}
@keyframes cardIn {
  to { opacity: 1; transform: translateY(0); }
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(173, 173, 173, 0.4);
}
.video-card:hover .video-overlay { opacity: 1; }
.video-card:hover .video-thumb  { filter: grayscale(0%) brightness(1.05); }

.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: grayscale(25%);
  transition: filter .4s;
}
.video-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  /* match the 16:9 thumbnail exactly */
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity .3s;
}
.play-btn {
  width: 52px; height: 52px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}
.play-btn:hover { background: var(--pink); border-color: var(--pink); }
.play-btn svg { width: 17px; fill: #fff; margin-left: 3px; }

.video-info { padding: 14px 16px; }
.video-idx {
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--pink);
  margin-bottom: 6px;
  font-weight: 700;
}
.video-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.video-date {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: .1em;
}

/* ════════════════════════════════════════════
   SECTION 3 — ABOUT
════════════════════════════════════════════ */
.about {
  position: relative;
  min-height: 80vh;
  background: var(--bg2);
  display: flex;
  align-items: center;
  padding: 100px 56px;
  overflow: hidden;
}
.about-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-bg-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
  z-index: 0;
}
.about-bg-text {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-blk);
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.1);
  letter-spacing: -.05em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}
.about-inner { max-width: 680px; position: relative; z-index: 1; }
.about-tag {
  font-size: 11px;
  letter-spacing: .22em;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 24px;
}
.ILIKESKY{
  color: #a4ccff;
  font-weight: 400;
  font-size: 8px;
}
.about-title {
  font-family: var(--font-blk);
  font-size: clamp(56px, 10vw, 112px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 32px;
}
.about-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 64px;
}
.Age-Date {
  font-weight: 50;
  font-size: 9px;
  color: rgb(146, 146, 146)
}
.about-stats { display: flex; gap: 64px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-blk);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 9px;
  letter-spacing: .22em;
  color: var(--white);
}

/* ════════════════════════════════════════════
   SECTION 4 — CONTACT
════════════════════════════════════════════ */
.contact {
  position: relative;
  min-height: 50vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 56px;
  border-top: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
/* Atmospheric green tint at bottom (like the reference grass) */
.contact-grass {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.034) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

/* ════════════════════════════════════════════
   CONTACT STARS
════════════════════════════════════════════ */
.contact-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 50%);
  mask-image: linear-gradient(to top, black 0%, transparent 50%);
}
.stars-1 {
  background-image: 
    radial-gradient(circle at 20px 30px, rgba(255,255,255,0.9) 0%, transparent 1px),
    radial-gradient(circle at 140px 70px, rgba(255,255,255,0.7) 0%, transparent 1.5px),
    radial-gradient(circle at 90px 140px, rgba(255,255,255,0.8) 0%, transparent 1px),
    radial-gradient(circle at 260px 120px, rgba(255,255,255,0.5) 0%, transparent 2px),
    radial-gradient(circle at 200px 50px, rgba(255,255,255,1) 0%, transparent 1.5px),
    radial-gradient(circle at 50px 180px, rgba(255,255,255,0.4) 0%, transparent 1px);
  background-size: 300px 300px;
  animation: starsFloat1 45s linear infinite;
}
.stars-2 {
  background-image: 
    radial-gradient(circle at 100px 50px, rgba(255,255,255,0.8) 0%, transparent 1px),
    radial-gradient(circle at 250px 150px, rgba(255,255,255,0.5) 0%, transparent 2px),
    radial-gradient(circle at 50px 250px, rgba(255,255,255,0.9) 0%, transparent 1.5px),
    radial-gradient(circle at 350px 80px, rgba(255,255,255,0.6) 0%, transparent 1px),
    radial-gradient(circle at 180px 280px, rgba(255,255,255,0.4) 0%, transparent 2.5px);
  background-size: 400px 400px;
  animation: starsFloat2 70s linear infinite;
}
@keyframes starsFloat1 {
  0% { background-position: 0 0; }
  100% { background-position: -300px -300px; }
}
@keyframes starsFloat2 {
  0% { background-position: 0 0; }
  100% { background-position: -400px -400px; }
}

.contact-inner { text-align: center; position: relative; z-index: 3; }
.contact-tag {
  font-family: var(--font-blk);
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 48px;
  line-height: 1;
}
.contact-links {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.contact-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gray);
  text-decoration: none;
  position: relative;
  transition: color .2s;
}
.contact-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: width .3s;
}
.contact-link:hover { color: var(--white); }
.contact-link:hover::after { width: 100%; }

.contact-footer {
  display: flex; gap: 16px;
  justify-content: center; align-items: center;
  font-size: 11px;
  color: rgba(255,255,255,.2);
  letter-spacing: .15em;
  margin-bottom: 16px;
}
.contact-footer .dot { color: var(--pink); font-size: 5px; }

.contact-bottom {
  font-size: 9px;
  letter-spacing: .25em;
  color: rgba(255, 255, 255, 0.12);
  display: flex; gap: 12px; justify-content: center;
}
.contact-bottom .dot { color: var(--gray2); }

/* ════════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .24s; }
.reveal-delay-3 { transition-delay: .36s; }

/* ════════════════════════════════════════════
   VIDEO MODAL PLAYER
════════════════════════════════════════════ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal-wrap {
  position: relative;
  width: min(900px, 92vw);
}
.modal-close {
  position: absolute;
  top: -44px; right: 0;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  font-family: var(--font);
}
.modal-close:hover {
  background: var(--pink);
  border-color: var(--pink);
}
.modal-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.modal-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.modal-title {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .05em;
  line-height: 1.4;
}
.modal-meta {
  margin-top: 6px;
  font-size: 10px;
  color: var(--gray);
  letter-spacing: .12em;
  display: flex;
  gap: 16px;
}
.modal-meta a {
  color: var(--pink);
  text-decoration: none;
}
.modal-meta a:hover {
  text-decoration: underline;
}

/* ════════════════════════════════════════════
   STATUS & MUSIC WIDGET
════════════════════════════════════════════ */
.status-widget {
  position: fixed;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.171);
  background: rgba(14, 14, 14, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.678);
  font-family: var(--font-reg);
  font-size: 10px;
  letter-spacing: .12em;
  z-index: 1000;
  border-radius: 2px;
  max-width: 200px;
}
.status-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #555;
  flex-shrink: 0;
}
.status-dot.green {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
}
.status-dot.red {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}
.status-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
}
.mute-btn {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding-left: 0;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
  outline: none;
  white-space: normal;
}
.mute-btn:hover {
  color: #fff;
}
.song-marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 6px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
}
.song-marquee {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 10s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ════════════════════════════════════════════
   PRELOADER
════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  background: #020202;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-content {
  text-align: center;
  font-family: var(--font-reg);
  letter-spacing: .2em;
  color: var(--white);
}
.preloader-text {
  font-size: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.preloader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2px;
}
.preloader-bar {
  width: 0%;
  height: 100%;
  background: var(--white);
  transition: width 0.1s linear;
}
.preloader-click {
  cursor: pointer;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#enterVideo {
  width: 100%;
  height: auto;
  background-color: black;
  pointer-events: none; /* Let clicks pass to the wrapper */
}
