/* =========================================================
   JOHB ASHAR — PREMIUM MUSIC EXPERIENCE
   Core theme, navigation and cinematic hero
   ========================================================= */

:root {
  --color-bg: #050505;
  --color-bg-deep: #020202;
  --color-text: #ffffff;
  --color-muted: #a0a0a0;
  --color-gold: #b89669;
  --color-copper: #d37330;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  animation: globalFadeIn 1.2s var(--ease-premium) forwards;
}

button,
input,
select,
textarea {
  font: inherit;
}

.bg-darker {
  background: var(--color-bg-deep);
}

/* ---------- Core animations ---------- */
@keyframes globalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgPan {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

@keyframes titleFade {
  from {
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: 12px;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 2px;
  }
}

@keyframes musicPulse {
  0%,
  100% {
    box-shadow: 0 25px 60px rgba(184, 150, 105, 0.15);
    transform: scale(1.02);
  }
  50% {
    box-shadow: 0 35px 90px rgba(184, 150, 105, 0.5);
    transform: scale(1.05);
  }
}

@keyframes pulsePlay {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(184, 150, 105, 0);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(184, 150, 105, 0.9);
  }
}

@keyframes shimmerLine {
  from {
    background-position: -300px;
  }
  to {
    background-position: 300px;
  }
}

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

@keyframes glassShimmer {
  from {
    left: -100%;
  }
  to {
    left: 200%;
  }
}

/* ---------- Glass navigation ---------- */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 1rem clamp(1.5rem, 4vw, 4rem);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.12));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: titleFade 1.1s var(--ease-premium) forwards;
}

.logo,
.footer-logo {
  font-family: "Cinzel", serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.logo {
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease;
}

.logo:hover {
  color: var(--color-gold);
  text-shadow: 0 0 24px rgba(184, 150, 105, 0.42);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3rem);
  list-style: none;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.72;
  transition:
    color 0.35s ease,
    opacity 0.35s ease,
    text-shadow 0.35s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 5px;
  left: 50%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-copper), var(--color-gold));
  box-shadow: 0 0 12px rgba(184, 150, 105, 0.55);
  transition:
    right 0.35s var(--ease-premium),
    left 0.35s var(--ease-premium);
}

.main-nav a:hover,
.main-nav a.active-link {
  color: var(--color-gold);
  opacity: 1;
  text-shadow: 0 0 15px rgba(184, 150, 105, 0.4);
}

.main-nav a:hover::after,
.main-nav a.active-link::after {
  right: 0;
  left: 0;
}

.main-nav a:focus-visible,
.nav-arrow:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 5px;
}

/* ---------- Cinematic index hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(8.5rem, 14vw, 11rem) clamp(1.25rem, 6vw, 6rem) 5rem;
  background-image:
    radial-gradient(
      circle at 50% 42%,
      rgba(211, 115, 48, 0.14),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.88)),
    url("images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  animation: bgPan 24s infinite alternate linear;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 28%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--color-bg));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

.hero-content h1 {
  margin-bottom: 1.25rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: clamp(1px, 0.25vw, 4px);
  text-wrap: balance;
  text-shadow:
    0 15px 40px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(184, 150, 105, 0.12);
}

.hero-content .subtitle {
  max-width: 760px;
  font-size: clamp(0.68rem, 1.2vw, 0.92rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: clamp(4px, 0.7vw, 8px);
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    var(--color-copper),
    #ffffff,
    var(--color-gold)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(50px, 4vw, 65px);
  height: clamp(50px, 4vw, 65px);
  color: var(--color-text);
  font-size: 1.35rem;
  cursor: pointer;
  background: rgba(8, 8, 8, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(-50%);
  transition:
    transform 0.35s var(--ease-premium),
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.nav-arrow:hover {
  background: rgba(184, 150, 105, 0.3);
  border-color: var(--color-gold);
  box-shadow: 0 0 28px rgba(184, 150, 105, 0.36);
  transform: translateY(-50%) scale(1.08);
}

.left-arrow {
  left: clamp(1rem, 4vw, 4rem);
}

.right-arrow {
  right: clamp(1rem, 4vw, 4rem);
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.album-section:nth-child(odd) .album-layout {
  transition-delay: 0.1s;
}
.album-section:nth-child(even) .album-layout {
  transition-delay: 0.3s;
}

/* ---------- Reusable Sections ---------- */
.content-section {
  padding: 8rem 4rem;
  background: none;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 4rem;
  text-align: center;
}

.section-text {
  max-width: 650px;
  margin-bottom: 2.5rem;
  color: #a0a0a0;
  font-size: 1.05rem;
  line-height: 1.9;
  transition: color 0.3s ease;
}

.section-text:hover {
  color: #ffffff;
}

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

.split-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.text-block,
.media-block {
  flex: 1;
}
.center-layout {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ---------- Buttons & Video ---------- */
.btn-outline {
  display: inline-block;
  padding: 1.2rem 3rem;
  border: 1px solid rgba(184, 150, 105, 0.5);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  background: rgba(184, 150, 105, 0.05);
  backdrop-filter: blur(5px);
}
.btn-outline:hover {
  background: #b89669;
  color: #000;
  box-shadow: 0 10px 30px rgba(184, 150, 105, 0.4);
  transform: translateY(-3px);
}
.youtube-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  background: #000000;
  transition: transform 0.4s ease;
}
.youtube-embed:hover {
  transform: scale(1.02);
  border-color: rgba(184, 150, 105, 0.3);
}

/* ---------- Music Page Background ---------- */
.music-page-content {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 8rem;
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(184, 150, 105, 0.06) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(184, 150, 105, 0.06) 0%,
      transparent 40%
    ),
    linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.98)),
    url("images/logo.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: bgPan 40s infinite alternate linear;
}

/* ---------- Elite Layout & Album Art ---------- */
.album-layout {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: start;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
}
.album-art-wrap {
  position: sticky;
  top: 140px;
  perspective: 1000px;
}
.album-cover-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s ease,
    filter 0.6s ease;
  filter: grayscale(20%) contrast(1.1);
}
.album-layout:hover .album-cover-img {
  transform: scale(1.03) rotateY(-5deg) rotateX(2deg);
  box-shadow: 0 40px 90px rgba(184, 150, 105, 0.2);
  filter: grayscale(0%) contrast(1.2);
}
.album-layout.is-playing .album-cover-img {
  animation: musicPulse 2s infinite ease-in-out;
  filter: grayscale(0%) contrast(1.2) brightness(1.1);
}
.album-heading {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.album-artist {
  color: #b89669;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

/* ---------- Elite Glassmorphism Player ---------- */
.custom-audio-player {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.custom-audio-player::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    transparent
  );
  transform: skewX(-20deg);
  transition: all 0.8s ease;
}
.custom-audio-player:hover::before {
  animation: glassShimmer 1.5s forwards;
}
.custom-audio-player:hover {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(184, 150, 105, 0.2);
  transform: translateY(-8px);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(184, 150, 105, 0.1);
}
.album-layout.is-playing .custom-audio-player {
  border: 1px solid rgba(184, 150, 105, 0.4);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(184, 150, 105, 0.15);
}

/* Controls */
.player-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.control-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.control-icon {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.control-icon:hover {
  opacity: 1;
  color: #b89669;
  transform: scale(1.2);
}
.play-btn-large {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  opacity: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.play-btn-large:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(184, 150, 105, 0.8);
  color: #000000;
}
.album-layout.is-playing .play-btn-large {
  animation: pulsePlay 2s ease-in-out infinite;
}
.current-title {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #d37330, #ffffff, #b89669);
  background-size: 300px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerLine 3s linear infinite;
}

/* SVG Icons */
.player-icon,
.track-play-icon {
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
  pointer-events: none;
  transition: fill 0.3s ease;
}
.play-btn-large .player-icon {
  width: 34px;
  height: 34px;
}
.track-play-icon {
  width: 20px;
  height: 20px;
}

/* ---------- Progress Slider ---------- */
.progress-container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 1rem;
  color: #a0a0a0;
  font-size: 0.8rem;
  font-family: monospace;
  letter-spacing: 1px;
}
.seek-slider {
  -webkit-appearance: none;
  appearance: none;
  flex: 1;
  width: 100%;
  height: 6px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.seek-slider:hover {
  transform: scaleY(1.4);
}
.seek-slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}
.seek-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b89669;
  box-shadow: -1000px 0 0 1000px #b89669;
  transition: 0.2s ease;
}

