* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ebeef2;
    color: #333;
    line-height: 1.4;
}

h1 {
    color: #96140b;
}

/* Main Navigation */
.main-nav {
    background-color: #003366;
    top: 0;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.nav-inner img {
    padding: 10px 20px 10px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    flex: 1;
    padding-left: 10px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #0b2240 0%, #003366 50%, #0b2240 100%);
    background-repeat: repeat-x;
    overflow: hidden;
}

.hero-bg {
    position: absolute;            
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: left center;
}

.hero-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
}

.show-title {
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
}

.show-title .the {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
}

.show-title .name {
    font-size: 72px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 0.9;
}

.show-title .angle {
    display: inline-block;
    background-color: #c92519;
    font-size: 48px;
    font-weight: 700;
    padding: 5px 30px;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-top: 5px;
}

.hero-talent {
    position: absolute;
    right: 10%;
    bottom: 0;
    height: 100%;
    z-index: 1;
}

/* Main Content */
.main-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 8px;
}

.content-grid {
    display: grid;
    grid-template-columns: 240px 1fr 280px;
    gap: 20px;
}

/* Left Sidebar */
.left-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.show-schedule {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 12px;
}

.schedule-info {
    flex: 1;
}

.schedule-badge {
    background-color: #c92519;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 4px;
}

.schedule-title {
    font-size: 14px;
    font-weight: 700;
    color: #003366;
}

.about-section {
    padding: 20px;
}

.about-section h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.host-info {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.host-bio {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.show-description {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid #eee;
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn.facebook {
    background-color: #1877f2;
    color: #fff;
}

.social-btn.twitter {
    background-color: #000;
    color: #fff;
}

/* Main Content Area */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-info {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.video-date {
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.video-title {
    font-size: 24px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 10px;
    line-height: 1.3;
}

.video-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Right Sidebar */
.right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-card a {
    color: #003366;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #003366;
    color: #fff;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .left-sidebar, .right-sidebar {
        order: 2;
    }

    .main-content {
        order: 1;
    }

    .hero-banner {
        height: 140px;
    }

    .hero-talent {
        right: 0;
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-inner img {
        width: 64px;
    }

    .show-title .name {
        font-size: 48px;
    }

    .show-title .angle {
        font-size: 32px;
    }
}