:root {
    --brand-red: #cc0000;
    --headline-dark: #3f2c2e;
    --text-body: #333333;
    --meta-grey: #8d8d8d;
    --bg-white: #ffffff;
    --border-color: #eeeeee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.main-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 2px solid var(--brand-red);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-icon {
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
}

.logo img {
    height: 35px;
    display: block;
}

.search-icon {
    color: #333;
    cursor: pointer;
}

/* Sub Nav */
.sub-nav {
    background: #f8f8f8;
    border-bottom: 1px solid var(--border-color);
}

.sub-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 10px 0;
}

.sub-nav a {
    text-decoration: none;
    color: #666;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.sub-nav a:hover,
.sub-nav a.active {
    color: var(--brand-red);
}

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-top: 30px;
}

.main-content {
    max-width: 760px;
}

/* Article Header */
.article-header {
    margin-bottom: 25px;
}

.headline {
    font-family: 'Merriweather', serif;
    font-size: 42px;
    line-height: 1.1;
    color: var(--headline-dark);
    font-weight: 900;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
}

.article-meta {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    font-size: 13px;
    color: var(--meta-grey);
}

.author-name {
    color: #333;
    font-weight: bold;
}

/* Featured Image */
.featured-image {
    margin-bottom: 30px;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-image figcaption {
    font-size: 13px;
    color: #888;
    margin-top: 8px;
    font-style: italic;
}

/* Article Body */
.article-body {
    font-size: 18px;
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body h3 {
    font-family: 'Merriweather', serif;
    margin: 30px 0 15px;
    font-size: 24px;
    color: var(--headline-dark);
}

.article-body ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-body li {
    margin-bottom: 10px;
}

/* CTA Box with Glassmorphism / Premium feel */
.cta-box {
    background: rgba(249, 249, 249, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 0, 0, 0.2);
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(204, 0, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h4 {
    color: var(--brand-red);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 900;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-red) 0%, #990000 100%);
    color: white;
    text-decoration: none;
    padding: 20px 45px;
    font-weight: bold;
    font-size: 20px;
    border-radius: 50px;
    margin-top: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(204, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(204, 0, 0, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 20px rgba(204, 0, 0, 0.2);
    }
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 40px rgba(204, 0, 0, 0.5);
    animation: none;
}

/* Sidebar */
.sidebar {
    padding-top: 10px;
}

.widget {
    margin-bottom: 40px;
}

.widget h3 {
    font-size: 16px;
    border-bottom: 2px solid var(--brand-red);
    margin-bottom: 15px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.widget.lidas ul {
    list-style: none;
}

.widget.lidas li {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.widget .rank {
    font-size: 32px;
    font-weight: 900;
    color: #eee;
    line-height: 1;
}

.widget p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.ad-placeholder {
    background: #f0f0f0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
    letter-spacing: 2px;
}

/* Footer */
.main-footer {
    background: #222;
    color: #999;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
    border-radius: 50%;
    border: 2px solid #333;
}

.footer-links ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Responsiveness */
@media (max-width: 900px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .headline {
        font-size: 32px;
    }
}