/* 🌌 Layout Anchors */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;       /* ✅ lock horizontal scroll */
  overflow-y: auto;         /* ✅ allow vertical scroll */
  background: radial-gradient(circle at center, #000000 0%, #000000 60%, #0a0a0a 80%, #000 90%, #000 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none;    /* Firefox */
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}

/* 🧼 Hide Scrollbar — WebKit */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}
.about-capsule-button {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #FFFFCE;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.about-capsule-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFB47D;
  box-shadow: 0 0 20px rgba(255, 180, 125, 0.3);
}


/* 🧩 Section Container */
.fashion-title-section {
  position: relative;
  width: 100%;
  padding: 80px 40px;
  background-color: #0f0f0f;
  border-radius: 24px;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.fashion-title-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/landing/bh2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

/* 🎞️ Centered Content Block */
.fashion-title-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1360px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* 📝 Left Panel */
.fashion-title-left {
  flex: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 20px;
  box-sizing: border-box;
  z-index: 2;
}

.fashionHeader {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: #FFFFCE;
  text-shadow: 0 0 10px rgba(255, 150, 255, 0.6);
  letter-spacing: 0.2em;
  margin: 0;
  padding: 2rem 0 1.5rem 0;
  pointer-events: none;
}

.fashionCaption {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #FFB47D;
  text-shadow: 0 0 6px rgba(255, 120, 60, 0.3);
  letter-spacing: 1.2px;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 1rem;
}

/* ✨ Twinkle Text */
.twinkle {
  display: inline-block;
  color: #FFE6C0;
  text-shadow: 0 0 6px rgba(255, 180, 100, 0.5), 0 0 12px rgba(255, 160, 80, 0.3);
  animation: twinkleBob 6s infinite ease-in-out;
  transform-origin: center;
  opacity: 1;
  font-size:inherit;
}

@keyframes twinkleBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-2px); }
}
/* 📺 Right Panel — Carousel */
.fashion-title-right {
  flex: 1;
  max-width: 480px;
  position: relative;
  padding-left: 40px;
  z-index: 1;
  overflow: hidden;
}

.fashion-title-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/landing/bh2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.fashion-title-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 1;
}

/* 🌀 Carousel Viewport */
.carousel-viewport {
  padding: 2rem;
  width: 480px;
  min-width: 480px;
  max-width: 480px;
  overflow: visible;
  position: relative;
}

/* 🌀 Carousel Stage */
.carousel-stage {
  display: flex;
  margin-left: -120px;
  transition: transform 1s ease-in-out;
  will-change: transform;
}

/* 🧩 Capsule Container */
.slideshow-container {
  width: 480px;
  height: 480px;
  flex: 0 0 auto;
  margin: 0 33px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

/* 🖼 Slide Logic */
.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s ease-in-out, transform 6s ease;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  transform: scale(0.95);
  z-index: 1;
  box-shadow: 0 0 20px rgba(255, 200, 150, 0.15);
  animation: pulseGlow 6s ease-in-out infinite;
}

/* 🟧 Progress Bar */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1rem;
  width: 0%;
  background: linear-gradient(to right, #ff6a00, #C65F2D);
  border-radius: 2px;
  z-index: 5;
  transition: width 4s linear;
}


/* 🧩 Capsule Button */
.glass-button-inline-panel {
  position: relative;
  display: inline-block;
  margin-top: 1rem;
  padding: 6px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #FFFFCE;
  text-align: center;
  text-decoration: none;
  border-radius: 16px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  overflow: visible;
  z-index: 10;
  cursor: pointer;
}

.glass-button-inline-panel::before,
.glass-button-inline-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
}

.glass-button-inline-panel::before {
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 28px;
  border: 2px solid #C65F2D;
  opacity: 0;
  z-index: 2;
}

.glass-button-inline-panel::after {
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 36px;
  border: 2px solid rgba(198, 95, 45, 0.2);
  opacity: 0;
  z-index: 1;
}

.glass-button-inline-panel:hover {
  border-radius: 24px;
  transform: scale(1.05);
  box-shadow: 0 0 40px #C65F2D;
  color: #FFB47D;
  border-color: rgba(255, 255, 255, 0.15);
}

.glass-button-inline-panel:hover::before {
  opacity: 1;
  border-radius: 28px;
}

.glass-button-inline-panel:hover::after {
  opacity: 1;
  border-radius: 36px;
}


/* 🧩 Base Styling for Glass Button */
.glass-button {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  background-color: rgba(255,255,255,0.15);
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  z-index: 10;
}

/* ✨ Hover Enhancement */
.glass-button:hover {
  background-color: rgba(255,255,255,0.3);
}

#blackhole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px; /* or whatever size fits your layout */
  z-index: 800;
  pointer-events: none; /* so it doesn’t block interactions */
  transition: transform 0.1s ease-out;
  will-change: transform;
  z-index: 0;
}

  #starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    mix-blend-mode: screen;
    background: transparent;
    pointer-events:none;
  }
  #starfield,
#blackhole {
  transition: transform 0.1s ease-out;
  will-change: transform;
}
.graphic-capsule-label{
    position:absolute;
    bottom:-0.15rem;
    font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #FFFFCE;
  text-shadow: 0 0 10px rgba(255, 150, 255, 0.6);
  letter-spacing: 0.1em;
  cursor: pointer;
  z-index: 1000;
}
.fashion-capsule-label{
    position:relative;
    left:50%;
    font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #FFFFCE;
  text-shadow: 0 0 10px rgba(255, 150, 255, 0.6);
  letter-spacing: 0.1em;
  cursor: pointer;
  z-index: 1002;
}
 ::selection {
  background-color: rgba(20, 20, 20, 0.8); /* Light grey highlight */
  color:#cc4b1e; /* Orange text */
}

.centeredHeader {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  pointer-events: none;
}

.centeredHeader h1 {
  font-family: 'Oswald', sans-serif; 
  font-size: 10rem;
  color: #FFFFCE;
  text-shadow: 0 0 10px rgba(255,150,255,0.6);
  letter-spacing: 0.2em;
}
.centeredButton {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #FFFFCE;
  text-shadow: 0 0 10px rgba(255, 150, 255, 0.6);
  letter-spacing: 0.1em;
  cursor: pointer;
  z-index: 1000;
}

.centeredButton:hover {
  opacity: 0.9;
   filter: brightness(1.3);
     text-shadow:
    0 0 12px rgba(255, 180, 255, 0.6),
    0 0 24px rgba(255, 180, 255, 0.4);
}

    
.intro-container {
  text-align: center;
  margin-top: 20vh;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
}

