/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
}

/* Navigation Bar */
.top-nav {
    border-top: 4px solid #cc0000;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    background: #fff;
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    font-size: 20px;
    cursor: pointer;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
}

.red-box {
    background-color: #cc0000;
    color: white;
    padding: 2px 5px;
    border-radius: 2px;
}

.main-links a, .nav-right a {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: bold;
}

.main-links a:hover, .nav-right a:hover {
    color: #cc0000;
}

/* Main Content constraints */
.main-content {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Article Header */
.article-header {
    border-left: 5px solid #cc0000;
    padding-left: 15px;
    margin-bottom: 40px;
}

.category-tag {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.headline {
    font-size: 36px;
    line-height: 1.1;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.dateline {
    font-size: 10px;
    color: #999;
}

/* Video Mockup Section */
.video-section {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 350px; /* Vertical video size constraint */
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-bg {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.3);
}

.play-button-wrapper {
    text-align: center;
}

.play-btn-red {
    background-color: #ff0000;
    width: 70px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px auto;
    cursor: pointer;
}

.triangle {
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 18px solid white;
}

.play-text {
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 1px 1px 2px #000;
}

.sub-play-text {
    color: white;
    font-size: 14px;
    text-shadow: 1px 1px 2px #000;
}

/* Comments Section (Facebook Style) */
.comments-section {
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
}

.comments-count {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    display: flex;
    gap: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ddd; /* fallback */
    object-fit: cover;
}

.comment-body {
    flex: 1;
}

.comment-bubble {
    background-color: #f0f2f5;
    padding: 10px 15px;
    border-radius: 15px;
    display: inline-block;
}

.comment-name {
    display: block;
    color: #385898;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 3px;
}

.comment-text {
    font-size: 14px;
    color: #050505;
    line-height: 1.4;
}

.comment-actions {
    margin-top: 5px;
    margin-left: 10px;
    font-size: 12px;
    color: #65676b;
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-actions a {
    color: #65676b;
    text-decoration: none;
    font-weight: bold;
}

.comment-actions a:hover {
    text-decoration: underline;
}

.reaction-icons {
    height: 16px;
    margin-left: auto; /* pushes to the right */
}

/* Footer Section */
.bottom-footer {
    background-color: #111;
    color: #fff;
    padding: 40px 20px 20px 20px;
    margin-top: 60px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
}

.footer-disclaimer p {
    font-size: 10px;
    color: #aaa;
    line-height: 1.5;
}

.footer-copyright {
    text-align: center;
    font-size: 10px;
    color: #666;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-links {
        display: none; /* hide links on mobile like the screenshot */
    }
    
    .headline {
        font-size: 28px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
/* 1. Establish structural positioning on the body element */
body {
    position: relative;
    min-height: 100vh;
}

/* 2. Style the transparent click overlay block */
.global-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Covers everything on the standard layout layer */
    cursor: pointer;
    background-color: transparent;
}