/* NeoCities Outpost — KeyJay Online Design System
   Full-bleed hero, hamburger menu, floating player, glassmorphic cards.
   Matches neumorphic.css from keyjayonline.com */

/* =============================================================================
   CSS Custom Properties — exact match from KJO neumorphic.css
   ============================================================================= */
:root {
  --neu-bg: #2a2d35;
  --neu-bg-light: #32363f;
  --neu-bg-dark: #22252b;
  --neu-shadow-light: rgba(60, 64, 72, 0.5);
  --neu-shadow-dark: rgba(18, 20, 24, 0.8);
  --neu-accent: #667eea;
  --neu-accent-purple: #764ba2;
  --neu-accent-soft: rgba(102, 126, 234, 0.15);
  --neu-border: rgba(255, 255, 255, 0.05);
  --neu-text-primary: #ffffff;
  --neu-text-secondary: #9ca3af;
  --neu-text-muted: #6b7280;
}

/* =============================================================================
   Wave Background Canvas
   ============================================================================= */
#wave-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
}

/* =============================================================================
   Hero Background Image
   ============================================================================= */
#hero-bg {
  position: fixed;
  top: 0;
  left: -60em;
  width: calc(100% + 40em);
  height: 100%;
  z-index: 0;
  background-image: url('../images/J_Header_2560.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  -webkit-mask-image:
    linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 40%, transparent 75%),
    linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 85%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 40%, transparent 75%),
    linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 85%);
  mask-composite: intersect;
  pointer-events: none;
}

/* =============================================================================
   Reset & Base
   ============================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

body {
  background: var(--neu-bg-dark);
  color: var(--neu-text-primary);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Michroma', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

a {
  color: var(--neu-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #8da2f0;
}

/* =============================================================================
   Page Container
   ============================================================================= */
.page-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

/* =============================================================================
   Glass Card — from neumorphic.css lines 458-465
   ============================================================================= */
.glass-card {
  background: rgba(42, 45, 53, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
  border-radius: 20px;
}

/* =============================================================================
   Neumorphic Button — from neumorphic.css lines 71-118
   ============================================================================= */
.neu-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neu-bg);
  border-radius: 12px;
  border: 1px solid var(--neu-border);
  box-shadow:
    4px 4px 8px var(--neu-shadow-dark),
    -4px -4px 8px var(--neu-shadow-light);
  padding: 12px 24px;
  color: var(--neu-text-primary);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.neu-button:hover {
  color: var(--neu-text-primary);
  box-shadow:
    2px 2px 4px var(--neu-shadow-dark),
    -2px -2px 4px var(--neu-shadow-light);
}

.neu-button:active {
  box-shadow:
    inset 4px 4px 8px var(--neu-shadow-dark),
    inset -4px -4px 8px var(--neu-shadow-light);
}

.neu-button-round {
  border-radius: 50px;
  padding: 10px 20px;
}

/* =============================================================================
   Neumorphic Inset — from neumorphic.css lines 353-357
   ============================================================================= */
.neu-shadow-inset {
  box-shadow:
    inset 4px 4px 8px var(--neu-shadow-dark),
    inset -4px -4px 8px var(--neu-shadow-light);
}

/* =============================================================================
   Section Labels
   ============================================================================= */
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.section-label h2 {
  font-size: 0.75rem;
  color: var(--neu-text-secondary);
  white-space: nowrap;
}

.label-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--neu-border), transparent);
}

/* =============================================================================
   Gradient Text
   ============================================================================= */
.gradient-text {
  background: linear-gradient(135deg, var(--neu-accent), var(--neu-accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================================================
   AUDIO PLAYER
   ============================================================================= */
.player-section {
  margin-bottom: 32px;
}

.audio-player {
  padding: 20px 24px;
}

.player-loading {
  color: var(--neu-text-muted);
  font-size: 0.85rem;
  text-align: center;
}

.player-track-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.player-thumbnail {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 10px;
  background-color: var(--neu-bg-dark);
  background-size: cover;
  background-position: center;
  box-shadow:
    inset 3px 3px 6px var(--neu-shadow-dark),
    inset -3px -3px 6px var(--neu-shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neu-text-muted);
  overflow: hidden;
}

.player-thumbnail:not(.no-art) svg {
  display: none;
}

.player-meta {
  min-width: 0;
  flex: 1;
}

.player-title {
  font-family: 'Michroma', sans-serif;
  font-size: 0.8rem;
  color: var(--neu-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-artist {
  font-size: 0.78rem;
  color: var(--neu-text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

/* Controls */
.player-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.player-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neu-bg);
  border: 1px solid var(--neu-border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--neu-text-secondary);
  transition: all 0.2s ease;
  box-shadow:
    3px 3px 6px var(--neu-shadow-dark),
    -3px -3px 6px var(--neu-shadow-light);
}

.player-btn:hover {
  color: var(--neu-text-primary);
  box-shadow:
    2px 2px 3px var(--neu-shadow-dark),
    -2px -2px 3px var(--neu-shadow-light);
}

.player-btn:active {
  box-shadow:
    inset 3px 3px 6px var(--neu-shadow-dark),
    inset -3px -3px 6px var(--neu-shadow-light);
}

.player-btn-prev,
.player-btn-next {
  width: 40px;
  height: 40px;
}

.player-btn-play {
  width: 52px;
  height: 52px;
  color: var(--neu-accent);
}

.player-btn-play:hover {
  color: #8da2f0;
}

.player-btn-play.playing {
  background: linear-gradient(135deg, var(--neu-accent), var(--neu-accent-purple));
  color: white;
  border-color: transparent;
}

/* Progress */
.player-progress-wrap {
  width: 100%;
}

.player-time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.player-time {
  font-size: 0.72rem;
  color: var(--neu-text-muted);
  font-variant-numeric: tabular-nums;
}

.player-track-num {
  font-size: 0.68rem;
  color: var(--neu-text-muted);
  opacity: 0.7;
}

.player-progress {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--neu-bg-dark);
  box-shadow:
    inset 2px 2px 4px var(--neu-shadow-dark),
    inset -2px -2px 4px var(--neu-shadow-light);
  cursor: pointer;
  overflow: hidden;
}

.player-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--neu-accent), var(--neu-accent-purple));
  transition: width 0.1s linear;
}

/* Volume */
.player-volume-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.player-volume-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--neu-text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.player-volume-btn:hover {
  color: var(--neu-text-primary);
}

.player-volume-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--neu-bg-dark);
  box-shadow:
    inset 1px 1px 2px var(--neu-shadow-dark),
    inset -1px -1px 2px var(--neu-shadow-light);
  outline: none;
  cursor: pointer;
}

.player-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neu-accent), var(--neu-accent-purple));
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.player-volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neu-accent), var(--neu-accent-purple));
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Player CTA */
.player-cta-container {
  text-align: center;
  margin-top: 12px;
}

.player-cta-link {
  font-size: 0.85rem;
}

/* Player fallback */
.player-fallback {
  text-align: center;
}