.name {
  font-size: 4rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.typing-quote {
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: none;
}

.cursor {
  color: #FFFFCE;
    font-size: 3rem;
  animation: blink 0.7s steps(1) infinite;
  text-shadow: 0 0 10px rgba(255,150,255,0.6);
}

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

#typed-text {
  font-family: 'Oswald', sans-serif; 
  font-size: 2.1rem;
  color: #FFFFCE;
  text-shadow: 0 0 10px rgba(255,150,255,0.6);
  letter-spacing: 0.12em;
  cursor: pointer;
}

.social-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20%;
  display: flex;
  gap: 0.4rem;
  z-index: 1000;
  opacity: 0.8;
}

.rollover {
 
  transform:translatey(-1rem);
  width: 24px; /* scale down from 1920x1920 */
  height: 24px;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.rollover:hover {
  transform: scale(1.2) translatey(-1rem); /* grow slightly */
  filter: brightness(1.3); /* brighten for effect */
}
.graphic-title-section {
  position: relative;
  overflow: hidden;
}
.social-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20%;
  display: flex;
  gap: 0.4rem;
  z-index: 1000;
  opacity: 0.8;
}
.film-frame {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 8vw; /* Adjust thickness here */
  background-color: black;
  z-index: 9999;
  pointer-events: none; /* So it doesn’t block clicks */
}

.capsule-ui {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--zoom-scale));
  transform-origin: center center;
  transition: transform 0.3s ease;
  z-index: 1000;
}

.glass-trail {
  position: fixed;
  width: 120px;
  height: 120px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
  transform: translate(-50%, -50%);
  z-index: 999;
}

/* 🟫 Category container layout */

#categories {
  position: fixed;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;              /* ← allows wrapping on small screens */
  justify-content: center;
  gap: 1rem;                    /* ← reduced spacing */
  padding: 10px;
  max-width: 100vw;              /* ← prevents overflow */
  z-index: 1000;
  font-size: 3rem;
}
.glass-panel .category {
  font-size: 1rem; /* or whatever size you want */
}

#categories.show {
  opacity: 1;
}
/* 🧭 Chevron Stack Positioning */
.scroll-chevron-stack {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 10;
  pointer-events: none;
}

/* ⬇️ Chevron Shape: Pure CSS Arrow */
.chevron {
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid; /* This creates the downward arrow */
  animation: chevronDrift 2.4s infinite ease-in-out;
}

/* 🎨 Starfield-inspired Colors */
.chevron-light { border-top-color: #F2F2F2; animation-delay: 0s; }
.chevron-mid   { border-top-color: #E89C5A; animation-delay: 0.2s; }
.chevron-dark  { border-top-color: #C65F2D; animation-delay: 0.4s; }

/* 🎞️ Chevron Animation: Gentle Downward Drift */
@keyframes chevronDrift {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.8;
  }
}


/* 🪐 
WRAPPER */
.carousel-controls-wrapper {
  position: relative;
  overflow: visible;
  z-index: 1000;
}

/* 🎯 CONTROLS POSITIONING */
.carousel-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-66%);
  display: flex;
  gap: 24px;
  z-index: 1000;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.carousel-controls.inactive {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

.carousel-controls.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* 🧩 ARROW CAPSULES — Glass Fidelity */
#prevCapsule,
#nextCapsule {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #FFFFCE;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px 16px;
  cursor: pointer;

  box-shadow: 0 0 12px rgba(255, 180, 100, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  z-index: 10;
}

/* 🟧 ORANGE RING — Matches Inline Panel ::before */
#prevCapsule::before,
#nextCapsule::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: calc(12px + 12px);
  border: 2px solid #C65F2D;
  opacity: 0;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

/* 🟫 OUTER GLOW AURA — Matches Inline Panel ::after */
#prevCapsule::after,
#nextCapsule::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: calc(12px + 20px);
  border: 2px solid rgba(198, 95, 45, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

/* 🟪 HOVER INTERACTION — Matches Inline Panel Hover */
#prevCapsule:hover,
#nextCapsule:hover {
  filter: brightness(1.3);
  text-shadow:
    0 0 12px rgba(255, 180, 255, 0.6),
    0 0 24px rgba(255, 180, 255, 0.4);
  box-shadow: 0 0 40px #C65F2D;
  border-radius: 24px;
}

#prevCapsule:hover::before,
#nextCapsule:hover::before {
  opacity: 1;
  border-radius: calc(24px + 12px);
}

#prevCapsule:hover::after,
#nextCapsule:hover::after {
  opacity: 1;
  border-radius: calc(24px + 20px);
}



/* 🟨 Glass panel capsule */
.glass-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 64px;
  height: 80px;
  padding: 0 8px;
  overflow: visible;
 background-color: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.08); /* ← thinner grey border */
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);

  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s ease-out,
    border-radius 0.3s ease;
  will-change: opacity, transform, border-radius;
}


/* 🟧 Orange ring layered on top */
.glass-panel::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;

  border-radius: calc(16px + 12px);
  border: 2px solid #C65F2D;
  opacity: 0;

  transition:
    opacity 0.3s ease,
    border-radius 0.3s ease;
  pointer-events: none;
  z-index: 2;
}



/* 🟫 Outer glow aura */
.glass-panel::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;

  border-radius: calc(16px + 20px);
  border: 2px solid rgba(198, 95, 45, 0.2);
  opacity: 0;

  transition:
    opacity 0.3s ease,
    border-radius 0.3s ease;
  pointer-events: none;
  z-index: 1;
}



/* 🟪 Capsule hover interaction */
.glass-panel:hover {
  cursor: pointer;
  border-radius: 24px;
  transform: scale(1.05);
  box-shadow: 0 0 40px #C65F2D;
  transition: all 0.3s ease;
}

.glass-panel:hover::before {
  opacity: 1;
  border-radius: calc(24px + 12px);
}

.glass-panel:hover::after {
  opacity: 1;
  border-radius: calc(24px + 20px);
}

a.glass-panel {
  text-decoration: none;
  color: inherit;
  outline: none;
}

a.glass-panel:focus {
  outline: none;
  box-shadow: none;
}

/* 🟫 Category capsule text */
.category {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #FFFFCE;
  letter-spacing: 0.14em;
  cursor: pointer;
  text-shadow:
    0 0 10px rgba(255, 150, 255, 0.5),
    0 0 20px rgba(255, 150, 255, 0.3);
  opacity: 0;
  transform: translateY(150px) scale(0.95);
  transition:
    opacity 0.5s ease-out,
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.3s ease;
  will-change: opacity, transform;
}

