/*
Theme Name: Northern Soul Radio
Theme URI: https://northernsoul.radio
Author: Northern Soul Radio Team
Author URI: https://northernsoul.radio
Description: Custom theme for Northern Soul Radio - Keeping The Faith 24/7. Features live radio streaming, presenter management, playlist submissions, and a dark soulful design.
Version: 2.8.1
License: GPL v2 or later
Text Domain: northern-soul-radio
*/

/* ========================================
   1. GOOGLE FONTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Oswald:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ========================================
   2. CSS VARIABLES
   ======================================== */
:root {
    --earth-dark: #1a1a1a;
    --earth-brown: #2d241e;
    --earth-gold: #c9a227;
    --earth-gold-light: #e8d5a3;
    --earth-cream: #f5f0e6;
    --earth-red: #8b2635;
    --earth-charcoal: #0d0d0d;
}

/* ========================================
   3. RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    background-color: var(--earth-charcoal);
    color: var(--earth-cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Link Colors */
a,
a:link,
a:visited,
a:hover,
a:active {
    color: var(--earth-gold);
    text-decoration: none;
}

a:hover {
    color: var(--earth-gold-light);
}

.site-title a,
.site-title a:visited,
.main-title a,
.main-title a:visited {
    color: var(--earth-cream) !important;
    text-decoration: none !important;
}

/* ========================================
   4. HEADER & NAVIGATION
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    padding: 0;
    height: 100px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.site-branding {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.site-branding img {
    max-height: 80px;
    width: auto;
    display: block;
}

.site-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--earth-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9999;
    overflow: visible;
}

.main-navigation .nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.main-navigation .nav-menu > li {
    position: relative;
    list-style: none;
}

.main-navigation .menu-item-has-children {
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.main-navigation a {
    color: var(--earth-cream);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    display: block;
    white-space: nowrap;
}

.main-navigation a:hover {
    color: var(--earth-gold);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--earth-gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Submenus */
.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
    z-index: 99999;
}

.main-navigation .menu-item-has-children:hover > .sub-menu,
.main-navigation .menu-item-has-children:focus-within > .sub-menu {
    display: block;
}

.main-navigation .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.main-navigation .sub-menu a {
    display: block;
    width: 100%;
    padding: 12px 18px;
    line-height: 1.4;
    white-space: nowrap;
}

.main-navigation .sub-menu a::after {
    display: none;
}

.main-navigation .sub-menu a:hover {
    background: rgba(201, 162, 39, 0.08);
    color: var(--earth-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--earth-gold);
    border-radius: 8px;
    color: var(--earth-gold);
    font-size: 2.2rem;
    cursor: pointer;
    padding: 8px 12px;
    line-height: 1;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: var(--earth-gold);
    color: var(--earth-charcoal);
}

/* ========================================
   5. UTILITY BAR
   ======================================== */
.nsr-utility-bar {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    height: 40px;
    background: #0d0d0d;
    border-bottom: 1px solid #c9a227;
    z-index: 999;
    display: block;
}

.nsr-utility-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nsr-utility-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nsr-live-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--earth-cream);
}

.nsr-live-dot {
    width: 8px;
    height: 8px;
    background: var(--earth-red);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 38, 53, 0.8);
    animation: nsrLivePulse 2s ease-in-out infinite;
}

@keyframes nsrLivePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}

.nsr-utility-slogan {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    color: var(--earth-gold-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
}

.nsr-utility-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.nsr-utility-nav a {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--earth-gold-light);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.nsr-utility-nav a:hover {
    color: var(--earth-gold);
}

.nsr-utility-toggle {
    display: none;
}

.nsr-utility-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    border-bottom: 2px solid var(--earth-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    z-index: 998;
}

.nsr-utility-dropdown.is-open {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nsr-utility-dropdown-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nsr-utility-dropdown a {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--earth-cream);
    text-decoration: none;
    padding: 12px 16px;
    background: rgba(45, 36, 30, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    text-align: center;
}

/* ========================================
   6. FOOTER
   ======================================== */
.site-footer {
    background: rgba(13, 13, 13, 0.95);
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--earth-gold), transparent);
    margin: 0 auto 20px auto;
    opacity: 0.6;
}

.footer-text {
    color: rgba(245, 240, 230, 0.8);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-navigation {
    margin-top: 20px;
}

.footer-navigation ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.footer-navigation a,
.footer-link {
    color: var(--earth-cream) !important;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-navigation a:hover,
.footer-link:hover {
    color: var(--earth-gold) !important;
}

/* Social icons z-index fix */
.social-icons,
.social-links {
    position: relative;
    z-index: 100;
}

.social-icons a {
    position: relative;
    z-index: 101;
    display: inline-block;
}

/* ========================================
   7. COMMON PAGE STYLES
   ======================================== */
.ns-page-wrapper {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background: var(--earth-charcoal);
    font-family: 'Oswald', sans-serif;
    padding-top: 140px;
}

.texture-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/wp-content/uploads/wigan-casino.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 0.85;
    z-index: 0;
    filter: sepia(0.1) contrast(1.1);
}

@media (min-width: 1025px) and (hover: hover) {
    .texture-bg {
        background-attachment: fixed;
    }
}

.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(13,13,13,0.4) 0%, rgba(13,13,13,0.7) 100%),
        linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
    pointer-events: none;
}

.ns-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 140px);
}

/* Logo Section */
.logo-section {
    margin-bottom: 30px;
    position: relative;
    z-index: 20;
}

.site-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid var(--earth-gold);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.3),
        0 10px 40px rgba(0,0,0,0.8),
        0 0 0 10px rgba(0,0,0,0.3);
    background: rgba(26, 26, 26, 0.9);
    object-fit: contain;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.site-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(201, 162, 39, 0.5),
        0 15px 50px rgba(0,0,0,0.9),
        0 0 0 15px rgba(0,0,0,0.2);
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
    background: rgba(0, 0, 0, 0.75);
    padding: 50px 40px;
    border-radius: 15px;
    border: 3px solid var(--earth-gold);
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.8),
        0 0 30px rgba(201, 162, 39, 0.2),
        inset 0 0 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

/* Main Title Section */
.main-title-section {
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.75);
    padding: 50px 60px;
    border-radius: 12px;
    border: 2px solid var(--earth-gold);
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.8),
        0 0 30px rgba(201, 162, 39, 0.2),
        inset 0 0 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.subtitle-top {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
    color: var(--earth-gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 25px;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    word-spacing: 4px;
}

.main-title-section .subtitle-top {
    margin-bottom: 30px;
    font-weight: 400;
}

.page-title, .main-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--earth-cream) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.8), 0 0 80px rgba(201, 162, 39, 0.3);
}

.main-title a {
    color: var(--earth-cream) !important;
    text-decoration: none !important;
}

.title-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--earth-gold), transparent);
    margin: 25px auto;
}

.main-title-section .title-divider {
    margin: 30px auto;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--earth-gold-light);
    margin-top: 25px;
    letter-spacing: 0.08em;
    font-style: italic;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* ========================================
   8. PLAY BUTTON
   ======================================== */
.play-section {
    margin: 40px 0;
    text-align: center;
    position: relative;
    z-index: 100;
    width: 100%;
}

.play-button-container {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.play-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.6) 0%, transparent 70%);
    animation: playGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes playGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.3; }
}