.player-fallback p {
  color: var(--neu-text-muted);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* =============================================================================
   NOW ENTRIES
   ============================================================================= */
.now-section {
  margin-bottom: 32px;
}

.now-placeholder {
  padding: 24px;
  text-align: center;
  color: var(--neu-text-muted);
  font-size: 0.9rem;
}

.now-entry {
  padding: 24px;
  margin-bottom: 16px;
}

.now-entry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.now-entry-date {
  font-size: 0.8rem;
  color: var(--neu-text-muted);
}

.now-entry-date time {
  color: var(--neu-text-secondary);
}

.via-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--neu-bg);
  border: 1px solid var(--neu-border);
  box-shadow:
    2px 2px 4px var(--neu-shadow-dark),
    -2px -2px 4px var(--neu-shadow-light);
  font-size: 0.7rem;
  color: var(--neu-text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.via-pill:hover {
  color: var(--neu-accent);
}

/* Latest entry accent */
.entry-latest {
  border-left: 3px solid var(--neu-accent);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.37),
    -4px 0 12px rgba(102, 126, 234, 0.12);
}

/* Entry content styling */
.now-entry-content {
  color: var(--neu-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

.now-entry-content p {
  margin-bottom: 12px;
}

.now-entry-content p:last-child {
  margin-bottom: 0;
}

.now-entry-content a {
  color: var(--neu-accent);
  text-decoration: underline;
  text-decoration-color: rgba(102, 126, 234, 0.3);
  text-underline-offset: 2px;
}

.now-entry-content a:hover {
  text-decoration-color: var(--neu-accent);
}

.now-entry-content h1,
.now-entry-content h2,
.now-entry-content h3,
.now-entry-content h4 {
  color: var(--neu-text-primary);
  margin: 16px 0 8px;
  font-size: 0.85rem;
}

.now-entry-content ul,
.now-entry-content ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.now-entry-content li {
  margin-bottom: 4px;
}

.now-entry-content blockquote {
  border-left: 2px solid var(--neu-accent-soft);
  padding-left: 16px;
  margin: 12px 0;
  color: var(--neu-text-muted);
  font-style: italic;
}

.now-entry-content code {
  background: var(--neu-bg-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}

.now-entry-content pre {
  background: var(--neu-bg-dark);
  padding: 12px 16px;
  border-radius: 8px;
  overflow-x: auto;
  margin: 12px 0;
}

.now-entry-content pre code {
  background: none;
  padding: 0;
}

/* Image wells (neumorphic inset) */
.image-well {
  border-radius: 12px;
  overflow: hidden;
  margin: 12px 0;
  background: var(--neu-bg-dark);
  box-shadow:
    inset 4px 4px 8px var(--neu-shadow-dark),
    inset -4px -4px 8px var(--neu-shadow-light);
}

.image-well img {
  display: block;
  width: 100%;
  height: auto;
}

/* CTA */
.now-cta-container {
  text-align: center;
  margin-top: 8px;
}

.now-cta-link {
  font-size: 0.85rem;
}

/* =============================================================================
   RSS BAR
   ============================================================================= */
.rss-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.rss-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.rss-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--neu-bg, #2a2d35);
  border: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow:
    inset 2px 2px 4px var(--neu-shadow-dark, rgba(0,0,0,0.5)),
    inset -2px -2px 4px var(--neu-shadow-light, rgba(255,255,255,0.04)),
    0 0 14px rgba(249, 115, 22, 0.3);
  animation: rss-pulse-glow 2.5s ease-in-out infinite;
}

@keyframes rss-pulse-glow {
  0%, 100% { box-shadow: inset 2px 2px 4px var(--neu-shadow-dark, rgba(0,0,0,0.5)), inset -2px -2px 4px var(--neu-shadow-light, rgba(255,255,255,0.04)), 0 0 14px rgba(249, 115, 22, 0.3); }
  50% { box-shadow: inset 2px 2px 4px var(--neu-shadow-dark, rgba(0,0,0,0.5)), inset -2px -2px 4px var(--neu-shadow-light, rgba(255,255,255,0.04)), 0 0 24px rgba(249, 115, 22, 0.55), 0 0 8px rgba(249, 115, 22, 0.2); }
}

.rss-icon {
  flex-shrink: 0;
  color: #f97316;
}

.rss-text {
  font-size: 0.82rem;
  color: var(--neu-text-secondary);
  line-height: 1.4;
}

.rss-subscribe-btn {
  flex-shrink: 0;
  font-size: 0.8rem;
  padding: 8px 18px;
}

/* =============================================================================
   WEBRINGS (carousel)
   ============================================================================= */
.webring-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  margin-bottom: 32px;
}

.webring-label {
  font-family: 'Michroma', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  color: var(--neu-text-muted);
  letter-spacing: 0.06em;
}

.webring-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.webring-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  padding: 0;
  background: var(--neu-bg);
  border: 1px solid var(--neu-border);
  border-radius: 50%;
  box-shadow:
    3px 3px 6px var(--neu-shadow-dark),
    -3px -3px 6px var(--neu-shadow-light);
  color: var(--neu-text-primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.webring-arrow:hover {
  color: var(--neu-accent);
  box-shadow:
    1px 1px 3px var(--neu-shadow-dark),
    -1px -1px 3px var(--neu-shadow-light);
}

.webring-arrow:active {
  box-shadow:
    inset 3px 3px 6px var(--neu-shadow-dark),
    inset -3px -3px 6px var(--neu-shadow-light);
}

.webring-carousel {
  position: relative;
  flex: 1;
  min-height: 120px;
  height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.webring-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.webring-slide-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.webring-dots {
  display: flex;
  gap: 8px;
}

/* Hide dots when only 1 ring */
.webring-dots:empty {
  display: none;
}

.webring-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.webring-dot:hover {
  background: rgba(255, 255, 255, 0.2);
}

.webring-dot-active {
  background: var(--neu-accent);
  border-color: var(--neu-accent);
}

/* Reusable webring nav — neumorphic buttons for any webring */
.webring-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.webring-nav a:not(:has(img)) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 4px 10px;
  background: var(--neu-bg);
  border: 1px solid var(--neu-border);
  border-radius: 50px;
  box-shadow:
    3px 3px 6px var(--neu-shadow-dark),
    -3px -3px 6px var(--neu-shadow-light);
  color: var(--neu-text-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.webring-nav a:not(:has(img)):hover {
  color: var(--neu-accent);
  box-shadow:
    1px 1px 3px var(--neu-shadow-dark),
    -1px -1px 3px var(--neu-shadow-light);
}

.webring-nav a:not(:has(img)):active {
  box-shadow:
    inset 3px 3px 6px var(--neu-shadow-dark),
    inset -3px -3px 6px var(--neu-shadow-light);
}

/* Full-width secondary link (e.g. "Random Select") */
.webring-nav-secondary {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  background: var(--neu-bg);
  border: 1px solid var(--neu-border);
  border-radius: 50px;
  box-shadow:
    3px 3px 6px var(--neu-shadow-dark),
    -3px -3px 6px var(--neu-shadow-light);
  color: var(--neu-text-secondary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.webring-nav-secondary:hover {
  color: var(--neu-accent);
  box-shadow:
    1px 1px 3px var(--neu-shadow-dark),
    -1px -1px 3px var(--neu-shadow-light);
}

.webring-nav-secondary:active {
  box-shadow:
    inset 3px 3px 6px var(--neu-shadow-dark),
    inset -3px -3px 6px var(--neu-shadow-light);
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.site-footer {
  text-align: center;
  padding-top: 8px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neu-border), transparent);
  margin-bottom: 20px;
}

.footer-built {
  font-size: 0.78rem;
  color: var(--neu-text-muted);
  margin-bottom: 6px;
}

.footer-built a {
  color: var(--neu-text-secondary);
}

.footer-home {
  font-size: 0.82rem;
  color: var(--neu-text-secondary);
}

.footer-home a {
  color: var(--neu-accent);
  font-weight: 500;
}

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--neu-bg-light, #32363f);
  box-shadow:
    3px 3px 6px var(--neu-shadow-dark, rgba(18, 20, 24, 0.8)),
    -2px -2px 5px var(--neu-shadow-light, rgba(60, 64, 72, 0.5));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: var(--neu-text-secondary, #9ca3af);
}

.footer-social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow:
    4px 4px 10px var(--neu-shadow-dark, rgba(18, 20, 24, 0.8)),
    -3px -3px 8px var(--neu-shadow-light, rgba(60, 64, 72, 0.5));
}

.footer-social-link svg {
  fill: currentColor;
}

/* Fallback state */
.now-fallback {
  text-align: center;
  padding: 24px;
}

.now-fallback p {
  color: var(--neu-text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* =============================================================================
   Section Slide-In Animation
   ============================================================================= */
@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.spa-nav,
.now-section,
.rss-bar,
.webring-bar,
.site-footer {
  opacity: 0;
  animation: slide-in 0.5s ease-out forwards;
}

.spa-nav          { animation-delay: 0.2s; }
.now-section      { animation-delay: 0.45s; }
.rss-bar          { animation-delay: 0.55s; }
.webring-bar      { animation-delay: 0.65s; }
.site-footer      { animation-delay: 0.7s; }

/* =============================================================================
   Scrollbar
   ============================================================================= */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--neu-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--neu-accent), var(--neu-accent-purple));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neu-accent);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--neu-accent) var(--neu-bg-dark);
}

/* =============================================================================
   Responsive — 480px breakpoint
   ============================================================================= */
@media (max-width: 480px) {
  .page-container {
    padding: 20px 14px 36px;
  }

  .rss-bar {
    flex-direction: column;
    text-align: center;
    padding: 18px 20px;
  }

  .rss-content {
    flex-direction: column;
  }

  .webring-bar {
    padding: 12px 16px;
  }

}

/* =============================================================================
   Hero Background — prominent mask
   ============================================================================= */
#hero-bg {
  left: -40em;
  -webkit-mask-image:
    linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.5) 55%, transparent 80%),
    linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0.5) 65%, transparent 90%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.5) 55%, transparent 80%),
    linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0.5) 65%, transparent 90%);
  mask-composite: intersect;
}

