/* ============================================
   GLOBAL LAYOUT
============================================ */
body {
    background: url('/img/backgrounds/main-bg.png') no-repeat center center fixed;
    background-size: cover;
    background-color: #120a06;
    font-family: "Georgia", serif;
    color: #f7e3c5;
    margin: 0;
    padding: 0;
}

.content-area {
    margin-left: 260px; /* sidebar width */
    padding-top: 140px; /* header height */
    padding-bottom: 40px;
    min-height: 100vh;
    position: relative;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* ============================================
   UNIVERSAL BOX SYSTEM (A)
============================================ */
.content-card,
.schedule-box,
.clock-box,
.poll-box,
.nowplaying-box {
    background: rgba(26, 13, 7, 0.85);
    border: 2px solid #c28a4a;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow:
        0 0 14px rgba(255, 200, 120, 0.4),
        inset 0 0 10px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    transition: 0.2s ease;
}

.content-card:hover,
.schedule-box:hover,
.clock-box:hover,
.poll-box:hover,
.nowplaying-box:hover {
    box-shadow:
        0 0 20px rgba(255, 220, 160, 0.8),
        inset 0 0 12px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
============================================ */
.hero-card {
    text-align: center;
}

.hero-logo {
    width: 180px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 200, 120, 0.8));
}

.hero-title {
    font-size: 2.4rem;
    color: #f7e3c5;
    text-shadow:
        0 0 12px rgba(255, 200, 120, 0.9),
        0 0 20px rgba(255, 160, 80, 0.6);
    animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 10px rgba(255,200,120,0.7); }
    50% { text-shadow: 0 0 20px rgba(255,200,120,1); }
    100% { text-shadow: 0 0 10px rgba(255,200,120,0.7); }
}

.hero-tagline {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* Listen button */
.play-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #ffcc33;
    color: #3b1b0a;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    box-shadow:
        0 0 12px rgba(255, 200, 120, 0.9),
        inset 0 0 6px rgba(255, 255, 255, 0.4);
    transition: 0.2s ease;
}

.play-btn:hover {
    background: #ffe07a;
    box-shadow:
        0 0 18px rgba(255, 220, 160, 1),
        inset 0 0 8px rgba(255, 255, 255, 0.6);
}

/* ============================================
   DIVIDER
============================================ */
.divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #c28a4a, #ffd28a, #c28a4a);
    margin: 30px 0;
    border-radius: 999px;
    box-shadow: 0 0 10px rgba(255, 200, 120, 0.6);
}
/* ============================================
   SCROLLING VINYL DIVIDER
============================================ */
.smurf-divider {
    width: 100%;
    height: 90px;
    background-image: url('/img/dividers/divider.png');
    background-repeat: repeat-x;
    background-size: auto 90px;
    animation: smurfScroll 20s linear infinite;
    margin: 40px 0;
}

@keyframes smurfScroll {
    from { background-position: 0 0; }
    to   { background-position: -2000px 0; }
}

/* ============================================
   CLOCKS
============================================ */
.clock-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.clock-box {
    text-align: center;
    min-width: 160px;
    background: rgba(255, 220, 160, 0.1);
    border: 1px solid #c28a4a;
    border-radius: 10px;
    padding: 15px 25px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.5);
}

/* ============================================
   SCHEDULE GRID
============================================ */
.schedule-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.schedule-box {
    flex: 1;
    text-align: center;
    background: rgba(255, 220, 160, 0.1);
    border: 1px solid #c28a4a;
    border-radius: 10px;
}

/* ============================================
   NOW PLAYING
============================================ */
#nowplaying-content {
    padding: 10px;
    background: rgba(255, 220, 160, 0.05);
    border-radius: 8px;
    border: 1px solid #c28a4a;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}

/* LIVE indicator */
.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* ============================================
   POLL
============================================ */
.poll-results p {
    margin: 4px 0;
}

.radio input {
    margin-right: 6px;
}

/* ============================================
   FOOTER STATS
============================================ */
.footer-stats {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

.footer-stats p {
    margin: 2px 0;
}

/* ============================================
   RESPONSIVE LAYOUT (F)
============================================ */
@media (max-width: 1100px) {
    .content-area {
        margin-left: 0;
        padding-top: 160px;
    }

    .schedule-grid {
        flex-direction: column;
    }

    .clock-flex {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 700px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-logo {
        width: 140px;
    }

    .content-card {
        padding: 18px;
    }
}

@media (max-width: 500px) {
    .content-wrapper {
        padding: 10px;
    }

    .divider {
        margin: 20px 0;
    }
}
/* ============================================
   ABOUT PAGE
============================================ */
.about-section {
    padding: 20px;
    line-height: 1.6;
    font-size: 18px;
}

.about-section img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 28px;
    color: #ffd8a8;
    text-shadow: 0 0 10px rgba(255,200,120,0.7);
}
/* ============================================
   NEWS PAGE
============================================ */
.news-post {
    text-align: left;
    padding: 30px;
}

.news-title {
    font-size: 28px;
    margin-bottom: 10px;
    text-align: center;
}

.news-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.news-content {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 20px;
}

.news-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    display: block;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}
/* ============================================
   SCHEDULE TABLE
============================================ */
.schedule-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.schedule-table th {
    background: rgba(255,255,255,0.1);
    padding: 12px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0.2);
}

.schedule-table td {
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.time-label {
    font-weight: bold;
    color: #ffd6f6;
}

.current-hour {
    background: rgba(255, 182, 255, 0.15);
    box-shadow: inset 0 0 10px rgba(255, 100, 255, 0.4);
}

.schedule-format-switch {
    margin-top: 15px;
}

.schedule-format-switch a {
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 6px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}

.schedule-format-switch a.active {
    background: #ff7adf;
    color: #000;
    font-weight: bold;
}

.schedule-table td,
.schedule-table th {
    max-width: 150px;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

.schedule-table td span.show-name {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 6px rgba(255, 150, 255, 0.4);
    font-weight: 600;
    color: #ffeaff;
}
