:root {
    --primary-color: #D32F2F;
    /* Deep Red */
    --accent-color: #FF5252;
    --dark-bg: #1e1e1e;
    --light-bg: #f4f6f8;
    --white: #ffffff;
    --text-main: #333333;
    --text-light: #777777;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    margin: 0;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.mt-5 {
    margin-top: 40px;
}

.mt-4 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 5px;
}

/* Reduced from 8px */

/* Header */
header {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 60px;
    /* Reduced by 50% (was 120px) */
    width: auto;
    object-fit: contain;
}

.social-header {
    display: flex;
    align-items: center;
}

.social-label {
    font-weight: 600;
    color: var(--text-main);
    margin-right: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-header a {
    color: var(--text-light);
    margin-left: 10px;
    font-size: 24px;
    /* Increased from 18px */
    width: 50px;
    /* Increased from 35px */
    height: 50px;
    /* Increased from 35px */
    border-radius: 50%;
    background: #eee;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.social-header a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Radio Player Bar */
.radio-player-bar {
    background: var(--dark-bg);
    padding: 10px 0;
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.player-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.live-indicator {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* 3-Column Layout */
.three-col-layout {
    display: grid;
    /* Main Video (approx 60%) | List (20%) | Banners (20%) */
    /* This reduction in sidebar width will shrink the thumbnails */
    grid-template-columns: 3fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    /* Reduced margin */
}

.section-header h3 {
    text-transform: uppercase;
    font-size: 1rem;
    /* Slightly smaller header */
    color: var(--primary-color);
    white-space: nowrap;
}

.section-header .line {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

/* Col 1: Main Video */
.main-video-card {
    background: var(--white);
    padding: 15px;
    /* Reduced padding */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.video-frame-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    /* Reduced margin */
}

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

.main-video-info h1 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.main-video-info .desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.main-video-info .meta {
    font-size: 0.8rem;
    color: #999;
}

/* Col 2: Video List (COMPACT) */
.vertical-video-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Reduced gap between items */
}

.vertical-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    /* Minimal gap inside item */
    background: var(--white);
    padding: 8px;
    /* TIGHTER PADDING */
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* ImageWrapper Middle */
.thumb-wrapper-list {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 4px;
    /* Smaller radius */
    overflow: hidden;
}

.thumb-wrapper-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    /* Smaller icon */
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 30px;
    /* Smaller button */
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.vertical-item:hover .play-overlay-small {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Date Overlay */
.date-overlay {
    position: absolute;
    bottom: 3px;
    right: 3px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 0.65rem;
    /* Smaller date font */
    padding: 2px 5px;
    border-radius: 3px;
    font-weight: 600;
    line-height: 1;
}

/* Title (Now Below) */
.info-top h5 {
    font-size: 0.8rem;
    /* Even smaller font */
    line-height: 1.3;
    margin-bottom: 0;
    color: var(--text-main);
    display: block;
}


/* Col 3: Banners */
.vertical-banner-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.banner-box {
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    height: 100px;
    /* Slightly Reduced Height */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.banner-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-placeholder {
    color: #ccc;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Bottom Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.grid-video-item {
    background: var(--white);
    border-radius: 6px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.thumb-wrapper.small {
    width: 100%;
    height: 110px;
    /* Reduced height */
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.thumb-wrapper.small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-details h5 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.grid-details small {
    font-size: 0.75rem;
    color: #aaa;
}

/* Button See All */
.btn-see-all {
    display: block;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 10px 0;
    /* Reduced padding */
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: 0.3s;
    border: none;
    margin-top: 10px;
}

.btn-see-all:hover {
    background-color: #b71c1c;
    /* Darker Red */
    color: white;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

/* Footer */
footer {
    background: #111;
    color: #888;
    padding: 30px 0 20px;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: var(--white);
}

.footer-social a {
    background: #222;
    color: #fff;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    margin-left: 10px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
}

.copyright {
    text-align: center;
    font-size: 0.85rem;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .three-col-layout {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}