/* ═══════════════════════════════════════════════════════════════════════════
   Pro Star Christian Radio — Public Site Styles
   Bright, warm, modern, premium. Mobile-first.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties (admin-editable via theme settings) ────────── */
:root {
    --psr-primary:    #d4a843;
    --psr-secondary:  #4a9fd6;
    --psr-accent:     #f5c842;
    --psr-bg:         #fefbf3;
    --psr-text:       #2d2a1e;
    --psr-player-bg:  #1a1a2e;
    --psr-white:      #ffffff;
    --psr-warm-white: #fffdf7;
    --psr-light-gold: #fdf3d7;
    --psr-muted:      #8a8578;
    --psr-border:     rgba(212, 168, 67, 0.15);
    --psr-shadow:     0 2px 12px rgba(45, 42, 30, 0.08);
    --psr-shadow-lg:  0 8px 32px rgba(45, 42, 30, 0.12);
    --psr-radius:     14px;
    --psr-radius-sm:  8px;
    --psr-radius-lg:  20px;
    --psr-transition: 0.25s ease;
    --psr-font:       'Segoe UI', system-ui, -apple-system, sans-serif;
    --psr-max-width:  1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--psr-secondary); text-decoration: none; transition: color var(--psr-transition); }
a:hover { color: var(--psr-primary); }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }

/* ─── Utility ──────────────────────────────────────────────────────────── */
.psr-container {
    max-width: var(--psr-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.psr-section-title {
    font-size: 1.5rem;
    color: var(--psr-text);
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 16px;
}
.psr-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: var(--psr-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.psr-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
    color: var(--psr-white);
    padding: 40px 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Background image layer — fades in + scale animation */
.psr-hero-bg {
    position: absolute;
    inset: -12px;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0;
    filter: blur(0px);
    animation: psrHeroBgIn 1.4s ease 0.2s forwards, psrHeroBgBlur 1.8s ease 1.6s forwards;
}
@keyframes psrHeroBgIn {
    from { opacity: 0; transform: scale(1.04); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes psrHeroBgBlur {
    from { filter: blur(0px); }
    to { filter: blur(var(--hero-blur, 0px)); }
}
/* Dark gradient overlay */
.psr-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    animation: psrHeroFadeIn 1.2s ease 0.5s forwards;
}
/* Vignette — inset shadow for edge darkening */
.psr-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    animation: psrHeroFadeIn 1.5s ease 0.6s forwards;
}
/* Shimmer light sweep */
.psr-hero-shimmer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.psr-hero-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 45%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.08) 55%, transparent 60%);
    animation: psrHeroShimmer 2.2s ease 0.6s forwards;
}
@keyframes psrHeroFadeIn {
    to { opacity: 1; }
}
@keyframes psrHeroShimmer {
    0% { left: -60%; }
    100% { left: 160%; }
}
/* Fallback radial glow when no bg image */
.psr-hero:not(:has(.psr-hero-bg))::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(212, 168, 67, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(74, 159, 214, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.psr-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.psr-hero-callsign {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--psr-primary);
    margin-bottom: 12px;
    font-weight: 600;
}
.psr-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--psr-white) 30%, var(--psr-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.psr-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    line-height: 1.5;
}
.psr-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--psr-primary);
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--psr-transition);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
}
.psr-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(212, 168, 67, 0.5);
    color: #1a1a2e;
}
.psr-hero-cta .cta-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PLAYER SECTION — the visual centerpiece
   ═══════════════════════════════════════════════════════════════════════════ */
.psr-player-section {
    position: relative;
    z-index: 1;
    padding: 16px 0 40px;
}

/* Player container — dark glassy panel */
.psr-player-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 16px 20px 18px;
    background: rgba(10, 12, 20, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--psr-radius-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

/* Transport controls */
.psr-transport {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}
/* Single toggle play/stop button */
.psr-btn-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--psr-primary);
    color: #1a1a2e;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.4);
    transition: all var(--psr-transition);
}
.psr-btn-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.6);
}
.psr-btn-toggle svg { width: 26px; height: 26px; fill: currentColor; }
.psr-btn-toggle .psr-icon-play { margin-left: 3px; }
.psr-btn-toggle.playing {
    background: rgba(255, 255, 255, 0.12);
    color: var(--psr-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.psr-btn-toggle.playing:hover {
    background: rgba(255, 255, 255, 0.2);
}
.psr-btn-toggle.loading {
    background: var(--psr-primary);
    opacity: 0.7;
    cursor: wait;
    animation: psr-pulse 1s ease-in-out infinite;
}

/* Volume slider */
.psr-volume-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.5);
}
.psr-volume-wrap svg { width: 18px; height: 18px; fill: currentColor; }
.psr-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}
.psr-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--psr-primary);
    cursor: pointer;
}

/* Meter area */
.psr-meters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
    position: relative;
}

