/* Glitch Effect live radio player — dock + popout */
.bts-radio {
  --rr-bg: rgba(17, 17, 20, 0.92);
  --rr-border: rgba(201, 168, 76, 0.28);
  --rr-gold: #c9a84c;
  --rr-gold-soft: #e5c878;
  --rr-teal: #2d8fa3;
  --rr-text: #f0ece4;
  --rr-muted: #a8a49c;
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 14px 16px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--rr-border);
  background: var(--rr-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--rr-text);
  font-family: var(--font-body, "Montserrat", sans-serif);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 12px 40px rgba(0,0,0,0.45),
    0 0 32px rgba(201,168,76,0.08);
  overflow: hidden;
}

.bts-radio--dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(720px, calc(100vw - 24px));
  z-index: 9990;
  border-radius: 14px;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}

.bts-radio--card {
  border-radius: 12px;
  margin: 1.5rem 0;
}

.bts-radio--popout {
  width: min(520px, 92vw);
  margin: 0 auto;
  border-radius: 16px;
  padding: 18px 20px;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
}

.bts-radio--popout .bts-radio__viz { grid-column: 1 / -1; }
.bts-radio--popout .bts-radio__actions { grid-column: 2; justify-self: end; }

.bts-radio__glow {
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.16), transparent 70%);
  pointer-events: none;
}

.bts-radio__viz {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 28px;
  min-width: 52px;
}

.bts-radio__bar {
  width: 3px;
  height: 20%;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--rr-gold-soft), var(--rr-teal));
  opacity: 0.45;
  transform-origin: bottom;
  transition: height 0.15s ease;
}

.bts-radio.is-playing .bts-radio__bar {
  opacity: 0.95;
  animation: btsRadioBar 1.1s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.07s);
}

@keyframes btsRadioBar {
  0%, 100% { height: 22%; }
  50% { height: 95%; }
}

.bts-radio__play {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(201,168,76,0.2), rgba(26,92,107,0.25));
  color: var(--rr-gold-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.bts-radio__play:hover {
  transform: scale(1.05);
  border-color: var(--rr-gold);
  box-shadow: 0 0 18px rgba(201,168,76,0.25);
}

.bts-radio.is-playing .bts-radio__play {
  border-color: var(--rr-teal);
  color: #9fd7e4;
}

.bts-radio__meta { min-width: 0; }

.bts-radio__row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.bts-radio__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #f2b7b0;
}

.bts-radio__live.is-offline {
  color: var(--rr-muted);
}

.bts-radio__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e2554a;
  box-shadow: 0 0 8px #e2554a;
  animation: btsRadioPulse 1.4s ease-in-out infinite;
}

.bts-radio__live.is-offline .bts-radio__pulse {
  background: #6b6760;
  box-shadow: none;
  animation: none;
}

@keyframes btsRadioPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

.bts-radio__brand {
  font-family: var(--font-display, "Cinzel", serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rr-gold);
}