/* 🟪 Category hover reveal */
.category:hover {
  filter: brightness(1.3);
  transform: translateY(-4px) scale(1.25);
  text-shadow:
    0 0 12px rgba(255, 180, 255, 0.6),
    0 0 24px rgba(255, 180, 255, 0.4);
}

/* 🟦 HERO SECTION: Fullscreen intro */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* 🟨 FASHION TITLE SECTION: 50/50 capsule layout */
.fashion-title-section {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 80px 40px;
  gap: 40px;
  background-color: #0f0f0f;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
}

/* 🟫 BACKGROUND LAYER: Cosmic backdrop */
.background-layer {
  position: absolute;
  inset: 0;
  background-color: #0f0f0f;
  z-index: 0;
}

/* 🟥 LEFT PANEL: Header + Caption + Button */
.fashion-title-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 20px;
  box-sizing: border-box;
}

/* 🟪 HEADER TEXT: Cinematic title */
.fashionHeader {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: #FFFFCE;
  text-shadow: 0 0 10px rgba(255, 150, 255, 0.6);
  letter-spacing: 4px;
  margin-top: 4rem;
  padding: 2rem 0 1.5rem 0;
  pointer-events: none;
}

/* 🟩 CAPTION TEXT: Accretion disc glow with tighter spacing */
.fashionCaption {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  color: #FFB47D;
  text-shadow: 0 0 6px rgba(255, 120, 60, 0.3);
  letter-spacing: 1.2px;
  line-height: 1.5;
  margin: 0;
  padding-bottom: 1rem;
}

/* 🧩 INLINE BUTTON: Compact capsule */
.glass-button-inline-panel {
  display: inline-block;
  margin-top: 1rem;
  padding: 6px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #FFFFCE;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 12px rgba(255, 180, 100, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  z-index: 10;
  cursor: pointer;
}

/* 🌌 SECTION WRAPPER */
.graphic-title-section {
  display: flex;
     min-height: 1000px; /* Full viewport height */
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 4rem 6vw 2rem;
  background-color:#000;
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

/* 🟥 TOP PANEL */
.graphic-title-left {
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.graphic-header {
  font-family: 'Oswald', sans-serif;
  font-size: 4.0rem;
  letter-spacing: 0.2em;
  color: #FFFFCE;
  margin: 0;
  text-shadow: 0 0 16px rgba(255, 180, 100, 0.4);
}

.graphic-caption {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #FFB47D;
  text-shadow: 0 0 6px rgba(255, 120, 60, 0.3);
  letter-spacing: 1.2px;
  line-height: 1.5;
  margin: 0;
  padding-bottom: 1rem;
}

.graphic-twinkle {
  display: inline-block;
  color: #FFE6C0;
  text-shadow: 0 0 6px rgba(255, 180, 100, 0.5),
               0 0 12px rgba(255, 160, 80, 0.3),
               0 0 18px rgba(255, 140, 60, 0.2);
  animation: twinklePulse 6s infinite ease-in-out;
  transform-origin: center;
}


@keyframes twinklePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.02); opacity: 0.85; }
}
/* 🟧 Graphic Right Panel — Harmonized with Fashion */
.graphic-title-right {
  flex: 1;
  max-width: 480px;
  position: relative;
  padding-left: 40px;
  z-index: 1;
  overflow: hidden;
}

.graphic-title-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/landing/bh2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.graphic-title-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
  z-index: 1;
}

/* 🌀 Graphic Carousel Viewport */
.graphic-carousel-viewport {
  padding: 2rem;
  width: 480px;
  min-width: 480px;
  max-width: 480px;
  overflow: visible;
  position: relative;
}

/* 🌀 Graphic Carousel Stage */
.graphic-carousel-stage {
  display: flex;
  margin-left: -17.5%;
  transition: transform 1s ease-in-out;
  will-change: transform;
}

/* 🧩 Graphic Capsule Container */
.graphic-capsule {
  width: 480px;
  height: 480px;
  flex: 0 0 auto;
  margin: 0 33px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 🖼 Graphic Slide Logic */
.graphic-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s ease-in-out, transform 6s ease;
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(255, 180, 100, 0.2);
}

.graphic-slide.active {
  opacity: 1;
  transform: scale(0.95);
  z-index: 1;
  pointer-events: auto;
  box-shadow: 0 0 20px rgba(255, 200, 150, 0.15);
  animation: pulseGlow 6s ease-in-out infinite;
}

/* 🟧 Graphic Progress Bar — Optional */
.graphic-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1rem;
  width: 0%;
  background: linear-gradient(to right, #ff6a00, #C65F2D);
  border-radius: 2px;
  z-index: 5;
  transition: width 4s linear;
}

/* 📱 RESPONSIVE TUNING — Maintain Square */
@media (max-width: 768px) {
  .graphic-slideshow-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .graphic-slide {
    width: 100%;
    height: 100%;
  }
}


/* 🟦 PROGRESS BAR */
.graphic-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 1rem;
  background: linear-gradient(to right, #FFB47D, #C65F2D);
  width: 0%;
  transition: width 0.3s ease;
  z-index: 5;
}
/* 🪐 CONTROLS WRAPPER — Graphic Carousel */
.graphic-carousel-controls-wrapper {
  position: absolute;
  top: 1.5rem; /* switched from bottom to top for positive control */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  overflow: visible;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 🎯 CONTROLS — Flex layout */
.graphic-carousel-controls {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.graphic-carousel-controls.inactive {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

/* 🧩 NAV BUTTONS — Match Glass Fidelity */
#prevGraphicCapsule,
#nextGraphicCapsule {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #FFFFCE;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px 16px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 180, 100, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  z-index: 10;
  user-select: none;
}

/* 🟧 INNER RING */
#prevGraphicCapsule::before,
#nextGraphicCapsule::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 24px;
  border: 2px solid #C65F2D;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  z-index: 2;
}

/* 🟫 OUTER AURA */
#prevGraphicCapsule::after,
#nextGraphicCapsule::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 32px;
  border: 2px solid rgba(198, 95, 45, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  z-index: 1;
}

/* 🟪 HOVER EFFECTS */
#prevGraphicCapsule:hover,
#nextGraphicCapsule:hover {
  filter: brightness(1.3);
  text-shadow:
    0 0 12px rgba(255, 180, 255, 0.6),
    0 0 24px rgba(255, 180, 255, 0.4);
  box-shadow: 0 0 40px #C65F2D;
  border-radius: 24px;
  transform: translateY(-2px);
}

#prevGraphicCapsule:hover::before,
#nextGraphicCapsule:hover::before {
  opacity: 1;
  border-radius: 28px;
}