.play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--earth-charcoal);
    text-decoration: none;
    background: linear-gradient(135deg, var(--earth-gold) 0%, #d4b43a 50%, #a0822a 100%);
    padding: 25px 60px;
    border-radius: 50px;
    border: 3px solid var(--earth-gold-light);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5),
        0 0 0 4px rgba(201, 162, 39, 0.2),
        inset 0 2px 10px rgba(255,255,255,0.4),
        0 0 30px rgba(201, 162, 39, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    outline: none;
    min-width: 320px;
    max-width: 90vw;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    touch-action: manipulation;
}

.play-btn::before {
    content: "\25B6";
    font-size: 0.8em;
    margin-right: 10px;
    animation: pulse-arrow 2s infinite;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.3));
}

@keyframes pulse-arrow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.play-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0,0,0,0.6),
        0 0 0 6px rgba(201, 162, 39, 0.3),
        inset 0 2px 10px rgba(255,255,255,0.5),
        0 0 50px rgba(201, 162, 39, 0.6);
    background: linear-gradient(135deg, #e8c94d 0%, var(--earth-gold) 50%, #b8942f 100%);
}

.play-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.play-btn.playing {
    background: linear-gradient(135deg, var(--earth-red) 0%, #9b2635 50%, #5c1a24 100%);
    color: var(--earth-cream);
    border-color: var(--earth-red);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5),
        0 0 0 4px rgba(139, 38, 53, 0.3),
        inset 0 2px 10px rgba(255,255,255,0.2),
        0 0 30px rgba(139, 38, 53, 0.4);
    animation: none;
}

.play-btn.playing::before {
    content: "\25A0";
    animation: none;
    font-size: 0.7em;
}

.play-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.play-btn.connecting::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Status Message */
.status-message {
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--earth-gold);
    color: var(--earth-gold-light);
    padding: 15px 30px;
    border-radius: 30px;
    margin-top: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    display: none;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: slideDown 0.3s ease;
    max-width: 90%;
    flex-wrap: wrap;
    justify-content: center;
}

.status-message.visible {
    display: inline-flex;
}

.status-message.error {
    border-color: var(--earth-red);
    background: rgba(139, 38, 53, 0.95);
    color: var(--earth-cream);
}

.status-message.success {
    border-color: var(--earth-gold);
    background: rgba(201, 162, 39, 0.95);
    color: var(--earth-charcoal);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--earth-gold);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

#radioAudio {
    display: none;
}

/* ========================================
   9. TRACK INFO GRID
   ======================================== */
.track-info-grid {
    display: none;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.track-info-grid.visible {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .track-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Now Playing Box */
.now-playing-box {
    background: rgba(26, 26, 26, 0.82);
    border: 2px solid var(--earth-gold);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.now-playing-box::before {
    content: "ON AIR";
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--earth-gold);
    color: var(--earth-charcoal);
    padding: 5px 40px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    transform: rotate(45deg);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3), 0 0 10px rgba(201, 162, 39, 0.3);
}

/* Vinyl Record */
.vinyl-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin-bottom: 25px;
    contain: layout style;
}

.vinyl-record {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #000;
    position: relative;
    animation: spin 3s linear infinite;
    animation-play-state: paused;
    overflow: hidden;
    border: 4px solid var(--earth-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8),
        inset 0 0 50px rgba(0,0,0,0.5);
    contain: layout style;
}

.vinyl-record.playing {
    animation-play-state: running;
}

.vinyl-record.static-artist {
    animation: none !important;
    animation-play-state: paused !important;
}

.vinyl-record.static-artist .artwork-image {
    transform: scale(1.1) !important;
}

.artwork-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transform: scale(2.5);
}

.center-hole {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    background: var(--earth-charcoal);
    border-radius: 50%;
    z-index: 20;
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.5),
        inset 0 0 10px rgba(0,0,0,0.8);
    border: 2px solid var(--earth-gold);
}

.vinyl-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 15;
}

.artwork-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d241e, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--earth-gold);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
    border: 4px solid var(--earth-gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.artwork-placeholder.visible {
    opacity: 1;
}

.box-label {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--earth-cream);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.9;
}

.current-track-name {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--earth-cream);
    margin: 0 0 8px 0;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.current-track-artist {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--earth-gold-light);
    margin: 0;
    font-style: italic;
}

.track-meta-extra {
    margin-top: 10px;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--earth-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    min-height: 24px;
    font-weight: 600;
}

/* Equalizer */
.equalizer-box {
    display: flex;
    justify-content: center;
    gap: 4px;
    height: 40px;
    align-items: flex-end;
    margin-top: 20px;
}

.equalizer-box span {
    width: 6px;
    background: linear-gradient(to top, var(--earth-gold), var(--earth-gold-light));
    border-radius: 3px;
    animation: equalizeBox 0.8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

.equalizer-box span:nth-child(1) { height: 30%; animation-delay: 0s; }
.equalizer-box span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.equalizer-box span:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.equalizer-box span:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.equalizer-box span:nth-child(5) { height: 40%; animation-delay: 0.4s; }
.equalizer-box span:nth-child(6) { height: 80%; animation-delay: 0.5s; }
.equalizer-box span:nth-child(7) { height: 60%; animation-delay: 0.6s; }

@keyframes equalizeBox {
    0%, 100% { transform: scaleY(0.3); }
    50% { transform: scaleY(1); }
}

.equalizer-box.paused span {
    animation-play-state: paused;
    height: 20% !important;
    transition: height 0.3s ease;
}

/* Just Played Box */
.just-played-box {
    background: rgba(26, 26, 26, 0.82);
    border: 2px solid var(--earth-gold);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    max-height: none;
    overflow-y: visible;
}

@media (min-width: 768px) {
    .just-played-box {
        max-height: 600px;
        overflow-y: auto;
    }
}

.just-played-box .box-label {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 0.3em;
}

.just-played-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.just-played-item {
    background: rgba(45, 36, 30, 0.75);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.just-played-item:hover {
    border-color: var(--earth-gold);
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.4);
    background: rgba(45, 36, 30, 0.95);
}

.just-played-time {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    color: var(--earth-gold);
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    opacity: 0.8;
}

.just-played-track {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: var(--earth-cream);
    margin: 0 0 3px 0;
    font-weight: 500;
    line-height: 1.3;
}

.just-played-artist {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--earth-gold-light);
    margin: 0;
    font-style: italic;
    opacity: 0.8;
}

/* History Box */
.history-box {
    background: rgba(26, 26, 26, 0.82);
    border: 2px solid var(--earth-gold);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    grid-column: 1 / -1;
    width: 100%;
}

.history-box .box-label {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
    letter-spacing: 0.4em;
}

.history-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .history-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .history-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.history-item {
    background: rgba(45, 36, 30, 0.75);
    border: 1px solid rgba(201, 162, 39, 0.4);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(3px);
}

.history-item:hover {
    border-color: var(--earth-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    background: rgba(45, 36, 30, 0.95);
}

.history-time {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--earth-gold);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    opacity: 0.8;
}

.history-track {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--earth-cream);
    margin: 0 0 5px 0;
    font-weight: 500;
    line-height: 1.3;
}

.history-artist {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--earth-gold-light);
    margin: 0;
    font-style: italic;
    opacity: 0.8;
}

.history-meta {
    font-size: 0.8rem;
    color: var(--earth-gold);
    margin-top: 6px;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.1em;
}

