/* ==========================================================================
   Liana's World — stylesheet
   Palette and type sampled directly from the live Wix site:
     navy   #21174C   (rgb 33,23,76)   headings, nav bar, footer
     orange #EB5825   (rgb 235,88,37)  CTA band, buttons, accents
     grey   #F0F0F2   (rgb 240,240,242) page background
   Type: DIN Condensed everywhere.
     "DIN Condensed" ships with macOS/iOS, so Apple visitors get the real face
     for free. Everyone else falls back to Oswald (closest free condensed).
     To serve real DIN Condensed to ALL visitors, add a licensed webfont in
     assets/fonts/ and an @font-face block — see the note at the top of the file.
   ========================================================================== */

:root {
  --navy:       #21174C;
  --navy-deep:  #1A1240;
  --orange:     #EB5825;
  --orange-dk:  #D14A1C;
  --grey:       #F0F0F2;
  --white:      #FFFFFF;
  --ink:        #303030;

  /* One condensed family for the whole site. */
  --font-head: "DIN Condensed", "DIN Alternate", "Oswald", "Arial Narrow", sans-serif;
  --font-body: "DIN Condensed", "DIN Alternate", "Oswald", "Arial Narrow", sans-serif;

  --wrap: 1160px;
  --nav-h: 74px;

  /* Brand art, served from Wix's CDN until you export the originals.
     See assets/img/README.txt. */
  --brick: url("https://static.wixstatic.com/media/f61af8_ad88f4193c6b46bd8b4bd6c11b21bd3b~mv2.png/v1/crop/w_1715,h_511,al_c,q_90,enc_auto/f61af8_ad88f4193c6b46bd8b4bd6c11b21bd3b~mv2.png");
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--navy);
  background: var(--grey);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-transform: uppercase;   /* brand: everything in caps */
}
/* But keep what people TYPE in normal case (emails, messages). */
input, textarea, select { text-transform: none; }

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--navy);
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 999; background: var(--navy); color: #fff; padding: 12px 20px; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 12px 34px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease, opacity .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(33,23,76,.22); }
.btn:active { transform: translateY(0); }
.btn--white  { background: var(--white); color: var(--orange); }
.btn--white:hover { background: var(--navy); color: #fff; }
.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: var(--orange-dk); }
.btn--outline { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 2px var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--block { display: block; width: 100%; text-align: center; }
.btn--sm { padding: 9px 20px; font-size: .875rem; }

/* --- Masthead: brick wall, stage lights, Liana, ribbon ------------------- */
.masthead {
  position: relative;
  background: var(--brick) center/cover no-repeat, var(--navy-deep);
  height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* NOT overflow:hidden — the ribbon deliberately hangs past the bottom edge
     and overlaps the nav bar, exactly as it does on the live site. */
}
.masthead__inner { position: relative; width: 100%; max-width: 1000px; height: 100%; }

/* The stage lights DO need clipping, so they get their own layer. */
.masthead__lights { position: absolute; inset: 0; overflow: hidden; z-index: 1; }

/* Liana standing on the globe */
.masthead__star {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  height: 430px; width: auto;
  z-index: 2;
}

/* The orange ribbon. Dips just past the masthead edge to overlap the nav,
   the way it does on the live site. The image is the ribbon shape only —
   "LIANA'S WORLD" is live text laid over it (same as Wix). */
.masthead__brand {
  position: absolute;
  bottom: -18px; left: 50%;
  transform: translateX(-50%);
  width: 460px; max-width: 74vw;
  z-index: 60;
  display: block;
  text-decoration: none;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
}
.masthead__ribbon { width: 100%; height: auto; }
.masthead__wordmark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding-bottom: 6%;              /* optical centre of the ribbon band */
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.25rem, 3.9vw, 2.375rem);
  letter-spacing: .01em;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 2px 3px rgba(0,0,0,.35);
  pointer-events: none;
}

/* Blinking stage lights. Two frames each, cross-faded — same trick Wix used. */
.stage-light { position: absolute; z-index: 1; }
.stage-light img { position: absolute; inset: 0; width: 100%; height: auto; }
.stage-light img:nth-child(2) { animation: blink 1.6s steps(1, end) infinite; }
@keyframes blink { 0%, 49% { opacity: 0; } 50%, 100% { opacity: 1; } }

.stage-light--bolt { left: 4%;  top: 8%;  width: 190px; }
.stage-light--bar  { right: 2%; top: 22%; width: 250px; }
.stage-light--spot { right: 20%; top: -4%; width: 130px; z-index: 1; }
.stage-light--spot img { animation: none; }

@media (max-width: 900px) {
  .masthead { height: 400px; }
  .masthead__star { height: 320px; }
  .masthead__brand { width: 330px; bottom: -14px; }
  .stage-light--bolt { width: 110px; }
  .stage-light--bar  { width: 140px; }
  .stage-light--spot { width: 80px; right: 6%; }
}
@media (max-width: 560px) {
  .masthead { height: 320px; }
  .masthead__star { height: 240px; }
  .stage-light--bolt, .stage-light--bar { opacity: .5; }
  .stage-light--spot { display: none; }
}

/* --- Nav bar ------------------------------------------------------------ */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy);
  min-height: var(--nav-h);
}
.navbar__inner { min-height: var(--nav-h); display: flex; align-items: center; justify-content: center; }

.nav { display: flex; align-items: center; gap: 8px; }
.nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.0625rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: 10px 18px;
  transition: color .15s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--orange); }