.bts-radio__track {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bts-radio__artist {
  font-size: 12px;
  color: var(--rr-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 1.2em;
}

.bts-radio__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bts-radio__btn {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: var(--rr-muted);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.bts-radio__btn:hover {
  color: var(--rr-gold-soft);
  border-color: rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.08);
}

body.has-bts-radio-dock {
  padding-bottom: 96px;
}

/* ── Mini audio app (pop-out window) ─────────────────────── */
.ge-app-body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: #070709;
  overflow: hidden;
  font-family: "DM Sans", system-ui, sans-serif;
  color: #f3efe6;
  display: grid;
  place-items: center;
}

.ge-app {
  --ge-w: 340;
  --ge-h: 620;
  --pulse: 0;
  --pulse-bass: 0;
  --pulse-mid: 0;
  --pulse-high: 0;
  position: relative;
  width: min(100vw, calc(100vh * (var(--ge-w) / var(--ge-h))));
  height: min(100vh, calc(100vw * (var(--ge-h) / var(--ge-w))));
  max-width: 100vw;
  max-height: 100vh;
  max-height: 100dvh;
  aspect-ratio: var(--ge-w) / var(--ge-h);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(10px, 2.8vmin, 18px) clamp(12px, 3.2vmin, 20px) clamp(10px, 2.4vmin, 16px);
  box-sizing: border-box;
  isolation: isolate;
  overflow: hidden;
  container-type: size;
  container-name: ge-app;
}

.ge-app > *:not(.ge-app__bg):not(.ge-app__noise):not(.ge-app__vibe):not(.ge-app__menu) {
  position: relative;
  z-index: 1;
}

.ge-app__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 90% 55% at 50% -10%, rgba(201, 168, 76, 0.22), transparent 60%),
    radial-gradient(ellipse 70% 45% at 100% 100%, rgba(26, 92, 107, 0.28), transparent 55%),
    linear-gradient(180deg, #121218 0%, #070709 55%, #050507 100%);
}

.ge-app__noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.ge-app__vibe {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}

.ge-app[data-vibe="1"] .ge-app__vibe { opacity: 0; }
.ge-app[data-vibe="2"] .ge-app__vibe,
.ge-app[data-vibe="3"] .ge-app__vibe,
.ge-app[data-vibe="4"] .ge-app__vibe,
.ge-app[data-vibe="5"] .ge-app__vibe { opacity: 1; }

.ge-app__vibe-halo,
.ge-app__vibe-scan,
.ge-app__vibe-rings,
.ge-app__vibe-blades {
  position: absolute;
  inset: 0;
  opacity: 0;
}

/* 2 — Halo Pulse */
.ge-app[data-vibe="2"] .ge-app__vibe-halo {
  opacity: 1;
  background:
    radial-gradient(
      ellipse 70% 45% at 50% 28%,
      rgba(201, 168, 76, calc(0.08 + var(--pulse-bass, 0) * 0.42)),
      transparent 62%
    ),
    radial-gradient(
      circle at 50% 70%,
      rgba(45, 143, 163, calc(0.04 + var(--pulse-mid, 0) * 0.28)),
      transparent 55%
    );
  transform: scale(calc(0.92 + var(--pulse-bass, 0) * 0.18));
  filter: saturate(calc(1 + var(--pulse, 0) * 0.6));
}
.ge-app[data-vibe="2"] .ge-app__disc {
  box-shadow:
    0 18px 40px rgba(0,0,0,0.45),
    0 0 calc(12px + var(--pulse-bass, 0) * 36px) rgba(201, 168, 76, calc(0.15 + var(--pulse-bass, 0) * 0.55));
}
.ge-app[data-vibe="2"] .ge-app__ring {
  transform: scale(calc(1 + var(--pulse-bass, 0) * 0.12));
  border-color: rgba(201, 168, 76, calc(0.25 + var(--pulse-bass, 0) * 0.55));
}

/* 3 — Signal Cut */
.ge-app[data-vibe="3"] .ge-app__vibe-scan {
  opacity: 1;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0 2px,
      rgba(0, 0, 0, calc(0.08 + var(--pulse-high, 0) * 0.18)) 2px 3px
    ),
    linear-gradient(
      105deg,
      transparent 40%,
      rgba(229, 200, 120, calc(var(--pulse-mid, 0) * 0.22)) 49%,
      rgba(126, 200, 214, calc(var(--pulse-high, 0) * 0.28)) 51%,
      transparent 60%
    );
  mix-blend-mode: screen;
  transform: translateX(calc((var(--pulse-high, 0) - 0.5) * 18px));
}
.ge-app[data-vibe="3"].is-playing .ge-app__meta {
  filter: contrast(calc(1 + var(--pulse, 0) * 0.35));
  text-shadow: 0 0 calc(var(--pulse-high, 0) * 18px) rgba(126, 200, 214, 0.45);
}
.ge-app[data-vibe="3"] .ge-app__art-wrap {
  clip-path: inset(
    calc(var(--pulse-mid, 0) * 4%)
    calc(var(--pulse-high, 0) * 3%)
    calc(var(--pulse-bass, 0) * 5%)
    calc(var(--pulse-mid, 0) * 2%)
  );
}

