/* Live Banner Style - Senior High Performance Edition */

.live-banner-page {
    padding: 20px 0;
}

.banner-header-section {
    margin-bottom: 30px;
    text-align: center;
}
.banner-header-section h2 { font-size: 28px; color: #1E293B; margin: 0; }
.banner-header-section .subtitle { color: #64748B; font-size: 15px; margin-top: 8px; }

/* Responsive Grid System */
.live-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 25px;
    align-items: flex-start;
}

/* Video Player Container (16:9 Ratio Aspect Ratio) */
.player-container {
    padding: 0 !important;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.video-ratio-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.c-banner__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar Styling */
.status-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card h3, .log-card h3 {
    font-size: 16px; margin: 0 0 15px; color: #334155;
    display: flex; align-items: center; gap: 8px;
}

.config-list { list-style: none; padding: 0; margin: 0; }
.config-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #F1F5F9;
    font-size: 14px;
}
.config-list li:last-child { border-bottom: none; }
.config-list strong { color: #0EA5E9; }

/* Log Viewer (Dark Pastel) */
.log-viewer {
    background: #1E293B;
    color: #38BDF8;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 12px;
    padding: 15px;
    border-radius: 12px;
    height: 200px;
    overflow-y: auto;
    line-height: 1.5;
}

/* Mobile Adaptation */
@media (max-width: 1024px) {
    .live-grid {
        grid-template-columns: 1fr;
    }
    .status-sidebar {
        flex-direction: row;
    }
    .status-sidebar > div { flex: 1; }
}

@media (max-width: 640px) {
    .status-sidebar {
        flex-direction: column;
    }
    .banner-header-section h2 { font-size: 22px; }
}