.nav a[aria-current="page"] { color: rgba(255,255,255,.45); }

.nav-toggle {
  display: none;
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: transparent; border: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: #fff;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }

@media (max-width: 900px) {
  .navbar__inner { position: relative; justify-content: center; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--navy);
    padding-bottom: 12px;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 14px; text-align: center; font-size: 1.125rem; }
}

/* --- Orange CTA band (2-slide carousel) --------------------------------- */
.band {
  position: relative;
  background: var(--orange);
  color: #fff;
  overflow: hidden;
}
.band__track { position: relative; min-height: 210px; }
.band__slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  text-align: center;
  padding: 40px 70px;
  opacity: 0; visibility: hidden;
  transition: opacity .5s ease;
}
.band__slide[data-active="true"] { opacity: 1; visibility: visible; }
.band__slide h2 { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.75rem); letter-spacing: .01em; }

.band__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  background: transparent; border: 0;
  display: grid; place-items: center;
  opacity: .85;
}
.band__arrow:hover { opacity: 1; }
.band__arrow svg { width: 22px; height: 22px; stroke: #fff; stroke-width: 2; fill: none; }
.band__arrow--prev { left: 14px; }
.band__arrow--next { right: 14px; }
@media (max-width: 560px) {
  .band__slide { padding: 36px 46px; }
  .band__arrow { width: 34px; }
}

/* --- Sections ----------------------------------------------------------- */
.section { padding: 70px 0; }
.section--grey  { background: var(--grey); }
.section--white { background: var(--white); }

.section__title { font-size: clamp(2rem, 3.6vw, 3.125rem); margin-bottom: 28px; }

/* Watch / Listen two-column, mirroring the live layout */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 48px; } }

/* --- Video player ------------------------------------------------------- */
.player { background: #000; border-radius: 2px; overflow: hidden; box-shadow: 0 6px 24px rgba(33,23,76,.14); }

/* Click-to-load facade: no YouTube script, no cookies, until the user asks. */
.yt {
  position: relative; display: block; width: 100%;
  aspect-ratio: 16 / 9;
  background: #000 center/cover no-repeat;
  border: 0; padding: 0;
}
.yt--tall { aspect-ratio: 4 / 3; }
.yt::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.28); transition: background .2s ease; }
.yt:hover::after { background: rgba(0,0,0,.10); }
.yt__play {
  position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: grid; place-items: center;
  transition: transform .2s ease;
}
.yt:hover .yt__play { transform: translate(-50%,-50%) scale(1.08); }
.yt__play::before {
  content: ""; width: 0; height: 0;
  border-left: 18px solid var(--navy);
  border-top: 11px solid transparent; border-bottom: 11px solid transparent;
  margin-left: 5px;
}
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.player__bar { background: var(--orange); height: 34px; display: grid; place-items: center; }
.player__bar span, .player__bar span::before, .player__bar span::after {
  display: block; width: 18px; height: 2px; background: #fff;
}
.player__bar span { position: relative; }
.player__bar span::before { content: ""; position: absolute; top: -5px; left: 0; }
.player__bar span::after  { content: ""; position: absolute; top:  5px; left: 0; }

/* Thumbnail strip beneath the featured video */
.thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 14px; }
.thumbs .yt { aspect-ratio: 16/9; border-radius: 2px; overflow: hidden; }
.thumbs .yt__play { width: 38px; height: 38px; }
.thumbs .yt__play::before { border-left-width: 11px; border-top-width: 7px; border-bottom-width: 7px; margin-left: 3px; }

/* --- Spotify ------------------------------------------------------------ */
.spotify { border-radius: 12px; overflow: hidden; box-shadow: 0 6px 24px rgba(33,23,76,.14); }
.spotify iframe { width: 100%; height: 420px; border: 0; }

/* --- Product carousel with the vertical orange tab ---------------------- */
.merch {
  position: relative;
  background: var(--white);
  padding: 34px 34px 34px 78px;
  box-shadow: 0 4px 20px rgba(33,23,76,.08);
}
.merch__tab {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 46px;
  background: var(--orange);
  display: grid; place-items: center;
}
.merch__tab span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .6875rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.merch__title {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: none;
  font-size: 1.5rem;
  color: var(--ink);
  text-align: center;
  margin-bottom: 28px;
}

.carousel { position: relative; }
.carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 28px) / 3);
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.carousel__track::-webkit-scrollbar { display: none; }
@media (max-width: 900px) { .carousel__track { grid-auto-columns: calc((100% - 28px) / 2); } }
@media (max-width: 600px) { .carousel__track { grid-auto-columns: 100%; } }

.carousel__arrow {
  position: absolute; top: 42%; transform: translateY(-50%);
  z-index: 2;
  width: 34px; height: 34px;
  border: 0; background: transparent;
  display: grid; place-items: center;
}
.carousel__arrow svg { width: 20px; height: 20px; stroke: var(--ink); stroke-width: 1.6; fill: none; }
.carousel__arrow:hover svg { stroke: var(--orange); }
.carousel__arrow--prev { left: -30px; }
.carousel__arrow--next { right: -30px; }
.carousel__arrow[disabled] { opacity: .25; pointer-events: none; }

.carousel__dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.carousel__dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0;
  background: #C9C9CF; padding: 0;
}
.carousel__dots button[aria-current="true"] { background: var(--navy); }