/* ---------- Touch-friendly Elite Playlist ---------- */
.playlist-container {
  list-style: none;
  padding-top: 1rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 15px;
  scrollbar-width: thin;
  scrollbar-color: #b89669 transparent;
}
.playlist-container::-webkit-scrollbar {
  width: 4px;
}
.playlist-container::-webkit-scrollbar-track {
  background: transparent;
}
.playlist-container::-webkit-scrollbar-thumb {
  background: rgba(184, 150, 105, 0.4);
  border-radius: 10px;
}
.playlist-item {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 8px;
  margin-bottom: 5px;
}
.playlist-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(184, 150, 105, 0.15), transparent);
  transition: width 0.4s ease;
  z-index: 0;
}
.playlist-item:hover::before {
  width: 100%;
}
.playlist-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.02);
}
.playlist-item.active {
  background: rgba(184, 150, 105, 0.08);
  border-left: 4px solid #b89669;
  padding-left: 1.5rem;
  transform: translateX(8px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.track-number {
  position: relative;
  z-index: 1;
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.track-info {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.track-title {
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.track-artist {
  color: #777777;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}
.track-duration {
  position: relative;
  z-index: 1;
  color: #777777;
  font-size: 0.85rem;
  padding-left: 1rem;
  font-family: monospace;
}
.playlist-item.active .track-title,
.playlist-item.active .track-number,
.playlist-item.active .track-artist {
  color: #d37330;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 1rem 1rem;
  background: #000000;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-logo {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  opacity: 0.5;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
}
.social-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.social-links a:hover {
  color: #b89669;
  transform: translateY(-3px);
}
.copyright {
  color: #444;
  font-size: 0.75rem;
  letter-spacing: 2px;
}

/* =========================================================
   INDEX HERO ANIMATED MUSIC RING
   ========================================================= */

.hero-audio-wrap {
  position: relative;
  width: min(760px, 92vw);
  height: min(760px, 92vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title-layer {
  position: relative;
  z-index: 5;
  text-align: center;
  pointer-events: none;
}

.hero-audio-orbit {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-audio-orbit::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 105, 0.16);
  box-shadow:
    0 0 45px rgba(211, 115, 48, 0.15),
    inset 0 0 35px rgba(184, 150, 105, 0.08);
  animation: heroRingRotate 18s linear infinite;
}

.hero-audio-orbit::after {
  content: "";
  position: absolute;
  width: 62%;
  height: 62%;
  border-radius: 50%;
  border: 1px solid rgba(211, 115, 48, 0.15);
  box-shadow:
    0 0 55px rgba(211, 115, 48, 0.12),
    inset 0 0 55px rgba(0, 0, 0, 0.65);
  animation: heroRingPulse 3.8s ease-in-out infinite;
}

.hero-audio-bars {
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  animation: heroBarsRotate 26s linear infinite;
}

.hero-audio-bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: var(--bar-height);
  background: linear-gradient(
    to top,
    rgba(211, 115, 48, 0.12),
    rgba(211, 115, 48, 0.95),
    rgba(255, 185, 83, 0.95)
  );
  border-radius: 999px;
  transform: translate(-50%, -100%) rotate(var(--bar-angle)) translateY(-305px);
  transform-origin: 50% 100%;
  box-shadow:
    0 0 10px rgba(211, 115, 48, 0.9),
    0 0 22px rgba(184, 150, 105, 0.35);
  opacity: 0.85;
  animation: heroEqualizer var(--bar-speed) ease-in-out infinite;
  animation-delay: var(--bar-delay);
}

.hero-audio-glow {
  position: absolute;
  width: 72%;
  height: 72%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(211, 115, 48, 0.12) 0%, transparent 52%),
    radial-gradient(circle, rgba(184, 150, 105, 0.08) 0%, transparent 70%);
  filter: blur(3px);
  animation: heroGlowPulse 4.5s ease-in-out infinite;
}

@keyframes heroEqualizer {
  0%,
  100% {
    height: calc(var(--bar-height) * 0.45);
    opacity: 0.38;
  }

  35% {
    height: calc(var(--bar-height) * 1.45);
    opacity: 1;
  }

  65% {
    height: calc(var(--bar-height) * 0.75);
    opacity: 0.65;
  }
}

@keyframes heroBarsRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroRingRotate {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes heroRingPulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes heroGlowPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.08);
  }
}

/* Make sure the title sits nicely inside the ring */
.hero-audio-wrap h1 {
  position: relative;
  z-index: 5;
  margin-bottom: 1rem;
}

.hero-audio-wrap .subtitle {
  position: relative;
  z-index: 5;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-audio-wrap {
    width: 92vw;
    height: 92vw;
    max-height: 520px;
  }

  .hero-audio-bar {
    width: 3px;
    transform: translate(-50%, -100%) rotate(var(--bar-angle))
      translateY(-190px);
  }

  .hero-audio-wrap h1 {
    font-size: 3.3rem;
  }

  .hero-audio-wrap .subtitle {
    font-size: 0.65rem;
    letter-spacing: 4px;
  }
}

@media (max-width: 480px) {
  .hero-audio-wrap {
    width: 96vw;
    height: 96vw;
    max-height: 430px;
  }

  .hero-audio-bar {
    width: 2px;
    transform: translate(-50%, -100%) rotate(var(--bar-angle))
      translateY(-155px);
  }

  .hero-audio-wrap h1 {
    font-size: 2.6rem;
  }
}

/* =========================================================
   FIXED BOTTOM MUSIC BAR
   ========================================================= */

body {
  padding-bottom: 110px;
}

.bottom-music-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  min-height: 88px;
  padding: 0.9rem 2rem;
  background: rgba(10, 8, 3, 0.92);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(184, 150, 105, 0.35);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.75);
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(260px, 1fr);
  gap: 1.5rem;
  align-items: center;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.bottom-music-bar.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.bottom-track-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.bottom-cover {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(184, 150, 105, 0.35);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55);
}

.bottom-text {
  min-width: 0;
}

.bottom-song-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottom-album-title {
  margin-top: 0.25rem;
  color: #b89669;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bottom-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.bottom-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 105, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
}

.bottom-play-btn {
  width: 52px;
  height: 52px;
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  font-size: 1.2rem;
}

.bottom-btn:hover {
  border-color: rgba(184, 150, 105, 0.8);
  color: #b89669;
}

.bottom-play-btn:hover {
  color: #000000;
}

.bottom-progress-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  color: #b8b8b8;
  font-size: 0.75rem;
  font-family: monospace;
}

.bottom-seek-slider {
  width: 100%;
  max-width: 260px;
  accent-color: #b89669;
}

