/* ===== BANNER 大图 ===== */
.hero-banner-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 10px auto 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 1;
  position: relative;
}
.hero-banner-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.hero-banner-content {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  pointer-events: none;
}
.hero-banner-logo {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.hero-banner-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-banner-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-banner-title {
  font-size: 28px;
  font-weight: 700;
  color: #5b21b6;
  line-height: 1.1;
}
.hero-banner-sub {
  font-size: 14px;
  color: #7c3aed;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .hero-banner-content {
    right: 20px;
    gap: 10px;
  }
  .hero-banner-logo { width: 44px; height: 44px; }
  .hero-banner-title { font-size: 20px; }
  .hero-banner-sub { font-size: 12px; }
}

/* ===== 听八方FM v2.0 - 浅紫玻璃拟态主题 ===== */

:root {
  --bg: #e6deff;
  --bg-elevated: #ddd6fe;
  --bg-card: rgba(255,255,255,0.65);
  --bg-card-hover: rgba(255,255,255,0.85);
  --bg-glass: rgba(255,255,255,0.75);

  --primary: #a78bfa;
  --primary-dim: rgba(167,139,250,0.12);
  --primary-glow: rgba(167,139,250,0.2);
  --accent: #c084fc;

  --text: #1f0d3a;
  --text-secondary: rgba(31,13,58,0.6);
  --text-muted: rgba(31,13,58,0.4);

  --border: rgba(167,139,250,0.18);
  --border-hover: rgba(167,139,250,0.35);

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(91,33,182,0.08);
  --shadow: 0 8px 32px rgba(91,33,182,0.12);
  --shadow-glow: 0 0 40px rgba(167,139,250,0.15);

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-h: 64px;
  --player-h: 72px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(167,139,250,0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(167,139,250,0.35); }

::selection { background: rgba(167,139,250,0.25); color: var(--text); }

/* ===== OFFLINE TOAST ===== */
.offline-toast {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(220,38,38,0.9);
  backdrop-filter: blur(12px);
  color: #fff; text-align: center;
  padding: 8px 16px; font-size: 12px; font-weight: 500;
  z-index: 10000; transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.offline-toast.show { transform: translateY(0); }

/* ===== TOP NAV ===== */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(230,222,255,0.95) 0%, rgba(230,222,255,0.8) 60%, transparent 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
  flex-shrink: 0;
}

.brand-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
}
.brand-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}


.brand-icon svg { width: 100%; height: 100%; display: block; }

.brand-text { display: flex; align-items: baseline; gap: 4px; }
.brand-name {
  font-size: 18px; font-weight: 700;
  background: linear-gradient(135deg, #5b21b6 0%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-tag {
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.nav-actions {
  display: flex; align-items: center; gap: 10px;
  flex: 1; justify-content: flex-end;
}

.search-wrap {
  position: relative;
  max-width: 320px; width: 100%;
}

.search-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--text-muted);
  pointer-events: none;
}

.search-wrap input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 40px 9px 36px;
  color: var(--text); font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: var(--transition);
}
.search-wrap input::placeholder { color: var(--text-muted); }
.search-wrap input:focus {
  border-color: var(--primary);
  background: var(--bg-card-hover);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.search-hint {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  font-size: 10px; color: var(--text-muted);
  background: var(--bg-elevated); padding: 2px 5px;
  border-radius: 4px; border: 1px solid var(--border);
  font-family: inherit;
}

.search-btn {
  position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  border: none; background: var(--primary);
  color: white; font-size: 11px; font-weight: 400;
  font-family: inherit; cursor: pointer;
  padding: 3px 6px; border-radius: 100px;
  transition: var(--transition);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  line-height: 1;
}
.search-btn:hover { background: var(--primary-hover); }

.nav-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-btn svg { width: 18px; height: 18px; }
.nav-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-dim);
}
.nav-btn:active { transform: scale(0.92); }

.nav-badge {
  position: absolute; top: -2px; right: -2px;
  min-width: 16px; height: 16px;
  background: var(--primary); color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  padding: 0 4px;
  opacity: 0; transform: scale(0);
  transition: var(--transition-bounce);
}
.nav-badge.show { opacity: 1; transform: scale(1); }

/* ===== MAIN CONTENT ===== */
.main-content {
  padding-top: calc(var(--header-h) + 20px);
  padding-bottom: calc(10px + var(--safe-bottom));
  max-width: 1200px; margin: 0 auto;
  padding-left: 20px; padding-right: 20px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 40px 0 50px;
  gap: 60px;
  overflow: hidden;
}

.hero-glow {
  position: absolute; top: 50%; left: 60%;
  width: 500px; height: 500px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(167,139,250,0.2) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content { position: relative; z-index: 1; flex: 1; }

.hero-title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 16px;
}
.hero-title-main {
  background: linear-gradient(135deg, #1f0d3a 0%, #5b21b6 50%, #a78bfa 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title-sub {
  color: var(--primary);
  font-weight: 300; margin-left: 8px;
}

.hero-desc {
  font-size: 16px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 24px;
}
.hero-stat {
  color: var(--primary); font-weight: 700;
}

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.hero-tag {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; color: var(--text-secondary);
  transition: var(--transition);
}
.hero-tag:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
}

