
/* ============================================================
   XCELLENCE! — PDF Reference Design
   4-corner nav · Gold title · Video bg · Merch page
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #d4922a;
  --gold-light: #e8ab3e;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.5);
}

html, body {
  background: #000;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* ── PRELOADER ── */
.preloader-overlay {
  position: fixed; inset: 0; background: #000; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px;
  opacity: 1; visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.25,1,0.5,1), visibility 0.8s;
}
body:not(.loading-active) .preloader-overlay { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-text { display: flex; gap: 8px; }
.preloader-text span {
  font-size: 1.8rem; font-weight: 300; letter-spacing: 0.15em; color: #fff;
  opacity: 0; transform: translateY(10px); animation: letterFadeIn 1s forwards;
}
.preloader-text span:nth-child(1){animation-delay:.1s}
.preloader-text span:nth-child(2){animation-delay:.18s}
.preloader-text span:nth-child(3){animation-delay:.26s}
.preloader-text span:nth-child(4){animation-delay:.34s}
.preloader-text span:nth-child(5){animation-delay:.42s}
.preloader-text span:nth-child(6){animation-delay:.5s}
.preloader-text span:nth-child(7){animation-delay:.58s}
.preloader-text span:nth-child(8){animation-delay:.66s}
.preloader-text span:nth-child(9){animation-delay:.74s}
.preloader-text span:nth-child(10){animation-delay:.82s}
@keyframes letterFadeIn { to { opacity:1; transform:translateY(0); } }
.preloader-progress { width:140px; height:1px; background:rgba(255,255,255,.1); position:relative; overflow:hidden; }
.preloader-progress::after {
  content:''; position:absolute; left:0; top:0; height:100%; width:100%;
  background: var(--gold); transform:translateX(-100%);
  animation: progressFill 1.5s cubic-bezier(0.65,0,0.35,1) forwards;
}
@keyframes progressFill { to { transform:translateX(0); } }

/* ── SLIDE CONTAINER ── */
.slide-container {
  position: relative; width: 100vw; height: 100vh; overflow: hidden;
  opacity: 1;
  animation: fadeInPage 0.4s ease-out forwards;
}
@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── VIDEO BACKGROUND ── */
.bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block; pointer-events: none;
  transform: scale(1.05); /* Zooms slightly to crop out corner watermarks */
  transform-origin: center center;
}
.video-overlay {
  position: absolute; inset: 0; z-index: 3;
  /* Darker/smokey vignette and bottom fade to blend corner elements seamlessly */
  background: radial-gradient(circle at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.78) 100%),
              linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 20%, rgba(0,0,0,0.15) 75%, rgba(0,0,0,0.92) 100%);
}
.slide-image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; user-select: none;
}
.slide-image.animated { animation: kenBurns 36s ease-in-out infinite alternate; }
@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0,0); }
  50%  { transform: scale(1.05) translate(-3px,4px); }
  100% { transform: scale(1.02) translate(3px,-2px); }
}

/* ── HOTSPOT ── */
.hotspot { position: absolute; background: transparent; cursor: pointer; z-index: 50; }

/* ════════════════════════════════════════════════
   4-CORNER NAV  (exactly like the PDF reference)
   ════════════════════════════════════════════════ */
.corner-nav-item {
  position: absolute;
  z-index: 100;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.65rem, 0.9vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color 0.2s;
  pointer-events: auto;
}
.corner-nav-item:hover { color: var(--gold); }

/* Positions */
.corner-tl { top: 36px; left: 40px; }   /* STREAM — top-left  */
.corner-tr { top: 36px; right: 40px; }  /* MERCH  — top-right */
.corner-bl { bottom: 36px; left: 40px; }  /* ABOUT  — bottom-left  */
.corner-br { bottom: 36px; right: 40px; } /* SUBSCRIBE — bottom-right */

/* ── HOME CENTER CONTENT ── */
.home-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  text-align: center;
  pointer-events: none;
  width: 92vw;
}

/* BIG GOLD NAME */
.home-artist-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.8rem, 12vw, 11.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.88;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 24px;
  text-shadow: 0 0 60px rgba(212,146,42,0.3);
}

/* Song subtitle */
.home-song-label {
  font-size: clamp(0.62rem, 1.0vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  display: block;
  margin-bottom: 22px;
}

/* STREAM + VIDEO dual buttons */
.home-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  pointer-events: all;
  flex-wrap: wrap;
}
.home-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.68rem, 0.95vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 22px;
  border: 1px solid rgba(212,146,42,0.55);
  color: var(--gold);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.home-action-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.home-action-btn svg {
  width: 13px; height: 13px; flex-shrink: 0;
}

/* Copyright */
.home-copyright {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
  pointer-events: none;
}