/* Mobile bottom bar */
@media (max-width: 768px) {
  body {
    padding-bottom: 145px;
  }

  .bottom-music-bar {
    min-height: 128px;
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "info controls"
      "progress progress";
    gap: 0.75rem 1rem;
  }

  .bottom-track-info {
    grid-area: info;
  }

  .bottom-controls {
    grid-area: controls;
    gap: 0.55rem;
  }

  .bottom-progress-wrap {
    grid-area: progress;
    justify-content: center;
    width: 100%;
  }

  .bottom-cover {
    width: 46px;
    height: 46px;
  }

  .bottom-song-title {
    font-size: 0.85rem;
    max-width: 170px;
  }

  .bottom-album-title {
    font-size: 0.65rem;
    max-width: 170px;
  }

  .bottom-btn {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .bottom-play-btn {
    width: 46px;
    height: 46px;
    font-size: 1.05rem;
  }

  .bottom-seek-slider {
    max-width: none;
  }
}

/* =========================================================
   PLAYER CONTROL ICON FIX
   ========================================================= */

.control-buttons {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.7rem !important;
  margin-bottom: 1.7rem !important;
}

.control-icon {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(184, 150, 105, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  padding: 0 !important;
  cursor: pointer !important;
  line-height: 1 !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55) !important;
}

.play-btn-large {
  width: 82px !important;
  height: 82px !important;
  min-width: 82px !important;
  min-height: 82px !important;
  background: linear-gradient(145deg, #ffffff, #dedede) !important;
  color: #000000 !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
}

.player-svg {
  width: 28px !important;
  height: 28px !important;
  display: block !important;
  fill: currentColor !important;
  color: inherit !important;
  pointer-events: none !important;
}

.play-btn-large .player-svg {
  width: 36px !important;
  height: 36px !important;
  color: #000000 !important;
  fill: #000000 !important;
}

.small-player-svg {
  width: 26px !important;
  height: 26px !important;
  color: #ffffff !important;
  fill: #ffffff !important;
}

.prev-btn:hover,
.next-btn:hover {
  background: rgba(184, 150, 105, 0.22) !important;
  color: #b89669 !important;
  border-color: rgba(184, 150, 105, 0.75) !important;
  transform: scale(1.08);
}

.prev-btn:hover .small-player-svg,
.next-btn:hover .small-player-svg {
  color: #b89669 !important;
  fill: #b89669 !important;
}

.play-btn-large:hover {
  transform: scale(1.08);
  background: #ffffff !important;
}

/* Mobile */
@media (max-width: 768px) {
  .control-buttons {
    gap: 1.2rem !important;
  }

  .control-icon {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }

  .play-btn-large {
    width: 74px !important;
    height: 74px !important;
    min-width: 74px !important;
    min-height: 74px !important;
  }

  .small-player-svg {
    width: 23px !important;
    height: 23px !important;
  }

  .play-btn-large .player-svg {
    width: 32px !important;
    height: 32px !important;
  }
}

/* Mobile layout */
@media (max-width: 768px) {
  .control-buttons {
    gap: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .control-icon {
    width: 46px;
    height: 46px;
  }

  .play-btn-large {
    width: 76px;
    height: 76px;
  }

  .player-symbol {
    font-size: 1.25rem;
  }

  .play-btn-large .player-symbol {
    font-size: 1.85rem;
  }

  .play-btn-large .pause-symbol {
    font-size: 1.95rem;
  }

  .current-title {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 0.5rem;
  }

  .progress-container {
    gap: 0.65rem;
    font-size: 0.75rem;
  }

  .seek-slider {
    height: 5px;
  }

  .playlist-item {
    min-height: 72px;
    padding: 1rem 0.85rem;
    border-radius: 12px;
  }

  .track-info .title,
  .playlist-item .title {
    font-size: 0.92rem;
    line-height: 1.35;
    letter-spacing: 0.5px;
  }

  .track-info .artist,
  .playlist-item .artist {
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .custom-audio-player {
    padding: 2rem 1rem;
  }

  .control-buttons {
    gap: 1rem;
  }

  .control-icon {
    width: 44px;
    height: 44px;
  }

  .play-btn-large {
    width: 72px;
    height: 72px;
  }

  .small-symbol {
    font-size: 1.1rem;
  }

  .play-btn-large .player-symbol {
    font-size: 1.75rem;
  }

  .album-heading {
    font-size: 2.1rem;
  }

  .album-artist {
    font-size: 0.75rem;
    letter-spacing: 2.5px;
  }

  .playlist-container {
    max-height: 340px;
  }
}

/* =========================================================
   ABOUT PAGE FIX
   ========================================================= */

.about-page-content {
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 6rem;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(184, 150, 105, 0.08),
      transparent 35%
    ),
    linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.98)),
    url("images/hero2.jpg");
  background-size: cover;
  background-position: center;
}

.about-page-content .content-section {
  padding-top: 4rem;
}

.about-page-content .split-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(184, 150, 105, 0.25);
}

.about-page-content .text-block {
  max-width: 650px;
}

.about-page-content .section-title {
  text-align: left;
  margin-bottom: 2rem;
}

.about-page-content .section-text {
  color: #b8b8b8;
  font-size: 1.05rem;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .about-page-content {
    padding-top: 160px;
  }

  .about-page-content .split-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
    padding: 0 1.5rem;
  }

  .about-image {
    max-width: 360px;
    margin: 0 auto;
  }

  .about-page-content .section-title {
    text-align: center;
  }

  .about-page-content .text-block {
    max-width: 100%;
  }
}

/* =========================================================
   ELITE MOBILE RESPONSIVENESS
   ========================================================= */