#prevGraphicCapsule:hover::after,
#nextGraphicCapsule:hover::after {
  opacity: 1;
  border-radius: 36px;
}
/* 🌌 TWINKLE STARS — Used for burst-style twinkles */
.twinkle-star {
  width: 5px;
  height: 5px;
  background: radial-gradient(circle, rgba(255, 180, 100, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: twinkleFade 4s ease-out forwards;
}

/* 🌌 AMBIENT STARS — Persistent background shimmer */
.ambient-star {
  width: 5px;
  height: 5px;
  background: radial-gradient(circle, rgba(255, 180, 100, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: ambientFade 4.2s ease-out forwards;
}

/* ✨ TWINKLE TEXT — For glowing inline words */
.twinkle {
  display: inline-block;
  color: #FFE6C0;
  text-shadow:
    0 0 6px rgba(255, 180, 100, 0.5),
    0 0 12px rgba(255, 160, 80, 0.3);
  animation: twinklePulse 6s infinite ease-in-out;
  transform-origin: center;
}

/* 🌠 KEYFRAMES — Modular and clean */
@keyframes twinkleFade {
  0%   { opacity: 0; transform: scale(0.5); }
  25%  { opacity: 0.2; transform: scale(1); }
  80%  { opacity: 0.15; transform: scale(1.2); }
  100% { opacity: 0; transform: scale(1.4); }
}

@keyframes ambientFade {
  0%   { opacity: 0; transform: scale(0.4); }
  30%  { opacity: 0.15; transform: scale(1); }
  90%  { opacity: 0.1; transform: scale(1.3); }
  100% { opacity: 0; transform: scale(1.5); }
}

@keyframes twinklePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.02); opacity: 0.85; }
}

@keyframes twinkleBob {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-2px); }
}

/* 🛑 Disable stars if .edge-safe is present */
.graphic-starfield-bg.edge-safe .graphic-star,
.graphic-starfield-bg.edge-safe .ambient-star,
.graphic-starfield-bg.edge-safe .twinkle-star {
  animation: none !important;
  opacity: 0 !important;
}
/* 🧩 UI/UX SECTION — Capsule-Aligned and Centered */
.uiux-section {
  position: relative;
   min-height: 800px; /* Full viewport height */
  width: 100%;
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  background-color:#0f0f0f;
  border-radius: 24px;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-sizing: border-box;
  z-index: 1;
}

/* 🌌 Background Layer — Image or Video */
.uiux-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/landing/bh3.png') center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

/* 🎞️ Content Container — Fixed Width, Left-Right Layout */
.uiux-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1360px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* 📝 Left Panel — Text Capsule */
.uiux-left {
  width: 50%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  text-align: center;
}

.uiux-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  color: #FFFFCE;
  letter-spacing: 0.2em;
  margin: 0;
  text-shadow: 0 0 16px rgba(255, 180, 100, 0.4);
}

.uiux-description {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: #FFB47D;
  letter-spacing: 1.2px;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 0 6px rgba(255, 120, 60, 0.3);
}

/* 📺 Right Panel — Video Capsule */
.uiux-right {
  width: 50%;
  max-width: 720px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.uiux-video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(255, 180, 100, 0.2);
}