/* 4 — Ring Shock */
.ge-app[data-vibe="4"] .ge-app__vibe-rings {
  opacity: 1;
  display: grid;
  place-items: center;
}
.ge-app[data-vibe="4"] .ge-app__vibe-rings i {
  position: absolute;
  width: calc(90px + var(--pulse-bass, 0) * 160px);
  height: calc(90px + var(--pulse-bass, 0) * 160px);
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, calc(0.55 - var(--pulse-bass, 0) * 0.35));
  box-shadow: 0 0 24px rgba(45, 143, 163, calc(var(--pulse-mid, 0) * 0.45));
  transform: scale(calc(0.7 + var(--pulse-bass, 0) * 0.9));
  opacity: calc(0.15 + var(--pulse-bass, 0) * 0.75);
}
.ge-app[data-vibe="4"] .ge-app__vibe-rings i:nth-child(2) {
  width: calc(130px + var(--pulse-mid, 0) * 180px);
  height: calc(130px + var(--pulse-mid, 0) * 180px);
  border-color: rgba(45, 143, 163, calc(0.4 - var(--pulse-mid, 0) * 0.2));
  transform: scale(calc(0.75 + var(--pulse-mid, 0) * 0.85));
}
.ge-app[data-vibe="4"] .ge-app__vibe-rings i:nth-child(3) {
  width: calc(170px + var(--pulse-high, 0) * 200px);
  height: calc(170px + var(--pulse-high, 0) * 200px);
  border-color: rgba(240, 168, 160, calc(0.3 * var(--pulse-high, 0)));
  transform: scale(calc(0.8 + var(--pulse-high, 0) * 0.8));
}

/* 5 — Blade Field */
.ge-app[data-vibe="5"] .ge-app__vibe-blades {
  opacity: 1;
}
.ge-app[data-vibe="5"] .ge-app__vibe-blades i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: calc(40px + var(--pulse-high, 0) * 120px);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(229, 200, 120, calc(0.2 + var(--pulse-high, 0) * 0.8)),
    rgba(126, 200, 214, calc(var(--pulse-mid, 0) * 0.9)),
    transparent
  );
  transform-origin: center bottom;
  opacity: calc(0.25 + var(--pulse, 0) * 0.75);
}
.ge-app[data-vibe="5"] .ge-app__vibe-blades i:nth-child(1) { transform: translate(-50%, -100%) rotate(-48deg) scaleY(calc(0.7 + var(--pulse-bass, 0))); }
.ge-app[data-vibe="5"] .ge-app__vibe-blades i:nth-child(2) { transform: translate(-50%, -100%) rotate(-24deg) scaleY(calc(0.8 + var(--pulse-mid, 0))); }
.ge-app[data-vibe="5"] .ge-app__vibe-blades i:nth-child(3) { transform: translate(-50%, -100%) rotate(0deg) scaleY(calc(0.9 + var(--pulse-high, 0))); }
.ge-app[data-vibe="5"] .ge-app__vibe-blades i:nth-child(4) { transform: translate(-50%, -100%) rotate(24deg) scaleY(calc(0.8 + var(--pulse-mid, 0))); }
.ge-app[data-vibe="5"] .ge-app__vibe-blades i:nth-child(5) { transform: translate(-50%, -100%) rotate(48deg) scaleY(calc(0.7 + var(--pulse-bass, 0))); }
.ge-app[data-vibe="5"] .ge-app__vibe-blades i:nth-child(6) {
  width: calc(120px + var(--pulse-bass, 0) * 80px);
  height: 1px;
  top: 62%;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,calc(0.15 + var(--pulse, 0) * 0.7)), transparent);
  transform: translate(-50%, 0) scaleX(calc(0.6 + var(--pulse-bass, 0) * 0.8));
  transform-origin: center;
}
.ge-app[data-vibe="5"] .ge-app__play {
  box-shadow:
    0 10px 28px rgba(45, 143, 163, calc(0.2 + var(--pulse, 0) * 0.35)),
    0 0 0 calc(4px + var(--pulse-high, 0) * 10px) rgba(229, 200, 120, calc(0.08 + var(--pulse-high, 0) * 0.2));
}