/* ========================================
   10. PRESENTER BOX (Homepage)
   ======================================== */
.presenter-box {
    background: linear-gradient(135deg, rgba(45, 36, 30, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    border: 3px solid var(--earth-gold);
    border-radius: 20px;
    padding: 50px;
    margin: 30px 0;
    box-shadow: 0 25px 80px rgba(0,0,0,0.8),
        0 0 0 1px rgba(201, 162, 39, 0.2),
        inset 0 0 40px rgba(201, 162, 39, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
    width: 100%;
}

.presenter-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.presenter-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.presenter-photo-area {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.presenter-photo-frame {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 6px solid var(--earth-gold);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8),
        0 0 0 15px rgba(201, 162, 39, 0.1),
        0 0 40px rgba(201, 162, 39, 0.2);
    background: linear-gradient(135deg, #2d241e, #1a1a1a);
}

.presenter-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.presenter-photo-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--earth-gold);
    opacity: 0.3;
    display: none;
}

.presenter-photo-frame.no-image .presenter-photo-fallback {
    display: flex;
}

.spinning-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px dashed rgba(201, 162, 39, 0.4);
    border-radius: 50%;
    animation: spin 20s linear infinite;
    pointer-events: none;
}

.presenter-badge {
    background: linear-gradient(135deg, var(--earth-red), #5a1a24);
    color: var(--earth-cream);
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 30px;
    border: 2px solid var(--earth-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    font-weight: 700;
}

.presenter-text-area {
    text-align: left;
}

.presenter-header {
    margin-bottom: 30px;
}

.presenter-presents {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--earth-gold);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
}

.presenter-name {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--earth-cream);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.presenter-stats-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(201, 162, 39, 0.3);
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
}

.presenter-stat {
    text-align: center;
}

.presenter-stat-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--earth-gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
}

.presenter-stat-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 14px;
    color: var(--earth-gold-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 5px;
}

.presenter-stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--earth-gold), transparent);
    opacity: 0.5;
}

.presenter-schedule {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.presenter-sched-item {
    background: rgba(13, 13, 13, 0.6);
    border: 2px solid rgba(201, 162, 39, 0.4);
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.presenter-sched-item:hover {
    border-color: var(--earth-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.presenter-sched-item.featured {
    border-color: var(--earth-red);
    background: rgba(139, 38, 53, 0.2);
}

.presenter-sched-item.featured:hover {
    border-color: var(--earth-red);
    box-shadow: 0 10px 30px rgba(139, 38, 53, 0.3);
}

.presenter-time {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--earth-cream);
    letter-spacing: 0.05em;
    line-height: 1;
}

.presenter-when {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--earth-gold-light);
    font-style: italic;
    margin-top: 5px;
}

.presenter-live-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--earth-red);
    color: var(--earth-cream);
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 5px 15px;
    border-radius: 20px;
    border: 2px solid var(--earth-gold);
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.presenter-description {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--earth-cream);
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    font-style: italic;
}

/* On Air Pill */
.presenter-on-air-pill {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8b0000 0%, #b22222 100%);
    color: #fff !important;
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06) inset,
        0 0 12px rgba(255, 50, 50, 0.45),
        0 0 24px rgba(255, 50, 50, 0.28);
    z-index: 5;
    animation: nsrOnAirGlow 2s ease-in-out infinite;
}

.presenter-on-air-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffdede;
    box-shadow: 0 0 8px rgba(255,255,255,0.8);
    animation: nsrOnAirPulse 1.4s ease-in-out infinite;
}

@keyframes nsrOnAirGlow {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(255,255,255,0.06) inset,
            0 0 12px rgba(255, 50, 50, 0.45),
            0 0 24px rgba(255, 50, 50, 0.28);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(255,255,255,0.10) inset,
            0 0 18px rgba(255, 70, 70, 0.60),
            0 0 34px rgba(255, 70, 70, 0.35);
    }
}

@keyframes nsrOnAirPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.82); }
}

/* ========================================
   11. PRESENTERS PAGE & GRID
   ======================================== */
.presenters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 40px 0;
}

.presenter-card {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--earth-gold);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.presenter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border-color: var(--earth-gold-light);
}

.presenter-card-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--earth-gold);
    margin: 0 auto 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.presenter-card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--earth-cream);
    margin-bottom: 5px;
}

.presenter-card-badge {
    display: inline-block;
    background: var(--earth-red);
    color: var(--earth-cream);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.presenter-card-schedule {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--earth-gold);
    margin-bottom: 15px;
}

.presenter-card-bio {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--earth-gold-light);
    line-height: 1.6;
    font-style: italic;
}

/* Single Presenter Bio */
.nsr-single-bio-copy,
.nsr-single-bio-copy p,
.nsr-single-bio-copy li,
.nsr-single-bio-copy div,
.nsr-single-bio-copy span {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.02rem !important;
    line-height: 1.9 !important;
    color: rgba(245, 240, 230, 0.9) !important;
    font-style: normal !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.nsr-single-bio-copy p {
    margin: 0 0 1.2em !important;
}

.nsr-single-bio-copy p:last-child {
    margin-bottom: 0 !important;
}

.nsr-single-bio-copy strong,
.nsr-single-bio-copy b {
    color: var(--earth-cream) !important;
    font-weight: 700 !important;
}

.nsr-single-bio-copy em,
.nsr-single-bio-copy i {
    font-style: italic !important;
}

/* ========================================
   12. FORMS (Playlist, Sunday Request, Account)
   ======================================== */

/* Base Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--earth-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(13, 13, 13, 0.6);
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    padding: 15px;
    color: var(--earth-cream);
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    outline: none;
    -webkit-appearance: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--earth-gold);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.2);
    background: rgba(13, 13, 13, 0.8);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 240, 230, 0.4);
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a227' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--earth-brown);
    color: var(--earth-cream);
}

/* File Input */
.form-group input[type="file"] {
    padding: 12px;
}

.form-group input[type="file"]::-webkit-file-upload-button {
    background: var(--earth-brown);
    color: var(--earth-gold);
    border: 1px solid var(--earth-gold);
    border-radius: 6px;
    padding: 8px 16px;
    margin-right: 12px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
}

/* Date Input */
.form-group input[type="date"] {
    color: var(--earth-cream);
}

/* Checkboxes */
.checkbox-group input[type="checkbox"],
.nsrc-check input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    background: rgba(13, 13, 13, 0.6);
    border: 2px solid rgba(201, 162, 39, 0.4);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
}

.checkbox-group input[type="checkbox"]:checked,
.nsrc-check input[type="checkbox"]:checked {
    background: var(--earth-red);
    border-color: var(--earth-gold);
}

.checkbox-group input[type="checkbox"]:checked::after,
.nsrc-check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--earth-cream);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label,
.nsrc-check {
    color: var(--earth-cream);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 12px;
    margin-bottom: 14px;
}