/* Loading overlay on meters */
.psr-meters-loading {
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 12, 20, 0.75);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    gap: 8px;
}
.psr-loading-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 6px;
    color: var(--psr-primary);
    text-shadow: 0 0 20px rgba(212, 168, 67, 0.5), 0 0 40px rgba(212, 168, 67, 0.25);
    animation: psr-loading-glow 1.5s ease-in-out infinite;
}
@keyframes psr-loading-glow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}
.psr-loading-dots {
    display: flex;
    gap: 6px;
}
.psr-loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--psr-primary);
    animation: psr-loading-dot 1.2s ease-in-out infinite;
}
.psr-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.psr-loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes psr-loading-dot {
    0%, 60%, 100% { opacity: 0.25; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.2); }
}
.psr-meter-unit {
    position: relative;
}
.psr-meter-canvas {
    display: block;
    border-radius: 6px;
}
.psr-led-canvas {
    display: block;
    border-radius: 3px;
}

/* EQ visualizer */
.psr-eq-wrap {
    margin-bottom: 10px;
}
.psr-eq-canvas {
    display: block;
    width: 100%;
    max-width: 800px;
    height: 70px;
    margin: 0 auto;
    border-radius: var(--psr-radius-sm);
    background: rgba(0, 0, 0, 0.2);
}

