:root {
    --primary: #1a3a6b;
    --primary-dark: #0f2547;
    --primary-light: #e8edf5;
    --accent: #d32f2f;
    --accent-dark: #b71c1c;
    --accent-light: #ffebee;
    --gold: #f5b041;
    --gold-light: #fef5e7;
    --bg: #f0f2f5;
    --card: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font);
}

body {
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}


/* ─── HEADER ─── */
.header-visualizer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

header {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    min-height: 170px;
    display: flex;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
}

header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.07) 0%, transparent 60%);
    border-radius: 50%;
    top: -40%;
    left: -10%;
    pointer-events: none;
    z-index: 0;
    animation: orb-drift 14s ease-in-out infinite;
}

@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.header-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.header-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: particle-float linear infinite;
}

.header-particle:nth-child(1) { left: 10%; bottom: -10%; animation-duration: 8s; animation-delay: 0s; width: 8px; height: 8px; }
.header-particle:nth-child(2) { left: 25%; bottom: -10%; animation-duration: 11s; animation-delay: 1s; width: 5px; height: 5px; }
.header-particle:nth-child(3) { left: 45%; bottom: -10%; animation-duration: 9s; animation-delay: 2s; width: 7px; height: 7px; }
.header-particle:nth-child(4) { left: 60%; bottom: -10%; animation-duration: 12s; animation-delay: 0.5s; width: 4px; height: 4px; }
.header-particle:nth-child(5) { left: 75%; bottom: -10%; animation-duration: 10s; animation-delay: 3s; width: 6px; height: 6px; }
.header-particle:nth-child(6) { left: 90%; bottom: -10%; animation-duration: 13s; animation-delay: 1.5s; width: 5px; height: 5px; }
.header-particle:nth-child(7) { left: 50%; bottom: -10%; animation-duration: 7s; animation-delay: 4s; width: 9px; height: 9px; }

@keyframes particle-float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-200px) rotate(360deg); opacity: 0; }
}

.note-particle {
    position: absolute;
    color: rgba(255, 255, 255, 0.08);
    font-size: 1.5rem;
    animation: note-float 15s linear infinite;
    pointer-events: none;
}

.note-particle:nth-child(8)  { left: 15%; bottom: -20px; animation-delay: 0s; }
.note-particle:nth-child(9)  { left: 35%; bottom: -20px; animation-delay: 3s; font-size: 2rem; }
.note-particle:nth-child(10) { left: 55%; bottom: -20px; animation-delay: 7s; }
.note-particle:nth-child(11) { left: 75%; bottom: -20px; animation-delay: 2s; font-size: 1.2rem; }
.note-particle:nth-child(12) { left: 85%; bottom: -20px; animation-delay: 5s; }

@keyframes note-float {
    0% { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0; }
    10% { opacity: 0.3; }
    100% { transform: translateY(-250px) rotate(360deg) translateX(50px); opacity: 0; }
}

.header-left {
    flex: 0 0 220px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    z-index: 1;
}

.logo {
    background: none;
    padding: 0;
    border: none;
}

.logo img {
    max-width: 180px;
    max-height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover img {
    transform: scale(1.04) rotate(-1deg);
}

.header-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1;
}

.header-right {
    flex: 0 0 220px;
    min-width: 220px;
}

.promo-tag {
    background: #ffdf4b;
    color: #000;
    padding: 3px 12px;
    font-size: 0.8rem;
    font-weight: 800;
    border-radius: 4px;
    margin: 15px 0 2px; /* Top: 15px, Bottom: 2px */
    box-shadow: 0 4px 12px rgba(255,223,75,0.25);
    letter-spacing: 0.5px;
}

.contact-info {
    text-align: center;
    margin-bottom: 14px;
    font-weight: 500;
    margin-top: 0;
}

.header-show-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
    max-width: 90%;
}

.header-show-banner i {
    color: #ffdf4b;
    font-size: 1.1rem;
    animation: mic-pulse 2s ease-in-out infinite;
}

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