@media (max-width: 1024px) {
  .album-layout {
    grid-template-columns: 320px 1fr;
    gap: 3rem;
  }
  .content-section {
    padding: 6rem 2rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 1.5rem 0;
    flex-direction: column;
    gap: 1.2rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .main-nav {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .main-nav::-webkit-scrollbar {
    display: none;
  }
  .main-nav ul {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 2.5rem;
    width: max-content;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .nav-arrow {
    width: 50px;
    height: 50px;
  }
  .left-arrow {
    left: 1rem;
  }
  .right-arrow {
    right: 1rem;
  }
  .hero-content {
    padding: 0 3rem;
  }
  .hero-content h1 {
    font-size: 4rem;
  }

  .split-layout {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
  .media-block {
    width: 100%;
  }

  .album-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .album-art-wrap {
    position: static;
    max-width: 450px;
    margin: 0 auto;
  }
  .album-heading {
    font-size: 2.8rem;
    text-align: center;
  }
  .album-artist {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .music-page-content {
    padding-top: 150px;
    background-attachment: scroll;
  }
  .content-section {
    padding: 4rem 1rem;
  }

  .album-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .album-art-wrap {
    position: static;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
  .album-cover-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  }
  .album-heading {
    font-size: 2.4rem;
    line-height: 1.1;
    text-align: center;
  }

  .custom-audio-player {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(25px);
  }
  .control-icon {
    padding: 10px;
  }
  .play-btn-large {
    width: 70px;
    height: 70px;
  }
  .play-btn-large .player-icon {
    width: 30px;
    height: 30px;
  }
  .current-title {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .progress-container {
    gap: 0.8rem;
  }

  .playlist-container {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 1rem;
    padding-right: 8px;
  }
  .playlist-item {
    grid-template-columns: 35px 1fr;
    width: 100%;
    padding: 1.2rem 0.5rem;
    gap: 0.8rem;
  }
  .playlist-item.active {
    margin: 0;
    padding-left: 1rem;
    transform: translateX(4px);
  }
  .track-duration {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: fixed;
    padding: 1.2rem 0;
  }
  .music-page-content {
    padding-top: 130px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
    letter-spacing: 0;
  }
  .hero-content .subtitle {
    font-size: 0.6rem;
    letter-spacing: 4px;
  }
  .hero-content {
    padding: 0 2rem;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    line-height: 1.2;
  }
  .content-section {
    padding: 3.5rem 0;
  }

  .custom-audio-player {
    border-radius: 0;
    border-left: none;
    border-right: none;
    background: rgba(10, 10, 10, 0.6);
  }
  .album-art-wrap {
    padding: 0 1.5rem;
    max-width: 320px;
  }

  .album-heading {
    font-size: 2rem;
    margin-top: 0.5rem;
  }
  .play-btn-large {
    width: 65px;
    height: 65px;
  }
  .current-title {
    letter-spacing: 1px;
    font-size: 0.85rem;
  }

  .seek-slider::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
    margin-top: -5px;
    box-shadow: none;
    border: 2px solid #fff;
  }
  .seek-slider {
    height: 4px;
  }
}

/* ---------- Mobile audio fallback ---------- */
.native-audio {
  display: none;
  width: 100%;
  margin-top: 1rem;
}

.native-audio.show-native-audio {
  display: block;
}

.audio-fallback {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(184, 150, 105, 0.35);
  border-radius: 12px;
  background: rgba(184, 150, 105, 0.08);
  color: #ffffff;
  text-align: center;
}

.audio-fallback.show {
  display: block;
}

.audio-fallback p {
  margin-bottom: 0.75rem;
  color: #d7d7d7;
  font-size: 0.9rem;
}

.audio-fallback a {
  color: #b89669;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}

.audio-fallback a:hover {
  text-decoration: underline;
}

/* =========================================================
   FIXED AUDIO PLAYER BUTTONS - DESKTOP + MOBILE
   ========================================================= */
.control-buttons {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 1.55rem !important;
  margin-bottom: 1.7rem !important;
}

.control-icon {
  -webkit-appearance: none !important;
  appearance: none !important;
  -webkit-tap-highlight-color: transparent;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  padding: 0 !important;
  border: 1px solid rgba(184, 150, 105, 0.35) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.075) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  line-height: 1 !important;
  font-family: "Montserrat", sans-serif !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45) !important;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease !important;
}

.play-btn-large {
  width: 82px !important;
  height: 82px !important;
  min-width: 82px !important;
  min-height: 82px !important;
  background: radial-gradient(
    circle at 35% 25%,
    #ffffff 0%,
    #f2f2f2 35%,
    #d4d4d4 100%
  ) !important;
  color: #050505 !important;
  border: 1px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.72),
    0 0 35px rgba(184, 150, 105, 0.22) !important;
}

.player-symbol {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  color: inherit !important;
  font-size: 1.42rem !important;
  line-height: 1 !important;
  pointer-events: none !important;
  transform: translateX(1px);
}

.play-btn-large .player-symbol {
  font-size: 2.05rem !important;
  color: #050505 !important;
  transform: translateX(2px);
}

.play-btn-large .pause-symbol {
  font-size: 2.05rem !important;
  font-weight: 800 !important;
  transform: translateX(0);
}

.small-symbol {
  font-size: 1.22rem !important;
  transform: translateX(0);
}

.control-icon:hover,
.control-icon:focus-visible {
  background: rgba(184, 150, 105, 0.24) !important;
  border-color: rgba(184, 150, 105, 0.75) !important;
  color: #b89669 !important;
  transform: scale(1.08) !important;
  outline: none !important;
}

.play-btn-large:hover,
.play-btn-large:focus-visible {
  color: #050505 !important;
  background: #ffffff !important;
}

.album-layout.is-playing .play-btn-large {
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.75),
    0 0 48px rgba(184, 150, 105, 0.55) !important;
}

.track-number .track-index {
  color: inherit;
}

@media (max-width: 768px) {
  .control-buttons {
    gap: 1.15rem !important;
    margin-bottom: 1.45rem !important;
  }

  .control-icon {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }

  .play-btn-large {
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    min-height: 76px !important;
  }

  .player-symbol {
    font-size: 1.25rem !important;
  }

  .play-btn-large .player-symbol {
    font-size: 1.85rem !important;
  }

  .play-btn-large .pause-symbol {
    font-size: 1.9rem !important;
  }

  .current-title {
    font-size: 0.95rem !important;
    line-height: 1.45 !important;
    padding: 0 0.5rem !important;
  }
}

@media (max-width: 480px) {
  .control-buttons {
    gap: 0.95rem !important;
  }

  .control-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

  .play-btn-large {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    min-height: 72px !important;
  }

  .small-symbol {
    font-size: 1.08rem !important;
  }

  .play-btn-large .player-symbol {
    font-size: 1.75rem !important;
  }

  .play-btn-large .pause-symbol {
    font-size: 1.78rem !important;
  }
}

/* =========================================================
   IPHONE SAFE BOTTOM BAR SVG BUTTON FIX
   Keeps bottom bar buttons matching the main player.
   ========================================================= */

.bottom-controls {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.85rem !important;
}

.bottom-btn {
  -webkit-appearance: none !important;
  appearance: none !important;
  width: 50px !important;
  height: 50px !important;
  min-width: 50px !important;
  min-height: 50px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(184, 150, 105, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  cursor: pointer !important;
  line-height: 1 !important;
  font-size: 0 !important;
  -webkit-tap-highlight-color: transparent !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55) !important;
}

.bottom-play-btn {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
  background: linear-gradient(145deg, #ffffff, #dcdcdc) !important;
  color: #000000 !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
}

.bottom-btn .player-svg,
.bottom-btn .small-player-svg,
.bottom-btn svg {
  width: 24px !important;
  height: 24px !important;
  display: block !important;
  fill: currentColor !important;
  color: inherit !important;
  pointer-events: none !important;
}

.bottom-play-btn .player-svg,
.bottom-play-btn svg {
  width: 32px !important;
  height: 32px !important;
  fill: #000000 !important;
  color: #000000 !important;
}

.bottom-btn:hover,
.bottom-btn:focus-visible {
  border-color: rgba(184, 150, 105, 0.8) !important;
  color: #b89669 !important;
  transform: scale(1.06) !important;
  outline: none !important;
}

.bottom-play-btn:hover,
.bottom-play-btn:focus-visible {
  color: #000000 !important;
}

.bottom-play-btn:hover svg,
.bottom-play-btn:focus-visible svg {
  fill: #000000 !important;
  color: #000000 !important;
}

@media (max-width: 768px) {
  .bottom-controls {
    gap: 0.75rem !important;
  }

  .bottom-btn {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
  }

  .bottom-play-btn {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
  }

  .bottom-btn .player-svg,
  .bottom-btn .small-player-svg,
  .bottom-btn svg {
    width: 22px !important;
    height: 22px !important;
  }

  .bottom-play-btn .player-svg,
  .bottom-play-btn svg {
    width: 30px !important;
    height: 30px !important;
  }
}

@media (max-width: 430px) {
  .bottom-controls {
    gap: 0.55rem !important;
  }

  .bottom-btn {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
  }

  .bottom-play-btn {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
  }
}

/* =========================================================
   BOTTOM BAR FORCE SHOW FIX - v1300
   ========================================================= */
.bottom-music-bar.show {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  display: grid !important;
}

.bottom-music-bar {
  visibility: visible;
}

.bottom-btn .player-svg,
.bottom-btn svg {
  display: block !important;
  fill: currentColor !important;
}
/* =========================================================
   MOBILE COMPACT MUSIC PAGE FIX
   Makes albums/player smaller on iPhone so more songs show
   ========================================================= */

@media (max-width: 768px) {
  body {
    padding-bottom: 118px !important;
  }

  .music-page-content {
    padding-top: 105px !important;
    padding-bottom: 7rem !important;
    background-attachment: scroll !important;
  }

  .content-section {
    padding: 2.4rem 1rem !important;
  }

  .section-title {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
  }

  .album-section {
    padding-top: 1.3rem !important;
    padding-bottom: 2rem !important;
  }

  .album-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.2rem !important;
    max-width: 100% !important;
    align-items: center !important;
  }

  .album-art-wrap {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    max-width: 260px !important;
    margin: 0 auto !important;
  }

  .album-cover-img {
    width: 100% !important;
    max-width: 260px !important;
    border-radius: 14px !important;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.75) !important;
  }

  .custom-audio-player {
    width: 100% !important;
    max-width: 100% !important;
    padding: 1.35rem 1rem !important;
    border-radius: 14px !important;
    margin: 0 auto !important;
  }

  .album-heading {
    font-size: 2.25rem !important;
    line-height: 1.05 !important;
    text-align: center !important;
    margin-bottom: 0.25rem !important;
  }

  .album-artist {
    font-size: 0.68rem !important;
    letter-spacing: 2.5px !important;
    margin-bottom: 1.25rem !important;
    text-align: center !important;
  }

  .player-header {
    padding-bottom: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .control-buttons {
    gap: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .control-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
  }

  .play-btn-large {
    width: 66px !important;
    height: 66px !important;
    min-width: 66px !important;
    min-height: 66px !important;
  }

  .player-svg {
    width: 22px !important;
    height: 22px !important;
  }

  .play-btn-large .player-svg {
    width: 30px !important;
    height: 30px !important;
  }

  .current-title {
    font-size: 0.86rem !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 0.9rem !important;
    line-height: 1.35 !important;
  }

  .progress-container {
    gap: 0.55rem !important;
    font-size: 0.72rem !important;
  }

  .seek-slider {
    height: 5px !important;
  }

  .playlist-container {
    max-height: none !important;
    overflow-y: visible !important;
    padding-right: 0 !important;
    padding-top: 0.5rem !important;
  }

  .playlist-item {
    min-height: 58px !important;
    padding: 0.72rem 0.8rem !important;
    grid-template-columns: 34px 1fr auto !important;
    gap: 0.55rem !important;
    margin-bottom: 0.35rem !important;
    border-radius: 11px !important;
  }

  .playlist-item.active {
    padding-left: 0.8rem !important;
    transform: none !important;
    border-left-width: 3px !important;
  }

  .playlist-item:hover {
    transform: none !important;
  }

  .track-number {
    font-size: 0.78rem !important;
  }

  .track-title,
  .track-info .title,
  .playlist-item .title {
    font-size: 0.86rem !important;
    line-height: 1.25 !important;
    letter-spacing: 0.3px !important;
  }

  .track-artist,
  .track-info .artist,
  .playlist-item .artist {
    font-size: 0.68rem !important;
    margin-top: 0.15rem !important;
  }

  .track-duration {
    display: none !important;
  }

  /* Bottom player smaller */
  .bottom-music-bar {
    min-height: 104px !important;
    padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom)) !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "info controls"
      "progress progress" !important;
    gap: 0.45rem 0.75rem !important;
  }

  .bottom-cover {
    width: 44px !important;
    height: 44px !important;
    border-radius: 8px !important;
  }

  .bottom-track-info {
    gap: 0.7rem !important;
    min-width: 0 !important;
  }

  .bottom-song-title {
    font-size: 0.82rem !important;
    max-width: 185px !important;
  }

  .bottom-album-title {
    font-size: 0.62rem !important;
    letter-spacing: 1.6px !important;
    max-width: 185px !important;
  }

  .bottom-controls {
    gap: 0.45rem !important;
  }

  .bottom-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }

  .bottom-play-btn {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
  }

  .bottom-btn .player-svg {
    width: 20px !important;
    height: 20px !important;
  }

  .bottom-play-btn .player-svg {
    width: 28px !important;
    height: 28px !important;
  }

  .bottom-progress-wrap {
    gap: 0.5rem !important;
    font-size: 0.7rem !important;
  }

  .bottom-seek-slider {
    max-width: none !important;
    height: 5px !important;
  }
}