/* Form Layout */
.form-row {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* Sunday Request Box */
.sunday-request-box {
    background: linear-gradient(135deg, rgba(45, 36, 30, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 2px solid var(--earth-gold);
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7),
        inset 0 0 30px rgba(201, 162, 39, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
    width: 100%;
}

.sunday-request-box::before {
    content: "\1F4FB";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.2;
    transform: rotate(15deg);
}

.sunday-request-box .request-icon {
    font-size: 3rem;
    color: var(--earth-red);
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(139, 38, 53, 0.4));
}

.sunday-request-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: var(--earth-gold);
    text-transform: uppercase;
    margin: 0 0 15px 0;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.sunday-request-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--earth-cream);
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.sunday-request-form {
    display: grid;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

/* Playlist Builder */
.nsr-sa-builder {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.nsr-sa-header h3 {
    color: var(--earth-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.nsr-sa-col input {
    background: rgba(13, 13, 13, 0.6);
    border: 2px solid rgba(201, 162, 39, 0.3);
    color: var(--earth-cream);
    padding: 12px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    width: 100%;
}

.nsr-sa-col input:focus {
    border-color: var(--earth-gold);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.2);
    outline: none;
}

.nsrc-sa-remove {
    background: transparent;
    color: var(--earth-red);
    border: 1px solid var(--earth-red);
    border-radius: 6px;
    padding: 6px 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
}

.nsrc-sa-remove:hover {
    background: var(--earth-red);
    color: var(--earth-cream);
}

.nsr-sa-actions .button-secondary {
    background: transparent;
    border: 2px solid var(--earth-gold);
    color: var(--earth-gold);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
}

.nsr-sa-actions .button-secondary:hover {
    background: var(--earth-gold);
    color: var(--earth-dark);
}

textarea.nsr-sa-hidden-textarea {
    background: rgba(13, 13, 13, 0.6);
    border: 2px solid rgba(201, 162, 39, 0.3);
    color: var(--earth-cream);
    border-radius: 8px;
    padding: 15px;
}

/* Form Messages */
.form-success-message,
.form-error-message {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}

.form-success-message {
    background: rgba(201, 162, 39, 0.2);
    border: 2px solid var(--earth-gold);
    color: var(--earth-gold-light);
}

.form-error-message {
    background: rgba(139, 38, 53, 0.2);
    border: 2px solid var(--earth-red);
    color: var(--earth-cream);
}

/* ========================================
   13. MY ACCOUNT PAGE
   ======================================== */
.nsrc-account-shell {
    max-width: 1000px;
    margin: 0 auto;
}

.nsrc-card {
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid rgba(201, 162, 39, 0.4);
    border-radius: 14px;
    padding: 28px;
    color: var(--earth-cream);
    margin-bottom: 24px;
}

.nsrc-card h3 {
    color: var(--earth-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.nsrc-meta {
    color: var(--earth-gold-light);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.nsrc-form input[type="text"],
.nsrc-form input[type="email"] {
    width: 100%;
    min-height: 44px;
    background: rgba(13, 13, 13, 0.6);
    border: 2px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--earth-cream);
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.nsrc-form input:focus {
    border-color: var(--earth-gold);
    box-shadow: 0 0 15px rgba(201, 162, 39, 0.2);
    background: rgba(13, 13, 13, 0.8);
    outline: none;
}

.nsrc-form label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: var(--earth-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.nsrc-following-card {
    background: rgba(45, 36, 30, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nsrc-following-card h4 {
    color: var(--earth-gold);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    margin: 0;
}

.nsrc-account-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.nsrc-stat {
    background: rgba(45, 36, 30, 0.9);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    color: var(--earth-cream);
}

.nsrc-stat strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--earth-gold);
    margin-bottom: 4px;
    font-weight: 700;
}

.nsrc-account-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.nsrc-account-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--earth-cream);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.nsrc-account-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.nsrc-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.nsrc-grid-span-2 {
    grid-column: span 2;
}

/* ========================================
   14. BUTTONS
   ======================================== */
.submit-request-btn,
.nsr-submit-setlist-btn,
.playlist-btn,
.presenters-email,
.nsrc-button,
.nsr-join-cta,
.nsr-news-action,
.nsr-news-action-alt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--earth-charcoal) !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, var(--earth-gold) 0%, #d4b43a 50%, #a0822a 100%);
    padding: 18px 50px;
    border-radius: 30px;
    border: 2px solid var(--earth-gold-light);
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
}

.submit-request-btn:hover,
.nsr-submit-setlist-btn:hover,
.playlist-btn:hover,
.presenters-email:hover,
.nsrc-button:hover,
.nsr-join-cta:hover,
.nsr-news-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.5);
    background: linear-gradient(135deg, #e8c94d 0%, var(--earth-gold) 50%, #b8942f 100%);
    color: var(--earth-charcoal) !important;
}

.nsr-submit-setlist-btn {
    margin-top: 30px;
    padding: 18px 40px;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    border: 3px solid var(--earth-gold-light);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.4), inset 0 2px 10px rgba(255,255,255,0.3);
}

.nsr-submit-setlist-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.nsr-submit-setlist-btn:hover::before {
    left: 100%;
}

.nsr-submit-setlist-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(201, 162, 39, 0.6), inset 0 2px 10px rgba(255,255,255,0.4);
}

.btn-icon {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.3));
}

.nsrc-button-secondary,
.nsr-news-action-alt {
    background: transparent;
    border: 2px solid var(--earth-gold);
    color: var(--earth-gold) !important;
    box-shadow: none;
}

.nsrc-button-secondary:hover,
.nsr-news-action-alt:hover {
    background: var(--earth-gold);
    color: var(--earth-dark) !important;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.nsrc-button {
    background: linear-gradient(135deg, var(--earth-red) 0%, #6f1e2a 100%);
    color: var(--earth-cream) !important;
    border: 2px solid transparent;
    font-size: 14px;
    padding: 12px 28px;
    box-shadow: 0 4px 12px rgba(139, 38, 53, 0.3);
}

.nsrc-button:hover {
    background: linear-gradient(135deg, #9b2c3d 0%, #7b2230 100%);
    box-shadow: 0 6px 20px rgba(139, 38, 53, 0.4);
    color: var(--earth-cream) !important;
}

/* ========================================
   15. CONTENT BLOCKS
   ======================================== */
.content-block {
    background: rgba(26, 26, 26, 0.95);
    border: 2px solid var(--earth-gold);
    border-radius: 15px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 1000px;
}

.content-block h2 {
    font-family: 'Cinzel', serif;
    color: var(--earth-gold);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
}

.content-block p {
    font-family: 'Playfair Display', serif;
    color: var(--earth-cream);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

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

.highlight {
    color: var(--earth-gold);
    font-weight: 600;
}

/* Quote Block */
.quote-block {
    background: linear-gradient(135deg, rgba(139, 38, 53, 0.9), rgba(92, 26, 36, 0.9));
    border: 2px solid var(--earth-gold);
    border-radius: 15px;
    padding: 50px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 1000px;
}

.quote-block::before {
    content: "\201C";
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--earth-gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    color: var(--earth-cream);
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.quote-author {
    font-family: 'Cinzel', serif;
    color: var(--earth-gold);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 20px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
    width: 100%;
    max-width: 1000px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(45, 36, 30, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 10px;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--earth-gold);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-family: 'Cinzel', serif;
    color: var(--earth-gold-light);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 10px;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin: 40px 0;
}

.team-member {
    background: rgba(45, 36, 30, 0.9);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.team-member:hover {
    border-color: var(--earth-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--earth-gold), #a0822a);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--earth-charcoal);
    font-weight: 700;
}

.team-name {
    font-family: 'Oswald', sans-serif;
    color: var(--earth-cream);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-role {
    font-family: 'Cinzel', serif;
    color: var(--earth-gold);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.team-bio {
    font-family: 'Playfair Display', serif;
    color: var(--earth-gold-light);
    font-size: 0.95rem;
    margin-top: 15px;
    font-style: italic;
    opacity: 0.9;
}

/* ========================================
   16. PLAYLIST & PRESENTERS BLOCKS
   ======================================== */
.playlist-box,
.presenters-block {
    border: 2px solid var(--earth-gold);
    border-radius: 15px;
    background: rgba(45, 36, 30, 0.90);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7),
        0 0 0 1px rgba(201, 162, 39, 0.1),
        inset 0 0 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    max-width: 1000px;
    width: 100%;
    padding: 60px 50px;
    margin: 30px auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
}

.playlist-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--earth-red) !important;
    filter: drop-shadow(0 0 8px rgba(139, 38, 53, 0.4));
    display: block;
}

.playlist-title,
.presenters-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: var(--earth-gold);
    text-transform: uppercase;
    margin: 0 0 25px 0;
    letter-spacing: 0.15em;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.presenters-title {
    letter-spacing: 0.2em;
}

.playlist-text,
.presenters-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--earth-cream);
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
}

.presenters-text {
    margin-bottom: 30px;
}

.playlist-note {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--earth-gold-light);
    margin-top: 20px;
    opacity: 0.7;
    letter-spacing: 0.1em;
}

/* Playlist Record Icon */
.playlist-record-icon {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
    border-radius: 50%;
    font-size: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.04) 12%, rgba(0,0,0,0) 22%),
        radial-gradient(circle, #1f1f1f 0%, #111 38%, #070707 68%, #171717 100%);
    border: 4px solid var(--earth-gold);
    box-shadow:
        0 10px 26px rgba(0,0,0,0.45),
        0 0 24px rgba(201, 162, 39, 0.18),
        inset 0 0 0 2px rgba(255,255,255,0.04);
    animation: nsrPlaylistSpin 5.5s linear infinite;
}

.playlist-record-icon::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
}

