/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0b0f19;
    color: #f1f5f9;
    line-height: 1.6;
}

/* Sports Ticker */
.news-ticker {
    background-color: #000;
    color: #fff;
    padding: 5px 0;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid #e11d48;
}

.ticker-content {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.breaking-badge {
    background-color: #e11d48;
    color: white;
    padding: 5px 15px;
    font-family: 'Teko', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
    white-space: nowrap;
}

marquee {
    padding: 5px 10px;
    color: #cbd5e1;
}

/* Navbar */
.navbar {
    background-color: #1e293b;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #334155;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: 'Teko', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 1px;
}

.logo .icon {
    color: #e11d48;
}

.logo .accent {
    color: #e11d48;
}

.nav-links a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active {
    color: #fff;
}

/* Main Layout */
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* Video Section */
.video-section {
    background: #1e293b;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

.category-tag {
    display: inline-block;
    background: #e11d48;
    color: white;
    font-family: 'Teko', sans-serif;
    font-size: 16px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.video-title {
    font-family: 'Teko', sans-serif;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #fff;
}

.video-meta {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
    font-weight: 500;
}

.author { color: #38bdf8; }

/* The Fake Video Player */
.video-player-container {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
    aspect-ratio: 16 / 9;
    border: 1px solid #334155;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.5s;
}

.video-player-container:hover .video-thumbnail {
    opacity: 1;
    transform: scale(1.02);
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    transition: background 0.3s;
}

.video-player-container:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-button {
    width: 80px;
    height: 80px;
    background: #e11d48;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(225, 29, 72, 0.6);
    transition: transform 0.2s, background 0.2s;
}

.video-player-container:hover .play-button {
    transform: scale(1.1);
    background: #be123c;
}

.play-button svg {
    width: 40px;
    height: 40px;
    margin-left: 5px;
}

.play-text {
    margin-top: 15px;
    font-family: 'Teko', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.6);
    padding: 2px 15px;
    border-radius: 4px;
}

/* Hidden Content / Ad Area */
.hidden-content {
    background: #0b0f19;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 50px 20px;
    text-align: center;
    margin-top: 20px;
}

.loading-text {
    color: #94a3b8;
    margin-bottom: 25px;
    font-weight: 500;
}

.continue-btn {
    display: inline-block;
    background: #e11d48;
    color: #fff;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 1px;
    transition: background 0.2s, transform 0.1s;
    box-shadow: 0 4px 6px rgba(225, 29, 72, 0.3);
}

.continue-btn:hover {
    background: #be123c;
    transform: translateY(-2px);
}

/* Article Content */
.article-content {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #334155;
    color: #cbd5e1;
    font-size: 16px;
}

.lead-paragraph {
    font-size: 18px;
    font-weight: 500;
    color: #f8fafc;
    margin-bottom: 15px;
}

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

.sidebar-header h3 {
    font-family: 'Teko', sans-serif;
    font-size: 28px;
    letter-spacing: 1px;
    color: #f8fafc;
    line-height: 1;
}

.red-line {
    width: 50px;
    height: 3px;
    background: #e11d48;
    margin-top: 5px;
    margin-bottom: 10px;
}

.news-item {
    display: flex;
    gap: 15px;
    background: #1e293b;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: 1px solid transparent;
}

.news-item:hover {
    background: #27354f;
    border-color: #334155;
    transform: translateX(5px);
}

.news-thumb {
    width: 100px;
    height: 75px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.news-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-info h4 {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #f1f5f9;
}

.news-time {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
}

/* Ad Placeholders */
.sidebar-ad-placeholder {
    width: 100%;
    height: 250px;
    background: #0b0f19;
    border: 1px solid #334155;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #64748b;
    border-radius: 6px;
    margin-top: 15px;
    position: relative;
}

.ad-label {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 10px;
    text-transform: uppercase;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 32px;
    }
    .play-button {
        width: 60px;
        height: 60px;
    }
    .play-button svg {
        width: 30px;
        height: 30px;
    }
    .nav-links {
        display: none; /* Hide links on very small screens for clean look */
    }
}