@media (max-width: 430px) {
  .album-art-wrap,
  .album-cover-img {
    max-width: 230px !important;
  }

  .album-heading {
    font-size: 1.95rem !important;
  }

  .custom-audio-player {
    padding: 1.1rem 0.85rem !important;
  }

  .playlist-item {
    min-height: 54px !important;
    padding: 0.62rem 0.7rem !important;
  }

  .track-title,
  .track-info .title,
  .playlist-item .title {
    font-size: 0.8rem !important;
  }

  .bottom-song-title {
    max-width: 155px !important;
  }

  .bottom-album-title {
    max-width: 155px !important;
  }
}
/* =========================================================
   MUSIC VIDEOS PAGE - FIXED
   ========================================================= */

.video-page-content {
  min-height: 100vh !important;
  padding-top: 115px !important;
  padding-bottom: 7rem !important;
  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(184, 150, 105, 0.08) 0%,
      transparent 38%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(184, 150, 105, 0.06) 0%,
      transparent 40%
    ),
    linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.98)),
    url("images/logo.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Top title section */
.video-page-content .content-section {
  padding: 5rem 2rem 2rem !important;
}

.video-page-content .section-title {
  margin-bottom: 1.3rem !important;
}

.video-intro {
  max-width: 760px !important;
  margin: 0 auto !important;
  text-align: center;
  color: #a8a8a8;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* Video section */
.video-section {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  padding: 1.5rem 4rem 7rem !important;
}

.video-grid {
  max-width: 1250px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 3rem !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.video-card {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: rgba(18, 18, 18, 0.62);
  border: 1px solid rgba(184, 150, 105, 0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.82),
    0 0 40px rgba(184, 150, 105, 0.05);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 150, 105, 0.55);
  box-shadow:
    0 35px 95px rgba(0, 0, 0, 0.9),
    0 0 45px rgba(184, 150, 105, 0.12);
}

.video-frame {
  width: 100% !important;
  background: #000000 !important;
  border-bottom: 1px solid rgba(184, 150, 105, 0.18);
}

.video-frame video {
  width: 100% !important;
  display: block !important;
  aspect-ratio: 16 / 9 !important;
  background: #000000 !important;
  outline: none;
}

.video-info {
  padding: 1.45rem 1.6rem 1.6rem;
}

.video-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.55rem;
  color: #ffffff;
}

.video-info p {
  color: #b89669;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  font-weight: 500;
}
/* =========================================================
   VIDEO CONTENT WARNING OVERLAY
   ========================================================= */

.warning-video-frame {
  position: relative;
}

.video-warning-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.92)),
    radial-gradient(
      circle at center,
      rgba(184, 150, 105, 0.16),
      transparent 55%
    );
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.video-warning-box {
  max-width: 420px;
  padding: 1.5rem;
  border: 1px solid rgba(184, 150, 105, 0.45);
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
}

.video-warning-box h3 {
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
}

.video-warning-box p {
  color: #b8b8b8;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.understand-btn {
  border: 1px solid rgba(184, 150, 105, 0.8);
  background: rgba(184, 150, 105, 0.18);
  color: #ffffff;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.understand-btn:hover {
  background: #b89669;
  color: #000000;
}