.hero-visual {
  position: relative; width: 520px; height: 320px;
  flex-shrink: 0; display: flex;
  align-items: center; justify-content: center;
}
@media (max-width: 768px) { .hero-visual { display: none; } }

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(167,139,250,0.15);
}
.ring-1 { width: 100%; height: 100%; animation: orbit 20s linear infinite; }
.ring-2 { width: 70%; height: 70%; animation: orbit 15s linear infinite reverse; }
.ring-3 { width: 40%; height: 40%; animation: orbit 10s linear infinite; }
@keyframes orbit {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-center {
  width: 80px; height: 80px;
  animation: float 4s ease-in-out infinite;
}
.orbit-center svg { width: 100%; height: 100%; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  opacity: 0.95;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.hero-img:hover {
  opacity: 1;
  transform: scale(1.01);
}


/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 27px; position: relative; z-index: 1;
}


/* ===== CAPSULE 分段控制器 ===== */
/* ===== FILTER BAR ===== */
.filter-bar {
  margin-bottom: 27px; position: relative; z-index: 1;
}

.filter-row {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .filter-row {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .filter-capsule {
    width: 100%;
    display: flex;
  }
  .filter-capsule .cap {
    flex: 1;
    text-align: center;
    padding: 6px 8px;
    font-size: 12px;
  }
}

.filter-capsule {
  display: inline-flex;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
}

.cap {
  padding: 6px 18px;
  border-radius: 100px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  white-space: nowrap;
}

.cap:hover {
  color: var(--text);
}

.cap-active {
  background: white;
  color: #5b21b6;
  box-shadow: 0 2px 8px rgba(91,33,182,0.1);
}

.cap-active:hover {
  color: #5b21b6;
}

.filter-pills {
  display: flex; gap: 8px;
  flex-wrap: wrap;
}

.pill {
  padding: 7px 16px; border-radius: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px; font-weight: 500;
  cursor: pointer; font-family: inherit;
  transition: var(--transition);
  white-space: nowrap;
}
.pill:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  color: var(--text);
}
.pill-active {
  background: linear-gradient(135deg, rgba(167,139,250,0.15), rgba(192,132,252,0.1));
  border-color: rgba(167,139,250,0.4);
  color: #5b21b6;
  box-shadow: 0 0 20px rgba(167,139,250,0.12);
}
.pill-active:hover {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(167,139,250,0.2);
}

/* ===== STATIONS SECTION ===== */
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 20px;
}
.section-title {
  font-size: 20px; font-weight: 700;
  color: var(--text);
}
.section-count {
  font-size: 13px; color: var(--text-muted);
}

/* ===== STATIONS GRID ===== */
.stations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

@media (max-width: 640px) {
  .stations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ===== STATION CARD ===== */
.station-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex; flex-direction: column; gap: 8px;
  backdrop-filter: blur(10px);
}
.station-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(167,139,250,0.05), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.station-card:hover::before { opacity: 1; }

.station-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow), var(--shadow-glow);
}
.station-card:active { transform: translateY(0) scale(0.98); }

.station-card.playing {
  border-color: rgba(167,139,250,0.5);
  background: linear-gradient(135deg, rgba(167,139,250,0.1), rgba(192,132,252,0.05));
  box-shadow: 0 0 30px rgba(167,139,250,0.15);
}
.station-card.playing::after {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: linear-gradient(to bottom, #c084fc, #e879f9);
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 8px rgba(192,132,252,0.5);
  pointer-events: none;
}

.card-header {
  display: flex; align-items: center; gap: 12px;
}

.card-art {
  width: 48px; height: 48px; border-radius: var(--radius);
  overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(167,139,250,0.12), rgba(192,132,252,0.06));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.card-art img {
  width: 100%; height: 100%; object-fit: cover;
}
.card-art-fallback {
  width: 24px; height: 24px; color: var(--primary);
  opacity: 0.5;
}
.card-art-fallback svg { width: 100%; height: 100%; }

.card-info { min-width: 0; flex: 1; }
.card-name {
  font-size: 14px; font-weight: 600;
  color: var(--text); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
  line-height: 1.3;
}
.card-meta {
  font-size: 12px; color: var(--text-muted);
  margin-top: 3px; display: flex; align-items: center; gap: 6px;
}
.card-meta-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--primary); opacity: 0.5;
}

.card-actions {
  display: flex; align-items: center; justify-content: flex-end;
  margin-top: 4px;
}

.card-tag {
  font-size: 11px; color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 3px 10px; border-radius: 100px;
  border: 1px solid var(--border);
}

