* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
}

/* Header */
.main-header {
    background-color: #a31919;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .menu-icon, .main-header .search-icon {
    font-size: 24px;
    cursor: pointer;
}

.main-header .logo {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Ticker */
.ticker {
    background-color: #7b0000;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 8px 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-transform: uppercase;
}

.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
}

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

/* Main Container */
.container {
    max-width: 600px; /* Mobile optimized */
    margin: 0 auto;
    padding: 15px;
}

/* Author Section */
.author-section {
    border-left: 4px solid #a31919;
    padding-left: 10px;
    margin-bottom: 20px;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.date-updated {
    font-size: 12px;
    color: #888;
    margin: 3px 0 8px 0;
}

.social-icons {
    display: flex;
    gap: 5px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    border-radius: 2px;
    object-fit: cover;
}

/* Headlines */
.pre-headline {
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.headline {
    font-size: 26px;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: #000;
    margin-bottom: 8px;
}

.highlight-red {
    color: #d11010;
}

.sub-headline {
    font-size: 16px;
    font-style: italic;
    font-weight: 600;
    border-left: 4px solid #a31919;
    padding-left: 10px;
    margin-bottom: 20px;
    color: #333;
}

/* Video Placeholder */
.video-container {
    width: 100%;
    margin-bottom: 20px;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.play-button {
    font-size: 60px;
    color: white;
    opacity: 0.8;
}

.video-placeholder:hover .play-button {
    opacity: 1;
}

/* Logos */
.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.logos-container .logos-hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

/* CTA Button */
.cta-button {
    display: block;
    width: 100%;
    background-color: #b52b27;
    color: #fff;
    text-align: center;
    padding: 18px 20px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    margin-bottom: 30px;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #a31919;
}

/* Comments Section */
.comments-section {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.comments-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.comment-thread {
    margin-bottom: 20px;
}

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

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    background-color: #f0f2f5;
    padding: 10px 12px;
    border-radius: 18px;
    max-width: calc(100% - 50px);
}

.comment-content .author {
    font-weight: 600;
    color: #385898;
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.comment-content p {
    font-size: 14px;
    color: #1c1e21;
    line-height: 1.4;
}

.comment-actions {
    font-size: 12px;
    color: #65676b;
    margin-top: 5px;
    padding-left: 12px;
    font-weight: 600;
}

.comment-actions .likes {
    color: #385898;
    margin-left: 5px;
}

.replies {
    padding-left: 50px;
}

.replies .comment {
    margin-bottom: 10px;
}

.replies .avatar {
    width: 32px;
    height: 32px;
}

.replies .comment-content {
    max-width: calc(100% - 42px);
}