.content-label {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(184, 150, 105, 0.35);
  border-radius: 999px;
  color: #c9a86a;
  font-size: 0.62rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

/* Hide overlay after accepted */
.video-card.warning-accepted .video-warning-overlay {
  display: none;
}

@media (max-width: 600px) {
  .video-warning-box {
    padding: 1.1rem;
  }

  .video-warning-box h3 {
    font-size: 1.25rem;
  }

  .video-warning-box p {
    font-size: 0.8rem;
  }

  .understand-btn {
    padding: 0.7rem 1.1rem;
    font-size: 0.68rem;
  }
}

/* Mobile */
@media (max-width: 900px) {
  .video-page-content {
    padding-top: 105px !important;
    padding-bottom: 5rem !important;
    background-attachment: scroll !important;
  }

  .video-page-content .content-section {
    padding: 4rem 1rem 1.3rem !important;
  }

  .video-page-content .section-title {
    font-size: 2.4rem !important;
    margin-bottom: 1rem !important;
  }

  .video-intro {
    font-size: 0.9rem !important;
    padding: 0 1rem !important;
    margin: 0 auto !important;
  }

  .video-section {
    padding: 1rem 1rem 5rem !important;
  }

  .video-grid {
    grid-template-columns: 1fr !important;
    gap: 1.6rem !important;
  }

  .video-info {
    padding: 1rem 1.1rem 1.15rem;
  }

  .video-info h2 {
    font-size: 1.45rem;
  }

  .video-info p {
    font-size: 0.65rem;
    letter-spacing: 2.2px;
  }
}

@media (max-width: 480px) {
  .video-page-content {
    padding-top: 100px !important;
  }

  .video-page-content .section-title {
    font-size: 2rem !important;
  }

  .video-card {
    border-radius: 14px;
  }

  .video-info h2 {
    font-size: 1.28rem;
  }
}

/* =========================================================
   MUSIC VIDEOS FINAL FIXES - FOOTER + 18+ WARNING POSTER
   ========================================================= */

body.video-page-body {
  padding-bottom: 0 !important;
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
}

body.video-page-body .video-page-content {
  flex: 1 0 auto !important;
  padding-bottom: 2.5rem !important;
}

body.video-page-body .site-footer {
  flex-shrink: 0 !important;
  margin: 0 !important;
  padding: 1.6rem 1rem 1.4rem !important;
}

body.video-page-body .footer-logo {
  margin-bottom: 1.4rem !important;
}

body.video-page-body .social-links {
  margin-bottom: 1.7rem !important;
}

.footer-copy,
.copyright {
  color: #d7d7d7 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0 !important;
}

body.video-page-body .bottom-music-bar {
  display: none !important;
}

body.video-page-body .video-section:last-of-type {
  padding-bottom: 3rem !important;
}

.warning-video-frame {
  position: relative !important;
  background: #000 !important;
}

.warning-video-frame video {
  width: 100% !important;
  display: block !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  background: #000 !important;
}

.video-warning-overlay {
  background: rgba(0, 0, 0, 0.26) !important;
  backdrop-filter: none !important;
}

.video-warning-box {
  background: rgba(0, 0, 0, 0.64) !important;
}

.video-card.warning-accepted .video-warning-overlay {
  display: none !important;
}

@media (max-width: 900px) {
  body.video-page-body .video-page-content {
    padding-bottom: 1.5rem !important;
  }

  body.video-page-body .video-section:last-of-type {
    padding-bottom: 2rem !important;
  }

  body.video-page-body .site-footer {
    padding-bottom: 1rem !important;
  }

  body.video-page-body .social-links {
    gap: 1.2rem !important;
    flex-wrap: wrap !important;
  }
}
/* =========================================================
   MUSIC VIDEOS PAGE - EXTRA CINEMATIC ANIMATIONS
   Add this to the very bottom of styles.css
   ========================================================= */

.video-page-body {
  min-height: 100vh;
}

.video-page-content {
  position: relative;
  overflow: hidden;
}

/* Animated background glow */
.video-page-content::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(211, 115, 48, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 84% 30%,
      rgba(184, 150, 105, 0.1),
      transparent 34%
    ),
    radial-gradient(
      circle at 50% 92%,
      rgba(211, 115, 48, 0.08),
      transparent 38%
    );
  animation: videoAmbientDrift 14s ease-in-out infinite alternate;
}

/* Soft moving light sweep */
.video-page-content::after {
  content: "";
  position: fixed;
  inset: -25%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 42%,
    rgba(184, 150, 105, 0.05) 50%,
    transparent 58%,
    transparent 100%
  );
  transform: translateX(-40%) rotate(10deg);
  animation: videoLightSweep 13s ease-in-out infinite;
}

.video-page-content > section,
.video-page-content > h1,
.video-page-content > .video-category-heading {
  position: relative;
  z-index: 2;
}

/* Main page title animation */
.video-page-content .content-section .section-title {
  opacity: 0;
  transform: translateY(30px);
  animation: videoTitleReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.video-page-content .content-section .section-title::after {
  content: "";
  display: block;
  width: 130px;
  height: 1px;
  margin: 1.1rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 150, 105, 0.95),
    transparent
  );
  box-shadow: 0 0 22px rgba(184, 150, 105, 0.5);
  transform: scaleX(0);
  transform-origin: center;
  animation: titleLineGrow 1.1s ease forwards 0.75s;
}

.video-intro {
  opacity: 0;
  transform: translateY(18px);
  animation: videoTextReveal 0.9s ease forwards 0.55s;
}

/* Section titles like Featured Videos / Restricted 18+ */
.video-page-content > .section-title,
.video-category-heading .section-title {
  position: relative;
  opacity: 0;
  transform: translateY(26px);
  animation: videoTitleReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.video-page-content > .section-title::after,
.video-category-heading .section-title::after {
  content: "";
  display: block;
  width: 110px;
  height: 1px;
  margin: 1rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 150, 105, 0.85),
    transparent
  );
  transform: scaleX(0);
  animation: titleLineGrow 1s ease forwards 0.45s;
}

/* Video cards scroll animation */
.video-card.video-card-animate {
  opacity: 0 !important;
  transform: translateY(60px) scale(0.96) !important;
  filter: blur(7px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease !important;
  transition-delay: var(--card-delay, 0s) !important;
}

.video-card.video-card-animate.video-card-in-view {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  filter: blur(0);
}

/* Cinematic hover shine */
.video-card {
  position: relative;
  isolation: isolate;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.08) 48%,
    rgba(184, 150, 105, 0.15) 52%,
    transparent 65%,
    transparent 100%
  );
  transform: translateX(-140%) skewX(-18deg);
  transition: transform 0.9s ease;
}

.video-card:hover::before {
  transform: translateX(140%) skewX(-18deg);
}

.video-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(184, 150, 105, 0.18),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 100%,
      rgba(211, 115, 48, 0.13),
      transparent 40%
    );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.video-card:hover::after {
  opacity: 1;
}

/* Video frame glow on hover */
.video-frame {
  position: relative;
  overflow: hidden;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05),
      transparent 22%,
      transparent 75%,
      rgba(0, 0, 0, 0.3)
    ),
    radial-gradient(
      circle at 50% 0%,
      rgba(184, 150, 105, 0.13),
      transparent 45%
    );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.video-card:hover .video-frame::after {
  opacity: 1;
}

.video-frame video {
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.5s ease;
}

.video-card:hover .video-frame video {
  transform: scale(1.035);
  filter: contrast(1.08) brightness(1.04);
}

/* Text hover movement */
.video-info h2 {
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease,
    transform 0.35s ease;
}

.video-card:hover .video-info h2 {
  color: #f4e6cf;
  text-shadow: 0 0 18px rgba(184, 150, 105, 0.22);
  transform: translateX(4px);
}

.video-info p,
.content-label {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    color 0.35s ease;
}

.video-card:hover .video-info p,
.video-card:hover .content-label {
  transform: translateX(4px);
}

/* 18+ warning animation */
.video-warning-overlay {
  animation: warningOverlayPulse 3.8s ease-in-out infinite;
}

.video-warning-box {
  animation: warningBoxFloat 4.5s ease-in-out infinite;
}

.understand-btn {
  position: relative;
  overflow: hidden;
}

.understand-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.24),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.65s ease;
}

.understand-btn:hover::before {
  transform: translateX(120%);
}

