<style>
  :root{
    --bg:#0b0f14;
    --text:rgba(255,255,255,0.92);
    --muted:rgba(255,255,255,0.62);
  }
  
  /* Mobile tune-up */
@media (max-width: 640px){
  html, body { overflow: auto; }        /* avoid “trapped” screen */
  .door { padding: 18px 14px; }
  .stack { width: min(92vw, 520px); }
  .logo { width: min(92vw, 420px); height: auto; }
  .dockInner { width: calc(100% - 14px); }
  .listen { width: 100%; min-width: 0; padding: 16px 18px; }
}

  
  

  html, body {
    margin: 0;
    height: 100%;
    background: var(--bg);
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow: hidden;
  }

  /* Two-layer crossfade background */
  .bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--bg);
  }

.bg-layer{
  position:absolute;
  inset:0;
  background-repeat:no-repeat;
  background-position:center;
  background-size: contain; /* 👈 preserve 21:9 */
  opacity:0;
  transition: opacity 3.2s ease-in-out;
  filter: saturate(.95) contrast(.98);
}

.bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    /* global screen */
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.18),
      rgba(0,0,0,0.18)
    ),
    /* cinematic lower-third fade */
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.10) 0%,
      rgba(0,0,0,0.28) 45%,
      rgba(0,0,0,0.60) 75%,
      rgba(0,0,0,0.82) 100%
    );
  pointer-events:none;
}



  /* Light grain (subtle) */
  .bg::after{
    content:"";
    position:absolute;
    inset:0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
    opacity: 0.06;
    mix-blend-mode: overlay;
    pointer-events:none;
  }

  /* Center content */
  .door {
    position: relative;
    z-index: 2;
    height: 100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 24px;
    text-align:center;
  }

.stack{
  width:min(560px, 100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
}


  .brandline{
    display:flex;
    align-items:center;
    gap: 10px;
    justify-content:center;
  }

  .logo{
    width: 480px;
    height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.55));
    opacity: 0.92;
  }

.title{
  font-size: clamp(22px, 6vw, 28px);
  letter-spacing: .5px;
  opacity: .98;
  text-shadow:
    0 2px 8px rgba(0,0,0,.45),
    0 8px 24px rgba(0,0,0,.55);
}

.subtitle{
  font-family: "Nothing You Could Do", cursive;
  font-weight: 400;
  font-size: clamp(18px, 2.6vw, 30px);
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: lowercase;

  /* readable on busy hero backgrounds */
  color: rgba(255,255,255,0.92);

  /* soft “lift” without a box */
  text-shadow:
    0 1px 0 rgba(0,0,0,0.55),
    0 8px 22px rgba(0,0,0,0.40);

  /* subtle smoothing */
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;

  /* spacing */
  margin-top: 10px;
  max-width: 34ch; /* keeps it from stretching too wide */
}







.findus{
  margin-top: 10px;
  font-size: clamp(13px, 3.6vw, 14px);
  color: rgba(255,255,255,0.78);
  opacity: 0.92;
  line-height: 1.45;
  text-shadow:
    0 2px 10px rgba(0,0,0,0.55),
    0 8px 24px rgba(0,0,0,0.55);
}

.findus a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.30);
  padding-bottom: 1px;
  transition: border-color .2s ease, opacity .2s ease;
}

.findus a:hover{
  border-bottom-color: rgba(255,255,255,0.55);
  opacity: 1;
}




.listen{
  margin-top: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 18px 28px;          /* BIGGER TAP TARGET */
  min-width: 220px;            /* thumb-friendly */

  border-radius: 999px;

  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  cursor: pointer;
  user-select: none;

  font-size: 18px;             /* readable on phones */
  letter-spacing: .4px;
  font-weight: 500;

  color: rgba(255,255,255,0.96);

  text-shadow: 0 3px 18px rgba(0,0,0,0.55);

  transition:
    background .25s ease,
    transform .08s ease,
    opacity .25s ease;
}

.listen:hover{
  background: rgba(255,255,255,0.22);
}

.listen:active{
  transform: translateY(1px) scale(0.99);
}

  .listen:hover{opacity: 1}
  
  /* The monetization bridge (quiet line) */
.artistBridge{
  margin-top: 8px;
  font-size: 12px;
  opacity: 0;                 /* hidden by default */
  transform: translateY(4px);
  transition: opacity .8s ease, transform .8s ease;
  color: rgba(255,255,255,.72);
  text-shadow: 0 3px 18px rgba(0,0,0,.60);
  max-width: 56ch;
  line-height: 1.35;
}
.artistBridge.show{
  opacity: 1;
  transform: translateY(0);
}
.artistBridge a{
  color: rgba(255,255,255,.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
  padding-bottom: 1px;
}
.artistBridge a:hover{
  border-bottom-color: rgba(255,255,255,.44);
}


  .hint{
	color: #fff !important;
    margin-top: 10px;
    font-size: 11px;
    opacity: 0.45;
  }

  /* Audio hidden (front door vibe) */
  audio{display:none;}
  
  

/* Bottom dock (quiet player bar) */
.dock{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  padding: 10px 12px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  pointer-events: none; /* only inner is clickable */
}

.dockInner{
  pointer-events: auto;
  width: min(860px, calc(100% - 18px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;

  border-radius: 999px;
  background: rgba(0,0,0,0.36);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.45);

  padding: 10px 12px;
}

.dockBtn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: transform .08s ease, background .2s ease, opacity .2s ease;
}

.dockBtn:hover{ background: rgba(255,255,255,0.12); }
.dockBtn:active{ transform: translateY(1px); }

.dockBtn.ghost{
  background: transparent;
  opacity: 0.70;
}
.dockBtn.ghost:hover{ opacity: 1; }

.dockMeta{
  flex: 1;
  min-width: 0; /* enables ellipsis */
  text-align: left;
}

.dockLabel{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1;
}

.liveDot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(182,255,217,0.95);
  box-shadow: 0 0 0 6px rgba(182,255,217,0.10);
  opacity: 0.85;
}