.uiux-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
/* 🌠 Harmonized Cosmic Footer */
.visual-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cosmic-visuals {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


#starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.graphic-starfield-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Footer sits below visuals */
.cosmic-footer {
  text-align: center;
  padding: 24px;
  font-size: 90%;
  color: #FFB47D;
  background: radial-gradient(circle at center, #000000 0%, #0a0a0a 80%, #000 100%);
  border-top: 1px solid rgba(255, 180, 100, 0.2);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1.2px;
  text-shadow: 0 0 6px rgba(255, 120, 60, 0.3);
  z-index: 10;
  position: relative;
  margin-top: 80px;
}

.category, .glass-panel {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#graphic-stars.twinkle-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

/* 🌠 ILLUSTRATION SECTION — Capsule-Aligned and Ambient */
.illustration-section {
  position: relative;
  width: 100vw;
  padding: 80px 40px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
  z-index: 1;
}

/* ✨ Optional Background Layer */
.illustration-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/illustration/starfield.png') center/cover no-repeat;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

/* 🪐 Title Panel — Centered Capsule */
.illustration-title-panel {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.illustration-header {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5em;
  color: #FFFFCE;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(255, 200, 100, 0.5);
}

.illustration-caption {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1em;
  color: #FFB47D;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.6;
  text-shadow: 0 0 6px rgba(255, 120, 60, 0.3);
}

/* 🎞️ Belt Wrapper — Two Rows */
.illustration-belt-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* 🪐 Belt Row — Each with its own canvas */
.belt-row {
  position: relative;
  height: 240px;
  width: 100%;
  overflow: visible; /* 👈 allow glow and scale to escape */
}

/* 🌌 Twinkle Layer — Canvas Above Belt */
.twinkle-layer {
  position: absolute;
  top: -40px;         /* 👈 buffer for glow trails */
  left: 0;
  width: 100%;        /* 👈 must match parent width */
  height: 320px;      /* 👈 must match JS canvas height logic */
  pointer-events: none;
  z-index: 3;
}

.illustration-wrapper {
  position: relative;
}

/* 🛸 Belt — Infinite Scroll Container */
.illustration-belt {
  display: flex;
  gap: 24px;
  position: relative;
  width: 100vw;
  height: 240px;
  z-index: 2;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  overflow: visible;
}

/* ⬅️ Top Row — Scroll Left */
.illustration-belt.top {
  animation: scrollLeft 120s linear infinite;
}

/* ➡️ Bottom Row — Scroll Right */
.illustration-belt.bottom {
  animation: scrollRight 120s linear infinite;
}

/* 🖼️ Belt Images — Capsule Styling */
.illustration-belt img {
  height: 200px;
  width: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.illustration-belt img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 48px rgba(255, 255, 255, 0.4);
}
.illustration-footer {
  display: flex;
  justify-content: center;
}
/* 🌌 Default Belt Appearance */
.illustration-belt {
  transition: filter 0.6s ease, opacity 0.6s ease;
}

/* 🔥 Warm Fade Class — Applied on Zoom Out */
.belt-fade {
  position: relative;
  isolation: isolate;
  width: 100%; /* 👈 ensures full horizontal stretch */
  height: 100%; /* 👈 matches parent belt height */
  transition: transform 0.3s ease, opacity 0.6s ease;
}
.belt-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 200vw; /* 👈 matches scrollable belt width */
  height: 100%;
  isolation: isolate;
  transition: transform 0.3s ease, opacity 0.6s ease;
  
}

.belt-fade::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 150, 80, 0) 0%,
    rgba(255, 150, 80, 0.6) 45%,
    rgba(255, 200, 100, 0.9) 50%,
    rgba(255, 120, 60, 0.7) 60%,
    rgba(255, 120, 60, 0) 100%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
  transition: transform 5s ease;
}


.warm-overlay {
  position: fixed; /* 👈 anchors to viewport, not parent */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: linear-gradient(
    to bottom,
    rgba(255, 150, 80, 0) 0%,
    rgba(255, 150, 80, 0.6) 45%,
    rgba(255, 200, 100, 0.9) 50%,
    rgba(255, 120, 60, 0.7) 60%,
    rgba(255, 120, 60, 0) 100%
  );
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.6s ease;
}

.illustration-belt {
  transition: opacity 0.6s ease;
}

/* 🎞️ Keyframes — Seamless Loop */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* 🌌 Base Reveal Setup — Quicker fade-out, smoother drift-in */
section {
  opacity: 0;
  filter: blur(16px);
  transform: scale(0.94);
  transition:
    opacity 0.4s ease-out,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease-out;
  will-change: opacity, transform, filter;
}

section.visible {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* 🧭 Directional Entrances — Cosmic Drift */
section.reveal-up     { transform: translateY(80px) scale(0.94); }
section.reveal-left   { transform: translateX(-80px) scale(0.94); }
section.reveal-right  { transform: translateX(80px) scale(0.94); }

section.visible.reveal-up,
section.visible.reveal-left,
section.visible.reveal-right {
  transform: translateX(0) translateY(0) scale(1);
}

/* 🎞️ Staggered Child Elements — Delayed clarity */
section .reveal-child {
  opacity: 0;
  transform: translateY(32px) scale(0.96);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
  transition-delay: 0.2s;
  will-change: opacity, transform;
}

section.visible .reveal-child {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.gallery-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  flex-direction: column;
  animation: fadeIn 0.4s ease-out;
}

.gallery-modal.active {
  display: flex;
}

.gallery-image {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 0 48px rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}


.gallery-nav {
  margin-top: 20px;
  display: flex;
  gap: 40px;
}

.gallery-nav button {
  background: none;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.gallery-nav button:hover {
  background: rgba(255,255,255,0.1);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.gallery-close {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 2rem;
  font-family: 'Oswald', sans-serif;
  color: #FFFFCE;
  background-color: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding-top: 4px;
   padding-left: 20px;
   padding-right: 20px;
     padding-bottom: px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 180, 100, 0.3);
  transition: all 0.3s ease;
  z-index: 1001;
  overflow: visible;
}

/* 🟧 ORANGE RING — ::before */
.gallery-close::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 12px;
  border: 2px solid #C65F2D;
  opacity: 0;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

/* 🟫 OUTER GLOW AURA — ::after */
.gallery-close::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
border-radius: 12px;
  border: 2px solid rgba(198, 95, 45, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

/* 🟪 HOVER INTERACTION — Cosmic Pulse */
.gallery-close:hover {
  filter: brightness(1.3);
  text-shadow:
    0 0 12px rgba(255, 180, 255, 0.6),
    0 0 24px rgba(255, 180, 255, 0.4);
  box-shadow: 0 0 40px #C65F2D;
  border-radius: 50%;
}

.gallery-close:hover::before {
  opacity: 1;
  border-radius: 50%;
}

.gallery-close:hover::after {
  opacity: 1;
  border-radius: 50%;
}

/* 🪐 GALLERY NAV WRAPPER */
.gallery-nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  z-index: 1000;
}

/* 🧩 ARROW CAPSULES — Matches Carousel Controls */
.gallery-nav button {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #FFFFCE;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px 16px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 180, 100, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  z-index: 10;
}

/* 🟧 ORANGE RING — ::before */
.gallery-nav button::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: calc(12px + 12px);
  border: 2px solid #C65F2D;
  opacity: 0;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

/* 🟫 OUTER GLOW AURA — ::after */
.gallery-nav button::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: calc(12px + 20px);
  border: 2px solid rgba(198, 95, 45, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

/* 🟪 HOVER INTERACTION — Cosmic Pulse */
.gallery-nav button:hover {
  filter: brightness(1.3);
  text-shadow:
    0 0 12px rgba(255, 180, 255, 0.6),
    0 0 24px rgba(255, 180, 255, 0.4);
  box-shadow: 0 0 40px #C65F2D;
  border-radius: 24px;
}

.gallery-nav button:hover::before {
  opacity: 1;
  border-radius: calc(24px + 12px);
}

.gallery-nav button:hover::after {
  opacity: 1;
  border-radius: calc(24px + 20px);
}
.reveal-child {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  filter: blur(6px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease-out;
  will-change: opacity, transform, filter;
}

.visible .reveal-child {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
.gallery-modal {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.gallery-modal.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.gallery-modal.fading-out {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
}
.gallery-image {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-modal.active .gallery-image {
  opacity: 1;
  transform: scale(1);
}


/* ✨ Twinkle Text */
.twinkle {
  display: inline-block;
  color: #FFE6C0;
  text-shadow: 0 0 6px rgba(255, 180, 100, 0.5), 0 0 12px rgba(255, 160, 80, 0.3);
  animation: twinkleBob 6s infinite ease-in-out;
  transform-origin: center;
  opacity: 1;
  font-size: inherit;
}

@keyframes twinkleBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-2px); }
}
/* 🪐 Music Section Container */
.music-title-section {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 80px 40px;
  background-color: #000;
  border-radius: 24px;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.05);
  overflow: visible;
  z-index: 1;
}

/* 🎞️ Left Panel — Title & Caption */
.music-title-left {
  flex: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 20px;
  z-index: 2;
}

.musicHeader {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: #FFFFCE;
  text-shadow: 0 0 10px rgba(255, 150, 255, 0.6), 0 0 20px rgba(255, 180, 255, 0.3);
  letter-spacing: 0.2em;
  margin: 0;
  padding: 2rem 0 1.5rem 0;
  pointer-events: none;
}

.musicCaption {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #FFB47D;
  text-shadow: 0 0 6px rgba(100, 200, 255, 0.3);
  letter-spacing: 1.2px;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 1rem;
}

/* 🎧 Right Panel — Scrollable Playlist */
.music-title-right {
  flex: 1;
  max-width: 560px;
  padding-left: 40px;
  position: relative;
  overflow: visible;
  z-index: 2;
}
.capsule-scroll-wrapper {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.capsule-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.capsule-scroll {
  display: flex;
  flex-direction: column;
}

.capsule {
  flex: 0 0 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  background-color: black;
}

.clip {
  aspect-ratio: 9 / 16;
  height: 90vh;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(255, 200, 255, 0.4);
}

.playlist-scroll {
  max-height: 560px;
  overflow-y: auto;
  padding: 0 12px 48px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: #FFB47D transparent;
}

.playlist-scroll::-webkit-scrollbar {
  width: 6px;
}

.playlist-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.playlist-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #FFB47D, #C65F2D);
  border-radius: 3px;
}

/* 🎵 Album Card */
.album-card {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.06);
  gap: 16px;
  min-height: 96px;
}

/* 🖼 Album Art */
.album-art {
  position: relative;
  width: 100%;
  border-radius: 12px;
  transition: filter 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  z-index: 1;
}

/* 🟧 Orange Ring — ::before */
.album-art::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 16px;
  border: 2px solid #C65F2D;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
}

/* 🟫 Outer Glow Aura — ::after */
.album-art::after {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: -16px;
  bottom: -16px;
  border-radius: 24px;
  border: 2px solid rgba(198, 95, 45, 0.2);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
}

/* 🟪 Hover Interaction — Reveal Rings + Glow */
.album-art:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 24px #C65F2D;
}

.album-art:hover::before {
  opacity: 1;
  border-radius: 20px;
}

.album-art:hover::after {
  opacity: 1;
  border-radius: 28px;
}


/* 🎶 Track Info */
.track-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 100%;
  padding: 4px 0;
}