/* Keyframes */
@keyframes videoAmbientDrift {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.08) translate3d(-1.5%, 1.2%, 0);
    opacity: 1;
  }
}

@keyframes videoLightSweep {
  0%,
  100% {
    transform: translateX(-42%) rotate(10deg);
    opacity: 0;
  }

  45%,
  55% {
    transform: translateX(42%) rotate(10deg);
    opacity: 0.75;
  }
}

@keyframes videoTitleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes videoTextReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleLineGrow {
  to {
    transform: scaleX(1);
  }
}

@keyframes warningOverlayPulse {
  0%,
  100% {
    background-color: rgba(0, 0, 0, 0.72);
  }

  50% {
    background-color: rgba(0, 0, 0, 0.86);
  }
}

@keyframes warningBoxFloat {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
  }

  50% {
    transform: translateY(-6px);
    box-shadow:
      0 28px 80px rgba(0, 0, 0, 0.8),
      0 0 35px rgba(184, 150, 105, 0.14);
  }
}

/* Mobile performance */
@media (max-width: 700px) {
  .video-card.video-card-animate {
    transform: translateY(38px) scale(0.98) !important;
    filter: blur(4px);
  }

  .video-page-content::before,
  .video-page-content::after {
    animation-duration: 18s;
    opacity: 0.55;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .video-card.video-card-animate,
  .video-page-content .content-section .section-title,
  .video-page-content > .section-title,
  .video-intro,
  .video-page-content::before,
  .video-page-content::after,
  .video-warning-overlay,
  .video-warning-box {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
/* =========================================================
   INDEX FOOTER GAP FIX
   Stops the music page bottom-bar spacing affecting home page
   ========================================================= */

/* Remove global bottom gap on normal pages */
body:not(.music-page-body):not(.video-page-body) {
  padding-bottom: 0 !important;
}

/* Make index page footer sit clean */
body:not(.music-page-body):not(.video-page-body) .site-footer {
  margin-bottom: 0 !important;
  padding: 1.3rem 1rem 1.6rem !important;
}

/* Reduce huge empty space above footer on index narrative section */
#index,
body:not(.music-page-body):not(.video-page-body) #narratives {
  padding-bottom: 4rem !important;
}

/* Footer text spacing cleaner */
body:not(.music-page-body):not(.video-page-body) .footer-logo {
  margin-bottom: 1.4rem !important;
}

body:not(.music-page-body):not(.video-page-body) .social-links {
  margin-bottom: 1.7rem !important;
}

body:not(.music-page-body):not(.video-page-body) .copyright,
body:not(.music-page-body):not(.video-page-body) .footer-copy {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* =========================================================
   INDEX HERO RING - IPHONE PERFORMANCE FIX
   Add to very bottom of styles.css
   ========================================================= */

.hero-audio-wrap,
.hero-audio-orbit,
.hero-audio-bars,
.hero-audio-glow,
.hero-audio-bar {
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* Desktop smoother GPU handling */
.hero-audio-bars {
  transform: translateZ(0);
}

.hero-audio-orbit {
  transform: translateZ(0);
}

/* iPhone / mobile performance mode */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll !important;
    animation: none !important;
  }

  .hero-content {
    animation: none !important;
  }

  .hero-audio-wrap {
    width: 88vw !important;
    height: 88vw !important;
    max-height: 430px !important;
    animation: none !important;
  }

  .hero-audio-bars {
    width: 74% !important;
    height: 74% !important;
    animation-duration: 42s !important;
  }

  .hero-audio-orbit::before {
    width: 72% !important;
    height: 72% !important;
    animation-duration: 32s !important;
    box-shadow:
      0 0 25px rgba(211, 115, 48, 0.12),
      inset 0 0 22px rgba(184, 150, 105, 0.06) !important;
  }

  .hero-audio-orbit::after {
    width: 56% !important;
    height: 56% !important;
    animation-duration: 5.5s !important;
    box-shadow:
      0 0 25px rgba(211, 115, 48, 0.08),
      inset 0 0 28px rgba(0, 0, 0, 0.55) !important;
  }

  .hero-audio-glow {
    width: 60% !important;
    height: 60% !important;
    filter: blur(1px) !important;
    opacity: 0.55 !important;
    animation-duration: 6s !important;
  }

  .hero-audio-bar {
    width: 2px !important;
    box-shadow:
      0 0 5px rgba(211, 115, 48, 0.65),
      0 0 9px rgba(184, 150, 105, 0.22) !important;
    transform: translate(-50%, -100%) rotate(var(--bar-angle))
      translateY(-150px) !important;
  }

  .hero-audio-wrap h1 {
    font-size: 3rem !important;
    line-height: 1.05 !important;
  }

  .hero-audio-wrap .subtitle {
    font-size: 0.58rem !important;
    letter-spacing: 3.2px !important;
  }
}

/* iPhone 14 Pro Max size */
@media (max-width: 430px) {
  .hero-audio-wrap {
    width: 92vw !important;
    height: 92vw !important;
    max-height: 390px !important;
  }

  .hero-audio-bar {
    transform: translate(-50%, -100%) rotate(var(--bar-angle))
      translateY(-132px) !important;
  }

  .hero-audio-wrap h1 {
    font-size: 2.65rem !important;
  }

  .hero-audio-wrap .subtitle {
    font-size: 0.52rem !important;
    letter-spacing: 2.8px !important;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero-audio-bar {
    transform: translate(-50%, -100%) rotate(var(--bar-angle))
      translateY(-118px) !important;
  }

  .hero-audio-wrap h1 {
    font-size: 2.35rem !important;
  }
}
/* =========================================================
   ABOUT / THE ARTIST PAGE - ELITE PACK DESIGN
   Add this to the very bottom of styles.css
   ========================================================= */

.about-page-body {
  padding-bottom: 0 !important;
}

.about-elite-page {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 6rem;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(184, 150, 105, 0.12),
      transparent 34%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(211, 115, 48, 0.08),
      transparent 38%
    ),
    linear-gradient(rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.98)),
    url("images/logo.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-elite-page::before {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(184, 150, 105, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(211, 115, 48, 0.07),
      transparent 32%
    );
  animation: aboutAmbientMove 14s ease-in-out infinite alternate;
}

.about-elite-page > section {
  position: relative;
  z-index: 2;
}

/* Hero */
.about-hero-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.about-kicker,
.section-eyebrow {
  display: block;
  color: #b89669;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

.about-hero-section h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: 2px;
  color: #ffffff;
  text-shadow: 0 25px 70px rgba(0, 0, 0, 0.9);
  margin-bottom: 1.2rem;
}

.about-hero-subtitle {
  max-width: 780px;
  margin: 0 auto;
  color: #b8b8b8;
  font-size: 1.05rem;
  line-height: 1.9;
  letter-spacing: 0.5px;
}

/* Profile Grid */
.about-profile-section {
  padding: 3rem 4rem;
}

.about-profile-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-portrait-card {
  position: sticky;
  top: 130px;
}

.about-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(184, 150, 105, 0.32);
  background: rgba(10, 10, 10, 0.75);
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.88),
    0 0 60px rgba(184, 150, 105, 0.08);
}

.about-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.65)),
    radial-gradient(
      circle at 50% 0%,
      rgba(184, 150, 105, 0.12),
      transparent 50%
    );
}

.about-image {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
  display: block;
  filter: grayscale(12%) contrast(1.08);
  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s ease;
}

.about-image-frame:hover .about-image {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.14);
}

.about-portrait-caption {
  margin-top: 1rem;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(184, 150, 105, 0.18);
  background: rgba(10, 10, 10, 0.5);
  border-radius: 14px;
}