.dockTrack{
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.90);
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Give your front-door content room so it doesn't sit behind the dock */
.door{
  padding-bottom: calc(max(clamp(22px, 7vw, 44px), env(safe-area-inset-bottom)) + 70px);
}
  


/* ===== Artists modal (slick + simple) ===== */

.topbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 10px 14px;
  background: rgba(15,17,23,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-inner{
  width: min(1100px, calc(100% - 10px));
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.topbar-btn{
  appearance: none;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .2px;
  transition: background .2s ease, transform .08s ease, opacity .2s ease;
  user-select: none;
}
.topbar-btn:hover{ background: rgba(255,255,255,0.12); }
.topbar-btn:active{ transform: translateY(1px); }

/* Fullscreen overlay */
.modalOverlay{
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;              /* hidden by default */
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* show state */
.modalOverlay.open{ display: flex; }

.modalPanel{
  width: min(980px, 100%);
  border-radius: 18px;
  background: rgba(18,22,30,0.78);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 22px 70px rgba(0,0,0,0.55);
  overflow: hidden;
}
.modalPanel{
  max-height: calc(100dvh - 36px); /* dynamic viewport height (mobile-safe) */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* smooth iOS scrolling */
}

.modalHeader{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.modalTitle{
  font-size: 34px;
  letter-spacing: .2px;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.modalClose{
  position: absolute;
  right: 16px;
  top: 14px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.90);
  cursor: pointer;
  transition: background .2s ease, transform .08s ease;
}
.modalClose:hover{ background: rgba(255,255,255,0.10); }
.modalClose:active{ transform: translateY(1px); }

.artistsGrid{
  padding: 22px 22px 12px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* responsive grid */
@media (max-width: 900px){
  .artistsGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .modalTitle{ font-size: 28px; }
}
@media (max-width: 520px){
  .artistsGrid{ grid-template-columns: 1fr; }
}

/* artist card */
.artistCard{
  position: relative;
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  border-radius: 16px;
  padding: 38px 16px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  transition: transform .14s ease, background .2s ease, border-color .2s ease;
}
.artistCard:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
}

/* avatar overlap */
.artistAvatar{
  position: absolute;
  left: 50%;
  top: -18px;
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.25);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  display: grid;
  place-items: center;
}

.artistAvatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* fallback initials */
.artistInitials{
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .5px;
  color: rgba(255,255,255,0.92);
}

.artistName{
  margin-top: 18px;
  text-align: center;
  font-size: 18px;
  font-weight: 650;
  text-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

.artistPlatform{
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0.82;
  font-size: 12px;
}

.ytDot{
  width: 18px;
  height: 12px;
  border-radius: 3px;
  background: rgba(255, 56, 56, 0.92);
  position: relative;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}
.ytDot::after{
  content:"";
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0; height: 0;
  border-left: 6px solid rgba(255,255,255,0.92);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.modalFooter{
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}
.footerEm{ color: rgba(255,255,255,0.92); font-weight: 650; }

/* ===== Mobile App Mode ===== */
@media (max-width: 640px){

  /* allow scroll on mobile (desktop stays locked) */
  html, body { overflow: auto; }

  /* Make backgrounds feel cinematic on small screens */
  .bg-layer{
    background-size: cover;      /* mobile needs mood, not letterbox */
    background-position: center;
    filter: saturate(.95) contrast(1.02);
  }

  /* App-like layout */
  .door{
    align-items: flex-start;
    justify-content: center;
    padding: 86px 14px 120px; /* topbar space + room for sticky play */
    text-align: center;
  }

  .stack{
    width: min(94vw, 560px);
    gap: 10px;
  }

  /* Logo becomes identity, not a billboard */
  .logo{
    width: min(72vw, 320px);
    height: auto;
    opacity: 0.94;
  }

  .subtitle{
    font-size: 16px;
    letter-spacing: .2px;
  }

  .findus{
    font-size: 13px;
    line-height: 1.5;
    margin-top: 6px;
  }

  /* Sticky thumb-friendly CTA */
  .listen{
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: auto;
    min-width: 0;
    padding: 16px 18px;
    z-index: 70;
  }

  /* Hint sits above rail */
  .hint{
    margin-top: 8px;
    margin-bottom: 6px;
  }

  /* Mobile channels rail (hidden until playing) */
  .channelRail{
    width: 100%;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .5s ease, transform .5s ease;
    pointer-events: none; /* until revealed */
  }

  body.playing .channelRail{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .channelRailHeader{
    width: 100%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 0 auto 10px;
    padding: 0 4px;
  }

  .channelRailTitle{
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.70);
  }

  .channelRailAll{
    appearance: none;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.88);
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 12px;
    cursor: pointer;
  }

  .channelRailRow{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 4px 2px 2px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .railCard{
    flex: 0 0 auto;
    width: 140px;
    scroll-snap-align: start;
    text-decoration: none;
    color: rgba(255,255,255,0.92);
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
  }

  .railImg{
    width: 100%;
    aspect-ratio: 1 / 1;
    background: rgba(0,0,0,0.20);
  }

  .railImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .railName{
    padding: 10px 10px 12px;
    font-size: 13px;
    line-height: 1.15;
    text-shadow: 0 2px 14px rgba(0,0,0,0.55);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* default: channels rail hidden on desktop */
.channelRail{ display: none; }
@media (max-width: 640px){
  .channelRail{ display: block; }
}


  
  
</style>