/* ================================================================
   TT&TT Neural Radio — Public Site
   Public service retro aesthetic: SVT/SR 1970s–80s meets modern web.
   No frameworks. Pure CSS.
   ================================================================ */

/* ----------------------------------------------------------------
   0. CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
    /* Background */
    --bg-deep: #06080f;
    --bg-surface: #0c1019;
    --bg-elevated: #131a28;
    --bg-input: #1a2235;

    /* Accent — SVT retro palette */
    --accent-amber: #f0a030;
    --accent-amber-dim: #b07820;
    --accent-red: #e94560;
    --accent-cyan: #22d3ee;
    --accent-green: #00e85c;

    /* Text */
    --text-primary: #eef0f4;
    --text-secondary: #8898af;
    --text-muted: #4a5872;
    --text-inverse: #06080f;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.12);

    /* Typography */
    --font-body: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-mono: 'Space Mono', 'JetBrains Mono', 'SF Mono', monospace;
    --font-display: 'VT323', monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-2xl: 4rem;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    /* Layout */
    --max-width: 960px;
    --nav-height: 3.5rem;
}

/* ----------------------------------------------------------------
   1. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: var(--accent-amber); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ----------------------------------------------------------------
   2. OVERLAYS — Scanlines & grain (retro CRT texture)
   ---------------------------------------------------------------- */
.scanlines {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 50%,
            rgba(0, 0, 0, 0.15) 50%
        ),
        linear-gradient(
            90deg,
            rgba(255, 0, 0, 0.02),
            rgba(0, 255, 0, 0.01),
            rgba(0, 0, 255, 0.02)
        );
    background-size: 100% 3px, 4px 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
}

.grain {
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9998;
    animation: grain-drift 8s steps(10) infinite;
    opacity: 0.5;
}

@keyframes grain-drift {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-2%, -5%); }
    20% { transform: translate(-8%, 2%); }
    30% { transform: translate(4%, -12%); }
    40% { transform: translate(-3%, 12%); }
    50% { transform: translate(-8%, 5%); }
    60% { transform: translate(8%, 0%); }
    70% { transform: translate(0%, 8%); }
    80% { transform: translate(2%, 16%); }
    90% { transform: translate(-5%, 5%); }
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
    .scanlines { display: none; }
    .grain { animation: none; }
}

/* ----------------------------------------------------------------
   3. NAVIGATION
   ---------------------------------------------------------------- */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(6, 8, 15, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    height: var(--nav-height);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--space-lg);
    gap: var(--space-md);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.litt-mini {
    width: 12px;
    height: 22px;
    flex-shrink: 0;
}

.nav-station {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.35rem;
    letter-spacing: 0.18em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.nav-centre {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-freq {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.04em;
}

.nav-separator {
    width: 1px;
    height: 16px;
    background: var(--border-medium);
}

.nav-label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-live {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    background: rgba(233, 69, 96, 0.12);
    border: 1px solid rgba(233, 69, 96, 0.25);
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.nav-live.connected {
    opacity: 1;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-red);
    animation: pulse-live 2s ease-in-out infinite;
}

.nav-live:not(.connected) .live-dot {
    animation: none;
    background: var(--text-muted);
}

.live-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-red);
}

.nav-live:not(.connected) .live-text {
    color: var(--text-muted);
}

@keyframes pulse-live {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ----------------------------------------------------------------
   4. HERO
   ---------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-subtle);
    background: linear-gradient(
        170deg,
        #06080f 0%,
        #0a0f1a 30%,
        #0f1525 60%,
        #0a0c14 100%
    );
}

.hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.hero-tower {
    height: 90%;
    max-height: 500px;
    opacity: 0.04;
    filter: brightness(1.5);
    object-fit: contain;
    transform: translateY(5%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    max-width: 640px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-amber);
    border: 1px solid rgba(240, 160, 48, 0.3);
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: var(--space-lg);
}

.hero-title {
    margin-bottom: var(--space-lg);
    line-height: 1;
}

.hero-tt {
    display: block;
    font-weight: 300;
    font-size: clamp(3rem, 10vw, 5.5rem);
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-shadow: 0 0 60px rgba(240, 160, 48, 0.15);
}