.track-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  color: #FFFFCE;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 150, 255, 0.6), 0 0 20px rgba(255, 180, 255, 0.3);
}

.track-artist {
  font-size: 0.85rem;
  color: #aaa;
  margin: 4px 0;
}

/* ▶️ Audio Player */
.audio-player {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

/* ▶️ Play Button — Capsule Fidelity */
.audio-button {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #FFFFCE;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px 16px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 180, 100, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  z-index: 10;
  text-align: center;
}

/* 🟧 Orange Ring */
.audio-button::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 24px;
  border: 2px solid #C65F2D;
  opacity: 0;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

/* 🟫 Outer Glow Aura */
.audio-button::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 32px;
  border: 2px solid rgba(198, 95, 45, 0.2); 
  opacity: 0;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

/* 🟪 Hover Interaction */
.audio-button:hover {
  filter: brightness(1.3);
  text-shadow: 0 0 12px rgba(255, 180, 255, 0.6), 0 0 24px rgba(255, 180, 255, 0.4);
  box-shadow: 0 0 40px #C65F2D;
  border-radius: 24px;
}

.audio-button:hover::before {
  opacity: 1;
  border-radius: 28px;
}

.audio-button:hover::after {
  opacity: 1;
  border-radius: 36px;
}

/* 📊 Progress Bar */
.audio-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audio-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.audio-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #ff6a00, #C65F2D);
  transition: width 0.3s ease;
  pointer-events: none;
}

/* 🔊 Volume Slider */
.audio-volume {
  width: 100px;
  height: 6px;
  background: linear-gradient(to right, #FFB47D, #FFFFCE);
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
  transition: filter 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 6px rgba(255, 180, 100, 0.3);
}

/* 🟧 Hover Glow */
.audio-volume:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 12px rgba(255, 180, 100, 0.5);
}

/* 🎛️ Thumb Styling — Chrome & Edge */
.audio-volume::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  background: #FFFFCE;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(255, 180, 100, 0.6);
  transition: transform 0.2s ease;
}

.audio-volume::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* 🎛️ Thumb Styling — Firefox */
.audio-volume::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #FFFFCE;
  border: none;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(255, 180, 100, 0.6);
}

/* 🧩 Section Container */.vinyl-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
  position: relative;
  box-shadow:
    inset 0 0 24px rgba(198, 95, 45, 0.25),
    inset 0 0 48px rgba(255, 180, 100, 0.15),
    inset 0 0 8px rgba(255, 180, 100, 0.1);
}

/* 🌫️ Soft Light Overlay */
.vinyl-disc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 3;
}

/* 🎧 Spin Animation — GPU-Optimized */
.vinyl-disc.spin {
  animation: spinVinyl 2.5s linear infinite;
}

@keyframes spinVinyl {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ================================
   🎵 MUSIC TITLE SECTION LAYOUT
   ================================ */

/* 🧩 Section Container */
.music-title-section {
  position: relative;
  width: 100%;
  padding: 80px 40px;
  background-color: #000;
  border-radius: 24px;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.05);
  overflow: visible;
  z-index: 1;
  display: flex;
  justify-content: center;
}

/* 🎞️ Left Panel */
.music-title-left {
  flex: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 20px;
  z-index: 2;
}

.musicHeader {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: #FFFFCE;
  text-shadow: 
    0 0 10px rgba(255, 150, 255, 0.6),
    0 0 20px rgba(255, 180, 255, 0.3);
  letter-spacing: 0.2em;
  margin: 0;
  padding: 2rem 0 1.5rem 0;
  pointer-events: none;
}

.musicCaption {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #FFB47D;
  text-shadow: 0 0 6px rgba(100, 200, 255, 0.3);
  letter-spacing: 1.2px;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 1rem;
}

/* 🎶 Scrollable Playlist (Right Panel) */
.music-title-right {
  flex: 1;
  max-width: 560px;
  padding-left: 40px;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.playlist-scroll-wrapper {
  position: relative;
  max-height: 560px;
  overflow: hidden;
}

/* Your scrollable content */
.playlist-scroll {
  max-height: 560px;
  overflow-y: auto;
  padding: 12px 12px 48px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  scrollbar-width: thin;
  scrollbar-color: #FFB47D transparent;
}

/* 🌫️ Fade Layers */
.playlist-scroll-wrapper::before,
.playlist-scroll-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 72px; /* deeper fade */
  pointer-events: none;
  z-index: 1;
}

/* 🔼 Top Fade */
.playlist-scroll-wrapper::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent);
}

/* 🔽 Bottom Fade — darker and longer */
.playlist-scroll-wrapper::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4), transparent);
}


/* ================================
   💿 ALBUM + TRACK CARDS
   ================================ */

/* 🎧 Album Card */
.album-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.06);
  gap: 16px;
  min-height: 96px;
}

/* 🖼 Album Cover */
.album-art {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255, 200, 150, 0.1);
  flex-shrink: 0;
}

/* 🎶 Track Info */
.track-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  height: 100%;
  padding: 4px 0;
  
}

