/* ==========================================================
   Crypto Cocktail Club – Virtual Bar Experience
   styles.css (mobile-first, one-column, immersive)
   ========================================================== */

/* -----------------------------
   RESET + GLOBAL
----------------------------- */

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

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  color: #f8f5ff;
  background: #05010f;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

/* Content width */
.section,
.footer,
.footer-legal {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Theme tokens */
:root {
  --accent-neon-pink: #ff1493;
  --accent-neon-pink-soft: #c71585;
  --accent-gold-1: #ffd700;
  --accent-gold-2: #ffb700;
  --accent-plat-1: #c0c0c0;
  --accent-plat-2: #e8e8e8;
  --bg-panel: #0c061a;
  --bg-panel-soft: #080214;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.75);
  --text-muted: #a59ac7;
}

/* Backgrounds per theme */
body.theme-base {
  background: radial-gradient(circle at top, #321031 0, #05010f 45%, #020008 100%);
}

body.theme-gold {
  background: radial-gradient(circle at top, #40210a 0, #06030a 45%, #020006 100%);
}

body.theme-platinum {
  background: radial-gradient(circle at top, #101624 0, #03030a 45%, #010107 100%);
}

/* Smooth transitions */
body,
.card,
.hero,
.bar-tv-frame,
.player-panel,
.album-art,
.bartender-messages,
.footer,
.footer-legal {
  transition:
    background 0.6s ease,
    border-color 0.6s ease,
    box-shadow 0.6s ease,
    color 0.6s ease;
}

/* -----------------------------
   HERO
----------------------------- */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* subtle shimmer */
.hero::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 210deg,
    rgba(255, 255, 255, 0.06),
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  opacity: 0.35;
  mix-blend-mode: screen;
  animation: heroSpin 16s linear infinite;
  pointer-events: none;
}

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

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: heroIn 0.7s ease-out forwards;
  opacity: 0;
  transform: translateY(18px);
}

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

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 999px;
  box-shadow:
    0 0 26px rgba(0, 0, 0, 0.95),
    0 0 22px rgba(255, 20, 147, 0.85);
}

.hero-title {
  margin: 8px 0 0;
  font-size: 1.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(
    120deg,
    var(--accent-neon-pink),
    var(--accent-gold-1),
    var(--accent-gold-2)
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 4px 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-tagline {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #f2e9ff;
  max-width: 360px;
}
/* Keep HERO title on one line (no wrapping on mobile) */
.hero-title {
  white-space: nowrap;        /* Prevent wrapping */
  font-size: clamp(1.2rem, 4vw, 2rem);  /* Scales gracefully */
  line-height: 1.1;
}
.hero-inner {
  overflow: visible;          /* Prevent clipping when text is wider */
}

/* -----------------------------
   FLOATING HEADER
----------------------------- */

.top-nav {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -28px);
  width: 100%;
  max-width: 1120px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(5, 1, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.top-nav.header-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ccc-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 12px rgba(255, 20, 147, 0.85);
}

body.theme-gold .ccc-logo {
  box-shadow:
    0 0 10px rgba(255, 215, 0, 0.9),
    0 0 18px rgba(255, 183, 0, 0.7);
}

body.theme-platinum .ccc-logo {
  box-shadow:
    0 0 10px rgba(214, 226, 255, 0.9),
    0 0 18px rgba(160, 188, 232, 0.7);
}

.brand-title {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  gap: 8px;
}

.nav-link {
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

/* -----------------------------
   CARDS / SECTIONS
----------------------------- */

.section {
  margin-bottom: 20px;
}

.card {
  background: radial-gradient(circle at top left, #1b102c, var(--bg-panel-soft));
  border-radius: 26px;
  border: 1px solid var(--border-subtle);
  padding: 18px 16px 16px;
  box-shadow: var(--shadow-soft);
}

.section-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.section-subtitle {
  margin: 4px 0 10px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* -----------------------------
   VINYL SHELF
----------------------------- */

.vinyl-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.vinyl-item {
  min-width: 150px;
  max-width: 180px;
  background: rgba(5, 5, 18, 0.95);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 10px 8px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

.vinyl-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.9);
}

.vinyl-item.is-active {
  border-color: rgba(255, 215, 0, 0.9);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.7);
  background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.16), #05010f);
}

.vinyl-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.vinyl-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* -----------------------------
   LISTENING ROOM
----------------------------- */

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(5, 1, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 12px;
}

.theme-pill {
  border-radius: 999px;
  border: none;
  padding: 4px 10px;
  font-size: 0.78rem;
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
}

.theme-pill.is-active {
  background: radial-gradient(circle at top, var(--accent-neon-pink), var(--accent-gold-1));
  color: #05010f;
  font-weight: 600;
}

/* Album + Turntable layout */
.listening-flex {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Album art */
.album-art-wrapper {
  border-radius: 22px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #13041f;
}

body.theme-gold .album-art-wrapper {
  background: #251703;
  border-color: rgba(255, 215, 0, 0.6);
}

body.theme-platinum .album-art-wrapper {
  background: #0b1017;
  border-color: rgba(192, 208, 232, 0.7);
}

.album-art {
  position: relative;
  height: 210px;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(140deg, #ff1493, #c71585 32%, #351058 68%, #05010f);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.9);
}

body.theme-gold .album-art {
  background: linear-gradient(140deg, #3a2100, #ffb700 25%, #ffd700 55%, #3a2100 95%);
}

body.theme-platinum .album-art {
  background: linear-gradient(140deg, #050b1e, #c0c0c0 25%, #e8e8e8 60%, #050b1e 95%);
}

.album-logo {
  position: absolute;
  inset: 6%;
  width: 88%;
  height: 88%;
  object-fit: contain;
}

/* Turntable */

.turntable {
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #131024;
  display: flex;
  justify-content: center;
}

.turntable-platter {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, #15111f, #2c2037, #15111f);
  border: 10px solid #05010f;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.06),
    0 12px 26px rgba(0, 0, 0, 0.9);
  animation: platter-spin 18s linear infinite;
  animation-play-state: paused;
}

.turntable-platter.is-playing {
  animation-play-state: running;
}

@keyframes platter-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.turntable-label {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at top, var(--accent-neon-pink), #05010f 65%);
  box-shadow: 0 0 14px rgba(255, 20, 147, 0.75);
}

body.theme-gold .turntable-label {
  background: radial-gradient(circle at top, var(--accent-gold-1), #3a2100 65%);
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.85);
}

body.theme-platinum .turntable-label {
  background: radial-gradient(circle at top, var(--accent-plat-2), #050b1e 65%);
  box-shadow: 0 0 14px rgba(192, 208, 232, 0.9);
}
/* =========================
   TURNTABLE – TRACK DISC OVERLAY
   ========================= */

.turntable{
  position: relative; /* overlay anchors to turntable */
}

/* Wrapper controls position + fade/land (no rotation here) */
.turntable-track-wrap{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 210px;
  transform: translate(-50%, -50%) scale(0.98);
  transform-origin: 50% 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 6; /* above platter */
}

/* Visible state */
.turntable-track-wrap.is-visible{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Fade out state (when stopped/paused) */
.turntable-track-wrap.is-hidden{
  opacity: 0;
  transform: translate(-50%, calc(-50% - 6px)) scale(0.98);
}

/* Inner disc holds the “vinyl surface” + rotates */
.turntable-track-disc-inner{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      rgba(232,232,232,0.18) 0%,
      rgba(255,255,255,0.06) 14%,
      rgba(0,0,0,0.65) 36%,
      rgba(0,0,0,0.88) 70%,
      rgba(0,0,0,0.96) 100%),
    repeating-radial-gradient(circle at center,
      rgba(255,255,255,0.05) 0px,
      rgba(255,255,255,0.05) 1px,
      rgba(0,0,0,0.0) 3px,
      rgba(0,0,0,0.0) 6px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.65),
    0 0 26px rgba(255, 20, 147, 0.18);
  position: relative;
}

/* Neon ring accent */
.turntable-track-disc-inner .track-disc-ring{
  position:absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 0 18px rgba(255, 215, 0, 0.10),
    0 0 16px rgba(255, 20, 147, 0.20);
}

/* Label center */
.turntable-track-disc-inner .track-disc-center{
  position:absolute;
  inset: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at top left,
    rgba(255,255,255,0.10),
    rgba(5, 5, 18, 0.92));
  border: 1px solid rgba(255,255,255,0.12);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 10px;
}

/* Text styling */
.track-disc-text{ max-width: 85%; }

.track-disc-title{
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(248,245,255,0.92);
  text-shadow: 0 0 12px rgba(255, 20, 147, 0.18);
  line-height: 1.15;
}

.track-disc-artist{
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 215, 0, 0.80);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.18);
}

/* Spin animation (applied to INNER disc so it doesn't break centering transform) */
@keyframes discSpin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

.turntable-track-disc-inner.is-spinning{
  animation: discSpin 2.8s linear infinite;
  transform-origin: 50% 50%;
}

/* Micro “drop” on track change (wrapper only) */
@keyframes discLand{
  0%   { transform: translate(-50%, calc(-50% - 10px)) scale(0.96); }
  60%  { transform: translate(-50%, calc(-50% + 2px)) scale(1.01); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.turntable-track-wrap.is-landing{
  animation: discLand 0.35s ease-out 1;
}

/* Mobile tuning */
@media (max-width: 768px){
  .turntable-track-wrap{
    width: 170px;
    height: 170px;
  }
  .turntable-track-disc-inner .track-disc-center{
    inset: 34px;
  }
}

/* Player panel */

.player-panel {
  margin-top: 12px;
  padding: 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(13, 7, 33, 0.98), rgba(3, 0, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.now-playing-label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.now-playing-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

#track-title {
  margin: 0;
  font-size: 1.05rem;
}

#track-artist {
  margin: 2px 0 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.track-duration {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.timeline-bar {
  margin-top: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
  cursor: pointer;
}

.timeline-progress {
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-neon-pink), var(--accent-gold-1));
}

.timeline-meta {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.player-controls {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn,
.play-btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.84rem;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.icon-btn {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.play-btn {
  padding: 10px 18px;
  background: linear-gradient(120deg, var(--accent-neon-pink), var(--accent-gold-1));
  color: #05010f;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(255, 20, 147, 0.55);
}

.play-btn:hover {
  transform: translateY(-1px) scale(1.02);
}

.volume-block {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.volume-label {
  font-size: 0.74rem;
  color: var(--text-muted);
}

#volume-slider {
  width: 110px;
}

/* EQ bars */
.player-eq {
  margin-top: 6px;
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 16px;
}

.eq-bar {
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-gold-1), var(--accent-neon-pink));
  transform-origin: bottom;
  transform: scaleY(0.2);
  opacity: 0.7;
}

.player-eq.is-playing .eq-bar {
  animation: eqPulse 0.7s infinite ease-in-out;
}

@keyframes eqPulse {
  0% {
    transform: scaleY(0.2);
  }
  50% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0.2);
  }
}

/* =========================
   BAR BOT / AI BARTENDER
   ========================= */

#bar-bot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Chat thread container */
.bartender-messages {
  border-radius: 14px;
  background: rgba(3, 3, 12, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px;
  max-height: 260px;
  overflow-y: auto;
  font-size: 0.8rem;
}

/* Chat bubbles */
.bartender-message {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.bartender-avatar {
  flex: 0 0 26px;
  height: 26px;
  border-radius: 999px;
  background: radial-gradient(circle at top, var(--accent-neon-pink), #05010f);
  box-shadow: 0 0 8px rgba(255, 20, 147, 0.7);
}

body.theme-gold .bartender-avatar {
  background: radial-gradient(circle at top, var(--accent-gold-1), #3a2100);
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

body.theme-platinum .bartender-avatar {
  background: radial-gradient(circle at top, var(--accent-plat-2), #050b1e);
  box-shadow: 0 0 8px rgba(192, 208, 232, 0.85);
}

.bartender-text {
  flex: 1;
  color: #e4e1ff;
  line-height: 1.4;
}

/* Typing indicator */
.bartender-typing .bartender-text span {
  display: inline-block;
  animation: dotPulse 1s infinite ease-in-out;
}
.bartender-typing .bartender-text span:nth-child(2) {
  animation-delay: 0.1s;
}
.bartender-typing .bartender-text span:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes dotPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

/* Input row */
.bartender-form {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.bartender-input {
  flex: 1;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 4, 20, 0.96);
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 10px;
  resize: vertical;
  min-height: 46px;
}

.bartender-submit-btn {
  border-radius: 999px;
  border: none;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(120deg, var(--accent-neon-pink), var(--accent-gold-1));
  color: #05010f;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.8);
}

/* =========================
   BAR BOT WIZARD + RECIPE PANEL
   ========================= */

.bartender-wizard {
  margin-bottom: 14px;
  padding: 10px 10px 12px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), rgba(5, 5, 18, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wizard-question {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wizard-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

/* Spirit Preference layout (wizard groups) */
.wizard-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.wizard-group {
  border-radius: 14px;
  padding: 10px 10px 8px;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), rgba(5, 5, 18, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wizard-group-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

/* Option pills inside groups */
.wizard-group .wizard-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
/* =========================
   BAR BOT – WIZARD CTA
   Search (gradient) + Prev/Next (neon)
   ========================= */

/* Row: Search left, Prev/Next grouped right */
.wizard-submit-row{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Right-side group wrapper */
.wizard-nav-right{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
}

/* Shared pill base for ALL CTA buttons */
.wizard-submit-btn,
.wizard-nav-btn{
  appearance:none;
  border-radius:999px;
  padding:10px 16px;
  font-size:0.76rem;
  font-weight:600;
  letter-spacing:0.14em;
  text-transform:uppercase;
  cursor:pointer;
  line-height:1;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease, background .18s ease, border-color .18s ease;
}

/* SEARCH = gradient pill */
.wizard-submit-gradient{
  background:linear-gradient(120deg, var(--accent-neon-pink), var(--accent-gold-1));
  color:#05010f;
  box-shadow:0 0 16px rgba(0,0,0,.9);
}

.wizard-submit-gradient:not(:disabled):hover{
  transform:translateY(-1px) scale(1.02);
  box-shadow:0 10px 22px rgba(0,0,0,.9);
}

/* PREVIOUS / NEXT = neon pink pill */
.wizard-nav-neon{
  background: rgba(255, 20, 147, 0.14);
  border-color: rgba(255, 20, 147, 0.85);
  color:#fff;
  text-shadow: 0 0 10px rgba(255, 20, 147, 0.55);
  box-shadow:
    0 0 14px rgba(255, 20, 147, 0.35),
    inset 0 0 10px rgba(255, 20, 147, 0.18);
}

.wizard-nav-neon:not(:disabled):hover{
  transform:translateY(-1px);
  box-shadow:
    0 0 22px rgba(255, 20, 147, 0.55),
    inset 0 0 14px rgba(255, 20, 147, 0.25);
}

/* Disabled state for ALL CTA buttons */
.wizard-submit-btn:disabled,
.wizard-nav-btn:disabled{
  opacity:.40;
  cursor:not-allowed;
  text-shadow:none;
  box-shadow:none;
  transform:none;
}
.wizard-indicator.pulse {
  animation: pulse 0.25s ease-out;
}

@keyframes pulse {
  from { transform: scale(0.95); opacity: 0.6; }
  to { transform: scale(1); opacity: 1; }
}

.wizard-breadcrumbs {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.wizard-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #666;
  cursor: pointer;
}

.wizard-dot.active {
  background: #fff;
}

/* =========================
   BAR BOT – RECIPE PANEL + CARDS
   ========================= */

.bartender-recipe-panel {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Single warning banner (e.g. “couldn’t find that spec”) */
.recipe-warning {
  padding: 6px 9px;
  border-radius: 10px;
  font-size: 0.74rem;
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: #ffeeb3;
}

/* Card shell */
.recipe-card {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 10px;
  padding: 10px 11px 9px;
  border-radius: 14px;
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.04),
    rgba(5, 5, 18, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* Left side */
.recipe-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.recipe-header-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  align-items: center;
}

.recipe-name {
  font-weight: 600;
}

.recipe-tag-pill {
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  color: #f8f5ff;
}

.recipe-summary {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.76rem;
}

/* Ingredients */
.recipe-ingredients-title {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.recipe-ingredients {
  list-style: none;
  margin: 3px 0 0;
  padding: 0;
}

.recipe-ingredients li {
  display: flex;
  gap: 6px;
  margin-bottom: 2px;
}

.recipe-ingredients-amount {
  min-width: 58px;
  font-weight: 500;
}

.recipe-ingredients-ingredient {
  color: #f5f1ff;
}

/* Right side meta */
.recipe-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recipe-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.recipe-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.recipe-meta-value {
  font-size: 0.78rem;
}

.recipe-notes {
  margin: 4px 0 0;
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* Copy spec button row */
.recipe-actions {
  margin-top: 6px;
  display: flex;
  justify-content: flex-end;
}

.recipe-copy-btn {
  border: none;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(
    120deg,
    var(--accent-neon-pink),
    var(--accent-gold-1)
  );
  color: #05010f;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}

.recipe-copy-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.85);
}

.recipe-copy-btn.is-copied {
  opacity: 0.85;
}

/* Mobile: stack card columns vertically */
@media (max-width: 768px) {
  .recipe-card {
    grid-template-columns: 1fr;
  }
}

.wizard-option {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #f8f5ff;
  font-size: 0.76rem;
  padding: 6px 10px;
  cursor: pointer;
  text-align: left;
  min-width: 0;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.wizard-option-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
}

.wizard-option:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.7);
}

.wizard-option.is-selected {
  background: linear-gradient(120deg, var(--accent-neon-pink), var(--accent-gold-1));
  color: #05010f;
  border-color: transparent;
  box-shadow: 0 0 14px rgba(255, 215, 0, 0.5);
}

/* Mobile: stack groups cleanly */
@media (max-width: 768px) {
  .wizard-groups {
    grid-template-columns: 1fr;
  }
}


/* -----------------------------
   BAR TV
----------------------------- */

.bar-tv-frame {
  margin-top: 8px;
  border-radius: 18px;
  padding: 10px;
  background: #1a120c;
  border: 1px solid rgba(0, 0, 0, 0.9);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.9);
}

/* 4:3 aspect */
.bar-tv-aspect {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 75%; /* 4:3 */
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.bar-tv-aspect video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bar-tv-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bar-tv-controls button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 5px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  background: rgba(5, 1, 15, 0.9);
  color: #fff;
}

.bar-tv-controls input[type="range"] {
  flex: 1;
  min-width: 120px;
}

/* -----------------------------
   LEGAL + FOOTER
----------------------------- */

.footer-legal {
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.footer {
  margin: 0 auto 26px;
  padding: 10px 18px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
}

.footer-now {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.footer-track {
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-github svg {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-github:hover svg {
  opacity: 1;
}

.footer-links a {
  border-radius: 999px;
  padding: 6px 12px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-github {
  display: inline-flex;
  align-items: center;
}

.footer-github-icon {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-github:hover .footer-github-icon {
  opacity: 1;
}
.footer-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-icon-link {
  color: inherit;
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-icon-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* ============================
   NOW PLAYING FOOTER GRADIENT
   ============================ */

.footer-now {
  background: linear-gradient(90deg, #FF1493 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.footer-now strong {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-track {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-now {
  text-shadow: 0 0 6px rgba(255, 200, 0, 0.4);
}

/* -----------------------------
   RESPONSIVE
----------------------------- */

@media (min-width: 768px) {
  .hero {
    min-height: 100vh;
  }

  .listening-flex {
    flex-direction: row;
  }

  .album-art-wrapper,
  .turntable {
    flex: 1;
  }
}

@media (max-width: 600px) {
  .top-nav {
    max-width: 95%;
    padding: 6px 10px;
  }

  .hero-logo {
    width: 120px;
    height: 120px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .card {
    border-radius: 22px;
  }

  .bar-tv-aspect {
    max-width: 100%;
  }
} /* <-- CLOSES the 600px block properly */

/* This is a separate media query */
@media (max-width: 768px) {
  /* Let control rows wrap nicely on small screens */
  .player-controls,
  .bar-tv-controls {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  /* Audio player volume slider */
  #volume-slider {
    width: 100%;
    max-width: 100%;
    margin-top: 6px;
  }

  .volume-block {
    width: 100%;
    justify-content: flex-start;
  }

  /* Bar TV volume slider */
  #tvVolume {
    width: 100%;
    max-width: 100%;
    margin-top: 6px;
  }
}

/* =============== LISTENING ROOM ANIMATIONS =============== */

/* Turntable container */
.turntable {
  position: relative;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #131024;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Platter spin */
.turntable-platter {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, #15111f, #2c2037, #15111f);
  border: 10px solid #05010f;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: platter-spin 18s linear infinite;
  animation-play-state: paused; /* only spin when .is-playing */
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.06),
    0 10px 25px rgba(0, 0, 0, 0.9);
}

.turntable-platter.is-playing {
  animation-play-state: running;
}

@keyframes platter-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Center label */
.turntable-label {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at top, #ff1493, #05010f 62%);
  box-shadow: 0 0 12px rgba(255, 20, 147, 0.75);
}

body.theme-gold .turntable-label {
  background: radial-gradient(circle at top, #ffd700, #3a2100 62%);
}

body.theme-platinum .turntable-label {
  background: radial-gradient(circle at top, #e8e8e8, #050b1e 62%);
}

/* Tonearm / needle */
.tonearm {
  position: absolute;
  right: 18px;
  top: 36px;
  width: 80px;
  height: 8px;
  border-radius: 4px;
  background: #c9c9d5;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
  transform-origin: 8px 4px;
  transform: rotate(18deg);
  transition: transform 0.45s ease;
}

.tonearm::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -4px;
  width: 14px;
  height: 18px;
  border-radius: 6px;
  background: #eeeeff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
}

/* When engaged on the record */
.tonearm.is-engaged {
  transform: rotate(-6deg);
}

/* =============== BAR TV 4:3 RASTER =============== */

.bar-tv-frame {
  border-radius: 18px;
  padding: 12px;
  background: #1a120c;
  border: 1px solid rgba(0, 0, 0, 0.9);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.9);
}

.bar-tv-aspect {
  position: relative;
  width: 100%;
  max-width: 640px;      /* keeps it from stretching too wide */
  margin: 0 auto;
  padding-top: 75%;       /* 4:3 aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

/* Make the video fill that 4:3 box */
.bar-tv-aspect video,
#barTvVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bar TV controls area stays underneath the 4:3 box */
.bar-tv-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bar-tv-controls button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(5, 1, 15, 0.9);
  color: #fff;
  padding: 4px 10px;
  font-size: 0.78rem;
  cursor: pointer;
}

#tvVolume {
  flex: 1 1 auto;
  max-width: 140px;
}
/* Turntable spinning */
.turntable-platter {
  /* your existing platter styling plus: */
  animation: platter-spin 18s linear infinite;
  animation-play-state: paused;
}

.turntable-platter.is-playing {
  animation-play-state: running;
}

@keyframes platter-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Tonearm (needle) */
.tonearm {
  position: absolute;
  right: 18px;
  top: 36px;
  width: 80px;
  height: 8px;
  border-radius: 4px;
  background: #c9c9d5;
  transform-origin: 8px 4px;
  transform: rotate(18deg);
  transition: transform 0.45s ease;
}
.tonearm::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -4px;
  width: 14px;
  height: 18px;
  border-radius: 6px;
  background: #eeeeff;
}
.tonearm.is-engaged {
  transform: rotate(-6deg);
}

/* “Speaker drop” – subtle lift when music plays */
.turntable.speaker-drop-active {
  transform: translateY(2px);
  transition: transform 0.25s ease;
}

/* =========================
   BAR TV – FORCE 4:3 RATIO
   ========================= */

/* Outer TV frame */
.bar-tv-frame {
  max-width: 780px;         /* keeps it from going ultra-wide */
  margin: 0 auto;
}

/* 4:3 aspect-ratio box */
.bar-tv-aspect {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;

  /* This is the key: 4 wide : 3 tall */
  aspect-ratio: 4 / 3;

  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

/* Make the video fill that 4:3 box regardless of monitor size */
.bar-tv-aspect video,
#barTvVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  /* fills the frame, crops if needed */
}

/* Optional: keep it comfortable on small screens */
@media (max-width: 768px) {
  .bar-tv-frame {
    max-width: 100%;
  }

  .bar-tv-aspect {
    max-width: 100%;
  }
}
/* =========================
   BAR TV – 4:3 + RETRO SHELL
   ========================= */

.bar-tv-frame {
  width: 100%;
  max-width: 980px;                 /* bigger on desktop */
  margin: 0 auto;
  padding: 16px 18px 20px;
  border-radius: 24px;
  background: radial-gradient(circle at top left, #2b1b14, #120b08 55%, #050308 100%);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.95),
    0 0 30px rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.9);
  position: relative;
}

/* Theme-aware glow */
body.theme-base .bar-tv-frame {
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.95),
    0 0 28px rgba(255, 20, 147, 0.35);
}
body.theme-gold .bar-tv-frame {
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.95),
    0 0 28px rgba(255, 215, 0, 0.3);
}
body.theme-platinum .bar-tv-frame {
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.95),
    0 0 28px rgba(192, 208, 232, 0.3);
}

/* 4:3 screen container */
.bar-tv-aspect {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 4 / 3;              /* hard 4×3 ratio */
  background: radial-gradient(circle at center, #111, #000 70%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.9),
    0 10px 28px rgba(0, 0, 0, 0.9);
}

/* Subtle CRT curvature / vignette */
.bar-tv-aspect::before {
  content: "";
  position: absolute;
  inset: -5%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.14), transparent 55%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 60%);
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Scanlines overlay */
.bar-tv-aspect::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4) 0px,
      rgba(0, 0, 0, 0.4) 1px,
      transparent 2px,
      transparent 3px
    );
  opacity: 0.22;
  mix-blend-mode: soft-light;
  pointer-events: none;
  animation: tvScanlines 5s linear infinite;
}

@keyframes tvScanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(3px);
  }
}

/* Actual video area */
.bar-tv-aspect video,
#barTvVideo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;              /* prevent cutting off content */
  object-position: center center;
}

/* Controls row */
.bar-tv-controls {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.bar-tv-controls button {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(5, 2, 12, 0.96);
  color: #f8f5ff;
  padding: 6px 14px;
  font-size: 0.8rem;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.bar-tv-controls button:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.22);
}

#tvVolume {
  width: 140px;
}

/* Bigger on very wide monitors */
@media (min-width: 1400px) {
  .bar-tv-frame {
    max-width: 1100px;
  }
  .bar-tv-aspect {
    max-width: 1040px;
  }
}

/* =========================
   CHANNEL SWITCH GLITCH
   ========================= */

.bar-tv-aspect.tv-glitch {
  animation: tvGlitch 0.22s steps(2, start);
}

.bar-tv-aspect.tv-glitch::before {
  animation: tvGlitchShift 0.22s steps(2, start);
}

@keyframes tvGlitch {
  0% {
    transform: translateX(0) skewX(0deg);
    filter: contrast(1) brightness(1);
  }
  40% {
    transform: translateX(-4px) skewX(-2deg);
    filter: contrast(1.3) brightness(1.2);
  }
  70% {
    transform: translateX(3px) skewX(1deg);
  }
  100% {
    transform: translateX(0) skewX(0deg);
    filter: contrast(1) brightness(1);
  }
}

@keyframes tvGlitchShift {
  0% {
    opacity: 0.18;
  }
  40% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.18;
  }
}

/* Mobile – keep it comfy but still 4×3 */
@media (max-width: 768px) {
  .bar-tv-frame {
    max-width: 100%;
    padding: 12px 10px 16px;
  }
  .bar-tv-aspect {
    max-width: 100%;
    border-radius: 14px;
  }
}
/* Turntable center label drop animation */

.turntable-label {
  transition: transform 0.15s ease-out;
}

.turntable-label.label-drop {
  animation: labelDrop 0.35s ease-out;
}

@keyframes labelDrop {
  0% {
    transform: translateY(-18px) scale(1.08);
  }
  55% {
    transform: translateY(6px) scale(0.96);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
/* ============================================
   FLOATING HEADER — MATCH HERO GRADIENT
   ============================================ */

.top-nav .brand-title {
  font-weight: 700;
  font-size: 1.1rem; /* Keeps your two-line mobile behavior */
  background: linear-gradient(90deg,
    #FF1493 0%,   /* Neon pink */
    #FFB700 50%,  /* Warm gold midpoint */
    #FFD700 100%  /* Polished gold */
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  /* Optional subtle glow to match hero */
  text-shadow: 0 0 6px rgba(255, 215, 0, 0.35);
}
/* ======================================================
   FORCE HEADER TITLE TO STAY ON ONE LINE (MOBILE + TABLET)
   ====================================================== */

.top-nav .brand-title {
  white-space: nowrap;          /* Prevent wrapping */
  overflow: hidden;             /* Avoid accidental overflow */
  text-overflow: ellipsis;      /* Safety — rarely needed but prevents spill */
  max-width: 100%;              /* Ensures proper shrinking on small screens */
}

/* Slightly tighten letter-spacing on small screens
   so the title fits elegantly in one line */
@media (max-width: 768px) {
  .top-nav .brand-title {
    letter-spacing: 0.12em;     /* Reduce from your larger desktop spacing */
    font-size: 0.78rem;         /* Scales well while staying readable */
  }
}
/* ===============================
   FOOTER ICON GLOW — THEME AWARE
================================ */

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  opacity: 0.75;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

/* Base (Neon Pink) */
body.theme-base .footer-icon-link:hover {
  opacity: 1;
  filter: drop-shadow(0 0 6px #ff1493)
          drop-shadow(0 0 12px rgba(255, 20, 147, 0.6));
}

/* Gold */
body.theme-gold .footer-icon-link:hover {
  opacity: 1;
  filter: drop-shadow(0 0 6px #ffd700)
          drop-shadow(0 0 12px rgba(255, 215, 0, 0.6));
}

/* Platinum */
body.theme-platinum .footer-icon-link:hover {
  opacity: 1;
  filter: drop-shadow(0 0 6px #e8e8e8)
          drop-shadow(0 0 12px rgba(232, 232, 232, 0.7));
}