.ge-app__top {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(8px, 2.2vmin, 18px);
}

.ge-app__live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(8px, 1.7vmin, 10px);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #f0a8a0;
  justify-self: start;
}

.ge-app__live.is-offline { color: #7a756c; }
.ge-app__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e2554a;
  box-shadow: 0 0 10px #e2554a;
  animation: btsRadioPulse 1.4s ease-in-out infinite;
}
.ge-app__live.is-offline .ge-app__dot {
  background: #6b6760;
  box-shadow: none;
  animation: none;
}

.ge-app__station {
  font-size: clamp(8px, 1.7vmin, 10px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a84c;
  text-align: center;
  justify-self: center;
}

.ge-app__menu-btn {
  justify-self: end;
  width: clamp(30px, 5.5vmin, 36px);
  height: clamp(30px, 5.5vmin, 36px);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: #e5c878;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.ge-app__menu-btn:hover,
.ge-app.is-menu-open .ge-app__menu-btn {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.5);
}

.ge-app__art-wrap {
  position: relative;
  width: clamp(96px, 28vmin, 168px);
  height: clamp(96px, 28vmin, 168px);
  margin: clamp(4px, 1.2vmin, 8px) 0 clamp(10px, 2vmin, 16px);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.ge-app__vibe-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: auto 0 0;
  padding-top: clamp(8px, 1.8vmin, 12px);
  flex-shrink: 0;
  z-index: 2;
}

.ge-app__vibe-num {
  width: clamp(30px, 6vmin, 36px);
  height: clamp(30px, 6vmin, 36px);
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #a8a49c;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: clamp(12px, 2.4vmin, 14px);
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.ge-app__vibe-num:hover {
  color: #e5c878;
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-1px);
}

.ge-app__vibe-num.is-active {
  color: #0a0a0b;
  background: linear-gradient(145deg, #e5c878, #c9a84c);
  border-color: transparent;
  box-shadow:
    0 6px 16px rgba(201, 168, 76, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.ge-app.is-playing .ge-app__vibe-num.is-active {
  box-shadow:
    0 6px 18px rgba(201, 168, 76, calc(0.22 + var(--pulse, 0) * 0.35)),
    0 0 calc(6px + var(--pulse, 0) * 14px) rgba(45, 143, 163, calc(var(--pulse-mid, 0) * 0.45));
}

.ge-app__ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.25);
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.12);
}

.ge-app__disc {
  width: 88%;
  height: 88%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.16), transparent 35%),
    conic-gradient(from 210deg, #1a1a22, #2a2430, #1c3a42, #2b2418, #1a1a22);
  border: 2px solid rgba(201, 168, 76, 0.35);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  transition: transform 0.4s ease;
}

.ge-app.is-playing .ge-app__disc {
  animation: geDiscSpin 8s linear infinite;
}

@keyframes geDiscSpin {
  to { transform: rotate(360deg); }
}

.ge-app__disc-core {
  width: 35%;
  height: 35%;
  border-radius: 50%;
  background: #0a0a0c;
  border: 1px solid rgba(201, 168, 76, 0.45);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(12px, 3vmin, 18px);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #e5c878;
}

.ge-app__meta {
  width: 100%;
  text-align: center;
  padding: 0 4px;
  margin-bottom: clamp(8px, 2vmin, 16px);
  min-height: 0;
}