/* 右下角收藏按钮 */
.card-fav {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
}
.station-card:hover .card-fav {
  opacity: 1;
  transform: scale(1);
}
.card-fav:hover {
  color: #fbbf24;
  background: rgba(251,191,36,0.15);
  border-color: rgba(251,191,36,0.3);
}
.card-fav.active {
  opacity: 1;
  transform: scale(1);
  color: #fbbf24;
}
.card-fav svg {
  width: 14px;
  height: 14px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center; padding: 80px 20px;
}
.empty-illustration {
  width: 120px; height: 120px; margin: 0 auto 24px;
  opacity: 0.6;
}
.empty-illustration svg { width: 100%; height: 100%; }
.empty-title {
  font-size: 18px; font-weight: 600;
  color: var(--text); margin-bottom: 8px;
}
.empty-desc {
  font-size: 14px; color: var(--text-muted);
  margin-bottom: 24px;
}
.empty-btn {
  padding: 10px 24px; border-radius: 100px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border: none; font-size: 14px;
  font-weight: 600; cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(167,139,250,0.25);
}
.empty-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(167,139,250,0.35);
}

/* ===== FLOATING PLAYER ===== */
.player-float {
  position: fixed; bottom: 16px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 200;
  width: calc(100% - 32px); max-width: 640px;
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
  padding-bottom: var(--safe-bottom);
}
.player-float.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.player-float-inner {
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.7));
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-xl);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow), 0 0 60px rgba(167,139,250,0.1);
}

.player-art {
  width: 44px; height: 44px; border-radius: var(--radius);
  overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(167,139,250,0.15), rgba(192,132,252,0.08));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.player-art img { width: 100%; height: 100%; object-fit: cover; }
.player-art-fallback { width: 20px; height: 20px; color: var(--primary); opacity: 0.4; }
.player-art-fallback svg { width: 100%; height: 100%; }
.player-art.spinning img { animation: spin 6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.player-info { flex: 1; min-width: 0; }
.player-name {
  font-size: 14px; font-weight: 600;
  color: var(--text); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.player-meta {
  font-size: 12px; color: var(--text-muted);
  margin-top: 2px;
}

.player-wave {
  display: flex; align-items: center; gap: 3px;
  height: 20px; flex-shrink: 0;
}
.player-wave span {
  width: 3px; border-radius: 2px;
  background: linear-gradient(to top, var(--primary), var(--accent));
  height: 3px; opacity: 0.4;
  transition: height 0.3s ease;
}
.player-wave.playing span {
  animation: wave-bar 0.8s ease-in-out infinite alternate;
}
.player-wave span:nth-child(1) { animation-delay: 0s; }
.player-wave span:nth-child(2) { animation-delay: 0.1s; }
.player-wave span:nth-child(3) { animation-delay: 0.2s; }
.player-wave span:nth-child(4) { animation-delay: 0.3s; }
.player-wave span:nth-child(5) { animation-delay: 0.15s; }
@keyframes wave-bar {
  from { height: 3px; opacity: 0.3; }
  to { height: 18px; opacity: 0.8; }
}

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

.ctrl-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.ctrl-btn svg { width: 16px; height: 16px; }
.ctrl-btn:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--bg-card-hover);
}
.ctrl-btn:active { transform: scale(0.92); }

.ctrl-play {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: none; color: #fff;
  box-shadow: 0 4px 16px rgba(167,139,250,0.3);
}
.ctrl-play:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(167,139,250,0.4);
}
.ctrl-play svg { width: 18px; height: 18px; }

/* ===== FOOTER ===== */
.site-footer {
  margin-top: 30px; padding: 24px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.footer-brand {
  display: flex; align-items: center; gap: 8px;
}
.footer-logo {
  font-size: 16px; font-weight: 700;
  background: linear-gradient(135deg, #5b21b6, var(--primary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.footer-version {
  font-size: 11px; color: var(--text-muted);
  background: var(--bg-card); padding: 2px 8px;
  border-radius: 100px; border: 1px solid var(--border);
}
.footer-links {
  display: flex; gap: 24px;
}
.footer-link {
  font-size: 13px; color: var(--text-muted);
  text-decoration: none; transition: var(--transition);
}
.footer-link:hover { color: var(--primary); }
.footer-copy {
  font-size: 12px; color: var(--text-muted);
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; }
  .search-wrap { max-width: 200px; }
  .search-hint { display: none; }
  .hero { padding: 24px 0 32px; }
  .hero-title { font-size: 32px; }
  .main-content { padding-left: 16px; padding-right: 16px; }
  .stations-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .station-card { padding: 10px 12px; }
  .card-art { width: 40px; height: 40px; }
  .card-name { font-size: 13px; }
  .player-float { bottom: 12px; }
  .player-float-inner { padding: 10px 12px; gap: 10px; }
  .player-art { width: 38px; height: 38px; }
  .player-name { font-size: 13px; }
}

@media (max-width: 480px) {
  .search-wrap { max-width: 140px; }
  .brand-name { font-size: 16px; }
  .hero-tags { gap: 6px; }
  .hero-tag { font-size: 12px; padding: 5px 10px; }
  .filter-pills { gap: 6px; }
  .pill { padding: 6px 12px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
