html, body {
    height: 100%;
}

/* ============================================
   GLOBAL LAYOUT
============================================ */
body {
    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: 100%;
    position: relative;

    /* RESTORED BACKGROUND BEHAVIOR */
    background: url('/img/backgrounds/main-bg.png') right top no-repeat;
    background-size: contain;
}

.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 {
    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-text {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    color: #f7e3c5;
}

.content-card h1,
.content-card h2 {
    text-align: center;
    margin-bottom: 15px;
    color: #ffd8a8;
    text-shadow: 0 0 10px rgba(255,200,120,0.7);
}

.content-card.center-text { text-align: center; }
.content-card.center-text .about-text { text-align: left; }
/* ============================================
   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;
}
/* ============================================
   REQUEST PAGE — BEAUTIFUL INPUTS
============================================ */

.request-wrapper {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 30px;
    background: rgba(26, 13, 7, 0.85);
    border: 2px solid #c28a4a;
    border-radius: 15px;
    box-shadow:
        0 0 18px rgba(255, 200, 120, 0.4),
        inset 0 0 12px rgba(0,0,0,0.6);
}

.request-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,200,120,0.25);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow:
        0 0 12px rgba(255,200,120,0.25),
        inset 0 0 10px rgba(0,0,0,0.5);
}

.request-field label {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
    color: #ffd8a8;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255,200,120,0.7);
}

.request-input,
.request-textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 2px solid rgba(255,200,120,0.25);
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 17px;
    outline: none;
    transition: 0.2s ease;
    box-shadow: inset 0 0 12px rgba(255,200,120,0.25);
}

.request-input:focus,
.request-textarea:focus {
    border-color: #ffcc88;
    box-shadow:
        0 0 15px rgba(255,200,120,0.9),
        inset 0 0 12px rgba(255,200,120,0.5);
}

.request-textarea {
    height: 150px;
    resize: vertical;
}

.request-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffcc66, #ffdd99);
    border: none;
    color: #3b1b0a;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255,200,120,0.7);
    transition: 0.2s ease;
}

.request-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,200,120,1);
}
/* ============================================
   CONTACT PAGE — MATCH REQUEST PAGE STYLE
============================================ */

.contact-wrapper {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 30px;
    background: rgba(26, 13, 7, 0.85);
    border: 2px solid #c28a4a;
    border-radius: 15px;
    box-shadow:
        0 0 18px rgba(255, 200, 120, 0.45),
        inset 0 0 12px rgba(0,0,0,0.6);
}

.contact-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,200,120,0.25);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow:
        0 0 12px rgba(255,200,120,0.25),
        inset 0 0 10px rgba(0,0,0,0.5);
}

.contact-field label {
    display: block;
    font-size: 18px;
    margin-bottom: 6px;
    color: #ffd8a8;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(255,200,120,0.7);
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 2px solid rgba(255,200,120,0.25);
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-size: 17px;
    outline: none;
    transition: 0.2s ease;
    box-shadow: inset 0 0 12px rgba(255,200,120,0.25);
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: #ffcc88;
    box-shadow:
        0 0 15px rgba(255,200,120,0.9),
        inset 0 0 12px rgba(255,200,120,0.5);
}

.contact-textarea {
    height: 160px;
    resize: vertical;
}

.contact-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffcc66, #ffdd99);
    border: none;
    color: #3b1b0a;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255,200,120,0.7);
    transition: 0.2s ease;
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255,200,120,1);
}
/* ============================================
   DJ PAGE — SMURFETTE COUNTRY DELIGHTS THEME
============================================ */

.dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.dj-card {
    background: rgba(26, 13, 7, 0.85);
    border: 2px solid #c28a4a;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    box-shadow:
        0 0 18px rgba(255, 200, 120, 0.45),
        inset 0 0 12px rgba(0,0,0,0.6);
    transition: 0.25s ease;
}

.dj-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 25px rgba(255, 220, 160, 0.9),
        inset 0 0 14px rgba(0,0,0,0.7);
}

.dj-image img {
    width: 100%;
    max-width: 220px;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow:
        0 0 20px rgba(255,200,120,0.5),
        0 0 10px rgba(0,0,0,0.6);
}

.dj-name {
    font-size: 24px;
    font-weight: bold;
    color: #ffd8a8;
    margin-bottom: 6px;
    text-shadow:
        0 0 10px rgba(255,200,120,0.9),
        0 0 15px rgba(255,160,80,0.6);
}

.dj-show {
    font-size: 17px;
    color: #ffe3c5;
    margin-bottom: 14px;
    opacity: 0.95;
}

.dj-bio {
    font-size: 16px;
    line-height: 1.6;
    color: #f7e3c5;
    text-shadow: 0 0 4px rgba(0,0,0,0.4);
}

/* ============================================
   FRIENDS PAGE — SMURFETTE COUNTRY DELIGHTS THEME
============================================ */

.friends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 25px;
}

.friend-card {
    background: rgba(26, 13, 7, 0.85);
    border: 2px solid #c28a4a;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    box-shadow:
        0 0 18px rgba(255, 200, 120, 0.45),
        inset 0 0 12px rgba(0,0,0,0.6);
    transition: 0.25s ease;
}

.friend-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 25px rgba(255, 220, 160, 0.9),
        inset 0 0 14px rgba(0,0,0,0.7);
}

.friend-image img {
    width: 100%;
    max-width: 220px;
    border-radius: 14px;
    margin-bottom: 15px;
    box-shadow:
        0 0 20px rgba(255,200,120,0.5),
        0 0 10px rgba(0,0,0,0.6);
}

.friend-name {
    font-size: 22px;
    font-weight: bold;
    color: #ffd8a8;
    margin-bottom: 8px;
    text-shadow:
        0 0 10px rgba(255,200,120,0.9),
        0 0 15px rgba(255,160,80,0.6);
}

.friend-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #f7e3c5;
    margin-bottom: 15px;
}

.friend-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ffcc66, #ffdd99);
    color: #3b1b0a;
    font-weight: bold;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255,200,120,0.7);
    transition: 0.2s ease;
}

.friend-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255,200,120,1);
}