.playlist-record-icon::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 18px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 40%, rgba(255,255,255,0) 72%);
    filter: blur(1px);
}

.playlist-record-groove {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    transform: translate(-50%, -50%);
}

.playlist-record-groove.groove-1 { width: 78px; height: 78px; }
.playlist-record-groove.groove-2 { width: 58px; height: 58px; }
.playlist-record-groove.groove-3 { width: 38px; height: 38px; }

.playlist-record-label {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--earth-red) 0%, #8f1f31 100%);
    border: 2px solid var(--earth-gold);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.04) inset, 0 0 10px rgba(177, 56, 39, 0.2);
}

.playlist-record-hole {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #111;
    border: 1px solid rgba(255,255,255,0.12);
    z-index: 2;
}

@keyframes nsrPlaylistSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .playlist-record-icon {
        animation: none;
    }
}

/* ========================================
   17. JOIN BLOCK (Presenters Recruitment)
   ======================================== */
.nsr-join-block {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto;
    padding: 42px 32px;
    text-align: center;
    border: 2px solid rgba(201, 162, 39, 0.45);
    border-radius: 18px;
    background: rgba(26, 26, 26, 0.93);
    box-shadow:
        0 15px 50px rgba(0,0,0,0.7),
        0 0 0 1px rgba(201, 162, 39, 0.08),
        inset 0 0 20px rgba(0,0,0,0.18);
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
}

.nsr-join-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201,162,39,0.08), transparent 32%),
        radial-gradient(circle at bottom left, rgba(177,56,39,0.08), transparent 28%);
    pointer-events: none;
}

.nsr-join-kicker {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8b0000 0%, #b22222 100%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 0 16px rgba(255,60,60,0.22);
    position: relative;
    z-index: 1;
}

.nsr-join-title {
    max-width: 760px;
    margin: 0 auto 18px;
    font-family: 'Cinzel', serif;
    font-size: 2.3rem;
    line-height: 1.35;
    color: var(--earth-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.nsr-join-lead {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--earth-cream);
    position: relative;
    z-index: 1;
}

.nsr-join-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 900px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.nsr-join-benefit {
    padding: 22px 18px;
    border-radius: 14px;
    background: rgba(201,162,39,0.08);
    border: 1px solid rgba(201,162,39,0.26);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.nsr-join-benefit-title {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--earth-gold);
    margin-bottom: 8px;
}

.nsr-join-benefit-text {
    display: block;
    color: var(--earth-cream);
    line-height: 1.6;
    font-size: 0.95rem;
}

.nsr-join-body {
    max-width: 780px;
    margin: 0 auto 26px;
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--earth-cream);
    position: relative;
    z-index: 1;
}

.nsr-join-actions {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.nsr-join-cta {
    min-width: 260px;
    text-align: center;
}

.nsr-join-subnote {
    max-width: 700px;
    margin: 18px auto 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--earth-gold-light);
    opacity: 0.92;
    position: relative;
    z-index: 1;
}

/* ========================================
   18. PLAYLIST BLOCK (Polished)
   ======================================== */
.nsr-playlist-block {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto;
    padding: 42px 32px;
    text-align: center;
    border: 2px solid rgba(201, 162, 39, 0.45);
    border-radius: 18px;
    background: rgba(26, 26, 26, 0.90);
    box-shadow:
        0 15px 50px rgba(0,0,0,0.7),
        0 0 0 1px rgba(201, 162, 39, 0.08),
        inset 0 0 20px rgba(0,0,0,0.18);
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
}

.nsr-playlist-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201,162,39,0.08), transparent 32%),
        radial-gradient(circle at bottom left, rgba(177,56,39,0.07), transparent 28%);
    pointer-events: none;
}

.nsr-playlist-kicker {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--earth-gold-light);
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.nsr-playlist-block .playlist-record-icon {
    margin: 0 auto 26px;
    position: relative;
    z-index: 1;
}

.nsr-playlist-title {
    max-width: 760px;
    margin: 0 auto 18px;
    font-family: 'Cinzel', serif;
    font-size: 2.15rem;
    line-height: 1.35;
    color: var(--earth-gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    z-index: 1;
}

.nsr-playlist-lead {
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--earth-cream);
    position: relative;
    z-index: 1;
}

.nsr-playlist-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 900px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
}

.nsr-playlist-benefit {
    padding: 22px 18px;
    border-radius: 14px;
    background: rgba(201,162,39,0.08);
    border: 1px solid rgba(201,162,39,0.26);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
}

.nsr-playlist-benefit-title {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--earth-gold);
    margin-bottom: 8px;
}

.nsr-playlist-benefit-text {
    display: block;
    color: var(--earth-cream);
    line-height: 1.6;
    font-size: 0.95rem;
}

.nsr-playlist-body {
    max-width: 780px;
    margin: 0 auto 26px;
    font-size: 1rem;
    line-height: 1.85;
    color: var(--earth-cream);
    position: relative;
    z-index: 1;
}

.nsr-playlist-actions {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    position: relative;
    z-index: 1;
}

.nsr-playlist-cta {
    min-width: 280px;
    text-align: center;
}

.nsr-playlist-subnote {
    max-width: 700px;
    margin: 18px auto 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--earth-gold-light);
    opacity: 0.92;
    position: relative;
    z-index: 1;
}

/* ========================================
   19. NEWS HUB
   ======================================== */
.nsr-news-page .ns-content {
    max-width: 1280px;
}

