/* ═══════════════════════════════════════════════
   Web Radios A.bsolument - Premium Design
   7-Phase Apple Design Award Redesign
   ═══════════════════════════════════════════════ */

:root {
    /* Palette */
    --bg: #FEFBF6;
    --bg-warm: #F8F4EE;
    --surface: #FFFFFF;
    --text-primary: #2C2420;
    --text-secondary: #7C6F68;
    --text-tertiary: #A89E96;
    --accent: #c8a96e;
    --accent-hover: #b8941e;
    --accent-soft: #E8D5B7;
    --accent-glow: rgba(200, 169, 110, 0.15);
    --np-bg-start: #3B302A;
    --np-bg-mid: #1e1814;
    --np-bg-end: #151010;
    --border-subtle: rgba(139,115,85,0.08);
    --border-medium: rgba(139,115,85,0.15);
    --shadow-card: 0 1px 3px rgba(44,36,32,0.04);
    --shadow-elevated: 0 8px 30px rgba(44,36,32,0.08);
    --shadow-player: 0 -4px 30px rgba(0,0,0,0.15);

    /* Spacing - 4px system */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;
    --space-2xl: 32px;
    --space-3xl: 48px;

    /* Safe areas */
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-top: env(safe-area-inset-top, 0px);
    --mini-h: 68px;

    /* Transitions */
    --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Station ambient (set via JS) */
    --station-color: #c8a96e;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overscroll-behavior: none;
}

/* ═══ BROWSE VIEW ═══ */
.browse-view {
    padding-bottom: calc(var(--mini-h) + var(--safe-bottom) + var(--space-xl));
    min-height: 100dvh;
}

/* Header - sticky, collapsing */
header {
    display: flex;
    justify-content: center;
    padding: var(--space-lg) var(--space-xl) var(--space-md);
    padding-top: calc(var(--space-lg) + var(--safe-top));
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--bg);
    transition: padding 0.3s var(--ease-smooth), background 0.3s;
}

header.scrolled {
    padding-top: calc(var(--space-sm) + var(--safe-top));
    padding-bottom: var(--space-sm);
    background: rgba(254, 251, 246, 0.92);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.header-logo {
    height: 80px;
    width: auto;
    display: block;
    transition: height 0.3s var(--ease-smooth);
}

header.scrolled .header-logo {
    height: 44px;
}

/* Search */
.search-bar {
    position: relative;
    max-width: 500px;
    margin: 0 auto var(--space-lg);
    padding: 0 var(--space-xl);
}

.search-bar svg {
    position: absolute;
    left: calc(var(--space-xl) + 14px);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
}

#search {
    width: 100%;
    padding: var(--space-md) var(--space-lg) var(--space-md) 42px;
    border: 1px solid var(--border-medium);
    border-radius: 14px;
    background: var(--surface);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    box-shadow: var(--shadow-card);
}

#search::placeholder { color: var(--text-tertiary); }
#search:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Stations container */
main {
    padding: 0 var(--space-xl);
    max-width: 800px;
    margin: 0 auto;
}

/* ── Favorites horizontal scroll ── */
.favorites-strip {
    margin-bottom: var(--space-xl);
}

.favorites-strip h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-tertiary);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.favorites-scroll {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-sm);
    margin: 0 calc(-1 * var(--space-xl));
    padding-left: var(--space-xl);
    padding-right: var(--space-xl);
    scrollbar-width: none;
}

.favorites-scroll::-webkit-scrollbar { display: none; }

.fav-chip {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md) var(--space-sm) var(--space-sm);
    background: var(--surface);
    border: 1px solid var(--border-medium);
    border-radius: 100px;
    scroll-snap-align: start;
    flex-shrink: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.15s, border-color 0.2s, box-shadow 0.2s;
}

.fav-chip:active { transform: scale(0.96); }
.fav-chip.active { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }

.fav-chip-logo {
    width: 32px; height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 9px;
    font-weight: 500;
    color: #fff;
}