/* Song info bar */
.psr-songinfo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--psr-radius);
    min-height: 56px;
    flex-wrap: wrap;
}
.psr-song-text {
    flex: 1;
    min-width: 0;
}
.psr-song-title {
    color: var(--psr-white);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.psr-song-artist {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}
.psr-song-art {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}
.psr-listeners {
    color: var(--psr-primary);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}
.psr-listeners svg { width: 14px; height: 14px; fill: currentColor; }

/* Status indicator */
.psr-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.psr-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #555;
    transition: background 0.3s;
}
.psr-status-dot.live {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: psr-pulse 2s ease-in-out infinite;
}
@keyframes psr-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEWS SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.psr-news-section {
    padding: 48px 0;
}
.psr-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.psr-news-card {
    background: var(--psr-white);
    border-radius: var(--psr-radius);
    box-shadow: var(--psr-shadow);
    border: 1px solid var(--psr-border);
    overflow: hidden;
    transition: transform var(--psr-transition), box-shadow var(--psr-transition);
    display: flex;
    flex-direction: column;
}
.psr-news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--psr-shadow-lg);
}
.psr-news-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: var(--psr-light-gold);
}
.psr-news-card-body {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.psr-news-source {
    font-size: 0.72rem;
    color: var(--psr-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 6px;
}
.psr-news-headline {
    font-size: 1rem;
    font-weight: 700;
    color: var(--psr-text);
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.psr-news-excerpt {
    font-size: 0.88rem;
    color: var(--psr-muted);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.psr-news-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--psr-secondary);
}
.psr-news-link:hover { color: var(--psr-primary); }

.psr-news-fallback {
    text-align: center;
    padding: 40px 20px;
    color: var(--psr-muted);
    font-size: 0.95rem;
}

/* News Modal */
.psr-news-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.psr-news-modal-overlay.show {
    display: flex;
}
.psr-news-modal-box {
    background: var(--psr-white);
    border-radius: var(--psr-radius-lg);
    max-width: 640px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: psr-modal-in 0.3s ease;
}
@keyframes psr-modal-in {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.psr-news-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    color: var(--psr-muted);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.psr-news-modal-close:hover {
    background: rgba(0, 0, 0, 0.12);
    color: var(--psr-text);
}
.psr-news-modal-source {
    font-size: 0.72rem;
    color: var(--psr-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}
.psr-news-modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--psr-text);
    line-height: 1.3;
    margin-bottom: 8px;
}
.psr-news-modal-date {
    font-size: 0.8rem;
    color: var(--psr-muted);
    margin-bottom: 16px;
}
.psr-news-modal-img {
    width: 100%;
    border-radius: var(--psr-radius);
    margin-bottom: 16px;
    object-fit: cover;
    max-height: 300px;
}
.psr-news-modal-content {
    margin-bottom: 20px;
}
.psr-news-modal-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--psr-text);
    margin-bottom: 14px;
}
.psr-news-modal-desc:last-child {
    margin-bottom: 0;
}
.psr-news-modal-loading {
    text-align: center;
    color: var(--psr-muted);
    font-size: 0.85rem;
    padding: 12px 0;
    font-style: italic;
}
.psr-news-modal-action {
    padding-top: 16px;
    border-top: 1px solid var(--psr-border);
    text-align: center;
}
.psr-news-modal-link {
    display: inline-block;
    padding: 12px 28px;
    background: var(--psr-secondary);
    color: var(--psr-white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.2s;
    text-decoration: none;
}
.psr-news-modal-link:hover {
    background: #3a8fc6;
    color: var(--psr-white);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRIVIA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.psr-trivia-section {
    padding: 48px 0;
    background: var(--psr-light-gold);
}
.psr-trivia-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--psr-white);
    border-radius: var(--psr-radius-lg);
    box-shadow: var(--psr-shadow-lg);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.psr-trivia-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--psr-primary), var(--psr-secondary));
}
.psr-trivia-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--psr-primary);
    font-weight: 700;
    margin-bottom: 16px;
}
.psr-trivia-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--psr-text);
    margin-bottom: 24px;
    line-height: 1.4;
}
.psr-trivia-choices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.psr-trivia-choice {
    padding: 14px 18px;
    border-radius: var(--psr-radius);
    border: 2px solid var(--psr-border);
    background: var(--psr-warm-white);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--psr-text);
    cursor: pointer;
    transition: all var(--psr-transition);
    text-align: left;
}
.psr-trivia-choice:hover {
    border-color: var(--psr-primary);
    background: var(--psr-light-gold);
}
.psr-trivia-choice.correct {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
}
.psr-trivia-choice.wrong {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
}
.psr-trivia-choice.disabled {
    pointer-events: none;
    opacity: 0.7;
}
.psr-trivia-result {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px;
    border-radius: var(--psr-radius-sm);
    display: none;
}
.psr-trivia-result.show { display: block; }
.psr-trivia-result.correct-result {
    color: #166534;
    background: rgba(34, 197, 94, 0.1);
}
.psr-trivia-result.wrong-result {
    color: #991b1b;
    background: rgba(239, 68, 68, 0.1);
}
.psr-trivia-next {
    display: none;
    margin-top: 16px;
    padding: 10px 24px;
    background: var(--psr-secondary);
    color: var(--psr-white);
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--psr-transition);
}
.psr-trivia-next:hover { background: #3a8fc6; }
.psr-trivia-next.show { display: inline-block; }
.psr-trivia-stats {
    font-size: 0.8rem;
    color: var(--psr-muted);
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WEATHER SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.psr-weather-section {
    padding: 48px 0;
}
.psr-weather-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--psr-white);
    border-radius: var(--psr-radius-lg);
    box-shadow: var(--psr-shadow);
    border: 1px solid var(--psr-border);
    padding: 24px;
    overflow: hidden;
}
.psr-weather-current {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.psr-weather-icon {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    background: var(--psr-light-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.psr-weather-icon img { width: 56px; height: 56px; }
.psr-weather-temp {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--psr-text);
    line-height: 1;
}
.psr-weather-desc {
    font-size: 0.95rem;
    color: var(--psr-muted);
}
.psr-weather-location {
    font-size: 0.82rem;
    color: var(--psr-secondary);
    font-weight: 600;
}
.psr-weather-forecast {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 10px;
    border-top: 1px solid var(--psr-border);
    padding-top: 16px;
}
.psr-weather-day {
    text-align: center;
    padding: 10px 6px;
    border-radius: var(--psr-radius-sm);
    background: var(--psr-warm-white);
}
.psr-weather-day-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--psr-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.psr-weather-day-temp {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--psr-text);
    margin: 4px 0;
}
.psr-weather-day-desc {
    font-size: 0.7rem;
    color: var(--psr-muted);
    line-height: 1.3;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.psr-footer {
    background: #1a1a2e;
    color: rgba(255, 255, 255, 0.6);
    padding: 36px 20px;
    text-align: center;
}
.psr-footer-inner {
    max-width: var(--psr-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.psr-footer-name {
    color: var(--psr-primary);
    font-weight: 700;
    font-size: 1.05rem;
}
.psr-footer-genre {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 10px;
}
.psr-footer-contact {
    font-size: 0.85rem;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.psr-footer-contact a {
    color: var(--psr-primary);
}
.psr-footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

/* Tablet+ */
@media (min-width: 640px) {
    .psr-hero h1 { font-size: 3rem; }
    .psr-hero { padding: 80px 20px 60px; }

    .psr-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .psr-player-wrap {
        padding: 32px;
    }
}

/* Desktop */
@media (min-width: 960px) {
    .psr-hero h1 { font-size: 3.4rem; }

    .psr-meters {
        gap: 12px;
    }

    .psr-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .psr-hero h1 { font-size: 1.8rem; }
    .psr-hero-sub { font-size: 0.95rem; }

    .psr-player-wrap { padding: 18px 14px 20px; }
    .psr-meter-canvas { max-width: 110px; }
    .psr-eq-canvas { height: 48px; }

    .psr-trivia-card { padding: 22px 16px; }
    .psr-trivia-question { font-size: 1.05rem; }

    .psr-weather-temp { font-size: 2rem; }
    .psr-weather-forecast { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Loading / skeleton states ────────────────────────────────────────── */
.psr-skeleton {
    background: linear-gradient(90deg, var(--psr-light-gold) 25%, var(--psr-warm-white) 50%, var(--psr-light-gold) 75%);
    background-size: 200% 100%;
    animation: psr-shimmer 1.5s infinite;
    border-radius: var(--psr-radius-sm);
}
@keyframes psr-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ─── Hidden utility ───────────────────────────────────────────────────── */
.psr-hidden { display: none !important; }