.product { scroll-snap-align: start; text-align: center; }
.product__media {
  aspect-ratio: 1/1; background: var(--white);
  display: grid; place-items: center; overflow: hidden;
}
.product__media img { width: 100%; height: 100%; object-fit: contain; }
/* h3 for document outline, but styled as body copy — matches the live cards. */
.product__name {
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  font-size: .8125rem;
  color: var(--ink);
  line-height: 1.4;
  margin: 14px 0 10px;
  min-height: 2.8em;
}
.product__rule { width: 30px; height: 2px; background: var(--orange); margin: 0 auto 10px; }
.product__price { font-size: .9375rem; color: var(--ink); font-weight: 400; }
.product__options { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px; margin: 12px 0 10px; }
.product__size {
  font-family: var(--font-body); font-size: .75rem;
  padding: 7px 15px; border-radius: 999px;
  border: 2px solid #D8D8DE; background: transparent; color: var(--ink);
  transition: all .14s ease;
}
.product__size:hover { transform: translateY(-2px); border-color: var(--navy); }
.product__size[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: #fff; }
.product .btn { margin-top: 10px; }

/* --- Grid (full shop page) ---------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 40px 28px; }

/* --- Prose -------------------------------------------------------------- */
.prose { max-width: 820px; font-size: 1rem; color: var(--navy); }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-size: 1.5rem; margin-top: 1.8em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-top: .4em; }
.prose strong { font-weight: 600; }

/* --- Page title (inner pages) ------------------------------------------- */
.page-title { font-size: clamp(1.9rem, 3.6vw, 2.75rem); margin-bottom: 30px; }

/* --- Forms -------------------------------------------------------------- */
.form { display: grid; gap: 20px; max-width: 620px; }
.form--split { grid-template-columns: 1fr 1fr; }
.form__row { grid-column: 1 / -1; }
.field { display: grid; gap: 5px; }
.field label { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); }
.field input, .field textarea {
  font: inherit; padding: 10px 0;
  border: 0; border-bottom: 1px solid var(--navy);
  background: transparent; color: var(--navy); border-radius: 0;
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--orange); }
.field textarea { min-height: 130px; resize: vertical; }
@media (max-width: 640px) { .form--split { grid-template-columns: 1fr; } }

.newsletter { display: flex; gap: 12px; max-width: 480px; margin-top: 20px; }
.newsletter input {
  flex: 1; font: inherit; padding: 11px 0;
  border: 0; border-bottom: 1px solid var(--navy); background: transparent; color: var(--navy);
}
.newsletter input:focus { outline: none; border-bottom-color: var(--orange); }
@media (max-width: 520px) { .newsletter { flex-direction: column; } }

.form__status { font-size: .875rem; margin-top: 6px; }
.form__status[data-state="ok"]  { color: #0a7c3f; }
.form__status[data-state="err"] { color: #b3122b; }

/* --- Footer ------------------------------------------------------------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.85); padding: 40px 0 34px; text-align: center; }
.socials { display: flex; justify-content: center; gap: 26px; margin-bottom: 16px; }
.socials a { color: #fff; opacity: .9; transition: opacity .15s ease, transform .15s ease; }
.socials a:hover { opacity: 1; transform: translateY(-2px); }
.socials svg { width: 22px; height: 22px; fill: currentColor; }
.site-footer p { font-size: .9375rem; font-weight: 300; }

/* ==========================================================================
   THE AMP — music page jukebox
   A stage amp / boombox: tolex cabinet, speaker grille, chunky knobs,
   a live VU meter, and the Spotify player sitting in the "deck" slot.
   ========================================================================== */

.amp-stage {
  background: var(--brick) center/cover no-repeat, var(--navy-deep);
  padding: 64px 0 72px;
  position: relative;
}
.amp-stage::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 30%, rgba(235,88,37,.20), transparent 70%);
  pointer-events: none;
}
.amp-stage > .wrap { position: relative; }

/* --- Cabinet ------------------------------------------------------------ */
.amp {
  max-width: 960px; margin-inline: auto;
  background: linear-gradient(180deg, #2B1E5C 0%, #1A1240 100%);
  border-radius: 18px;
  padding: 22px;
  border: 3px solid rgba(0,0,0,.5);
  box-shadow:
    0 0 0 4px var(--orange),                 /* the piping */
    0 30px 60px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.10);
}