.hero-sub {
    display: block;
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent-amber);
    margin-top: var(--space-sm);
}

.hero-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto var(--space-xl);
}

.hero-play {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--accent-amber);
    color: var(--text-inverse);
    border: none;
    padding: 12px 32px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    box-shadow:
        0 0 0 0 rgba(240, 160, 48, 0.4),
        0 4px 20px rgba(240, 160, 48, 0.2);
}

.hero-play:hover {
    background: #ffb340;
    transform: translateY(-1px);
    box-shadow:
        0 0 0 0 rgba(240, 160, 48, 0.4),
        0 6px 30px rgba(240, 160, 48, 0.3);
}

.hero-play:active {
    transform: translateY(0);
}

.hero-play .play-icon {
    width: 20px;
    height: 20px;
}

.hero-play.playing {
    background: rgba(240, 160, 48, 0.15);
    color: var(--accent-amber);
    border: 1px solid rgba(240, 160, 48, 0.3);
}

/* ----------------------------------------------------------------
   5. NOW PLAYING
   ---------------------------------------------------------------- */
.now-playing {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-lg);
}

.np-inner {
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    padding: var(--space-xl);
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

/* Subtle glow behind card */
.np-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        ellipse at 30% 50%,
        rgba(240, 160, 48, 0.03) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.np-artwork-wrap {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

.np-artwork {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    flex-shrink: 0;
}

.np-artwork-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.np-artwork-fallback svg {
    width: 100%;
    height: 100%;
    animation: vinyl-spin 4s linear infinite;
    animation-play-state: paused;
}

/* Spin the vinyl when audio is playing */
body.audio-playing .np-artwork-fallback svg {
    animation-play-state: running;
}

@keyframes vinyl-spin {
    to { transform: rotate(360deg); }
}

.np-artwork-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.np-artwork-img.loaded {
    opacity: 1;
}

.np-litt {
    width: 22px;
    flex-shrink: 0;
    align-self: center;
}

.np-litt svg {
    width: 100%;
    height: auto;
}

.np-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    position: relative;
    z-index: 1;
}

.np-badge {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-amber);
    background: rgba(240, 160, 48, 0.1);
    border: 1px solid rgba(240, 160, 48, 0.2);
    padding: 2px 10px;
    border-radius: var(--radius-sm);
}

.np-title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.np-artist {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.np-progress {
    margin-top: var(--space-md);
}

.np-progress-bar {
    height: 3px;
    background: var(--bg-elevated);
    border-radius: 2px;
    overflow: hidden;
}

.np-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-amber-dim), var(--accent-amber));
    border-radius: 2px;
    width: 0%;
    transition: width 1s linear;
}

.np-times {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Track change animation */
.np-info.transitioning .np-title,
.np-info.transitioning .np-artist {
    animation: track-fade 0.6s ease;
}

@keyframes track-fade {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Glow pulse on now-playing card when connected */
body.ws-connected .np-inner {
    border-color: rgba(240, 160, 48, 0.08);
    box-shadow: 0 0 40px rgba(240, 160, 48, 0.02);
}

.np-upcoming {
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.np-upcoming-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-right: var(--space-sm);
}

.np-upcoming-track {
    color: var(--text-secondary);
}

/* ----------------------------------------------------------------
   6. AUDIO PLAYER
   ---------------------------------------------------------------- */
.player {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg) var(--space-xl);
}

.player-inner {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.player-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent-amber);
    background: transparent;
    color: var(--accent-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.player-btn:hover {
    background: rgba(240, 160, 48, 0.12);
}

.player-icon {
    width: 22px;
    height: 22px;
}

.player-icon--loading {
    animation: spin 1s linear infinite;
}

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

.hidden {
    display: none !important;
}

.player-status {
    flex: 1;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

.player-volume {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.player-vol-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: color 0.2s;
}

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

.player-vol-btn svg {
    width: 18px;
    height: 18px;
}

.player-vol-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 3px;
    background: var(--bg-elevated);
    border-radius: 2px;
    outline: none;
}

.player-vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-amber);
    cursor: pointer;
    border: none;
}

.player-vol-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-amber);
    cursor: pointer;
    border: none;
}