.track-title {
  font-family: 'Oswald', sans-serif;
  text-shadow: 
    0 0 10px rgba(255, 150, 255, 0.6),
    0 0 20px rgba(255, 180, 255, 0.3);
  font-size: 1rem;
  font-weight: bold;
  color: #FFFFCE;
  margin: 0;
  line-height: 1.2;
}

.track-artist {
 
 font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #FFB47D;
  text-shadow: 0 0 6px rgba(255, 120, 60, 0.3);
  letter-spacing: 1.2px;
  line-height: 1.6;
  
   font-size: 0.85rem;

  margin: 4px 0;
}
.uiux-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.uiux-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.uiux-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.uiux-video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(255, 180, 100, 0.3);
}

  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.uiux-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.uiux-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.uiux-video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(255, 180, 100, 0.3);
} transition: all 0.3s ease;
  position: relative;
  overflow: visible;
  z-index: 10;
}

/* 🟧 Orange Ring */
.audio-button::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 24px;
  border: 2px solid #C65F2D;
  opacity: 0;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

/* 🟫 Outer Glow Aura */
.audio-button::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 32px;
  border: 2px solid rgba(198, 95, 45, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

/* 🟪 Hover Interaction */
.audio-button:hover {
  filter: brightness(1.3);
  text-shadow: 
    0 0 12px rgba(255, 180, 255, 0.6),
    0 0 24px rgba(255, 180, 255, 0.4);
  box-shadow: 0 0 40px #C65F2D;
  border-radius: 24px;
}
.audio-button:hover::before {
  opacity: 1;
  border-radius: 28px;
}
.audio-button:hover::after {
  opacity: 1;
  border-radius: 36px;
}

/* 📊 Progress Bar */
.audio-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audio-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.audio-bar {
  width: 100%;
  height: 100%;
  position: relative;
}

.audio-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #ff6a00, #C65F2D);
  transition: width 0.3s ease;
  pointer-events: none;
}

/* 🔊 Volume Slider */
.audio-volume {
  width: 80px;
  accent-color: #FFB47D;
  cursor: pointer;
  transition: filter 0.3s ease;
}
.audio-volume:hover {
  filter: brightness(1.2);
}
/* ================================
   💿 VINYL ELEMENTS — Capsule Harmony
   ================================ */

/* 🪐 Carousel Controls Wrapper */
.carousel-controls-wrapper {
  position: relative;
  overflow: visible;
  z-index: 1000;
}

/* 🪐 Vinyl Wrapper — Anchored by default */
.vinyl-wrapper {
  position: absolute;
  top: 0;
  left: -180px;
  width: 120px;
  height: 120px;
  z-index: 100;
  pointer-events: auto;
  transition: all 0.6s ease;
}

.vinyl-wrapper.vinyl-fixed {
  position: fixed !important;
  top: 20px !important;
  left: 20px !important;
  transform: none !important;
  z-index: 9999;
}

.vinyl-wrapper.re-nesting {
  animation: nestBack 0.8s ease;
}

@keyframes nestBack {
  0% {
    transform: translateY(-20px) scale(0.95);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-50%);
    opacity: 1;
  }
}

/* 🌀 Vinyl Capsule — Ring-Ready Core */
.vinyl-capsule {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
  border: 3px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 16px rgba(255, 180, 100, 0.25);
  cursor: pointer;
  position: relative;
  overflow: visible;
  z-index: 10;
  transition: all 0.3s ease;
}

/* 🟧 Orange Ring — Centered & Scaled */
.vinyl-capsule::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 144px;
  height: 144px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid #C65F2D;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 🟫 Outer Glow Aura — Ambient & Soft */
.vinyl-capsule::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(198, 95, 45, 0.2);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 🟪 Hover Interaction — Glow Reveal */
.vinyl-capsule:hover {
  filter: brightness(1.3);
  text-shadow:
    0 0 12px rgba(255, 180, 255, 0.6),
    0 0 24px rgba(255, 180, 255, 0.4);
  box-shadow: 0 0 40px #C65F2D;
}

.vinyl-capsule:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.vinyl-capsule:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}


/* 🖼️ Vinyl Disc — Injected Album Image */
.vinyl-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  position: relative;
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
  box-shadow:
    inset 0 0 24px rgba(198, 95, 45, 0.25),
    inset 0 0 48px rgba(255, 180, 100, 0.15),
    inset 0 0 8px rgba(255, 180, 100, 0.1);
}

/* 🕳️ Center Hole — Matches Fashion Detail Precision */
.vinyl-disc::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background-color: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  box-shadow:
    0 0 4px rgba(255, 255, 255, 0.1),
    inset 0 0 2px rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

/* 🌫️ DVD.png Soft Light Overlay — Matches Carousel Texture */
.vinyl-disc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-image: url("images/DVD.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode:soft-light;
  opacity:1;
  pointer-events: pointer;
  z-index: 3;
}

/* 🎙️ Vinyl Metadata — Matches Fashion Caption Logic */
.vinyl-meta {
  position: absolute;
  top: 50%;
  left: 160px;
  transform: translateY(-50%);
  color: #FFFFCE;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 6px rgba(255, 180, 100, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.vinyl-wrapper.revealed .vinyl-meta {
  opacity: 1;
}

.vinyl-title {
  font-weight: bold;
}

.vinyl-artist {
  font-style: italic;
  font-size: 0.8rem;
  color: #FFD8B0;
}
.music-gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.music-gallery-modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* ❌ Close Button — Styled Like .gallery-close */
.music-gallery-close {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 2rem;
  font-family: 'Oswald', sans-serif;
  color: #FFFFCE;
  background-color: rgba(255, 255, 255, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px 20px;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(255, 180, 100, 0.3);
  transition: all 0.3s ease;
  z-index: 1001;
  overflow: visible;
}

/* 🟧 Orange Ring — ::before */
.music-gallery-close::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 12px;
  border: 2px solid #C65F2D;
  opacity: 0;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

/* 🟫 Outer Glow Aura — ::after */
.music-gallery-close::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 12px;
  border: 2px solid rgba(198, 95, 45, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

/* 🟪 Hover Interaction — Cosmic Pulse */
.music-gallery-close:hover {
  filter: brightness(1.3);
  text-shadow:
    0 0 12px rgba(255, 180, 255, 0.6),
    0 0 24px rgba(255, 180, 255, 0.4);
  box-shadow: 0 0 40px #C65F2D;
  border-radius: 50%;
}

.music-gallery-close:hover::before {
  opacity: 1;
  border-radius: 50%;
}

.music-gallery-close:hover::after {
  opacity: 1;
  border-radius: 50%;
}

/* 💿 Disc Container */
.music-gallery-disc {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, #222 0%, #000 100%);
  box-shadow: 0 0 40px rgba(255, 180, 100, 0.3);
  overflow: hidden;
  z-index: 1;
}



/* 💿 DVD Overlay */
.music-gallery-disc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-image: url("images/DVD.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: soft-light;
  opacity: 0.6;
  pointer-events: none;
  z-index: 3;
}



/* 🎨 Album Image with Double Rings */
.music-gallery-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  z-index: 2;
  transition: filter 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* 🟧 Orange Ring — ::before */
.music-gallery-image::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  bottom: -12px;
  border-radius: 50%;
  border: 2px solid #C65F2D;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
}

/* 🟫 Outer Glow Aura — ::after */
.music-gallery-image::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 50%;
  border: 2px solid rgba(198, 95, 45, 0.2);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease, border-radius 0.3s ease;
}