.nsr-news-hero {
    max-width: 1120px;
}

.nsr-news-kicker {
    max-width: 820px;
    margin: 0 auto;
    font-family: 'Playfair Display', serif;
    color: var(--earth-gold-light);
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
}

.nsr-news-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.nsr-news-filter-bar {
    width: 100%;
    max-width: 1120px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 28px;
}

.nsr-news-filter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(13, 13, 13, 0.82);
    border: 1px solid rgba(201, 162, 39, 0.35);
    color: var(--earth-gold-light);
    font-family: 'Cinzel', serif;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nsr-news-filter:hover,
.nsr-news-filter.is-active {
    background: rgba(139, 38, 53, 0.9);
    border-color: rgba(201, 162, 39, 0.9);
    color: var(--earth-cream);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.nsr-news-intro-copy,
.nsr-news-section-heading,
.nsr-news-featured,
.nsr-news-newsletter,
.nsr-news-empty,
.nsr-news-single-article {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto 34px;
}

.nsr-news-featured {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
}

.nsr-news-featured-image-link,
.nsr-news-featured-image-link--fallback {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 18px;
    min-height: 320px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13,13,13,0.97), rgba(28,22,18,0.95));
    border: 1px solid rgba(201, 162, 39, 0.22);
}

.nsr-news-featured-image-link--fallback {
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    color: var(--earth-gold-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nsr-news-featured-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: 560px;
    object-fit: contain;
    object-position: center top;
    background: rgba(13,13,13,0.92);
    border-radius: 14px;
    display: block;
}

.nsr-news-featured-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.nsr-news-featured-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.02;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.nsr-news-featured-title a {
    color: var(--earth-cream) !important;
}

.nsr-news-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
}

.nsr-news-meta-row span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(139, 38, 53, 0.9);
    color: var(--earth-cream);
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(201, 162, 39, 0.55);
}

.nsr-news-featured-excerpt,
.nsr-news-section-heading p,
.nsr-news-newsletter > p,
.nsr-news-single-content {
    font-family: 'Playfair Display', serif;
    color: var(--earth-gold-light);
    font-size: 1.06rem;
    line-height: 1.8;
}

.nsr-news-section-heading {
    text-align: center;
}

.nsr-news-section-heading h2,
.nsr-news-newsletter h2 {
    font-family: 'Cinzel', serif;
    color: var(--earth-gold);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0;
}

.nsr-news-grid {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.nsr-news-card {
    background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(18,18,18,0.95) 100%);
    border: 2px solid rgba(201, 162, 39, 0.75);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.36), inset 0 0 0 1px rgba(201,162,39,0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.nsr-news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.48), 0 0 24px rgba(201,162,39,0.14);
    border-color: var(--earth-gold-light);
}

.nsr-news-card-media {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 14px 14px 0;
    aspect-ratio: auto;
    min-height: 210px;
    background: rgba(13,13,13,0.95);
    border-bottom: 1px solid rgba(201, 162, 39, 0.14);
}

.nsr-news-card-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center top;
    background: rgba(13,13,13,0.95);
    border-radius: 14px 14px 0 0;
    display: block;
}

.nsr-news-card-image--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(139, 38, 53, 0.25), rgba(13,13,13,0.95));
}

.nsr-news-card-image--fallback span {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.18em;
    color: var(--earth-gold-light);
}

.nsr-news-card-image--logo {
    height: 280px;
    padding: 20px;
    object-fit: contain;
    object-position: center;
    background: radial-gradient(circle at center, rgba(139,38,53,0.18), rgba(13,13,13,0.96));
}

.nsr-news-card-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.nsr-news-card-topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.nsr-news-category-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(139, 38, 53, 0.95);
    border: 1px solid rgba(201, 162, 39, 0.5);
    color: var(--earth-cream);
    font-family: 'Cinzel', serif;
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nsr-news-card-date,
.nsr-news-card-readtime {
    font-family: 'Cinzel', serif;
    color: rgba(228, 196, 116, 0.86);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nsr-news-card-title {
    margin: 0 0 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    line-height: 1.06;
    min-height: 3.6em;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.nsr-news-card-title a {
    color: var(--earth-cream) !important;
}

.nsr-news-card-excerpt {
    margin: 0 0 18px;
    font-family: 'Playfair Display', serif;
    color: var(--earth-gold-light);
    font-size: 0.98rem;
    line-height: 1.7;
    min-height: 4.8em;
    flex-grow: 1;
}

.nsr-news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid rgba(201, 162, 39, 0.18);
    padding-top: 16px;
}

.nsr-news-card-link {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.88rem;
    color: var(--earth-gold) !important;
}

.nsr-news-card-link:hover {
    color: var(--earth-gold-light) !important;
}

.nsr-news-newsletter {
    text-align: center;
}

.nsr-news-newsletter > p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.nsr-news-newsletter-form-wrap {
    max-width: 760px;
    margin: 24px auto 0;
}

.nsr-news-newsletter-form-wrap input[type="email"],
.nsr-news-newsletter-form-wrap input[type="text"] {
    width: 100%;
    min-height: 54px;
    border-radius: 14px;
    border: 2px solid rgba(201, 162, 39, 0.5);
    background: rgba(0, 0, 0, 0.85);
    color: var(--earth-cream);
    padding: 0 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
}

.nsr-news-newsletter-form-wrap input[type="submit"],
.nsr-news-newsletter-form-wrap button,
.nsr-news-newsletter-form-wrap .mailpoet_submit,
.nsr-news-newsletter-form-wrap .mc4wp-form input[type="submit"],
.nsr-news-newsletter-form-wrap .ml-form-embedSubmit button,
.nsr-news-newsletter-form-wrap .tnp-subscription input.tnp-submit,
.nsr-news-newsletter-form-wrap .fluentform .ff-btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border-radius: 999px;
    border: 2px solid var(--earth-gold-light);
    background: linear-gradient(135deg, #8b2635 0%, #6f1e2a 100%);
    color: var(--earth-cream) !important;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(139, 38, 53, 0.28);
}

.nsr-news-newsletter-form-wrap input[type="submit"]:hover,
.nsr-news-newsletter-form-wrap button:hover,
.nsr-news-newsletter-form-wrap .mailpoet_submit:hover,
.nsr-news-newsletter-form-wrap .mc4wp-form input[type="submit"]:hover,
.nsr-news-newsletter-form-wrap .ml-form-embedSubmit button:hover,
.nsr-news-newsletter-form-wrap .tnp-subscription input.tnp-submit:hover,
.nsr-news-newsletter-form-wrap .fluentform .ff-btn-submit:hover {
    background: linear-gradient(135deg, #9b2c3d 0%, #7b2230 100%);
    color: var(--earth-cream) !important;
}

.nsr-news-pagination {
    margin-top: 34px;
    text-align: center;
}

.nsr-news-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    margin: 0 4px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(13,13,13,0.82);
    border: 1px solid rgba(201, 162, 39, 0.3);
    color: var(--earth-gold-light);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.08em;
}

.nsr-news-pagination .page-numbers.current,
.nsr-news-pagination .page-numbers:hover {
    background: rgba(139, 38, 53, 0.95);
    border-color: rgba(201, 162, 39, 0.85);
    color: var(--earth-cream);
}

.nsr-news-single-hero {
    max-width: 980px;
}

.nsr-news-meta-row--single {
    justify-content: center;
}

.nsr-news-single-featured-image-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(135deg, rgba(13,13,13,0.97), rgba(28,22,18,0.95));
    border-radius: 18px;
    border: 2px solid rgba(201, 162, 39, 0.5);
    margin-bottom: 28px;
}