.about-portrait-caption span {
  color: #b89669;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Text Cards */
.about-story-card,
.about-writing-card,
.about-feature-inner {
  position: relative;
  background: rgba(12, 12, 12, 0.58);
  border: 1px solid rgba(184, 150, 105, 0.18);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.78),
    inset 0 0 35px rgba(255, 255, 255, 0.015);
  overflow: hidden;
}

.about-story-card::before,
.about-writing-card::before,
.about-feature-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(184, 150, 105, 0.05),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 1s ease;
}

.about-story-card:hover::before,
.about-writing-card:hover::before,
.about-feature-inner:hover::before {
  transform: translateX(100%);
}

.about-story-card h2,
.about-writing-card h2,
.about-feature-inner h2,
.about-cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 1.6rem;
}

.about-story-card p,
.about-writing-card p,
.about-feature-inner p,
.about-cta-section p {
  color: #b9b9b9;
  font-size: 1rem;
  line-height: 1.95;
  letter-spacing: 0.25px;
  margin-bottom: 1.25rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.about-tags span {
  display: inline-block;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(184, 150, 105, 0.35);
  border-radius: 999px;
  color: #c9a86a;
  font-size: 0.68rem;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

/* Writing Sections */
.about-writing-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 4rem;
}

.about-feature-section {
  padding: 3rem 4rem;
}

.about-feature-inner {
  max-width: 1120px;
  margin: 0 auto;
  border-color: rgba(184, 150, 105, 0.28);
  background:
    radial-gradient(
      circle at top left,
      rgba(184, 150, 105, 0.12),
      transparent 38%
    ),
    rgba(12, 12, 12, 0.64);
}

/* Quote */
.about-quote-section {
  max-width: 1050px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.about-quote-section blockquote {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 0 0 45px rgba(184, 150, 105, 0.16);
}

.about-quote-section blockquote::before,
.about-quote-section blockquote::after {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  margin: 2rem auto;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 150, 105, 0.8),
    transparent
  );
}

/* CTA */
.about-cta-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 5rem 2rem 2rem;
  text-align: center;
}

.about-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Animation */
.about-elite-page .reveal {
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-elite-page .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes aboutAmbientMove {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 0.55;
  }

  100% {
    transform: scale(1.08) translate3d(-1.5%, 1.5%, 0);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 950px) {
  .about-elite-page {
    padding-top: 120px;
    background-attachment: scroll;
  }

  .about-profile-section,
  .about-writing-section,
  .about-feature-section {
    padding: 2rem 1rem;
  }

  .about-profile-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-portrait-card {
    position: relative;
    top: auto;
    max-width: 420px;
    margin: 0 auto;
  }

  .about-story-card,
  .about-writing-card,
  .about-feature-inner {
    padding: 2rem 1.3rem;
    border-radius: 18px;
  }

  .about-hero-section {
    padding: 4rem 1rem 2rem;
  }

  .about-hero-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 520px) {
  .about-elite-page {
    padding-top: 135px;
  }

  .about-hero-section h1 {
    font-size: 3.2rem;
  }

  .about-kicker,
  .section-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 3px;
  }

  .about-story-card p,
  .about-writing-card p,
  .about-feature-inner p,
  .about-cta-section p {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .about-tags span {
    font-size: 0.58rem;
    letter-spacing: 1.2px;
  }

  .about-quote-section {
    padding: 3rem 1rem;
  }

  .about-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-cta-buttons .btn-outline {
    width: 100%;
    max-width: 280px;
  }
}

/* Stop global bottom music bar spacing affecting About page */
.about-page-body {
  padding-bottom: 0 !important;
}

/* =========================================================
   INDEX CONTACT FORM - ELITE PACK
   ========================================================= */

.contact-section {
  position: relative;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(184, 150, 105, 0.08),
      transparent 35%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(211, 115, 48, 0.06),
      transparent 40%
    ),
    #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-layout {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.contact-text .section-title {
  text-align: left;
  margin-bottom: 1.6rem;
}

.contact-kicker {
  color: #b89669;
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.contact-note {
  margin-top: 1.5rem;
  color: #b89669;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-form {
  position: relative;
  padding: 2.4rem;
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(184, 150, 105, 0.24);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.85),
    inset 0 0 35px rgba(255, 255, 255, 0.015);
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(184, 150, 105, 0.05),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 1s ease;
}

.contact-form:hover::before {
  transform: translateX(100%);
}

.form-group {
  position: relative;
  z-index: 2;
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.55rem;
  color: #b89669;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(184, 150, 105, 0.24);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  border-radius: 12px;
  padding: 1rem 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(184, 150, 105, 0.75);
  background: rgba(0, 0, 0, 0.62);
  box-shadow: 0 0 25px rgba(184, 150, 105, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-submit {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-text .section-title {
    text-align: center;
  }

  .contact-text {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .contact-section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .contact-form {
    padding: 1.5rem 1rem;
    border-radius: 18px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 0.9rem;
  }
}
/* =========================================================
   THANK YOU PAGE
   ========================================================= */

.thanks-page-body {
  padding-bottom: 0 !important;
}

.thanks-page-content {
  min-height: 100vh;
  padding-top: 140px;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(184, 150, 105, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(211, 115, 48, 0.08),
      transparent 35%
    ),
    linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.98)),
    url("images/logo.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.thanks-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-card {
  max-width: 760px;
  width: 100%;
  text-align: center;
  padding: 4rem 3rem;
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(184, 150, 105, 0.35);
  box-shadow:
    0 35px 100px rgba(0, 0, 0, 0.88),
    0 0 70px rgba(184, 150, 105, 0.1);
  backdrop-filter: blur(18px);
}

.thanks-kicker {
  color: #b89669;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
  margin-bottom: 1.5rem;
}

.thanks-card h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.thanks-card p {
  max-width: 560px;
  margin: 0 auto 1rem;
  color: #b8b8b8;
  font-size: 1.05rem;
  line-height: 1.8;
}

.thanks-card .btn-outline {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .thanks-page-content {
    padding-top: 160px;
    padding-bottom: 4rem;
  }

  .thanks-card {
    padding: 3rem 1.5rem;
    border-radius: 18px;
  }

  .thanks-kicker {
    font-size: 0.68rem;
    letter-spacing: 3px;
  }

  .thanks-card p {
    font-size: 0.95rem;
  }
}

/* =========================================================
   HOME PAGE — YOUTUBE CHANNEL CTA
   ========================================================= */

#music-videos {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem !important;
}

#music-videos .split-layout,
#music-videos .text-block {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-inline: auto !important;
  text-align: center !important;
}

#music-videos .split-layout {
  max-width: 1000px !important;
  gap: 0 !important;
}

#music-videos .text-block {
  flex: none !important;
  max-width: 800px !important;
  padding: 0 !important;
}

#music-videos .section-title {
  width: 100% !important;
  margin: 0 0 1.5rem !important;
  text-align: center !important;
}

#music-videos .section-text {
  width: 100% !important;
  max-width: 700px !important;
  margin: 0 auto 2.25rem !important;
  text-align: center !important;
}

#music-videos .btn-outline {
  align-self: center !important;
  min-width: 250px;
  margin: 0 auto !important;
  text-align: center !important;
}

#music-videos .media-block {
  display: none !important;
}

@media (max-width: 520px) {
  #music-videos {
    padding: 3.5rem 1rem !important;
  }

  #music-videos .section-title {
    margin-bottom: 1rem !important;
    font-size: 2.2rem !important;
  }

  #music-videos .section-text {
    margin-bottom: 2rem !important;
    font-size: 0.95rem !important;
    line-height: 1.75 !important;
  }

  #music-videos .btn-outline {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 320px !important;
    padding: 1.1rem 1rem !important;
    letter-spacing: 2px !important;
  }
}
