:root {
    --header-bg: #183048;
    --header-text: #ffffff;
    --primary-blue: #183048;
    --fox-red: #d40000;
    --text-color: #222222;
    --text-muted: #666666;
    --bg-color: #ffffff;
    --border-color: #e5e5e5;
    --link-color: #183048;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
.site-header {
    background-color: var(--header-bg);
    color: var(--header-text);
    height: 104px;
    /* Approximate height with sub-nav */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    background: none;
    border: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
}

.hamburger-icon {
    font-size: 24px;
    margin-bottom: -5px;
}

.logo img {
    height: 40px;
    /* Adjust based on actual logo aspect ratio */
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    text-transform: uppercase;
}

.main-nav a.active,
.main-nav a:hover {
    border-bottom-color: #fff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-icon {
    font-size: 20px;
    cursor: pointer;
}

.login-btn a {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}

/* Page Wrapper */
.page-wrapper {
    max-width: 1280px;
    margin: 20px auto;
    padding: 0 20px;
}

.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Video Section */
.video-player-container {
    background: #000;
    margin-bottom: 20px;
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.video-player-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    color: #fff;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
    /* Optical center adjustment */
    transition: background 0.2s;
}

.video-placeholder:hover .play-button {
    background: rgba(200, 0, 0, 0.8);
}

.video-controls-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-placeholder:hover .video-controls-overlay {
    opacity: 1;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin-bottom: 10px;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: #FF0000;
}

.controls-row {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 500;
}

/* Meta Data */
.meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.meta-top .date {
    color: var(--text-muted);
}

.meta-top .badge {
    background: #e5e5e5;
    color: #444;
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 10px;
    letter-spacing: 1px;
}

.headline {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
    color: #111;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.social-share {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-weight: bold;
    color: #555;
}

.tags-section {
    display: flex;
    gap: 10px;
    align-items: baseline;
    font-size: 12px;
}

.tags-label {
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    color: var(--primary-blue);
    border: 1px solid #eee;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    transition: background 0.2s;
}

.tag:hover {
    background: #f5f5f5;
}

/* Sidebar */
.section-header {
    border-bottom: 1px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.section-header h2 {
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
}

.section-header .timezone {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-item {
    display: flex;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.schedule-item:last-child {
    border-bottom: none;
}

.channel-logo {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    text-align: center;
    font-weight: 900;
    border-radius: 4px;
    color: #fff;
}

.channel-logo.fnc {
    background-color: #003366;
}

.channel-logo.fbn {
    background-color: #FFA500;
    color: #000;
}

.channel-logo.weather {
    background-color: #00AEEF;
}

.program-info {
    flex: 1;
}

.program-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}

.program-time {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.watch-btn {
    display: inline-block;
    background: var(--primary-blue);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    transition: background 0.2s;
}

.watch-btn:hover {
    background: #002244;
}

.ad-placeholder {
    width: 100%;
    height: 250px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 12px;
    margin-top: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.site-footer {
    background: #f4f4f4;
    padding: 40px 0;
    margin-top: 60px;
    border-top: 1px solid #ddd;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo {
    font-weight: 900;
    font-size: 18px;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.copyright {
    font-size: 11px;
    color: #888;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        height: 60px;
    }

    .main-nav {
        display: none;
        /* Hide nav on mobile for simplicity */
    }

    .main-content {
        grid-template-columns: 1fr;
    }

    font-size: 24px;
}
}

/* Article Styles */
.article-header {
    margin-bottom: 20px;
}

.headline {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #111;
}

.article-body {
    margin-top: 30px;
    font-size: 19px;
    line-height: 1.7;
    color: #2a2a2a;
    font-family: 'Roboto', sans-serif;
    /* Ensuring readability */
}

.article-body p {
    margin-bottom: 24px;
}

.article-body ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #111;
}

.cta-button {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    background-color: var(--fox-red);
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s, transform 0.1s;
}

.cta-button:hover {
    background-color: #b30000;
    transform: translateY(-2px);
}