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

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 3px solid #c8102e;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #eee;
}

.top-links a {
    margin-left: 15px;
    color: #666;
    text-decoration: none;
}
.top-links a:hover { color: #c8102e; }

.logo-bar {
    text-align: center;
    padding: 20px 0;
}

.logo {
    font-size: 42px;
    font-weight: 900;
    color: #c8102e;
    letter-spacing: 1px;
    font-family: Georgia, serif;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 12px 0;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}
.nav a:hover { color: #c8102e; }

/* Breaking */
.breaking {
    background: #c8102e;
    color: #fff;
    padding: 10px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.breaking .container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.breaking-label {
    background: #fff;
    color: #c8102e;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
}

.ticker {
    display: flex;
    gap: 30px;
    animation: scroll 25s linear infinite;
    white-space: nowrap;
}

.ticker-item { font-size: 14px; }

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

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 30px 15px;
}

.section-title {
    font-size: 22px;
    border-left: 5px solid #c8102e;
    padding-left: 10px;
    margin-bottom: 20px;
    color: #222;
}

/* Story Cards */
.story-card {
    background: #fff;
    margin-bottom: 25px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}
.story-card:hover { transform: translateY(-3px); }

.story-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.story-content { padding: 15px 20px 20px; }

.category {
    background: #c8102e;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    font-weight: 700;
}

.story-content h3 {
    font-size: 22px;
    margin: 10px 0;
    color: #111;
    line-height: 1.3;
}

.story-content p { color: #555; font-size: 15px; }

.time {
    display: inline-block;
    color: #999;
    font-size: 12px;
    margin-top: 8px;
}

/* Latest News List */
.latest-list {
    list-style: none;
    background: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.latest-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.latest-list li:last-child { border-bottom: none; }

.cat-badge {
    background: #eee;
    color: #c8102e;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 2px;
    font-weight: 600;
    white-space: nowrap;
}

.latest-list a {
    flex: 1;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}
.latest-list a:hover { color: #c8102e; }

/* Sidebar */
.sidebar .section-title { font-size: 18px; }

.trending-list {
    list-style: none;
    background: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 25px;
}

.trending-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}
.trending-list li:last-child { border-bottom: none; }

.rank {
    font-size: 24px;
    font-weight: 800;
    color: #c8102e;
    min-width: 30px;
}

.trending-list a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}
.trending-list a:hover { color: #c8102e; }

.ad-box {
    background: #ddd;
    text-align: center;
    padding: 60px 20px;
    color: #888;
    margin-bottom: 25px;
    border-radius: 4px;
    font-size: 14px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags a {
    background: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    color: #444;
    font-size: 13px;
    border: 1px solid #ddd;
}
.tags a:hover {
    background: #c8102e;
    color: #fff;
    border-color: #c8102e;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
}

.footer a {
    color: #ddd;
    text-decoration: none;
    margin: 0 5px;
}
.footer a:hover { color: #c8102e; }

/* Responsive */
@media (max-width: 768px) {
    .main-grid { grid-template-columns: 1fr; }
    .logo { font-size: 28px; }
    .nav { gap: 12px; }
    .nav a { font-size: 12px; }
    .story-card img { height: 200px; }
}