body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #f0f2f5;
    color: #1c1e21;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
}

.top-header {
    background-color: #cc0000;
    color: white;
    padding: 12px 20px;
    border-bottom: 3px solid #990000;
}

.top-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    padding-top: 0;
    padding-bottom: 0;
}

.top-header .logo-text {
    font-weight: 900;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-ticker {
    background-color: #f8f8f8;
    border-bottom: 1px solid #e0e0e0;
    overflow: hidden;
    padding: 10px 0;
    white-space: nowrap;
}

.ticker-wrapper {
    display: flex;
    animation: ticker 20s linear infinite;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
}

.ticker-content span {
    padding: 0 15px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.ticker-content .separator {
    color: #cc0000;
    font-weight: bold;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
}

.main-nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    padding: 5px 10px;
}

.main-nav a.active {
    background-color: #a71a1f;
    border-radius: 5px;
}

.search-icon {
    font-size: 18px;
}

.main-article h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.video-placeholder {
    width: 100%;
    background-color: #000;
    margin-bottom: 10px;
}

.video-caption {
    text-align: center;
    color: #606770;
    font-size: 14px;
    margin-bottom: 20px;
}

.social-proof {
    text-align: center;
    margin-bottom: 20px;
    border-top: 1px solid #e9ebee;
    border-bottom: 1px solid #e9ebee;
    padding: 15px 0;
}

.social-proof img {
    max-width: 100%;
    height: auto;
}

.comments-section {
    margin-top: 20px;
}

.comments-header {
    color: #606770;
    font-weight: bold;
    font-size: 14px;
    border-bottom: 1px solid #dddfe2;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.comment {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.comment-body {
    font-size: 14px;
    background-color: #f2f3f5;
    padding: 10px;
    border-radius: 18px;
}

.comment-body p {
    margin: 0 0 5px 0;
}

.comment-body strong {
    color: #385898;
}

.comment-actions {
    color: #606770;
    font-size: 12px;
}

.comment-actions .likes {
    float: right;
    background-color: white;
    padding: 2px 8px;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.comment.reply {
    margin-left: 50px;
}

.main-footer {
    background-color: #121212;
    color: #a0a0a0;
    text-align: center;
    padding: 20px;
    font-size: 12px;
}

.main-footer .disclaimer {
    max-width: 800px;
    margin: 10px auto 0 auto;
    line-height: 1.5;
} 