.show-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

/* ─── HEADER PROGRAM DISPLAY ─── */
.header-now-playing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px; /* Reduced gap from 18px */
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 20px; /* Reduced padding from 10px 24px */
    border-radius: 99px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.now-badge {
    background: #e30000;
    color: white;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.6rem; /* Reduced from 0.7rem */
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.now-badge i {
    font-size: 0.7rem;
    animation: signalPulse 1.5s infinite;
}

.now-program-name {
    font-size: 1.05rem; /* Reduced from 1.25rem */
    font-weight: 700;
    color: white;
    letter-spacing: -0.2px;
}

.contact-info {
    text-align: center;
    margin-bottom: 14px;
    font-weight: 500;
}

.contact-info p {
    margin: 2px 0;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ─── MAIN LAYOUT ─── */
main {
    max-width: 1200px;
    margin: 28px auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 24px;
    padding: 16px 24px 24px;
    background: white;
    box-shadow: var(--shadow-sm);
}

.column {
    background: var(--card);
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    overflow: hidden;
    border: 1px solid var(--border);
}

.column:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.column-header {
    background: #e30000;
    color: white;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 5px 8px 5px;
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(227, 0, 0, 0.2);
    border: none;
}

.column-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(115deg, 
        rgba(255,255,255,0.4) 15%, transparent 16%, 
        transparent 25%, rgba(255,255,255,0.4) 26%, 
        rgba(255,255,255,0.4) 40%, transparent 41%,
        transparent 50%, rgba(255,255,255,0.4) 51%,
        rgba(255,255,255,0.4) 65%, transparent 66%
    );
    opacity: 0.8;
}

.column-header::after {
    content: '';
    position: absolute;
    right: 12px;
    width: 32px;
    height: 18px;
    background-image: radial-gradient(circle, #fff 1.2px, transparent 1.5px);
    background-size: 6px 6px;
    opacity: 0.5;
}

.column-header i {
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.column-content {
    padding: 0 12px 12px;
}

/* ─── CURRENT SHOW WIDGET (Premium Design) ─── */
.current-show-widget {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 10px 5px;
    animation: fadeIn 0.8s ease-out;
}

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

.show-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    background: #f1f1f1;
    border: 1px solid rgba(0,0,0,0.05);
}

.show-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.current-show-widget:hover .show-img {
    transform: scale(1.08);
}

.show-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e30000 0%, #990000 100%);
    color: white;
    font-size: 3.5rem;
}

.live-indicator-pulse {
    position: absolute;
    top: 15px;
    left: 15px; /* Moved to left for better balance */
    background: rgba(227, 0, 0, 0.9);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(227, 0, 0, 0.4);
    z-index: 5;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: livePulseWhite 1.5s infinite;
}

@keyframes livePulseWhite {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.show-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.show-title-live {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.5px;
}

.show-announcer-live {
    font-size: 1rem;
    font-weight: 600;
    color: #e30000;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}

.show-announcer-live i {
    font-size: 1.1rem;
    background: rgba(227, 0, 0, 0.08);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.show-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111;
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.show-description {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-top: 5px;
    padding-left: 10px;
    border-left: 3px solid #eee;
}

/* ─── UPCOMING SHOWS ─── */
.upcoming-section {
    margin-top: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 15px;
    border: 1px solid #eee;
}

.upcoming-title {
    font-size: 0.8rem;
    font-weight: 900;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 5px;
}

.upcoming-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.upcoming-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 12px;
    transition: background 0.2s;
}

.upcoming-item:hover {
    background: #f9f9f9;
}

.upcoming-img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    object-fit: cover;
    background: #eee;
}

.upcoming-info {
    flex: 1;
}

.upcoming-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.upcoming-time {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e30000;
}

.no-show-widget {
    text-align: center;
    padding: 30px 15px;
    background: #f8f9fa;
    border-radius: 16px;
    color: #888;
}

.no-show-widget i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ddd;
}
.modern-player {
    background: #001f3f; 
    border-radius: 40px;
    padding: 0; /* Remove padding to let content handle it */
    width: 100%;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.4);
    isolation: isolate;
}