.ge-app__track {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(15px, 3.6vmin, 22px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ge-app__artist {
  font-size: clamp(10px, 2vmin, 12px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #a8a49c;
}

.ge-app__wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: clamp(24px, 5.5vmin, 36px);
  width: min(260px, 100%);
  margin-bottom: clamp(10px, 2.4vmin, 18px);
  opacity: 0.55;
  flex-shrink: 0;
}

.ge-app__wave i {
  display: block;
  width: 3px;
  height: 18%;
  border-radius: 2px;
  background: linear-gradient(180deg, #e5c878, #2d8fa3);
}

.ge-app.is-playing .ge-app__wave {
  opacity: 1;
}
.ge-app.is-playing .ge-app__wave i {
  animation: btsRadioBar 1s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.05s);
}

.ge-app__controls {
  margin-bottom: clamp(10px, 2.4vmin, 18px);
  flex-shrink: 0;
}

.ge-app__play {
  width: clamp(52px, 11vmin, 72px);
  height: clamp(52px, 11vmin, 72px);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #0a0a0b;
  background: linear-gradient(145deg, #e5c878, #c9a84c 55%, #a8893a);
  box-shadow:
    0 10px 28px rgba(201, 168, 76, 0.35),
    0 0 0 6px rgba(201, 168, 76, 0.12);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ge-app__play svg,
.bts-radio__play svg {
  grid-area: 1 / 1;
}

.ge-app__play svg[hidden],
.bts-radio__play svg[hidden] {
  display: none !important;
}

.ge-app__play:hover {
  transform: scale(1.04);
  box-shadow:
    0 12px 32px rgba(201, 168, 76, 0.42),
    0 0 0 8px rgba(201, 168, 76, 0.14);
}

.ge-app.is-playing .ge-app__play {
  background: linear-gradient(145deg, #7ec8d6, #2d8fa3);
  color: #061216;
  box-shadow:
    0 10px 28px rgba(45, 143, 163, 0.35),
    0 0 0 6px rgba(45, 143, 163, 0.14);
}

.ge-app__vol {
  width: min(220px, 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a8a49c;
  margin-bottom: 0;
  flex-shrink: 0;
}

.ge-app__vol input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  outline: none;
}
.ge-app__vol input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e5c878;
  border: 0;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(201,168,76,0.4);
}

.ge-app__foot {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(8px, 1.8vmin, 12px);
  padding-top: clamp(8px, 1.8vmin, 12px);
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: clamp(9px, 1.8vmin, 11px);
  letter-spacing: 0.06em;
  color: #6b6760;
  flex-shrink: 0;
}
.ge-app__foot a {
  color: #c9a84c;
  text-decoration: none;
}
.ge-app__foot a:hover { color: #e5c878; }

/* ── Menu + Equalizer ────────────────────────────────────── */
.ge-app__menu {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(14px, 3vmin, 20px);
  box-sizing: border-box;
  background:
    linear-gradient(180deg, rgba(14, 14, 18, 0.97), rgba(7, 7, 9, 0.98));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: geMenuIn 0.22s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.ge-app__menu[hidden] {
  display: none !important;
}

@keyframes geMenuIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ge-app__menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.ge-app__menu-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(20px, 4vmin, 26px);
  font-weight: 600;
  color: #f3efe6;
}

.ge-app__menu-close {
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: #a8a49c;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.ge-app__menu-close:hover {
  color: #f3efe6;
  background: rgba(255,255,255,0.1);
}

.ge-app__menu-links {
  display: grid;
  gap: 8px;
  flex-shrink: 0;
}

.ge-app__menu-link {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(255,255,255,0.02));
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.ge-app__menu-link:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.14), rgba(45, 143, 163, 0.08));
  transform: translateY(-1px);
}
.ge-app__menu-link-kicker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a84c;
}
.ge-app__menu-link-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #f3efe6;
}
.ge-app__menu-link-sub {
  font-size: 11px;
  color: #7a756c;
  letter-spacing: 0.02em;
}

