* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.5;
    background-color: #fff;
}

/* Header */
.main-header {
    background-color: #a50b15;
    color: white;
    padding: 15px 0;
}

.header-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header-content h1 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.search-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 20px;
}

/* Ticker Bar */
.ticker-bar {
    background-color: #7b0000;
    color: white;
    padding: 5px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: ticker 30s linear infinite;
}

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

/* Main Content */
.main-content {
    max-width: 800px;
    margin: 30px auto;
    padding: 0 20px;
    text-align: center;
}

.subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.headline {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-red {
    color: #d1121b;
}

.side-effect-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.red-line {
    width: 4px;
    height: 24px;
    background-color: #d1121b;
    margin-right: 10px;
}

.side-effect-text {
    font-size: 14px;
    font-weight: 700;
    color: #000;
}

/* Video */
.video-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px auto;
    border-radius: 4px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 30px;
    background-color: rgba(0,0,0,0.8);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 10px solid white;
    border-bottom: 6px solid transparent;
}

/* Logos */
.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.logo {
    font-weight: 800;
    font-size: 16px;
    color: #222;
}

.ny-times { font-family: 'Times New Roman', Times, serif; font-style: italic; font-weight: bold; font-size: 18px; }
.cbs { font-family: sans-serif; letter-spacing: -1px; font-size: 22px; }
.abc { font-size: 14px; border-radius: 50%; background: #333; color: #fff; width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; font-weight: bold; }
.fox { font-weight: 900; letter-spacing: 1px; font-size: 20px; }
.cnn { font-weight: 900; color: #d1121b; font-size: 22px; }

/* Comments Section */
.comments-section {
    background-color: #f1f2f5;
    padding: 40px 20px;
}

.comments-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.comments-container h2 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.comment {
    display: flex;
    margin-bottom: 12px;
}

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

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
}

.comment-content {
    background-color: transparent;
    flex: 1;
}

.comment-content .author {
    font-size: 13px;
    font-weight: 700;
    color: #385898;
    margin-bottom: 2px;
}

.comment-content .text {
    font-size: 13px;
    color: #1c1e21;
    margin-bottom: 4px;
}

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

.comment-actions a {
    color: #385898;
    text-decoration: none;
    font-weight: 600;
}

.comment-actions a:hover {
    text-decoration: underline;
}

.likes {
    color: #90949c;
}