/* Corner hardware */
.amp__corners { position: relative; }
.amp__corners::before, .amp__corners::after {
  content: ""; position: absolute; top: -8px;
  width: 18px; height: 18px; border-radius: 3px;
  background: linear-gradient(135deg, #C9CDD6, #6C7180);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.6);
}
.amp__corners::before { left: -8px; }
.amp__corners::after  { right: -8px; }

/* --- Head: grille + control panel --------------------------------------- */
.amp__head { display: grid; grid-template-columns: 1fr 250px; gap: 20px; }
@media (max-width: 780px) { .amp__head { grid-template-columns: 1fr; } }

/* grille */
.amp__grille {
  border-radius: 10px;
  min-height: 132px;
  background-color: #120C2C;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.16) 1px, transparent 1.4px),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(0,0,0,.35));
  background-size: 7px 7px, 100% 100%;
  box-shadow: inset 0 0 30px rgba(0,0,0,.8), inset 0 0 0 2px rgba(0,0,0,.5);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
/* The two speaker cones */
.amp__cone {
  position: absolute;
  width: 120px; height: 120px; border-radius: 50%;
  background:
    radial-gradient(circle, #0B0720 0%, #0B0720 28%, rgba(255,255,255,.06) 29%, transparent 30%),
    radial-gradient(circle, rgba(255,255,255,.05), transparent 70%);
  box-shadow: inset 0 0 20px rgba(0,0,0,.9);
}
.amp__cone--l { left: 8%;  }
.amp__cone--r { right: 8%; }
@media (max-width: 560px) { .amp__cone { width: 84px; height: 84px; } }

.amp__badge {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  letter-spacing: .14em;
  color: #fff;
  padding: 10px 20px;
  border: 2px solid var(--orange);
  border-radius: 4px;
  background: rgba(18,12,44,.75);
  text-shadow: 0 0 14px rgba(235,88,37,.9);
}

/* --- Control panel ------------------------------------------------------ */
/* panel */
.amp__panel {
  border-radius: 10px;
  padding: 12px;
  background: linear-gradient(180deg, #3A2A70, #241A52);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.45), inset 0 2px 0 rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: 9px;
}

.amp__lamp-row { display: flex; align-items: center; gap: 10px; }
.amp__lamp {
  width: 15px; height: 15px; border-radius: 50%;
  background: #5A2A18;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.7);
  transition: background .2s ease, box-shadow .2s ease;
  flex-shrink: 0;
}
.amp__lamp.is-on {
  background: var(--orange);
  box-shadow: 0 0 12px 3px rgba(235,88,37,.85), inset 0 1px 2px rgba(255,255,255,.4);
}
.amp__lamp-label {
  font-family: var(--font-head); font-size: .625rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
}

/* Knobs */
.amp__knobs { display: flex; justify-content: space-between; gap: 8px; }
.knob { text-align: center; }
.knob__dial {
  width: 38px; height: 38px; border-radius: 50%;
  margin-inline: auto;
  background: conic-gradient(from 220deg, #4A4F5C 0deg, #2A2E38 140deg, #4A4F5C 280deg, #2A2E38 360deg);
  box-shadow: 0 3px 6px rgba(0,0,0,.6), inset 0 0 0 3px #16192099, inset 0 2px 3px rgba(255,255,255,.25);
  position: relative;
}
.knob__dial::after {
  content: "";
  position: absolute; left: 50%; top: 6px;
  width: 3px; height: 14px; border-radius: 2px;
  background: var(--orange);
  transform: translateX(-50%) rotate(var(--rot, 0deg));
  transform-origin: 50% 17px;
  box-shadow: 0 0 6px rgba(235,88,37,.9);
}
.knob__label {
  display: block; margin-top: 7px;
  font-family: var(--font-head); font-size: .5625rem; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}

/* VU meter */
.vu { display: flex; align-items: flex-end; gap: 3px; height: 26px; }
.vu span {
  flex: 1; border-radius: 1px;
  height: 12%;
  background: linear-gradient(180deg, var(--orange), #8C2F10);
  opacity: .35;
  transform-origin: bottom;
}
.vu.is-live span { animation: vu-bounce .55s ease-in-out infinite alternate; opacity: 1; }
.vu.is-live span:nth-child(1) { animation-delay: 0s;    }
.vu.is-live span:nth-child(2) { animation-delay: .08s;  }
.vu.is-live span:nth-child(3) { animation-delay: .16s;  }
.vu.is-live span:nth-child(4) { animation-delay: .04s;  }
.vu.is-live span:nth-child(5) { animation-delay: .22s;  }
.vu.is-live span:nth-child(6) { animation-delay: .12s;  }
.vu.is-live span:nth-child(7) { animation-delay: .28s;  }
.vu.is-live span:nth-child(8) { animation-delay: .02s;  }
.vu.is-live span:nth-child(9) { animation-delay: .18s;  }
.vu.is-live span:nth-child(10){ animation-delay: .10s;  }
@keyframes vu-bounce { from { height: 12%; } to { height: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .vu.is-live span { animation: none; height: 60%; }
}

/* --- Now playing readout + Spotify deck ---------------------------------- */
.amp__deck { margin-top: 20px; }
.amp__now {
  background: #0E0A24;
  border-radius: 8px 8px 0 0;
  padding: 14px 18px;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.5);
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.amp__now-title {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  color: #fff;
  text-shadow: 0 0 10px rgba(235,88,37,.55);
  line-height: 1.1;
}
.amp__now-index {
  font-family: var(--font-head); font-size: .6875rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--orange);
  white-space: nowrap;
}
.amp__embed { border-radius: 0 0 8px 8px; overflow: hidden; background: #0E0A24; }
.amp__embed iframe { width: 100%; border: 0; display: block; }

.amp__note {
  margin-top: 12px;
  font-size: .75rem; color: rgba(255,255,255,.45); text-align: center;
}

/* --- Tracklist ---------------------------------------------------------- */
.amp__tracks {
  margin-top: 20px;
  border-radius: 10px; overflow: hidden;
  background: rgba(0,0,0,.28);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.4);
  max-height: 330px; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: var(--orange) transparent;
}
.track {
  display: grid;
  grid-template-columns: 34px 30px 1fr auto;
  align-items: center; gap: 10px;
  width: 100%;
  padding: 11px 16px;
  background: transparent; border: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-align: left;
  color: rgba(255,255,255,.82);
  font-family: var(--font-body);
  transition: background .15s ease, color .15s ease;
}
.track:last-child { border-bottom: 0; }
.track:hover { background: rgba(235,88,37,.14); color: #fff; }
.track.is-current { background: rgba(235,88,37,.22); color: #fff; }

.track__num {
  font-family: var(--font-head); font-size: .8125rem;
  color: rgba(255,255,255,.4); letter-spacing: .06em;
}
.track.is-current .track__num { color: var(--orange); }

.track__play {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.10);
  display: grid; place-items: center;
  transition: background .15s ease;
}
.track__play::before {
  content: ""; width: 0; height: 0;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  margin-left: 2px;
}
.track:hover .track__play, .track.is-current .track__play { background: var(--orange); color: #fff; }

.track__title { font-size: .9375rem; }
.track.is-current .track__title { font-weight: 500; }
.track__time { font-size: .8125rem; color: rgba(255,255,255,.4); font-variant-numeric: tabular-nums; }

@media (max-width: 480px) {
  .track { grid-template-columns: 26px 26px 1fr auto; padding: 10px 12px; gap: 8px; }
  .track__title { font-size: .875rem; }
}

/* --- Platform links ------------------------------------------------------ */
.platforms {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 960px; margin: 44px auto 0;
}
@media (max-width: 720px) { .platforms { grid-template-columns: 1fr; gap: 14px; } }

.platform {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.10);
  text-decoration: none;
  color: #fff;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.platform:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.10);
  box-shadow: inset 0 0 0 2px var(--brand), 0 12px 26px rgba(0,0,0,.4);
}
.platform svg { width: 30px; height: 30px; fill: var(--brand); flex-shrink: 0; }
.platform__name {
  font-family: var(--font-head); font-weight: 500; text-transform: uppercase;
  letter-spacing: .06em; font-size: .9375rem; line-height: 1.2;
}
.platform__meta {
  margin-left: auto;
  font-size: .6875rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); white-space: nowrap;
}
.platform--pending { opacity: .42; cursor: not-allowed; }
.platform--pending:hover { transform: none; background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 2px rgba(255,255,255,.10); }

/* ==========================================================================
   PLAY! — interactive instruments (Chordy keys, Barry bass, Tom Tom drums)
   Lives on the dark stage, matching the masthead.
   ========================================================================== */

.play-stage {
  background: var(--brick) center/cover no-repeat, var(--navy-deep);
  padding: 60px 0 80px;
  position: relative;
}
.play-stage::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 20%, rgba(235,88,37,.22), transparent 70%);
  pointer-events: none;
}
.play-stage > .wrap { position: relative; }

.play-intro { text-align: center; max-width: 640px; margin: 0 auto 34px; }
.play-intro h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.25rem); }
.play-intro p { color: rgba(255,255,255,.8); margin-top: 12px; font-size: 1.05rem; }

/* --- Instrument tabs (the three characters) ---------------------------- */
.inst-tabs { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.inst-tab {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1rem;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 12px 24px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.inst-tab:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); }
.inst-tab .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--tab-color, var(--orange)); box-shadow: 0 0 10px var(--tab-color, var(--orange)); }
.inst-tab[aria-selected="true"] { background: var(--tab-color, var(--orange)); border-color: #fff; color: #14102b; }
.inst-tab[aria-selected="true"] .dot { background: #14102b; box-shadow: none; }

/* --- Instrument panel shell (the cabinet) ------------------------------ */
.inst-panel {
  max-width: 900px; margin-inline: auto;
  background: linear-gradient(180deg, #2B1E5C, #1A1240);
  border-radius: 20px;
  padding: 28px;
  border: 3px solid rgba(0,0,0,.5);
  box-shadow: 0 0 0 4px var(--panel-accent, var(--orange)), 0 26px 60px rgba(0,0,0,.55);
}
.inst-panel__name {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em;
  color: #fff; text-align: center; font-size: 1.5rem; margin-bottom: 6px;
}
.inst-panel__tip { text-align: center; color: rgba(255,255,255,.55); font-size: .8125rem; margin-bottom: 22px; }

/* --- Chordy: the keyboard ---------------------------------------------- */
#chordy { --panel-accent: #8B4FE0; }
.keyboard {
  position: relative;
  display: flex;
  justify-content: center;
  height: 220px;
  padding: 0 6px;
}
.pkey {
  position: relative;
  width: 62px; height: 100%;
  margin: 0 2px;
  border: 0; border-radius: 0 0 8px 8px;
  background: linear-gradient(180deg, #fff, #ece9f5);
  box-shadow: inset 0 -6px 0 rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.4);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 12px;
  cursor: pointer;
  transition: transform .04s ease, background .06s ease;
}
.pkey--black {
  width: 40px; height: 62%;
  margin: 0 -20px; z-index: 2;
  background: linear-gradient(180deg, #3a2f5c, #14102b);
  box-shadow: inset 0 -5px 0 rgba(0,0,0,.5), 0 4px 8px rgba(0,0,0,.5);
  border-radius: 0 0 6px 6px;
}
.pkey__hint { font-family: var(--font-head); font-size: .75rem; color: #9a91b5; }
.pkey--black .pkey__hint { color: rgba(255,255,255,.55); }
.pkey.is-hit { transform: translateY(3px); background: linear-gradient(180deg, #d9c9ff, #b79cf0); }
.pkey--black.is-hit { background: linear-gradient(180deg, #7b57c9, #5a3aa0); }

@media (max-width: 640px) {
  .keyboard { height: 180px; overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; }
  .pkey { width: 52px; flex: 0 0 auto; }
  .pkey--black { width: 34px; margin: 0 -17px; }
}

/* --- Barry: the bass --------------------------------------------------- */
#barry { --panel-accent: #00A6B8; }
.bass { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }
.bstring {
  border: 0; border-radius: 12px;
  padding: 30px 0;
  background: linear-gradient(180deg, #123f47, #0c2a30);
  box-shadow: inset 0 0 0 2px rgba(0,198,203,.4), 0 6px 14px rgba(0,0,0,.4);
  color: #fff; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: transform .05s ease, background .08s ease;
}
.bstring__note { font-family: var(--font-head); font-size: 1.5rem; }
.bstring__hint { font-family: var(--font-head); font-size: .7rem; color: rgba(255,255,255,.45); }
.bstring.is-hit { transform: translateY(3px); background: linear-gradient(180deg, #00c2cb, #007e86); }
@media (max-width: 640px) { .bass { grid-template-columns: repeat(4, 1fr); } .bstring { padding: 22px 0; } }

/* --- Tom Tom: the drum pads -------------------------------------------- */
#tomtom { --panel-accent: var(--orange); }
.kit { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pad {
  aspect-ratio: 1 / 1;
  border: 0; border-radius: 16px;
  background: radial-gradient(circle at 50% 35%, #4a3a2e, #241a12);
  box-shadow: inset 0 0 0 3px rgba(235,88,37,.5), inset 0 0 24px rgba(0,0,0,.6), 0 6px 16px rgba(0,0,0,.4);
  color: #fff; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  transition: transform .05s ease, box-shadow .08s ease, background .08s ease;
}
.pad__label { font-family: var(--font-head); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .04em; }
.pad__hint { font-family: var(--font-head); font-size: .7rem; color: rgba(255,255,255,.5); }
.pad.is-hit {
  transform: scale(.95);
  background: radial-gradient(circle at 50% 35%, var(--orange), #b3400f);
  box-shadow: inset 0 0 0 3px #fff, 0 0 30px rgba(235,88,37,.7);
}
.pad--kick { grid-column: span 2; aspect-ratio: 2 / 1; }
.pad--crash { grid-column: span 2; aspect-ratio: 2 / 1; }
@media (max-width: 640px) { .kit { grid-template-columns: repeat(2, 1fr); } .pad--kick, .pad--crash { grid-column: span 2; aspect-ratio: 3 / 1; } }

/* Little character caption under each instrument */
.inst-by { text-align: center; margin-top: 22px; color: rgba(255,255,255,.6); font-size: .9rem; }
.inst-by strong { color: #fff; font-family: var(--font-head); letter-spacing: .04em; }

/* ==========================================================================
   Videos page — clean responsive grid of embedded players
   ========================================================================== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.video-card {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(33,23,76,.16);
  transition: transform .16s ease, box-shadow .16s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(33,23,76,.24); }
.video-card .yt { aspect-ratio: 16 / 9; border-radius: 0; }
@media (max-width: 520px) { .video-grid { grid-template-columns: 1fr; } }

.yt-cta { text-align: center; margin-top: 48px; }
.yt-cta h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 18px; }
.yt-cta .btn { display: inline-flex; align-items: center; gap: 10px; }
.yt-cta .btn svg { width: 22px; height: 22px; fill: currentColor; }

/* --- Amp: logo centered in the grille (replaces the text badge) -------- */
.amp__badge-logo {
  position: relative; z-index: 1;
  width: clamp(78px, 12vw, 112px);
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.55));
}

/* --- Amp knobs: now turnable (tactile) --------------------------------- */
.knob__dial { cursor: ns-resize; touch-action: none; }
.knob__dial:active { cursor: grabbing; }

/* ==========================================================================
   Coloring pages gallery
   ========================================================================== */
.coloring-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 620px) { .coloring-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .coloring-grid { grid-template-columns: 1fr; } }
.color-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(33,23,76,.10);
  display: flex; flex-direction: column;
  transition: transform .16s ease, box-shadow .16s ease;
}
.color-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(33,23,76,.18); }
.color-card__img {
  aspect-ratio: 8.5 / 11;
  background: #f6f6f8;
  border-bottom: 1px solid var(--line, rgba(36,16,64,.10));
}
.color-card__img img { width: 100%; height: 100%; object-fit: contain; }
.color-card__foot { padding: 14px 16px; display: flex; flex-direction: column; gap: 10px; text-align: center; }
.color-card__name { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; font-size: 1.0625rem; color: var(--navy); }
.color-dl-all { text-align: center; margin: 6px 0 40px; }
.color-dl-all .btn svg { width: 20px; height: 20px; fill: currentColor; vertical-align: -3px; margin-right: 6px; }

/* ==========================================================================
   VIDEOS — retro TV + tape shelf
   ========================================================================== */
.tv-stage {
  background: var(--brick) center/cover no-repeat, var(--navy-deep);
  padding: 56px 0 72px; position: relative;
}
.tv-stage::before { content:""; position:absolute; inset:0; background: radial-gradient(60% 55% at 50% 22%, rgba(235,88,37,.20), transparent 70%); pointer-events:none; }
.tv-stage > .wrap { position: relative; }
.tv-intro { text-align:center; max-width:640px; margin:0 auto 34px; }
.tv-intro h1 { color:#fff; font-size:clamp(2rem,5vw,3.25rem); }
.tv-intro p { color:rgba(255,255,255,.8); margin-top:10px; }

.tv {
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(180deg,#8a5a34,#5f3c20);
  border-radius: 26px;
  padding: 30px 30px 24px;
  box-shadow: 0 0 0 4px rgba(0,0,0,.4), 0 30px 60px rgba(0,0,0,.55), inset 0 2px 0 rgba(255,255,255,.12);
  position: relative;
}
/* antenna */
.tv__antenna { position:absolute; left:50%; top:-58px; transform:translateX(-50%); width:200px; height:60px; z-index:-1; }
.tv__antenna::before, .tv__antenna::after {
  content:""; position:absolute; bottom:0; left:50%; width:4px; height:64px; background:linear-gradient(#cfcfcf,#8a8a8a); border-radius:3px; transform-origin:bottom;
}
.tv__antenna::before { transform: rotate(-32deg); }
.tv__antenna::after  { transform: rotate(32deg); }

.tv__set { display:grid; grid-template-columns: 1fr 92px; gap:20px; }
.tv__screen {
  position: relative; aspect-ratio: 4/3;
  background:#000; border-radius:14px; overflow:hidden;
  box-shadow: inset 0 0 0 8px #21160c, inset 0 0 40px rgba(0,0,0,.9);
}
.tv__screen iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
/* standby screen */
.tv__standby {
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; text-align:center;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 2px, transparent 2px 4px),
    radial-gradient(circle at 50% 40%, #2a2350, #0e0a22);
}
.tv__standby img { width: clamp(120px, 30%, 190px); height:auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,.6)); }
.tv__standby p { color: rgba(255,255,255,.75); font-family:var(--font-head); text-transform:uppercase; letter-spacing:.12em; font-size:.9rem; }
.tv__panel { display:flex; flex-direction:column; align-items:center; gap:16px; padding-top:6px; }
.tv__dial { width:58px; height:58px; border-radius:50%; background:conic-gradient(from 220deg,#4a4f5c,#2a2e38,#4a4f5c,#2a2e38); box-shadow:0 3px 6px rgba(0,0,0,.6), inset 0 0 0 4px #16192088, inset 0 2px 3px rgba(255,255,255,.25); position:relative; }
.tv__dial::after { content:""; position:absolute; left:50%; top:7px; width:3px; height:16px; background:var(--orange); border-radius:2px; transform:translateX(-50%); box-shadow:0 0 6px rgba(235,88,37,.9); }
.tv__light { width:14px; height:14px; border-radius:50%; background:var(--orange); box-shadow:0 0 12px 3px rgba(235,88,37,.8); }
.tv__grille { width:56px; height:70px; border-radius:8px; background:repeating-linear-gradient(0deg,#3a2617 0 3px,#1f140b 3px 6px); box-shadow:inset 0 0 0 2px rgba(0,0,0,.5); }
@media (max-width:560px){ .tv{ padding:20px 18px } .tv__set{ grid-template-columns:1fr; } .tv__panel{ flex-direction:row; justify-content:center; } .tv__grille{ width:70px; height:44px } }

/* tape shelf */
.tape-title { color:#fff; text-align:center; font-size:clamp(1.4rem,3.2vw,2rem); margin:42px 0 20px; }
.tape-shelf { display:grid; grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); gap:16px; max-width:820px; margin:0 auto; }
.tape {
  display:flex; align-items:stretch; gap:0; width:100%;
  background:linear-gradient(180deg,#2a2a2e,#151517);
  border:0; border-radius:8px; overflow:hidden; cursor:pointer;
  box-shadow:0 5px 14px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08);
  transition:transform .14s ease, box-shadow .14s ease;
  text-align:left;
}
.tape:hover { transform:translateY(-3px); box-shadow:0 12px 26px rgba(0,0,0,.5); }
.tape__spine { width:16px; background:repeating-linear-gradient(90deg,#000 0 3px,#333 3px 6px); flex:0 0 auto; }
.tape__label { flex:1; background:linear-gradient(180deg,#fff,#efe9dc); color:var(--navy); padding:14px 14px; font-family:var(--font-body); font-size:.95rem; line-height:1.25; display:flex; align-items:center; }
.tape__num { flex:0 0 auto; align-self:center; padding:0 12px; color:rgba(255,255,255,.5); font-family:var(--font-head); font-size:.8rem; }
.tape.is-playing { outline:3px solid var(--orange); outline-offset:2px; }
.tape.is-playing .tape__label::after { content:" ▶"; color:var(--orange); font-weight:700; }

/* ==========================================================================
   PLAY! — realistic instrument upgrades + song player
   ========================================================================== */
.inst-now {
  display:flex; align-items:center; justify-content:center; gap:12px;
  min-height:52px; margin-bottom:16px;
  background:#0E0A24; border-radius:10px; box-shadow:inset 0 0 0 2px rgba(0,0,0,.5);
  font-family:var(--font-head); text-transform:uppercase; letter-spacing:.14em;
}
.inst-now__label { color:rgba(255,255,255,.5); font-size:.72rem; }
.inst-now__note  { color:#fff; font-size:1.5rem; min-width:3ch; text-align:center; text-shadow:0 0 10px rgba(235,88,37,.6); }
.inst-now__note.is-live { color:var(--orange); }

.song-bar { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:22px; }
.song-bar .lbl { width:100%; text-align:center; color:rgba(255,255,255,.55); font-family:var(--font-head); text-transform:uppercase; letter-spacing:.14em; font-size:.72rem; margin-bottom:2px; }
.song-btn {
  font-family:var(--font-head); text-transform:uppercase; letter-spacing:.03em; font-size:.95rem;
  color:#fff; background:rgba(255,255,255,.09); border:2px solid rgba(255,255,255,.16); border-radius:999px;
  padding:10px 20px; display:inline-flex; align-items:center; gap:8px; transition:transform .12s ease, background .15s ease, border-color .15s ease;
}
.song-btn:hover { transform:translateY(-2px); background:rgba(255,255,255,.15); }
.song-btn[aria-pressed="true"] { background:var(--panel-accent,var(--orange)); border-color:#fff; color:#14102b; }
.song-btn::before { content:"▶"; font-size:.8em; }
.song-btn[aria-pressed="true"]::before { content:"■"; }

/* realistic piano */
.keyboard { height: 240px; padding: 0; }
.pkey {
  width: 58px; height: 100%; margin: 0;
  border: 1px solid #b9b3c9; border-top:0; border-radius: 0 0 7px 7px;
  background: linear-gradient(180deg,#ffffff 0%, #f3f1f8 78%, #e4e0ee 100%);
  box-shadow: inset 0 -8px 10px -6px rgba(0,0,0,.25), 0 3px 5px rgba(0,0,0,.35);
}
.pkey--black {
  width: 36px; height: 62%; margin: 0 -18px;
  background: linear-gradient(180deg,#4a4258,#191322 70%,#0d0a14);
  border:0; border-radius: 0 0 5px 5px;
  box-shadow: inset 0 -6px 8px -4px rgba(255,255,255,.25), 0 4px 6px rgba(0,0,0,.6);
}
.pkey__hint { font-size:.72rem; color:#a49dbd; font-weight:600; }
.pkey--black .pkey__hint { color:rgba(255,255,255,.5); }
.pkey__note { position:absolute; bottom:30px; left:0; right:0; text-align:center; font-family:var(--font-head); font-size:.8rem; color:#8a83a6; pointer-events:none; }
.pkey.is-hit { background:linear-gradient(180deg,#ffd9a8,#f6a94e); }
.pkey--black.is-hit { background:linear-gradient(180deg,#c07a2e,#8a4f12); }
@media (max-width:640px){ .keyboard{ height:200px; overflow-x:auto; justify-content:flex-start } .pkey{ width:50px; flex:0 0 auto } .pkey--black{ width:32px; margin:0 -16px } }

/* bass — horizontal wooden strip of notes */
#barry .bass { background:linear-gradient(180deg,#123f47,#0c2a30); border-radius:14px; padding:16px; box-shadow:inset 0 0 0 2px rgba(0,198,203,.35); gap:10px; }
.bstring { border-radius:10px; padding:26px 0; }
.bstring.is-hit { background:linear-gradient(180deg,#00e0ea,#00a6b8); }

/* drums — nicer kit */
.pad { border-radius:50%; }
.pad--kick, .pad--crash { border-radius:16px; }

/* ==========================================================================
   VIDEOS — clean featured player + thumbnail grid
   ========================================================================== */
.video-hero {
  position: relative; max-width: 900px; margin: 0 auto 30px;
  aspect-ratio: 16 / 9; background:#000 center/cover no-repeat;
  border-radius: 16px; overflow: hidden; cursor: pointer;
  box-shadow: 0 18px 44px rgba(33,23,76,.32);
}
.video-hero iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-hero::after { content:""; position:absolute; inset:0; background:rgba(33,23,76,.18); transition:background .2s ease; }
.video-hero:hover::after { background:rgba(33,23,76,.05); }
.video-hero.is-playing::after { display:none; }
.video-hero__play {
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); z-index:2;
  width:88px; height:62px; border:0; border-radius:16px; background:var(--orange);
  box-shadow:0 8px 26px rgba(0,0,0,.5); cursor:pointer; display:grid; place-items:center;
  transition:transform .16s ease, background .16s ease;
}
.video-hero:hover .video-hero__play { transform:translate(-50%,-50%) scale(1.07); background:#ff1f86; }
.video-hero__play::before { content:""; width:0;height:0; border-left:24px solid #fff; border-top:15px solid transparent; border-bottom:15px solid transparent; margin-left:5px; }

.video-list { display:grid; grid-template-columns:repeat(auto-fill, minmax(230px, 1fr)); gap:18px; max-width:980px; margin:0 auto; }
.vcard { background:#fff; border:0; border-radius:12px; overflow:hidden; text-align:left; cursor:pointer; display:flex; flex-direction:column; box-shadow:0 5px 16px rgba(33,23,76,.10); transition:transform .14s ease, box-shadow .14s ease; }
.vcard:hover { transform:translateY(-4px); box-shadow:0 14px 30px rgba(33,23,76,.18); }
.vcard__thumb { position:relative; aspect-ratio:16/9; background:#000 center/cover no-repeat; }
.vcard__thumb::before { content:""; position:absolute; inset:0; background:rgba(0,0,0,.12); }
.vcard__thumb::after { content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:0;height:0; border-left:20px solid #fff; border-top:12px solid transparent; border-bottom:12px solid transparent; filter:drop-shadow(0 2px 6px rgba(0,0,0,.6)); }
.vcard__title { padding:12px 14px; font-family:var(--font-body); color:var(--navy); font-size:.95rem; line-height:1.28; }
.vcard.is-active { outline:3px solid var(--orange); outline-offset:2px; }
@media (max-width:520px){ .video-list{ grid-template-columns:1fr 1fr; gap:12px } .vcard__title{ font-size:.85rem; padding:10px } }