@media (max-width: 387px) {
  #hero-bg {
    left: -33em;
  }
}

/* =============================================================================
   Hero Banner — full-bleed, centered, pushed down
   ============================================================================= */
.v2-hero {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.v2-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px 1rem;
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  animation: slide-in 0.6s ease-out 0.1s forwards;
}

.v2-logo {
  display: block;
  max-width: 360px;
  width: 75%;
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.6));
}

/* =============================================================================
   Hero Title & Subtitle — large, centered
   ============================================================================= */
.v2-hero-title {
  font-family: 'Michroma', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--neu-text-primary);
  margin: 0 0 0.25rem;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.v2-hero-subtitle {
  font-family: 'Michroma', sans-serif;
  font-size: 0.75rem;
  color: var(--neu-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 1rem;
}

.v2-hero-tagline {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.v2-hero-tagline a {
  color: var(--neu-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(102, 126, 234, 0.25);
  transition: border-color 0.2s ease;
}

.v2-hero-tagline a:hover {
  border-color: var(--neu-accent);
}

.hero-site-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.3) !important;
  border-bottom: 1px solid rgba(102, 126, 234, 0.3) !important;
  font-family: 'Michroma', sans-serif;
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neu-accent) !important;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-site-tag:hover {
  background: rgba(102, 126, 234, 0.22);
  border-color: var(--neu-accent) !important;
}

/* =============================================================================
   Gradient Text Shimmer — light wipe effect on "Online"
   ============================================================================= */
.v2-shimmer {
  background: linear-gradient(
    135deg,
    var(--neu-accent) 0%,
    var(--neu-accent-purple) 40%,
    #b794f4 50%,
    var(--neu-accent-purple) 60%,
    var(--neu-accent) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: v2-shimmer-wipe 4s ease-in-out infinite;
}

@keyframes v2-shimmer-wipe {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* =============================================================================
   Animated Hamburger Button — three bars morph to X, pulse glow
   ============================================================================= */
.v2-menu-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(30, 32, 38, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
  padding: 0;
  animation: v2-menu-glow 3s ease-in-out infinite;
}

@keyframes v2-menu-glow {
  0%, 100% { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(102, 126, 234, 0.12); }
  50% { box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3), 0 0 16px 4px rgba(102, 126, 234, 0.18); }
}

.v2-menu-btn:hover {
  background: rgba(42, 45, 53, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  animation: none;
}

.v2-menu-btn-active {
  animation: none;
}

.v2-burger {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.v2-burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--neu-text-secondary);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.v2-menu-btn:hover .v2-burger-line {
  background: var(--neu-text-primary);
}

.v2-menu-btn-active .v2-burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.v2-menu-btn-active .v2-burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.v2-menu-btn-active .v2-burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =============================================================================
   Menu Overlay
   ============================================================================= */
.v2-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.v2-menu-overlay-visible {
  opacity: 1;
  pointer-events: auto;
}

/* =============================================================================
   Slide-out Menu Panel — glassmorphic, all-caps labels
   ============================================================================= */
.v2-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 280px;
  height: 100vh;
  background: rgba(30, 32, 40, 0.55);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 0 24px;
  overflow-y: auto;
}

.v2-menu-panel-open {
  transform: translateX(0);
}

.v2-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Michroma', sans-serif;
  font-size: 0.6rem;
  color: var(--neu-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0 24px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 8px;
}

/* Close button — hidden on desktop (hamburger X visible), shown on mobile */
.v2-menu-close {
  display: none;
  background: none;
  border: none;
  color: var(--neu-text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
  line-height: 1;
}

.v2-menu-close:hover {
  color: var(--neu-text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.v2-menu-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 12px;
}

.v2-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--neu-text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}

.v2-menu-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--neu-text-primary);
  filter: brightness(1.15);
}

.v2-menu-link svg {
  flex-shrink: 0;
}

/* Per-link accent colors — matching main site */
.v2-ml-home       { color: var(--neu-accent); }
.v2-ml-home svg   { stroke: var(--neu-accent); }
.v2-ml-music      { color: #3b82f6; }
.v2-ml-music svg  { stroke: #3b82f6; }
.v2-ml-voice      { color: #764ba2; }
.v2-ml-voice svg  { stroke: #764ba2; }
.v2-ml-prod       { color: #f97316; }
.v2-ml-prod svg   { stroke: #f97316; }
.v2-ml-tech       { color: #667eea; }
.v2-ml-tech svg   { stroke: #667eea; }
.v2-ml-games      { color: #10b981; }
.v2-ml-games svg  { stroke: #10b981; }
.v2-ml-listening  { color: #ec4899; }
.v2-ml-listening svg { stroke: #ec4899; }
/* Guestbook — never show active state */
#gb-menu-link.spa-nav-active {
  background: #3c4150;
  color: var(--neu-text-secondary, #9ca3af);
}
#gb-menu-link.spa-nav-active svg {
  stroke: #f59e0b;
}

.v2-ml-rss        { color: #f97316; }
.v2-ml-rss svg    { stroke: #f97316; }

.v2-menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 6px 12px;
}

/* =============================================================================
   Floating Music Button — lower-right
   ============================================================================= */
.v2-music-btn {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(102, 126, 234, 0.2);
  background: rgba(30, 32, 38, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--neu-accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(102, 126, 234, 0);
  padding: 0;
  animation: v2-music-pulse 3s ease-in-out infinite;
}

@keyframes v2-music-pulse {
  0%, 100% { box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(102, 126, 234, 0.15); }
  50% { box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35), 0 0 0 6px rgba(102, 126, 234, 0); }
}

.v2-music-btn:hover {
  background: rgba(42, 45, 53, 0.95);
  border-color: rgba(102, 126, 234, 0.4);
  transform: scale(1.08);
  animation: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 12px rgba(102, 126, 234, 0.2);
}

.v2-music-btn-active {
  animation: none;
  border-color: rgba(102, 126, 234, 0.5);
  background: rgba(102, 126, 234, 0.15);
}

/* Menu music pill + divider — hidden on desktop, shown on mobile */
#menu-music-btn,
#menu-music-divider {
  display: none;
}

.v2-menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 4px 24px;
}

.v2-menu-music-pill {
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 4px 24px 0;
  padding: 10px 16px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--neu-accent), var(--neu-accent-purple));
  color: white;
  font-family: 'Michroma', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.3);
  transition: all 0.2s ease;
}

.v2-menu-music-pill:hover {
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
  transform: translateY(-1px);
}

.v2-menu-music-pill svg {
  stroke: white;
  flex-shrink: 0;
}

/* =============================================================================
   Music Player Popup — glassmorphic card
   ============================================================================= */
.v2-player-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.v2-player-overlay-visible {
  opacity: 1;
  pointer-events: auto;
}

.v2-player-popup {
  position: fixed;
  bottom: 84px;
  right: 16px;
  z-index: 1002;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: rgba(30, 32, 40, 0.65);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  padding: 20px;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.v2-player-popup-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.v2-player-popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.v2-player-popup-header h3 {
  font-family: 'Michroma', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
  flex: 1;
}

.v2-player-close {
  background: none;
  border: none;
  color: var(--neu-text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
  line-height: 1;
}

.v2-player-close:hover {
  color: var(--neu-text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.v2-player-toast {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 12px;
  margin: 0 4px;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 8px;
  transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease, margin 0.4s ease;
}

.v2-player-toast-visible {
  max-height: 80px;
  opacity: 1;
  padding: 8px 12px;
  margin: 8px 4px;
}

.v2-player-toast a {
  color: var(--neu-accent, #a78bfa);
  text-decoration: underline;
}

/* Override base audio-player styles inside popup */
.v2-player-popup .audio-player {
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.v2-player-cta {
  margin-top: 12px;
  text-align: center;
}

.v2-player-cta .player-cta-link {
  font-size: 0.75rem;
  padding: 8px 16px;
}

/* ── Video Modal (YouTube embed) ────────────────────────────────────────────── */

.v2-video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1010;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.v2-video-overlay-visible {
  opacity: 1;
  pointer-events: auto;
}

.v2-video-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 1011;
  width: 90vw;
  max-width: 800px;
  background: rgba(30, 32, 40, 0.85);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.v2-video-modal-open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.v2-video-modal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v2-video-modal-header h3 {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  color: var(--neu-text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v2-video-close {
  background: none;
  border: none;
  color: var(--neu-text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-video-close:hover {
  color: var(--neu-text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.v2-video-modal-body {
  padding: 0;
}

.v2-video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  overflow: hidden;
}

.v2-video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================================================
   Image Lightbox Modal
   ============================================================================= */

.img-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1010;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.img-modal-overlay-visible {
  opacity: 1;
  pointer-events: auto;
}

.img-modal {
  position: fixed;
  inset: 0;
  z-index: 1011;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  cursor: pointer;
}

.img-modal-open {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.img-modal-img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 14px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
  cursor: default;
  object-fit: contain;
}

.img-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(42, 45, 53, 0.8);
  backdrop-filter: blur(8px);
  color: var(--neu-text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 1;
}

.img-modal-close:hover {
  color: var(--neu-text-primary);
  background: rgba(42, 45, 53, 0.95);
}

/* =============================================================================
   Guestbook Modal (iframe)
   ============================================================================= */

.gb-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1010;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gb-modal-overlay-visible {
  opacity: 1;
  pointer-events: auto;
}

.gb-modal {
  position: fixed;
  inset: 0;
  z-index: 1011;
  background: rgba(30, 32, 40, 0.95);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gb-modal-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.gb-modal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.gb-modal-header h3 {
  flex: 1;
  margin: 0;
  font-size: 0.9rem;
  color: var(--neu-text-primary);
}

.gb-modal-close {
  background: none;
  border: none;
  color: var(--neu-text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gb-modal-close:hover {
  color: var(--neu-text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.gb-modal-body {
  flex: 1;
  overflow: hidden;
}

.gb-modal-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 600px) {
  .gb-modal {
    inset: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90vw;
    max-width: 800px;
    height: 80vh;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  }

  .gb-modal-open {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* =============================================================================
   Detail Bottom Sheet
   ============================================================================= */

.detail-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.detail-sheet-overlay.sheet-open {
  opacity: 1;
  pointer-events: auto;
}

.detail-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  max-height: 85vh;
  overflow: hidden;
  background: rgba(30, 32, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.detail-sheet.sheet-open {
  transform: translateY(0);
  pointer-events: auto;
}

/* Blurred cover art background */
.detail-sheet-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(20px) saturate(1.2);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  transition: opacity 0.3s ease;
}

.detail-sheet-bg.detail-sheet-bg-active {
  opacity: 0.35;
}

.detail-sheet-header {
  display: flex;
  align-items: center;
  padding: 8px 8px 0;
  position: relative;
  z-index: 1;
}

.detail-sheet-handle {
  display: flex;
  justify-content: center;
  flex: 1;
}

.detail-sheet-handle-bar {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.detail-sheet-close {
  background: none;
  border: none;
  color: var(--neu-text-secondary, #9ca3af);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 12px;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-sheet-close:hover {
  color: #fff;
}

.detail-sheet-body {
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  overflow-y: auto;
  max-height: calc(85vh - 40px);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.detail-sheet-body::-webkit-scrollbar {
  width: 6px;
}

.detail-sheet-body::-webkit-scrollbar-track {
  background: transparent;
}

.detail-sheet-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.detail-sheet-body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.detail-sheet-cover {
  width: 200px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 2px 2px 4px var(--neu-shadow-dark, rgba(0,0,0,0.5)),
    inset -2px -2px 4px var(--neu-shadow-light, rgba(255,255,255,0.04));
}

.detail-sheet-cover img {
  width: 100%;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.detail-sheet-cover img.loaded {
  opacity: 1;
}

.detail-sheet-cover-placeholder {
  min-height: 120px;
  color: var(--neu-text-muted, #6b7280);
}

.detail-sheet-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.detail-sheet-title {
  font-family: 'Michroma', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--neu-text-primary, #e5e7eb);
  margin: 0;
  line-height: 1.3;
}

.detail-sheet-meta {
  font-size: 0.85rem;
  color: var(--neu-text-muted, #6b7280);
}

.detail-sheet-genres {
  font-size: 0.8rem;
  color: var(--neu-text-muted, #6b7280);
}

.detail-sheet-rating {
  font-size: 0.9rem;
  color: #f59e0b;
}

.detail-sheet-divider {
  width: 60%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.25rem 0;
}

/* Tabs */
.detail-sheet-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 3px;
  width: 100%;
  max-width: 300px;
}

.detail-sheet-tab {
  flex: 1;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--neu-text-muted, #6b7280);
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
}

.detail-sheet-tab:hover {
  color: var(--neu-text-secondary, #9ca3af);
}

.detail-sheet-tab-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Tab panels — fade transition */
.detail-sheet-tab-panel {
  width: 100%;
  max-width: 480px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.25s ease;
}

.detail-sheet-tab-panel.tab-panel-active {
  opacity: 1;
  max-height: none;
  overflow: visible;
}

/* Content column wrapper (for desktop side-by-side layout) */
.detail-sheet-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

/* Hide cover art in modal on mobile (already visible on card) */
.detail-sheet-modal-cover {
  display: none;
}

@media (min-width: 600px) {
  .detail-sheet-modal-cover {
    display: flex;
  }
}

/* Notes content with styled scroll */
.detail-sheet-notes {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--neu-text-primary, #e5e7eb);
  line-height: 1.6;
  text-align: center;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.detail-sheet-notes::-webkit-scrollbar {
  width: 4px;
}

.detail-sheet-notes::-webkit-scrollbar-track {
  background: transparent;
}

.detail-sheet-notes::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.detail-sheet-notes p {
  margin: 0 0 0.5rem;
}

/* Embedded video (trailer tab) */
.detail-sheet-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 10px;
  overflow: hidden;
}

.detail-sheet-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* External links row */
.detail-sheet-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.25rem;
}

.detail-sheet-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.detail-sheet-action:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Desktop: center as a modal instead of bottom sheet */
@media (min-width: 600px) {
  .detail-sheet {
    bottom: auto;
    top: 50%;
    left: 50%;
    right: auto;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  }

  .detail-sheet.sheet-open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  .detail-sheet-handle {
    display: none;
  }

  .detail-sheet-body {
    max-height: calc(80vh - 40px);
    flex-direction: row;
    align-items: stretch;
    gap: 1.25rem;
  }

  .detail-sheet-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .detail-sheet-modal-cover {
    width: 240px;
    min-height: auto;
    flex-shrink: 0;
    order: 2;
    align-self: flex-start;
    padding: 0.5rem;
  }

  .detail-sheet-notes {
    max-height: 560px;
  }
}

/* =============================================================================
   Section Icons — 15° tilt, no transparency
   ============================================================================= */
.v2-section-icon {
  transform: rotate(-15deg);
  flex-shrink: 0;
  color: var(--neu-accent);
}

/* Icon jump on section hover */
@keyframes v2-icon-jump {
  0%   { transform: rotate(-15deg) translateY(0); }
  30%  { transform: rotate(-15deg) translateY(-6px); }
  50%  { transform: rotate(-15deg) translateY(0); }
  70%  { transform: rotate(-15deg) translateY(-3px); }
  100% { transform: rotate(-15deg) translateY(0); }
}

.v2-intro-wrap:hover .v2-intro-icon-overlap .v2-section-icon,
.now-section:hover .section-label .v2-section-icon,
.v2-video-section:hover .section-label .v2-section-icon,
.rss-bar:hover .v2-section-icon,
.section-label:hover .v2-section-icon {
  animation: v2-icon-jump 0.5s ease-out;
}

/* RSS icon stays orange */
.rss-icon.v2-section-icon {
  color: #f97316;
  stroke: #f97316;
}

/* =============================================================================
   Section Headings — bright, larger
   ============================================================================= */
.section-label h2 {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* =============================================================================
   Page container — wider, tight gap to hero
   ============================================================================= */
.page-container {
  max-width: 1000px;
  padding-top: 0.75rem;
}

/* =============================================================================
   Body text — white, larger
   ============================================================================= */
.page-container p,
.page-container .rss-text,
.page-container .now-text,
.page-container .player-loading {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}

/* =============================================================================
   Glass card hover — reduce transparency
   ============================================================================= */
.page-container .glass-card {
  transition: all 0.3s ease;
}

.page-container .glass-card:hover {
  background: rgba(42, 45, 53, 0.8);
  border-color: rgba(255, 255, 255, 0.14);
}

/* =============================================================================
   RSS Subscribe button — gradient
   ============================================================================= */
.rss-subscribe-btn {
  background: linear-gradient(135deg, var(--neu-accent), var(--neu-accent-purple), #f97316) !important;
  background-size: 200% 100%;
  border: none !important;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.25) !important;
  transition: all 0.3s ease;
}

.rss-subscribe-btn:hover {
  background-position: 100% 0;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.35) !important;
  transform: translateY(-1px);
}

/* =============================================================================
   Intro Section — icon overlaps from left
   ============================================================================= */
.v2-intro-wrap {
  position: relative;
  margin-bottom: 2rem;
  opacity: 0;
  animation: slide-in 0.5s ease-out 0.3s forwards;
}

.v2-intro-icon-overlap {
  position: absolute;
  top: -18px;
  left: -6px;
  z-index: 3;
}

.v2-intro {
  padding: 20px 24px;
}

.v2-intro-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.7;
}

.v2-intro-text a {
  color: var(--neu-accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
  transition: border-color 0.2s ease;
}

.v2-intro-text a:hover {
  border-color: var(--neu-accent);
}

.v2-intro-name {
  color: var(--neu-text-primary);
  font-weight: 600;
}

/* =============================================================================
   Video Showcase Section
   ============================================================================= */
.v2-video-section {
  margin-bottom: 2rem;
  opacity: 0;
  animation: v2-video-reveal 0.6s ease-out 0.35s forwards;
}

@keyframes v2-video-reveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* When hidden by JS on first visit, no animation */
.v2-video-section[hidden] {
  display: none !important;
}

.v2-video-card {
  padding: 0;
  overflow: hidden;
}

.v2-video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.v2-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

/* =============================================================================
   Responsive — mobile adjustments (v2-specific)
   ============================================================================= */
@media (max-width: 480px) {
  .v2-hero {
    min-height: 50vh;
  }

  .v2-hero-inner {
    padding: 0 1.25rem 1rem;
  }

  .v2-logo {
    max-width: 240px;
  }

  .v2-hero-title {
    font-size: 1.6rem;
  }

  .v2-hero-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
  }

  .v2-hero-tagline {
    font-size: 0.85rem;
  }

  .v2-intro {
    padding: 16px 18px;
  }

  .v2-intro-text {
    font-size: 0.88rem;
  }

  .v2-intro-icon-overlap {
    left: -2px;
    top: -14px;
  }

  .v2-intro-icon-overlap .v2-section-icon {
    width: 28px;
    height: 28px;
  }

  .section-label h2 {
    font-size: 0.92rem;
  }

  .page-container {
    padding-top: 0.5rem;
  }

  /* Body padding so fixed hamburger doesn't cover footer */
  body {
    padding-bottom: 80px;
  }

  /* Move hamburger to bottom center on mobile */
  .v2-menu-btn {
    top: auto;
    right: auto;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  }

  /* Hide hamburger when menu is open so it doesn't block content */
  .v2-menu-btn.v2-menu-btn-active {
    opacity: 0;
    pointer-events: none;
  }

  /* Hide floating music button on mobile — accessible from menu instead */
  .v2-music-btn {
    display: none;
  }

  /* Show music pill and close button in menu on mobile */
  #menu-music-btn,
  #menu-music-divider {
    display: flex;
  }

  .v2-menu-close {
    display: block;
  }

  /* Slide-out from bottom on mobile — glassmorphic sheet */
  .v2-menu-panel {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 70vh;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    padding: 20px 0 24px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  }

  .v2-menu-panel-open {
    transform: translateY(0);
  }

  .v2-menu-header {
    padding: 0 24px 10px;
    justify-content: center;
    gap: 12px;
  }

  /* Player popup centered on mobile */
  .v2-player-popup {
    bottom: 24px;
    right: 16px;
    left: 16px;
    width: auto;
  }
}

/* ==========================================================================
   SPA NAVIGATION BAR
   ========================================================================== */

.spa-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 20px;
  max-width: 860px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.spa-nav-link {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Michroma', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--neu-text-secondary, #9ca3af);
  background: #3c4150;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    3px 3px 6px var(--neu-shadow-dark, rgba(0,0,0,0.5)),
    -3px -3px 6px var(--neu-shadow-light, rgba(255,255,255,0.06));
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.spa-nav-link svg {
  flex-shrink: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.spa-nav-link:hover {
  z-index: 1;
  color: var(--neu-text-primary, #ffffff);
  background: #464d5e;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow:
    1px 1px 3px var(--neu-shadow-dark, rgba(0,0,0,0.5)),
    -1px -1px 3px var(--neu-shadow-light, rgba(255,255,255,0.06));
  transform: translateY(-1px);
}

.spa-nav-link:hover svg {
  opacity: 1;
}

.spa-nav-link.spa-nav-active {
  z-index: 1;
  background: linear-gradient(135deg, var(--neu-accent, #667eea), var(--neu-accent-purple, #764ba2));
  color: white;
  border-color: transparent;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.3);
}

.spa-nav-link.spa-nav-active svg {
  stroke: white;
  opacity: 1;
}

/* SPA nav per-link accent colors — matching menu icons */
.spa-nl-home svg       { stroke: var(--neu-accent); }
.spa-nl-games svg      { stroke: #10b981; }
.spa-nl-prod svg       { stroke: #f97316; }
.spa-nl-tech svg       { stroke: #667eea; }
.spa-nl-guestbook svg,
.v2-ml-guestbook svg   { stroke: #f59e0b; }
.spa-nl-voice svg      { stroke: #764ba2; }

/* ==========================================================================
   PAGE TRANSITIONS
   ========================================================================== */

.page-content {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-exit {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-enter {
  animation: page-fade-in 0.35s ease-out forwards;
}

@keyframes page-fade-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-loading {
  text-align: center;
  padding: 40px 24px;
  color: var(--neu-text-muted, #6b7280);
}

/* ==========================================================================
   SHELF GRID & CARDS
   ========================================================================== */

.shelf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.shelf-card {
  padding: 0;
  overflow: visible;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.2s ease, opacity 0.25s ease;
  opacity: 1;
  animation: shelf-card-in 0.4s ease-out backwards;
}

@keyframes shelf-card-in {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.shelf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.shelf-card-inner {
  display: flex;
  gap: 1.1rem;
  padding: 1.25rem;
}

/* Cover art well */
.shelf-cover-well {
  width: 200px;
  min-height: 200px;
  flex-shrink: 0;
  align-self: stretch;
  position: relative;
  left: 0;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 2px 2px 4px var(--neu-shadow-dark, rgba(0,0,0,0.5)),
    inset -2px -2px 4px var(--neu-shadow-light, rgba(255,255,255,0.04));
}

.shelf-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shelf-cover-img.loaded {
  opacity: 1;
}

.shelf-cover-placeholder {
  color: var(--neu-text-muted, #6b7280);
}

/* Card info */
.shelf-info {
  flex: 1 1 200px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.shelf-title {
  font-family: 'Michroma', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--neu-text-primary, #e5e7eb);
  margin: 0;
  line-height: 1.3;
}

.shelf-meta {
  font-size: 0.85rem;
  color: var(--neu-text-muted, #6b7280);
}

.shelf-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 0.3rem;
}

.shelf-genres {
  font-size: 0.85rem;
  color: var(--neu-text-muted, #6b7280);
}

.shelf-rating {
  font-size: 0.9rem;
  color: #f59e0b;
}

.shelf-imdb-rating {
  font-size: 0.85rem;
  color: var(--neu-text-secondary, #9ca3af);
}

.shelf-date {
  font-size: 0.82rem;
  color: var(--neu-text-muted, #6b7280);
}

.shelf-external-link {
  font-size: 0.82rem;
  color: var(--neu-accent, #667eea);
  text-decoration: none;
  transition: color 0.2s;
}

.shelf-external-link:hover {
  color: var(--neu-accent-purple, #764ba2);
}

/* Trailer video button */
.shelf-trailer-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: #fff;
  background: linear-gradient(135deg, var(--neu-accent), var(--neu-accent-purple));
  text-decoration: none;
  padding: 4px 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.2s;
}

.shelf-trailer-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
  color: #fff;
}

/* Notes toggle button */
.shelf-notes-btn {
  display: block;
  width: calc(100% - 2rem);
  margin: 0 1rem 0.75rem;
  padding: 0.4rem 0;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--neu-text-secondary, #9ca3af);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
}

.shelf-notes-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--neu-text-primary, #e5e7eb);
}

/* Filter fade transition */
.shelf-card-filtered {
  opacity: 0;
  transform: scale(0.96);
}

/* Empty/loading states */
.shelf-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 24px;
  color: var(--neu-text-muted, #6b7280);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.shelf-filter-empty {
  font-size: 0.85rem;
}

.shelf-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px;
  color: var(--neu-text-muted, #6b7280);
}

/* ==========================================================================
   STATUS PILLS
   ========================================================================== */

.status-pill {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-playing,
.status-watching {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.status-completed {
  background: rgba(102, 126, 234, 0.15);
  color: var(--neu-accent, #667eea);
}

.status-dropped,
.status-shelved {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.status-backlog {
  background: rgba(156, 163, 175, 0.15);
  color: var(--neu-text-secondary, #9ca3af);
}

.status-active-queue {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.status-on-hold {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}

/* Media type badge */
.media-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  color: var(--neu-text-muted, #6b7280);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   FILTER PILLS
   ========================================================================== */

.shelf-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.filter-pill {
  position: relative;
  z-index: 0;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-family: 'Michroma', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--neu-text-secondary, #9ca3af);
  background: var(--neu-bg, #1e1e2e);
  border: 1px solid var(--neu-border, rgba(255,255,255,0.06));
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow:
    2px 2px 4px var(--neu-shadow-dark, rgba(0,0,0,0.5)),
    -2px -2px 4px var(--neu-shadow-light, rgba(255,255,255,0.04));
}

.filter-pill:hover {
  z-index: 1;
  color: var(--neu-text-primary, #e5e7eb);
}

.filter-pill-active {
  z-index: 1;
  background: linear-gradient(135deg, var(--neu-accent, #667eea), var(--neu-accent-purple, #764ba2));
  color: white;
  border-color: transparent;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
}

/* ==========================================================================
   EXPLORE PAGE GRID
   ========================================================================== */

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.explore-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  opacity: 1;
  animation: shelf-card-in 0.4s ease-out backwards;
}

.explore-card:hover {
  transform: translateY(-2px);
}

.explore-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 2px 2px 4px var(--neu-shadow-dark, rgba(0,0,0,0.5)),
    inset -2px -2px 4px var(--neu-shadow-light, rgba(255,255,255,0.04));
}

.explore-card-text {
  flex: 1;
  min-width: 0;
}

.explore-card-title {
  font-family: 'Michroma', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--neu-text-primary, #e5e7eb);
  margin-bottom: 2px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.explore-card-desc {
  font-size: 0.68rem;
  color: var(--neu-text-muted, #6b7280);
  line-height: 1.4;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-card {
  padding: 2rem;
  text-align: center;
}

.about-avatar {
  margin-bottom: 1rem;
}

.about-avatar-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 2px 2px 4px var(--neu-shadow-dark, rgba(0,0,0,0.5)),
    inset -2px -2px 4px var(--neu-shadow-light, rgba(255,255,255,0.04));
}

.about-name {
  font-family: 'Michroma', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 1rem;
  color: var(--neu-text-primary, #e5e7eb);
}

.about-bio {
  text-align: left;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--neu-text-secondary, #9ca3af);
  margin-bottom: 1.5rem;
}

.about-bio p {
  margin: 0 0 0.8rem;
}

.about-bio a {
  color: var(--neu-accent, #667eea);
}

.about-links-label {
  font-family: 'Michroma', sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--neu-text-muted, #6b7280);
  margin: 0 0 0.8rem;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.about-quick-link {
  font-size: 0.72rem;
}

.about-indieweb {
  padding: 1.5rem;
  margin-top: 16px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--neu-text-secondary, #9ca3af);
}

.about-indieweb h3 {
  font-family: 'Michroma', sans-serif;
  font-size: 0.85rem;
  margin: 0 0 0.5rem;
  color: var(--neu-text-primary, #e5e7eb);
}

.about-indieweb a {
  color: var(--neu-accent, #667eea);
}

/* ==========================================================================
   LISTENING PAGE — Last.fm Scrobbles
   ========================================================================== */

.listening-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  animation: shelf-card-in 0.4s ease both;
}

.listening-card:hover {
  transform: translateY(-2px);
  box-shadow:
    6px 6px 16px var(--neu-shadow-dark),
    -4px -4px 12px var(--neu-shadow-light);
}

.listening-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.25rem;
  position: relative;
  z-index: 1;
}

.listening-card-inner .shelf-cover-well {
  align-self: auto;
  aspect-ratio: 1;
}

.listening-card-info {
  flex: 1;
  min-width: 0;
}

.listening-artist {
  font-size: 1rem;
  color: var(--neu-text-secondary, #9ca3af);
  margin-top: 0.2rem;
}

.listening-album {
  font-size: 0.92rem;
  color: var(--neu-text-muted, #6b7280);
  font-style: italic;
  margin-top: 0.15rem;
}

/* Now Playing banner */
.listening-now-playing {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(16, 185, 129, 0.25);
  animation: shelf-card-in 0.4s ease both;
}

.listening-now-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem 0;
  position: relative;
  z-index: 1;
}

.listening-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: listening-pulse-glow 2s ease-in-out infinite;
}

@keyframes listening-pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(16, 185, 129, 0.6); }
  50%      { box-shadow: 0 0 18px rgba(16, 185, 129, 0.9), 0 0 30px rgba(16, 185, 129, 0.3); }
}

.listening-now-label {
  font-family: 'Michroma', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #10b981;
  letter-spacing: 0.06em;
}

.listening-now-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem 1rem;
  position: relative;
  z-index: 1;
}

.listening-now-content .shelf-cover-well {
  width: 200px;
  min-height: 200px;
  flex-shrink: 0;
}

.listening-now-info {
  flex: 1 1 200px;
  min-width: 0;
}

.listening-now-track {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--neu-text-primary, #ffffff);
}

.listening-now-artist {
  font-size: 1.1rem;
  color: var(--neu-text-secondary, #9ca3af);
  margin-top: 0.2rem;
}

.listening-now-album {
  font-size: 0.95rem;
  color: var(--neu-text-muted, #6b7280);
  font-style: italic;
  margin-top: 0.15rem;
}

.listening-profile-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.listening-profile-btn {
  text-decoration: none;
  font-size: 0.95rem;
}

/* Nav accent colors for listening */
.spa-nl-listening svg   { stroke: #ec4899; }

/* Nav accent colors for the hoard */
.v2-ml-the-hoard.spa-nav-active { color: #ef4444; }
.v2-ml-the-hoard.spa-nav-active svg { stroke: #ef4444; }

/* Nav accent colors for emulator */
.v2-ml-emulator.spa-nav-active { color: #818cf8; }
.v2-ml-emulator.spa-nav-active svg { stroke: #818cf8; }

/* ==========================================================================
   INDIE VIBES — curated music showcase
   ========================================================================== */

.indie-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  animation: shelf-card-in 0.35s ease both;
}

.indie-card:hover {
  transform: translateY(-2px);
}

.indie-card-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.25rem;
  position: relative;
  z-index: 1;
}

.indie-card-inner .shelf-cover-well {
  align-self: auto;
  aspect-ratio: 1;
}

.indie-card-info {
  flex: 1 1 200px;
  min-width: 0;
}

.indie-artist {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.15rem;
}

.indie-genre {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.4rem;
}

.indie-note {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.3rem;
  line-height: 1.4;
}

.indie-card-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.indie-sample-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.85rem;
  font-family: 'Michroma', sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.indie-sample-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.indie-sample-btn.indie-sample-playing {
  border-color: #1db954;
  color: #1db954;
  background: rgba(29, 185, 84, 0.08);
}

.indie-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.indie-platform-link:hover {
  opacity: 1;
}

/* ==========================================================================
   THE HOARD — stamps, buttons, cool links
   ========================================================================== */

.hoard-section {
  margin-bottom: 2rem;
}

.hoard-section-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Michroma', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.hoard-rings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.hoard-ring-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  min-height: 80px;
  text-align: center;
}

.hoard-ring-name {
  font-family: 'Michroma', sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.6rem;
}

.hoard-ring-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hoard-stamps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 99px);
  gap: 6px;
  justify-content: center;
}

.hoard-stamp-link {
  display: block;
  line-height: 0;
}

.hoard-stamp {
  image-rendering: pixelated;
  border-radius: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hoard-stamp:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.hoard-stamps-empty,
.hoard-links-empty {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Buttons section */
.hoard-buttons-card {
  padding: 1.25rem;
}

.hoard-buttons-card .hoard-stamps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.hoard-buttons-hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  margin: 0 0 0.75rem;
}

.hoard-buttons-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hoard-button-item {
  background: none;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.15s ease;
  line-height: 0;
}

.hoard-button-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hoard-button-item:active {
  transform: scale(0.97);
}

.hoard-button-item img {
  display: block;
  width: 88px;
  height: 31px;
  border-radius: 4px;
}

.hoard-hotlink-box {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.2s ease, margin 0.25s ease;
  margin-top: 0;
}

.hoard-hotlink-box.hotlink-box-open {
  max-height: 120px;
  opacity: 1;
  margin-top: 1rem;
}

.hoard-hotlink-code {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--neu-text-primary, #e5e7eb);
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  padding: 0.6rem 0.75rem;
  resize: none;
  line-height: 1.4;
}

.hoard-hotlink-code:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
}

.hoard-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.hoard-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  text-decoration: none;
  color: inherit;
  animation: shelf-card-in 0.35s ease both;
  transition: transform 0.2s ease;
}

.hoard-link-card:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   EMULATOR — in-browser retro game emulation
   ========================================================================== */

.emu-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  text-align: center;
}

.emu-system-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.emu-system-btn {
  padding: 0.6rem 1rem;
  font-family: 'Michroma', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.emu-system-btn:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.emu-system-btn.emu-active {
  border-color: #818cf8;
  color: #818cf8;
  background: rgba(129, 140, 248, 0.08);
}

.emu-rom-section {
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.emu-rom-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.emu-file-input {
  display: block;
  margin: 0.5rem auto;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.emu-file-input::file-selector-button {
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Michroma', sans-serif;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.emu-file-input::file-selector-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.emu-or {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0.8rem 0;
}

.emu-url-input {
  width: 100%;
  max-width: 400px;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.emu-url-input:focus {
  border-color: #818cf8;
}

.emu-url-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.emu-launch-btn {
  display: block;
  margin: 0 auto 1.5rem;
}

.emu-launch-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.emu-frame-wrap {
  position: relative;
  width: 100%;
  margin-top: 1rem;
}

.emu-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  border-radius: 12px;
  background: #000;
}

.emu-fullscreen-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 0.3rem 0.6rem;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 6px;
  z-index: 2;
  transition: background 0.2s ease;
}

.emu-fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

/* Changelog page */
.changelog-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.changelog-entry {
  padding: 1rem 1.25rem;
  animation: shelf-card-in 0.4s ease both;
}

.changelog-date {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.25rem;
  font-family: 'Michroma', sans-serif;
  letter-spacing: 0.05em;
}

.changelog-title {
  font-size: 1rem;
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.9);
}

.changelog-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.5;
}

.changelog-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.5rem;
  color: var(--neu-accent, #a78bfa);
  text-decoration: none;
  font-size: 0.85rem;
  transition: opacity 0.2s ease;
}

.changelog-back:hover {
  opacity: 0.8;
}

/* ==========================================================================
   RESPONSIVE — SPA additions
   ========================================================================== */

@media (max-width: 999px) {
  .shelf-card-inner,
  .indie-card-inner,
  .listening-now-content {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .shelf-grid {
    grid-template-columns: 1fr;
  }

  .shelf-cover-well {
    width: 140px;
    min-height: 140px;
  }

  .listening-now-content .shelf-cover-well {
    width: 140px;
    min-height: 140px;
  }

  .hoard-stamps-grid {
    gap: 4px;
  }

  .hoard-rings-grid,
  .hoard-links-grid {
    grid-template-columns: 1fr;
  }

  .emu-frame {
    aspect-ratio: 16 / 9;
  }

  /* Force horizontal card layout — prevent info from wrapping below cover */
  .shelf-card-inner,
  .indie-card-inner,
  .listening-now-content {
    flex-wrap: nowrap;
  }

  .shelf-info,
  .indie-card-info,
  .listening-now-info {
    flex-basis: 0;
  }
}

@media (max-width: 480px) {
  .spa-nav {
    gap: 6px;
    padding: 12px 14px;
  }

  .spa-nav-link {
    padding: 6px 12px;
    font-size: 0.62rem;
    gap: 4px;
  }

  .spa-nav-link svg {
    width: 14px;
    height: 14px;
  }

  .shelf-filters {
    gap: 6px;
  }

  .filter-pill {
    padding: 5px 10px;
    font-size: 0.65rem;
  }

  .explore-grid {
    grid-template-columns: 1fr;
  }

  .about-card {
    padding: 1.5rem;
  }

  .v2-video-modal {
    width: 96vw;
    border-radius: 12px;
  }
}

/* ==========================================================================
   RESPONSIVE — Compact card layout (380px)
   ========================================================================== */
@media (max-width: 380px) {
  .shelf-cover-well,
  .listening-now-content .shelf-cover-well {
    width: 120px;
    min-height: 120px;
  }

  .shelf-card-inner,
  .listening-card-inner,
  .indie-card-inner {
    padding: 1rem;
    gap: 0.75rem;
  }

  .listening-now-content {
    padding: 0.6rem 0.8rem 0.8rem;
    gap: 0.75rem;
  }
}

/* ==========================================================================
   RESPONSIVE — Narrow card layout with text reduction (340px)
   ========================================================================== */
@media (max-width: 340px) {
  .shelf-cover-well,
  .listening-now-content .shelf-cover-well {
    width: 100px;
    min-height: 100px;
  }

  .shelf-card-inner,
  .listening-card-inner,
  .indie-card-inner {
    padding: 0.75rem;
    gap: 0.6rem;
  }

  .listening-now-content {
    padding: 0.5rem 0.75rem 0.75rem;
    gap: 0.6rem;
  }

  /* Shelf text */
  .shelf-title { font-size: 0.88rem; }
  .shelf-meta, .shelf-genres { font-size: 0.75rem; }
  .shelf-rating { font-size: 0.8rem; }
  .shelf-date, .shelf-external-link { font-size: 0.72rem; }

  /* Listening text */
  .listening-now-track { font-size: 1.1rem; }
  .listening-now-artist { font-size: 0.92rem; }
  .listening-now-album { font-size: 0.82rem; }

  /* Indie vibes text */
  .indie-artist { font-size: 0.85rem; }
  .indie-genre { font-size: 0.78rem; }
  .indie-note { font-size: 0.82rem; }
  .indie-sample-btn { font-size: 0.72rem; padding: 0.3rem 0.65rem; }

  /* Buttons/badges */
  .shelf-trailer-btn { font-size: 0.72rem; padding: 3px 8px; }
  .shelf-notes-btn { font-size: 0.78rem; }
}