.player-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.4); /* Slightly reduced blur for better visibility */
    transform: scale(1.1);
    z-index: 1; /* Background layer */
    opacity: 0.8;
    transition: background-image 1s ease;
}

/* Ensure content stays readable over blur */
.player-content {
    position: relative;
    z-index: 10; /* Above blur */
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: radial-gradient(circle at center, rgba(0,31,63,0.1) 0%, rgba(0,31,63,0.4) 100%);
    width: 100%;
    height: 100%;
}

/* ─── PLAYER METADATA ─── */
.player-meta-info {
    text-align: center;
    width: 100%;
    margin-bottom: 5px;
}

.live-program-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.presenting-label {
    background: #e30000;
    color: white;
    padding: 4px 16px;
    border-radius: 50px; /* Full rounding (pill shape) */
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(227, 0, 0, 0.4);
    flex-shrink: 0;
}

.current-program-name {
    font-size: 1.1rem; /* Smaller, more elegant size */
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.song-metadata {
    min-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meta-song-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.player-logo-container {
    position: relative;
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
}

.player-logo-container::before,
.player-logo-container::after {
    content: none !important;
    display: none !important;
}

.player-logo-circle {
    width: 185px;
    height: 185px;
    background: transparent;
    border-radius: 50%;
    padding: 5px;
    border: 5px solid rgba(255, 255, 255, var(--border-op, 0.2));
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
    position: relative;
    /* Direct pulse for the main border */
    transform: scale(var(--pulse-scale, 1));
}

.player-logo-circle img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 0;
    /* Counter-scale to keep image static */
    transform: scale(var(--img-scale, 1));
}

.player-status-text {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
    margin: 5px 0 10px;
}

.player-controls-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.volume-bar-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
}

.vol-icon-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
}

.volume-slider-wrapper {
    flex: 1;
    position: relative;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.volume-slider-wrapper input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.volume-progress {
    position: absolute;
    height: 100%;
    background: #f1c40f;
    border-radius: 10px;
    width: 80%;
}

.volume-slider-wrapper::after {
    content: '';
    position: absolute;
    left: var(--vol-pos, 80%);
    width: 16px;
    height: 16px;
    background: #f1c40f;
    border-radius: 50%;
    transform: translate(-50%, 0);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 5;
}

.vol-percent {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    min-width: 45px;
}

.player-main-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.action-side {
    width: 50px;
    display: flex;
    justify-content: center;
}

.play-btn-large {
    width: 90px;
    height: 90px;
    background: #fff;
    color: #001f3f;
    border: none;
    border-radius: 50%;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.play-btn-large:hover {
    transform: scale(1.08);
}

.play-btn-large i { margin-left: 6px; }
.play-btn-large.is-playing i { margin-left: 0; }

.status-indicator-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.status-indicator-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    color: #f1c40f;
    border-color: #f1c40f;
}

.status-indicator {
    color: #fff;
    font-size: 1.8rem;
    opacity: 0.9;
}

.status-indicator.live {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.status-indicator.live i {
    color: #f1c40f;
    font-size: 1.5rem;
}

.status-indicator.live span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.player-visualizer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

/* ─── EXPERT PWA BANNER ─── */
#pwa-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 32px);
    max-width: 420px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    color: #1a1a1a;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    display: none; /* Controlled by flex via JS */
    align-items: center;
    gap: 16px;
    z-index: 10000;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: pwaSlideUp 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes pwaSlideUp {
    to { transform: translateX(-50%) translateY(0); }
}

.pwa-close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f1f1f1;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.pwa-close-btn:hover { background: #e0e0e0; color: #333; }

.pwa-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3);
}

.pwa-info {
    flex: 1;
}

.pwa-info h4 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #000;
}

