:root {
    --primary-red: #cc0000;
    --dark-red: #990000;
    --text-dark: #1a1a1a;
    --text-medium: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --accent-blue: #0066cc;
}

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

body {
    font-family: 'Merriweather', Georgia, serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
}

/* Breaking News Banner */
.breaking-banner {
    background: linear-gradient(90deg, #cc0000 0%, #ff3333 50%, #cc0000 100%);
    color: white;
    padding: 8px 20px;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.breaking-banner a {
    color: white;
    text-decoration: none;
}

.breaking-banner a:hover {
    text-decoration: underline;
}

.breaking-banner .pulse {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Header */
.site-header {
    background: var(--bg-white);
    border-bottom: 3px solid var(--primary-red);
    padding: 15px 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    font-size: 28px;
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo:hover {
    color: var(--text-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 800;
}

.header-date {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 13px;
    color: var(--text-light);
}

/* Navigation */
.main-nav {
    background: var(--text-dark);
    padding: 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-links li a {
    display: block;
    padding: 12px 18px;
    color: white;
    text-decoration: none;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.nav-links li a:hover {
    background: var(--primary-red);
}

.nav-links li.active a {
    background: var(--primary-red);
}

/* Page Header */
.page-header {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Article Cards */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article-card {
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    gap: 25px;
    padding: 25px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s;
}

.article-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.article-card-image {
    width: 200px;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    flex-shrink: 0;
    border-radius: 4px;
}

.article-card-content {
    flex: 1;
}

.article-card-category {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 3px 10px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.article-card-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.article-card-excerpt {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-card-meta {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 12px;
    color: var(--text-light);
}

/* Featured Article */
.featured-article {
    background: white;
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
}

.featured-article:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.featured-image {
    height: 400px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
}

.featured-content {
    padding: 30px;
}

.featured-category {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 4px 12px;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.featured-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.featured-excerpt {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
}

.featured-meta {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 13px;
    color: var(--text-light);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background: white;
    border: 1px solid var(--border-color);
    padding: 25px;
}

.sidebar-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-red);
}

.trending-list {
    list-style: none;
}

.trending-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
}

.trending-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trending-item:first-child {
    padding-top: 0;
}

.trending-number {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.trending-title {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
}

.trending-item:hover .trending-title {
    color: var(--primary-red);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-family: 'Libre Franklin', sans-serif;
    font-size: 14px;
}

.newsletter-btn {
    padding: 12px 20px;
    background: var(--primary-red);
    color: white;
    border: none;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-btn:hover {
    background: var(--dark-red);
}

/* Ad Box */
.ad-box {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.ad-box h4 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ad-box p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.ad-box a {
    display: inline-block;
    background: white;
    color: var(--primary-red);
    padding: 10px 25px;
    text-decoration: none;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    font-size: 13px;
    border-radius: 3px;
    transition: transform 0.2s;
}

.ad-box a:hover {
    transform: scale(1.05);
}

/* Footer */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
}

.footer-logo {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    font-size: 24px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
    font-family: 'Libre Franklin', sans-serif;
}

.disclaimer {
    max-width: 600px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }

    .nav-links {
        display: none;
    }

    .article-card {
        flex-direction: column;
    }

    .article-card-image {
        width: 100%;
        height: 200px;
    }

    .featured-title {
        font-size: 24px;
    }

    .featured-image {
        height: 250px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