.nsr-news-single-featured-image {
    width: 100%;
    max-height: 640px;
    object-fit: contain;
    object-position: center top;
    background: rgba(13,13,13,0.92);
    border-radius: 14px;
    border: 0;
    display: block;
}

.nsr-news-single-content > *:first-child {
    margin-top: 0;
}

.nsr-news-single-content > *:last-child {
    margin-bottom: 0;
}

.nsr-news-single-content h2,
.nsr-news-single-content h3,
.nsr-news-single-content h4 {
    font-family: 'Cinzel', serif;
    color: var(--earth-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nsr-news-single-content p,
.nsr-news-single-content li,
.nsr-news-single-content blockquote {
    color: var(--earth-cream);
}

.nsr-news-single-content blockquote {
    margin: 28px 0;
    padding: 18px 24px;
    border-left: 3px solid var(--earth-gold);
    background: rgba(0,0,0,0.25);
    border-radius: 0 14px 14px 0;
    font-style: italic;
}

.nsr-news-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.nsr-news-single-footer {
    margin-top: 30px;
    text-align: center;
}

.nsr-news-admin-note {
    display: none !important;
}

.nsr-news-empty .playlist-btn,
.nsr-news-empty .presenters-email,
.nsr-news-empty .nsr-news-action,
.nsr-news-empty .nsr-news-action-alt {
    display: none !important;
}

/* ========================================
   20. SETLIST GRID & CARDS
   ======================================== */
.nsr-setlist-grid {
    width: 100%;
    max-width: 1120px;
    margin: 36px auto 60px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.nsr-setlist-card {
    background: linear-gradient(135deg, rgba(26,26,26,0.92) 0%, rgba(18,18,18,0.95) 100%);
    border: 2px solid rgba(201, 162, 39, 0.78);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.36), inset 0 0 0 1px rgba(201,162,39,0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.nsr-setlist-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.48), 0 0 24px rgba(201,162,39,0.14);
    border-color: var(--earth-gold-light);
}

.nsr-setlist-card-link {
    display: block;
    height: 100%;
    padding: 28px 28px 24px;
    text-decoration: none;
    color: inherit !important;
}

.nsr-setlist-badge {
    margin-bottom: 16px;
}

.nsr-setlist-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    line-height: 1.06;
    color: var(--earth-gold);
    margin: 0 0 8px;
}

.nsr-setlist-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    line-height: 1.35;
    color: var(--earth-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.nsr-setlist-meta {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    color: var(--earth-cream);
    opacity: 0.92;
    line-height: 1.6;
    margin: 0 0 18px;
}

.nsr-setlist-cta {
    display: inline-block;
    margin-top: 10px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.95rem;
    color: var(--earth-gold);
    border-bottom: 1px solid rgba(201,162,39,0.45);
    padding-bottom: 4px;
}

/* Setlist Archive Page */
.nsr-setlist-archive-page .logo-section {
    margin-top: 20px;
    margin-bottom: 40px;
}

/* ========================================
   21. FALLBACKS & SUPPORTS
   ======================================== */
@supports not (backdrop-filter: blur(1px)) {
    .now-playing-box,
    .just-played-box,
    .just-played-item,
    .history-box,
    .history-item,
    .page-header,
    .status-message,
    .sunday-request-box,
    .playlist-box,
    .presenters-block,
    .site-footer,
    .presenter-box,
    .content-block,
    .site-header,
    .nsr-utility-bar {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(13, 13, 13, 0.95) !important;
    }
}

.now-playing-box,
.just-played-box,
.history-box,
.page-header,
.status-message,
.sunday-request-box,
.playlist-box,
.presenters-block,
.site-footer,
.presenter-box,
.content-block,
.site-header,
.nsr-utility-bar {
    -webkit-backdrop-filter: blur(5px);
}

/* ========================================
   22. RESPONSIVE STYLES
   ======================================== */

/* Tablet adjustments */
@media (max-width: 1100px) {
    .nsr-news-grid,
    .nsr-setlist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .nsr-news-featured {
        grid-template-columns: 1fr;
    }
    
    .nsr-join-benefits,
    .nsr-playlist-benefits {
        grid-template-columns: 1fr;
    }
    
    .nsr-join-title,
    .nsr-playlist-title {
        font-size: 1.9rem;
    }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
    /* Header becomes stacked */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: auto;
        min-height: 0;
        padding: 0;
        overflow: visible;
        z-index: 1000;
    }
    
    .header-container {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
        overflow: visible;
    }
    
    .site-branding {
        height: auto;
        padding: 18px 16px 16px;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    }
    
    .site-branding img {
        max-height: 60px;
    }
    
    .site-title {
        font-size: 1.2rem;
        line-height: 1.1;
    }
    
    /* Kill hamburger, show horizontal scroll menu */
    .menu-toggle {
        display: none !important;
        pointer-events: none !important;
    }
    
    .main-navigation,
    .main-navigation.active {
        display: block !important;
        position: relative;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        background: rgba(0, 0, 0, 0.96);
        border-top: 1px solid rgba(201, 162, 39, 0.2);
        border-bottom: 1px solid rgba(201, 162, 39, 0.2);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        white-space: nowrap;
        padding: 0;
    }
    
    .main-navigation::-webkit-scrollbar {
        display: none;
    }
    
    .main-navigation .nav-menu {
        display: inline-flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center;
        gap: 22px;
        width: max-content !important;
        min-width: max-content !important;
        padding: 14px 16px;
        margin: 0;
        text-align: left;
    }
    
    .main-navigation .nav-menu > li {
        display: inline-flex !important;
        flex: 0 0 auto;
        align-items: center;
        position: static !important;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .main-navigation a {
        display: block;
        padding: 0 !important;
        font-size: 0.92rem;
        line-height: 1;
        white-space: nowrap;
    }
    
    .main-navigation a::after {
        display: none !important;
    }
    
    /* No dropdowns on mobile */
    .main-navigation .menu-item-has-children {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .main-navigation .sub-menu,
    .main-navigation .menu-item-has-children:hover > .sub-menu,
    .main-navigation .menu-item-has-children:focus-within > .sub-menu {
        display: none !important;
    }
    
    /* Utility bar adjustments */
    .nsr-utility-bar {
        position: fixed;
        top: 100px;
        height: 44px;
    }
    
    .nsr-utility-nav,
    .nsr-utility-slogan {
        display: none;
    }
    
    .nsr-utility-toggle {
        display: flex;
        align-items: center;
        gap: 6px;
        background: transparent;
        border: 1.5px solid var(--earth-gold);
        color: var(--earth-gold);
        padding: 6px 14px;
        border-radius: 8px;
        font-family: 'Oswald', sans-serif;
        font-size: 12px;
        text-transform: uppercase;
        cursor: pointer;
    }
    
    .nsr-utility-inner {
        padding: 0 16px;
    }
    
    .nsr-utility-left {
        flex: 1;
    }
    
    .nsr-utility-dropdown {
        top: 44px;
    }
    
    .nsr-utility-dropdown-inner {
        padding: 16px;
    }
    
    /* Page wrapper spacing */
    .ns-page-wrapper {
        padding-top: 144px;
    }
    
    body.admin-bar .site-header {
        top: 46px !important;
    }
    
    body.admin-bar .ns-page-wrapper {
        padding-top: 190px !important;
    }
    
    /* Logo and content sizing */
    .site-logo {
        width: 160px;
        height: 160px;
    }
    
    .vinyl-container {
        width: 260px;
        height: 260px;
    }
    
    .play-btn {
        padding: 22px 40px;
        font-size: 1.8rem;
        min-width: 280px;
    }
    
    .playlist-box,
    .presenters-block,
    .presenter-box {
        padding: 40px 25px;
    }
    
    .page-header {
        padding: 25px 20px;
    }
    
    .main-title-section {
        padding: 30px 20px;
        margin: 0 15px 20px;
        width: calc(100% - 30px);
    }
    
    .subtitle-top {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
        word-break: break-word;
        margin-bottom: 20px;
    }
    
    .main-title-section .subtitle-top {
        margin-bottom: 20px;
    }
    
    .now-playing-box,
    .just-played-box {
        padding: 25px 20px;
    }
    
    .history-box {
        padding: 25px 15px;
    }
    
    .sunday-request-box {
        padding: 30px 20px;
    }
    
    .sunday-request-box::before {
        display: none;
    }
    
    /* Presenter box mobile */
    .presenter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .presenter-text-area {
        text-align: center;
    }
    
    .presenter-stats-row {
        justify-content: center;
    }
    
    .presenter-schedule {
        justify-content: center;
    }
    
    .presenter-photo-frame {
        width: 220px;
        height: 220px;
    }
    
    .presenter-box {
        padding: 30px 20px;
    }
    
    .presenter-stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .presenter-stat-divider {
        width: 60px;
        height: 2px;
    }
    
    .presenter-stat-number {
        font-size: 42px;
    }
    
    .presenter-time {
        font-size: 22px;
    }
    
    .presenter-description {
        font-size: 16px;
    }
    
    /* Content blocks */
    .content-block {
        padding: 30px 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .texture-bg {
        background-attachment: scroll;
    }
    
    .presenters-grid {
        grid-template-columns: 1fr;
    }
    
    /* Team grid */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    /* News grid */
    .nsr-news-grid,
    .nsr-setlist-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    
    .nsr-news-card-body {
        padding: 18px 18px 16px;
    }
    
    .nsr-news-card-title {
        font-size: 1.45rem;
        min-height: auto;
    }
    
    .nsr-news-card-excerpt {
        min-height: auto;
    }
    
    .nsr-news-card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nsr-news-featured,
    .nsr-news-intro-copy,
    .nsr-news-section-heading,
    .nsr-news-newsletter,
    .nsr-news-single-article,
    .nsr-news-empty {
        margin-bottom: 24px;
    }
    
    .nsr-news-featured-image-link,
    .nsr-news-featured-image-link--fallback,
    .nsr-news-featured-image {
        min-height: 240px;
    }
    
    .nsr-news-featured-title {
        font-size: 2rem;
    }
    
    .nsr-news-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nsr-news-action,
    .nsr-news-action-alt {
        width: 100%;
        min-width: 0;
    }
    
    .nsr-news-filter-bar {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        scrollbar-width: none;
    }
    
    .nsr-news-filter-bar::-webkit-scrollbar {
        display: none;
    }
    
    /* Account page */
    .nsrc-grid-span-2 {
        grid-column: span 1;
    }
    
    .nsrc-account-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nsrc-account-stats {
        grid-template-columns: 1fr;
    }
    
    /* Setlist archive */
    .nsr-setlist-archive-page .logo-section {
        margin-top: 10px;
        margin-bottom: 30px;
    }
    
    .nsr-setlist-grid {
        margin-bottom: 40px;
    }
    
    .nsr-setlist-card-link {
        padding: 22px 22px 20px;
    }
    
    .nsr-setlist-title {
        font-size: 1.75rem;
    }
    
    .nsr-submit-setlist-btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    /* Join/Playlist blocks */
    .nsr-join-block,
    .nsr-playlist-block {
        padding: 28px 16px;
    }
    
    .nsr-join-title,
    .nsr-playlist-title {
        font-size: 1.55rem;
        line-height: 1.4;
    }
    
    .nsr-join-lead,
    .nsr-join-body,
    .nsr-playlist-lead,
    .nsr-playlist-body {
        font-size: 1rem;
    }
    
    .nsr-join-cta,
    .nsr-playlist-cta {
        width: 100%;
        max-width: 320px;
    }
    
    /* Buttons full width on mobile */
    .playlist-btn,
    .presenters-email,
    .submit-request-btn {
        display: block !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 18px 20px !important;
        font-size: 1.1rem !important;
    }
    
    .playlist-text,
    .presenters-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .just-played-item {
        padding: 12px;
    }
    
    .ns-footer {
        padding: 35px 25px;
        margin-top: 20px;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .site-logo {
        width: 140px;
        height: 140px;
    }
    
    .vinyl-container {
        width: 240px;
        height: 240px;
    }
    
    .play-btn {
        padding: 20px 30px;
        font-size: 1.5rem;
        min-width: 260px;
    }
    
    .playlist-box, .presenters-block, .presenter-box {
        padding: 35px 20px;
    }
    
    .playlist-btn, .presenters-email, .submit-request-btn {
        padding: 16px 15px !important;
        font-size: 0.95rem !important;
    }
    
    .nsr-live-text {
        display: none;
    }
}

/* Admin bar adjustments */
@media screen and (min-width: 769px) and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px !important;
    }
    
    body.admin-bar .ns-page-wrapper {
        padding-top: 186px !important;
    }
}

/* iOS Safari specific fix */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .site-header,
        .nsr-utility-bar {
            position: fixed !important;
        }
    }
}
/* ========================================
   FOOTER STYLES - Northern Soul Radio
   ======================================== */

.ns-footer {
    background: #0d0d0d;
    color: #f5f0e6;
    padding: 40px 20px 20px;
    text-align: center;
    border-top: 1px solid #c9a227;
}

.footer-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #c9a227, transparent);
    margin: 0 auto 20px;
}

.footer-text {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 8px;
    color: #e8d5a3;
}

/* Navigation Links */
.footer-navigation {
    margin: 20px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.footer-links li {
    display: inline-block;
}

.footer-links a,
.footer-link {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #f5f0e6;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.footer-links a:hover,
.footer-link:hover {
    color: #c9a227;
}

.footer-links a::after,
.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a227;
    transition: width 0.3s ease;
}

.footer-links a:hover::after,
.footer-link:hover::after {
    width: 100%;
}

/* Social Icons Section */
.footer-social-section {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

/* Style the social icons plugin output */
.footer-social-section .nsr-social-icons,
.footer-social-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
}

.footer-social-section .nsr-social-icons a,
.footer-social-section .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #c9a227;
    border-radius: 50%;
    color: #c9a227;
    transition: all 0.3s ease;
}

.footer-social-section .nsr-social-icons a:hover,
.footer-social-section .social-icons a:hover {
    background: #c9a227;
    color: #0d0d0d;
    transform: translateY(-2px);
}

/* Copyright */
.footer-copyright {
    margin-top: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 0.05em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .ns-footer {
        padding: 30px 15px 15px;
    }
}