.pwa-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    font-weight: 500;
}

.btn-install {
    background: #cc0000;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 15px rgba(204, 0, 0, 0.2);
}

.btn-install:hover {
    transform: scale(1.05);
    background: #e60000;
    box-shadow: 0 10px 25px rgba(204, 0, 0, 0.3);
}

@media (max-width: 480px) {
    #pwa-banner {
        padding: 16px;
        bottom: 20px;
    }
    .pwa-icon { width: 50px; height: 50px; font-size: 1.5rem; }
    .pwa-info h4 { font-size: 1rem; }
    .btn-install { padding: 10px 20px; font-size: 0.9rem; }
}


/* ─── FOOTER ─── */
footer {
    width: 100% !important;
    margin: 40px 0 0 !important;
    color: white !important;
    padding: 50px 0 30px !important;
    background: #001a80 !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    padding: 0 28px;
}

.footer-column h3 {
    color: #f5b041 !important;
    font-size: 1.15rem;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.footer-column p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.contact-list i {
    color: #f5b041 !important;
    width: 20px;
    font-size: 1.1rem;
    text-align: center;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.social-fb { background: #3b5998 !important; }
.social-yt { background: #ff0000 !important; }
.social-tk { background: #333333 !important; }
.social-wa { background: #25d366 !important; }

.copyright {
    text-align: left;
    margin-top: 15px;
    border-top: none;
    padding: 0;
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.copyright p {
    margin: 0;
}

@media (max-width: 1024px) {
    .header-right {
        width: 200px;
        min-width: 200px;
    }

    main {
        grid-template-columns: 1fr 1fr;
        padding: 0 12px;
        gap: 16px;
    }

    .column:last-child {
        grid-column: span 2;
    }

    .footer-container {
        padding: 0 20px;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        min-height: auto;
        margin: 12px 8px 0;
        align-items: center;
    }

    .header-left {
        width: 100%;
        min-width: unset;
        padding: 0;
        justify-content: center;
        margin-bottom: 0;
    }

    .logo {
        margin: 0;
        line-height: 0;
    }

    .logo img {
        max-width: 160px; /* Increased by 10px from 150px */
        display: block;
        margin: 0 auto;
    }

    .header-right {
        display: none;
    }

    .header-center {
        padding: 0 16px 15px;
        margin-top: 0;
    }

    .header-now-playing {
        margin-top: -10px; /* Move 10px higher */
        margin-bottom: 5px;
    }

    .promo-tag {
        font-size: 0.8rem;
        margin: 15px 0 2px; /* Top space for separation, bottom grouping */
        padding: 3px 12px;
        line-height: 1;
    }

    .contact-info {
        font-size: 1.1rem;
        margin-top: 0;
    }

    .contact-info p {
        margin: 3px 0;
    }

    main {
        grid-template-columns: 1fr;
        margin: 16px;
        gap: 14px;
        padding: 12px 16px 16px;
    }

    .column:first-child {
        display: none; /* Hide the first column (Greetings/Schedule) on mobile */
    }

    .column:last-child {
        grid-column: span 1;
    }

    footer {
        margin: 24px 8px 16px;
        border-radius: 0;
        padding: 28px 0 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }

    .copyright {
        padding: 16px 16px 0;
    }

    #pwa-banner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 24px 20px 20px;
    }

    .pwa-actions {
        width: 100%;
    }

    .pwa-actions .pwa-btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .column-content {
        padding: 0 14px 14px;
    }

    .modern-player {
        padding: 22px 18px 18px;
        min-height: 390px;
    }

    .player-bottom {
        align-items: center;
        flex-direction: row;
        min-height: 84px;
    }

    .main-btn {
        width: 76px;
        height: 76px;
        margin: 0 auto;
    }

    .volume-container {
        width: auto;
    }

    .request-form input,
    .request-form textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-column h3 {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
    }
}