/* ── ABOUT PAGE ── */
.about-page { background: #000 !important; }
.about-page .slide-container { background: #000 !important; }
.about-page .slide-image { display: none !important; }

.about-page-wrapper {
  position: absolute; inset: 0; z-index: 20;
  display: flex; flex-direction: column;
  padding: 100px 5% 40px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.about-columns {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(28px, 5vw, 90px);
}
.about-col-label {
  font-size: clamp(0.6rem, 0.8vw, 0.72rem);
  font-weight: 600; letter-spacing: 0.32em;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  margin-bottom: 28px; display: block;
}
.about-bio-text {
  font-size: clamp(0.88rem, 1.1vw, 1.05rem);
  font-weight: 400; line-height: 1.65;
  color: rgba(255,255,255,0.85); margin-bottom: 20px;
}
.about-bio-text p {
  margin-bottom: 16px;
}
.about-email {
  font-size: 0.74rem; color: rgba(255,255,255,0.42);
  text-decoration: underline; letter-spacing: 0.02em;
  display: block; margin-bottom: 22px;
  transition: color 0.2s; word-break: break-all;
}
.about-email:hover { color: #fff; }
.about-social-list { display: flex; flex-direction: column; gap: 14px; }
.about-social-item {
  display: flex; align-items: center; gap: 11px;
  font-size: 0.85rem; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.52);
  text-decoration: none; transition: color 0.2s;
}
.about-social-item:hover { color: #fff; }
.about-social-item svg { width: 18px; height: 18px; flex-shrink: 0; }

.about-highlight-item { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.about-highlight-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.07); }
.about-highlight-year { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.28em; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 3px; }
.about-highlight-type { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; color: rgba(255,255,255,0.55); text-transform: uppercase; margin-bottom: 5px; }
.about-highlight-text { font-size: 0.84rem; font-weight: 600; color: #fff; line-height: 1.45; }

.about-mgmt-section { margin-bottom: 24px; }
.about-mgmt-label { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.28em; color: rgba(255,255,255,0.32); text-transform: uppercase; margin-bottom: 5px; }
.about-mgmt-value { font-size: 0.82rem; color: rgba(255,255,255,0.68); line-height: 1.5; }
.about-mgmt-link { font-size: 0.76rem; color: rgba(255,255,255,0.42); text-decoration: underline; letter-spacing: 0.02em; transition: color 0.2s; word-break: break-all; }
.about-mgmt-link:hover { color: #fff; }

/* ── MERCH PAGE ── */
.merch-page { background: #0a0a0a !important; }
.merch-page .slide-container { background: #0a0a0a !important; height: auto !important; min-height: 100vh !important; overflow-y: auto !important; }

.merch-wrapper {
  position: absolute; inset: 0; z-index: 20;
  display: flex; flex-direction: column;
  padding: 0 5% 60px;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.merch-header {
  padding: 36px 0 36px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.merch-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.72rem, 1.0vw, 0.9rem);
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
}
.merch-back {
  font-size: clamp(0.68rem, 0.9vw, 0.82rem);
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s;
}
.merch-back:hover { color: #fff; }

.merch-page-title {
  padding: 48px 0 36px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.8rem);
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
  flex-shrink: 0;
}
.merch-page-title span { color: var(--gold); }

.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  flex: 1;
}

.merch-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s;
  text-decoration: none;
}
.merch-card:hover {
  border-color: rgba(212,146,42,0.4);
  transform: translateY(-3px);
}
.merch-card-img-wrap {
  width: 100%; aspect-ratio: 1 / 1;
  background: #1a1a1a;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.merch-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.merch-card:hover .merch-card-img { transform: scale(1.04); }

.merch-card-info {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
}
.merch-card-name {
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: #fff;
}
.merch-card-variant {
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.merch-card-price {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gold); margin-top: 6px;
}
.merch-buy-btn {
  display: block; width: 100%;
  background: transparent; border: 1px solid rgba(212,146,42,0.4);
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em;
  padding: 11px; text-transform: uppercase;
  cursor: pointer; text-align: center;
  transition: background 0.25s, color 0.25s;
  margin-top: 10px; text-decoration: none;
}
.merch-buy-btn:hover { background: var(--gold); color: #000; }

/* Disable legacy */
.subscribe-overlay { display: none !important; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  html, body { overflow: hidden; }

  /* === CORNER NAV on mobile ===
     Show top corners normally, replace bottom corners with
     a fixed bottom bar so they're always visible on Android */
  .corner-tl { top: 18px; left: 16px; font-size: 0.62rem; letter-spacing: 0.16em; }
  .corner-tr { top: 18px; right: 16px; font-size: 0.62rem; letter-spacing: 0.16em; }

  /* Hide absolute bottom corners — replaced by .mobile-bottom-bar */
  .corner-bl, .corner-br { display: none; }

  /* Fixed bottom bar always visible above browser chrome */
  .mobile-bottom-bar {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(0,0,0,0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(212,146,42,0.18);
    padding: 14px 5% calc(14px + env(safe-area-inset-bottom, 0px));
    justify-content: space-between;
    align-items: center;
  }
  .mobile-bottom-bar a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.85); text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s;
  }
  .mobile-bottom-bar a:hover { color: var(--gold); }

  /* Shift copyright above bottom bar */
  .home-copyright { bottom: calc(58px + env(safe-area-inset-bottom, 0px)); font-size: 0.48rem; }

  .home-artist-name { font-size: clamp(2.6rem, 13vw, 5rem); letter-spacing: 0.04em; }
  .home-song-label  { font-size: 0.58rem; letter-spacing: 0.16em; margin-bottom: 18px; }
  .home-actions { gap: 10px; }
  .home-action-btn  { font-size: 0.62rem; padding: 9px 16px; letter-spacing: 0.18em; }

  /* Home center — shift up so bottom bar doesn't overlap */
  .home-center { top: 46%; }

  /* About mobile */
  body.about-page { height: auto !important; overflow-y: auto !important; }
  body.about-page .slide-container { height: auto !important; min-height: 100vh !important; overflow-y: auto !important; }
  .about-page-wrapper { padding: 72px 5% 140px; overflow-y: auto !important; }
  .about-columns { grid-template-columns: 1fr; gap: 32px; }

  /* Merch mobile */
  body.merch-page { height: auto !important; overflow-y: auto !important; }
  .merch-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .merch-page-title { font-size: 1.3rem; padding: 32px 0 24px; }
  .merch-card-info { padding: 12px 14px 16px; }
  .merch-card-name { font-size: 0.78rem; }
  .merch-card-price { font-size: 0.74rem; }
}

/* Hide bottom bar on desktop */
.mobile-bottom-bar { display: none; }