/* 🟪 Hover Interaction — Reveal Both Rings */
.music-gallery-image:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 40px #C65F2D;
}

.music-gallery-image:hover::before {
  opacity: 1;
  border-radius: calc(50% + 12px);
}

.music-gallery-image:hover::after {
  opacity: 1;
  border-radius: calc(50% + 24px);
}

/* 🎙️ Caption Styling */
.music-gallery-caption {
  margin-top: 20px;
  text-align: center;
  color: #FFFFCE;
  font-family: 'Oswald', sans-serif;
  text-shadow: 0 0 6px rgba(255, 180, 100, 0.4);
}

.music-gallery-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.music-gallery-artist {
  font-size: 1rem;
  font-style: italic;
  color: #FFD8B0;
}


/* 🌌 Music Section Starfield */
.music-starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}


/* 🧩 Section Container */
.content-title-section {
  position: relative;
  width: 100%;
  padding: 80px 40px;
  background-color: #0f0f0f;
  border-radius: 24px;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.content-title-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/landing/bh2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

/* 🎞️ Centered Content Block */
.content-title-left {
  flex: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-right: 44px;
  box-sizing: border-box;
  z-index: 2;
}

.contentHeader {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  color: #FFFFCE;
  text-shadow: 0 0 10px rgba(255, 150, 255, 0.6);
  letter-spacing: 0.2em;
  margin: 0;
  padding: 2rem 0 1.5rem 0;
  pointer-events: none;
}

.contentCaption {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #FFB47D;
  text-shadow: 0 0 6px rgba(255, 120, 60, 0.3);
  letter-spacing: 1.2px;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 1rem;
}

/* ✨ Twinkle Text */
.twinkle {
  display: inline-block;
  color: #FFE6C0;
  text-shadow: 0 0 6px rgba(255, 180, 100, 0.5), 0 0 12px rgba(255, 160, 80, 0.3);
  animation: twinkleBob 6s infinite ease-in-out;
  transform-origin: center;
  opacity: 1;
  font-size: inherit;
}

@keyframes twinkleBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-2px); }
}

/* 📺 Right Panel — Capsule Scroll */
.content-title-right {
  flex: 1;
  max-width: 480px;
  position: relative;
 
  z-index: 1;
  overflow: hidden;
}

.content-title-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/landing/bh2.png');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

/* 🌀 Capsule Viewport */
.capsule-viewport {

  width: 480px;
  min-width: 480px;
  max-width: 480px;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* 🌀 Capsule Stage */
.capsule-stage {
  display: flex;
  flex-direction: column;
  gap: 40px;

}

/* 🧩 Capsule Container */

.video-container {
  width: 100%;
  height: 853px;
  position: relative;

  overflow:visible;
  scroll-snap-align: start;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.08);
}

/* 🎬 Video Styling */
.clip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: 0;
}

.capsule-viewport {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.capsule-viewport::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}
.home-link-button {
  text-decoration: none;
  display: inline-block;
}

.home-link-button h1 {
  margin: 0;
}
.comingHome {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: #FFFFCE;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.6rem 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, background 0.3s ease;
  margin-top: 24px;
  text-align: center;
}

.comingHome:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}
.video-capsule {
  padding: 80px 40px;
  background-color: #0f0f0f;
  text-align: center;
}

.capsuleHeader {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #FFFFCE;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 12px rgba(255, 150, 255, 0.4);
}

.capsuleCaption {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #FFB47D;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.capsule-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.capsule-item {
  position: relative;
  width: 300px;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.capsule-item:hover {
  transform: scale(1.03);
}

.capsule-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.capsule-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  padding: 12px;
  backdrop-filter: blur(6px);
}

.capsule-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #FFFFCE;
  letter-spacing: 0.1em;
}
.film-section {
  padding: 80px 40px;
  background-color: #0f0f0f;
  text-align: center;
}

.film-header {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #FFFFCE;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 12px rgba(255, 150, 255, 0.4);
}

.film-caption {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #FFB47D;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.film-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.film-item {
padding-bottom:1rem;
  position: relative;
  width: 30vw;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
}

.film-item:hover {
  transform: scale(1.03);
}

.film-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.film-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  padding: 12px;
  backdrop-filter: blur(6px);
}

.film-label {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  color: #FFFFCE;
  letter-spacing: 0.1em;
}
.back-to-top {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: #FFFFCE;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFB47D;
  box-shadow: 0 0 12px rgba(255, 180, 125, 0.3);
}
/* 🌌 ABOUT PAGE CAPSULE */
.about-page {
  padding: 80px 40px;
  background-color: #0a0a0a;
  color: #FFB47D;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  line-height: 1.6;
}

.about-header {
  font-size: 2.5rem;
  color: #FFFFCE;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-shadow: 0 0 12px rgba(255, 150, 255, 0.4);
}

.about-caption {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #FFB47D;
}

.about-highlight {
  color: #00f0ff;
  text-shadow: 0 0 8px #00f0ff;
}

.about-block {
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
}

.uiux-layout-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Wireframe Section */
.uiux-wireframes {
  text-align: center;
  padding: 0 20px;
   z-index: 1;
}

.uiux-subheading {
font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  color: #FFFFCE;
  letter-spacing: 0.2em;
  margin: 0;
  text-shadow: 0 0 16px rgba(255, 180, 100, 0.4);
  padding-bottom:1rem;

}

/* Wireframe Row Layout */
.uiux-wireframe-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Wireframe Image Styling */
.uiux-wireframe-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 360px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
  opacity: 1; /* ✅ Force full visibility */
  visibility: visible !important; /* ✅ Ensure it's not hidden */
}

.uiux-wireframe-img {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}


:root {
  --zoom-scale: 1;
}