/* ----------------------------------------------------------------
   7. SONG REQUEST
   ---------------------------------------------------------------- */
.request {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg) var(--space-2xl);
}

.request-inner {
    padding: var(--space-xl);
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.request-header {
    margin-bottom: var(--space-xl);
}

.request-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.request-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group--full {
    margin-bottom: var(--space-md);
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.required {
    color: var(--accent-red);
}

.form-group input,
.form-group textarea {
    background: var(--bg-input);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-amber);
    box-shadow: 0 0 0 2px rgba(240, 160, 48, 0.15);
}

.form-group input.invalid {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 2px rgba(233, 69, 96, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.form-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.request-submit {
    background: var(--accent-amber);
    color: var(--text-inverse);
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.request-submit:hover:not(:disabled) {
    background: #ffb340;
    transform: translateY(-1px);
}

.request-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-feedback {
    font-size: 0.85rem;
    font-weight: 500;
}

.form-feedback.success {
    color: var(--accent-green);
}

.form-feedback.error {
    color: var(--accent-red);
}

/* ----------------------------------------------------------------
   8. LITT INDICATOR STATES
   ---------------------------------------------------------------- */
.seg-red, .seg-amber, .seg-green {
    transition: fill 0.15s ease;
}

.seg-red.lit {
    fill: #ff1a1a;
    filter: drop-shadow(0 0 2px rgba(255, 26, 26, 0.85)) drop-shadow(0 0 5px rgba(255, 26, 26, 0.35));
}

.seg-amber.lit {
    fill: #ffdd00;
    filter: drop-shadow(0 0 2px rgba(255, 221, 0, 0.85)) drop-shadow(0 0 5px rgba(255, 221, 0, 0.35));
}

.seg-green.lit {
    fill: #00e85c;
    filter: drop-shadow(0 0 2px rgba(0, 232, 92, 0.85)) drop-shadow(0 0 5px rgba(0, 232, 92, 0.35));
}

/* ----------------------------------------------------------------
   9. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
    border-top: 1px solid var(--border-subtle);
    background: rgba(6, 8, 15, 0.8);
    padding: var(--space-lg) 0;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
}

.clock-display {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--accent-amber);
    letter-spacing: 0.08em;
    text-shadow: 0 0 12px rgba(240, 160, 48, 0.4);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-station {
    font-weight: 500;
    color: var(--text-secondary);
}

.footer-sep {
    opacity: 0.3;
}

.footer-meta {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------------------
   10. TOAST NOTIFICATIONS
   ---------------------------------------------------------------- */
.toast-container {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-medium);
    animation: toast-in 0.3s ease forwards;
    max-width: 380px;
}

.toast.success {
    background: rgba(0, 232, 92, 0.12);
    border-color: rgba(0, 232, 92, 0.25);
    color: var(--accent-green);
}

.toast.error {
    background: rgba(233, 69, 96, 0.12);
    border-color: rgba(233, 69, 96, 0.25);
    color: var(--accent-red);
}

.toast.info {
    background: rgba(34, 211, 238, 0.12);
    border-color: rgba(34, 211, 238, 0.25);
    color: var(--accent-cyan);
}

.toast.removing {
    animation: toast-out 0.3s ease forwards;
}

@keyframes toast-in {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toast-out {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* ----------------------------------------------------------------
   11. RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --space-xl: 1.5rem;
        --space-2xl: 2rem;
    }

    .nav-centre {
        display: none;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-tt {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .np-inner {
        flex-direction: column;
        padding: var(--space-lg);
    }

    .np-artwork-wrap {
        align-self: center;
    }

    .np-artwork {
        width: 160px;
        height: 160px;
    }

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

    .np-title {
        font-size: 1.4rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .player-inner {
        flex-wrap: wrap;
    }

    .player-volume {
        width: 100%;
        justify-content: flex-end;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .toast-container {
        left: var(--space-md);
        right: var(--space-md);
        bottom: var(--space-md);
    }

    .toast {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .np-artwork {
        width: 120px;
        height: 120px;
    }

    .np-litt {
        display: none;
    }

    .hero-tagline br {
        display: none;
    }

    .player-vol-slider {
        width: 70px;
    }
}