.ge-app__menu-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ge-app__menu-section-head {
  display: grid;
  gap: 2px;
}
.ge-app__menu-section-title {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5c878;
}
.ge-app__menu-section-note {
  margin: 0;
  font-size: 11px;
  color: #7a756c;
}

.ge-app__vibe-picker {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 6px;
}

.ge-app__vibe-nav {
  width: 28px;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: #e5c878;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.ge-app__vibe-nav:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.35);
}

.ge-app__vibe-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 2px;
  touch-action: pan-y;
}
.ge-app__vibe-track::-webkit-scrollbar { display: none; }

.ge-app__vibe-card {
  flex: 0 0 78%;
  scroll-snap-align: center;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  min-height: 88px;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.ge-app__vibe-card.is-active {
  border-color: rgba(201, 168, 76, 0.45);
  background: linear-gradient(160deg, rgba(201,168,76,0.12), rgba(45,143,163,0.08));
}
.ge-app__vibe-card-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #c9a84c;
  margin-bottom: 4px;
}
.ge-app__vibe-card-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  color: #f3efe6;
  margin-bottom: 4px;
}
.ge-app__vibe-card-blurb {
  font-size: 11px;
  line-height: 1.35;
  color: #8a867e;
}

.ge-app__vibe-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.ge-app__vibe-dot {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  color: #8a867e;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.ge-app__vibe-dot.is-active {
  color: #0a0a0b;
  background: linear-gradient(145deg, #e5c878, #c9a84c);
  border-color: transparent;
}

.ge-app__menu-section--eq .ge-app__eq {
  min-height: 120px;
  max-height: 160px;
}

.ge-app__eq-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ge-app__eq-chip {
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.03);
  color: #a8a49c;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.ge-app__eq-chip:hover {
  color: #e5c878;
  border-color: rgba(201, 168, 76, 0.4);
}
.ge-app__eq-chip.is-active {
  color: #0a0a0b;
  background: linear-gradient(145deg, #e5c878, #c9a84c);
  border-color: transparent;
}

.ge-app__eq {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(6px, 1.5vmin, 12px);
  min-height: 0;
  padding: 4px 2px 8px;
}

.ge-app__eq-band {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ge-app__eq-gain {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #c9a84c;
  min-height: 1.2em;
}

.ge-app__eq-slider {
  -webkit-appearance: none;
  appearance: none;
  width: clamp(90px, 22vmin, 140px);
  height: 4px;
  margin: clamp(28px, 7vmin, 48px) 0;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  outline: none;
  writing-mode: vertical-lr;
  direction: rtl;
  transform: rotate(180deg);
  flex: 1;
  max-height: 140px;
  cursor: pointer;
}

.ge-app__eq-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e5c878;
  border: 0;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.45);
  cursor: pointer;
}

.ge-app__eq-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #e5c878;
  border: 0;
  cursor: pointer;
}

.ge-app__eq-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a756c;
}

.ge-app__eq-reset {
  margin-top: 4px;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  color: #a8a49c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.ge-app__eq-reset:hover {
  color: #e5c878;
  border-color: rgba(201, 168, 76, 0.35);
}

.ge-app__eq-saved {
  margin: 4px 0 0;
  min-height: 1.1em;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d8fa3;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.ge-app__eq-saved.is-on {
  opacity: 1;
  color: #e5c878;
}

@media (max-width: 640px) {
  .bts-radio--dock {
    bottom: 10px;
    width: calc(100vw - 16px);
    padding: 10px 12px;
    gap: 10px;
    grid-template-columns: auto 1fr auto;
  }
  .bts-radio--dock .bts-radio__viz { display: none; }
  .bts-radio__play { width: 42px; height: 42px; }
  .bts-radio__track { font-size: 13px; }
}