.fav-chip-logo img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.fav-chip-name {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* ── Category sections ── */
.category { margin-bottom: var(--space-xl); }

.category-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.category h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-tertiary);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.category-line {
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.stations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

/* ── Station card ── */
.station-card {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: var(--space-lg) var(--space-sm) var(--space-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
    transition: transform 0.2s var(--ease-spring), box-shadow 0.2s, border-color 0.2s;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(12px);
    animation: cardAppear 0.4s var(--ease-spring) forwards;
}

.station-card:active { transform: scale(0.96) !important; }
.station-card.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1.5px var(--accent), var(--shadow-elevated);
}

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

.station-logo {
    width: 52px; height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    background: var(--station-color);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.station-logo img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.station-name-label {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--text-primary);
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fav-btn {
    position: absolute;
    top: var(--space-xs); right: var(--space-xs);
    width: 28px; height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s, transform 0.2s;
}

.fav-btn:active { transform: scale(1.2); }
.fav-btn.is-fav { color: var(--accent); }

.category.hidden, .station-card.hidden { display: none; }

/* Empty search state */
.empty-state {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    display: none;
}

.empty-state.visible { display: block; }

.empty-state-text {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--text-tertiary);
    letter-spacing: 1px;
    margin-top: var(--space-sm);
}

/* Footer */
footer {
    text-align: center;
    padding: var(--space-2xl) var(--space-xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.social-links {
    display: flex;
    gap: var(--space-xl);
}

.social-links a {
    color: var(--text-tertiary);
    display: flex;
    padding: var(--space-sm);
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s;
}

.social-links a:active { color: var(--accent); }

.footer-link {
    color: var(--accent);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ═══ MINI PLAYER (floating, glassmorphism) ═══ */
.mini-player {
    position: fixed;
    bottom: calc(var(--space-sm) + var(--safe-bottom));
    left: var(--space-sm);
    right: var(--space-sm);
    height: var(--mini-h);
    background: rgba(44,36,32,0.88);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    backdrop-filter: blur(24px) saturate(1.8);
    display: flex;
    align-items: center;
    padding: 0 var(--space-md) 0 var(--space-lg);
    gap: var(--space-md);
    z-index: 100;
    transform: translateY(calc(100% + var(--space-sm) + var(--safe-bottom)));
    transition: transform 0.4s var(--ease-spring);
    border-radius: 20px;
    box-shadow: var(--shadow-player), 0 0 0 0.5px rgba(255,255,255,0.08) inset;
    overflow: hidden;
}

.mini-player.visible { transform: translateY(0); }

.mini-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    min-width: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    padding: var(--space-sm) 0;
}

.mini-logo {
    width: 44px; height: 44px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.08);
}

.mini-logo img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.mini-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mini-name {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-category {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 300;
    color: var(--accent-soft);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mini EQ bars */
.mini-eq {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 18px;
    flex-shrink: 0;
}

.mini-eq-bar {
    width: 3px;
    border-radius: 1.5px;
    background: var(--accent);
    height: 4px;
    transition: height 0.15s;
}

.mini-eq.playing .mini-eq-bar {
    animation: miniEqBounce 0.8s ease-in-out infinite alternate;
}

.mini-eq.playing .mini-eq-bar:nth-child(1) { animation-delay: 0s; }
.mini-eq.playing .mini-eq-bar:nth-child(2) { animation-delay: 0.15s; }
.mini-eq.playing .mini-eq-bar:nth-child(3) { animation-delay: 0.3s; }
.mini-eq.playing .mini-eq-bar:nth-child(4) { animation-delay: 0.1s; }

@keyframes miniEqBounce {
    0% { height: 4px; }
    100% { height: 18px; }
}

.mini-eq:not(.playing) .mini-eq-bar { height: 4px !important; }

.mini-play-btn {
    width: 44px; height: 44px;
    border: none;
    background: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
    transition: transform 0.15s;
}

.mini-play-btn:active { transform: scale(0.9); }

/* ═══ NOW PLAYING OVERLAY ═══ */
.np-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: linear-gradient(170deg, var(--np-bg-start) 0%, var(--np-bg-mid) 50%, var(--np-bg-end) 100%);
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-spring);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    will-change: transform;
}

.np-overlay.open { transform: translateY(0); }

/* Ambient color overlay */
.np-ambient {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background: radial-gradient(ellipse at 50% 25%, var(--station-color, transparent) 0%, transparent 65%);
    pointer-events: none;
    transition: background 0.8s;
}

.np-handle-zone {
    display: flex;
    justify-content: center;
    padding: var(--space-md) 0 var(--space-xs);
    padding-top: calc(var(--space-md) + var(--safe-top));
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.np-handle {
    width: 36px; height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.2);
}

.np-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-sm) var(--space-2xl);
    padding-bottom: calc(var(--space-xl) + var(--safe-bottom));
    gap: var(--space-lg);
    position: relative;
    z-index: 1;
}

.np-logo-wrap {
    width: min(240px, 60vw);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.np-logo {
    width: 100%; height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.06);
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 0.5px rgba(255,255,255,0.06) inset;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    transition: box-shadow 0.5s;
}

.np-logo img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.np-station-info {
    text-align: center;
}

.np-name {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
}

.np-category {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: var(--accent-soft);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: var(--space-xs);
}

/* Equalizer canvas */
.np-eq-wrap {
    width: 100%;
    max-width: 400px;
    height: 80px;
}

#equalizer { width: 100%; height: 100%; display: block; }

/* Controls */
.np-controls {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.np-btn-play {
    width: 68px; height: 68px;
    border-radius: 50%;
    border: none;
    background: var(--accent);
    color: var(--np-bg-start);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s var(--ease-spring), background 0.2s;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 16px rgba(200, 169, 110, 0.3);
}

.np-btn-play:active { transform: scale(0.92); }
.np-btn-play:disabled { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.15); box-shadow: none; }

.np-btn-nav {
    width: 48px; height: 48px;
    border: none;
    background: none;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.15s, transform 0.15s;
}

.np-btn-nav:active { color: #fff; transform: scale(0.9); }
.np-btn-nav:disabled { color: rgba(255,255,255,0.12); }

/* Volume - custom slider with fill */
.np-volume {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    width: 100%;
    max-width: 300px;
    color: rgba(255,255,255,0.3);
}

.np-vol-slider {
    -webkit-appearance: none;
    appearance: none;
    flex: 1;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.12);
    outline: none;
    margin: 0;
}

.np-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    margin-top: -8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.np-vol-slider::-webkit-slider-runnable-track {
    height: 4px; border-radius: 2px;
    background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--vol-fill, 75%), rgba(255,255,255,0.12) var(--vol-fill, 75%));
}

.np-vol-slider::-moz-range-thumb {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.np-vol-slider::-moz-range-track {
    height: 4px; border-radius: 2px;
    background: rgba(255,255,255,0.12);
}

.np-vol-slider::-moz-range-progress {
    height: 4px; border-radius: 2px;
    background: var(--accent);
}

/* Sleep timer */
.np-sleep {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.np-sleep-btn {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    background: none;
    border: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.np-sleep-btn:active { border-color: var(--accent); }
.np-sleep-btn.active { color: var(--accent); border-color: var(--accent); }

.sleep-options {
    display: none;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.sleep-options.visible { display: flex; }

.sleep-option {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-xs) var(--space-md);
    border-radius: 16px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.2s, color 0.2s;
}

.sleep-option:active { border-color: var(--accent); color: var(--accent); }

/* EQ Section */
.np-eq-section {
    width: 100%;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.np-eq-toggle {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-soft);
    background: none;
    border: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-sm) var(--space-xl);
    border-radius: 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.2s;
}

.np-eq-toggle:active { border-color: var(--accent); }

.np-eq-panel {
    width: 100%;
    margin-top: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
}

.np-eq-panel.hidden { display: none; }

.eq-sliders {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
    justify-content: center;
}

.eq-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    min-width: 60px;
    flex: 1;
}

.eq-label {
    font-family: 'Oswald', sans-serif;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-soft);
}

.eq-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.1);
    outline: none;
    margin: 0;
}

.eq-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid rgba(255,255,255,0.15);
    margin-top: -7px;
    cursor: pointer;
}

.eq-range::-webkit-slider-runnable-track {
    height: 3px; border-radius: 2px;
    background: rgba(255,255,255,0.1);
}

.eq-range::-moz-range-thumb {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--accent);
    border: 2px solid rgba(255,255,255,0.15);
    cursor: pointer;
}

.eq-range::-moz-range-track {
    height: 3px; border-radius: 2px;
    background: rgba(255,255,255,0.1);
}

.eq-val {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    min-width: 36px;
    text-align: center;
}

.eq-presets {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.eq-preset {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: border-color 0.2s, color 0.2s;
}

.eq-preset.active { border-color: var(--accent); color: var(--accent); }

.np-error {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #e07070;
    text-align: center;
    min-height: 16px;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 1;
}

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

/* ═══ Tablet ═══ */
@media (min-width: 600px) {
    .stations-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
    .station-card { padding: var(--space-lg) var(--space-md) var(--space-md); }
    .station-logo { width: 60px; height: 60px; }
    .station-name-label { font-size: 12px; }
    .np-logo-wrap { width: 280px; }
    .np-name { font-size: 30px; }
    .np-eq-wrap { height: 100px; }
}

/* ═══ Desktop ═══ */
@media (min-width: 900px) {
    .stations-grid { grid-template-columns: repeat(5, 1fr); }
}
