/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Georgia, serif;
    background: #fafafa;
    color: #121212;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Page Container */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
    animation: pageLoad 1s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Newspaper Header */
.newspaper-header {
    border-bottom: 4px double #000;
    padding: 20px 40px 15px;
    background: #fff;
}

.header-top {
    display: flex;
    justify-content: space-between;
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: #666;
}

.masthead {
    text-align: center;
    padding: 15px 0;
}

.newspaper-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin: 0;
    color: #000;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
    animation: titleFadeIn 1.5s ease-out;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        letter-spacing: 10px;
    }
    to {
        opacity: 1;
        letter-spacing: -1px;
    }
}

.newspaper-motto {
    font-family: 'Libre Baskerville', serif;
    font-size: 12px;
    font-style: italic;
    color: #666;
    margin-top: 5px;
}

.header-divider {
    height: 1px;
    background: #000;
    margin-top: 10px;
}

/* Main Article Container */
.article-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px;
}

/* Main Article */
.main-article {
    max-width: 700px;
}

.article-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.article-category {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #c00;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.article-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.article-meta {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #666;
    display: flex;
    gap: 10px;
    align-items: center;
}

.article-separator {
    color: #999;
}

/* Article Lede */
.article-lede {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.dropcap::first-letter {
    float: left;
    font-family: 'Libre Baskerville', serif;
    font-size: 5.5rem;
    line-height: 0.85;
    margin: 10px 10px 0 0;
    color: #000;
    font-weight: 700;
}

.article-lede p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #333;
    font-weight: 400;
}

/* Article Body */
.article-body {
    column-count: 1;
}

.article-section {
    margin-bottom: 35px;
    animation: fadeInUp 1s ease-out backwards;
}

.article-section:nth-child(1) { animation-delay: 0.2s; }
.article-section:nth-child(2) { animation-delay: 0.4s; }
.article-section:nth-child(3) { animation-delay: 0.6s; }
.article-section:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    border-left: 4px solid #c00;
    padding-left: 15px;
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: justify;
    color: #222;
}

/* Pullquote */
.pullquote {
    margin: 30px 0;
    padding: 25px 30px;
    border-left: 5px solid #c00;
    background: #f9f9f9;
    position: relative;
    animation: slideInPullquote 1s ease-out;
}

@keyframes slideInPullquote {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pullquote::before {
    content: '"';
    font-family: 'Libre Baskerville', serif;
    font-size: 4rem;
    color: #c00;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
}

.pullquote p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    color: #000;
    font-weight: 600;
}

/* Conclusion Section */
.conclusion {
    background: linear-gradient(to bottom, #fff 0%, #f5f5f5 100%);
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-top: 40px;
}

/* Article Footer */
.article-footer {
    margin-top: 40px;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(to right, #000 0%, #999 50%, #000 100%);
    margin-bottom: 20px;
}

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

.tag {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    padding: 6px 12px;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #e0e0e0;
    border-color: #999;
    color: #333;
}

/* Sidebar */
.sidebar {
    padding-top: 50px;
}

.sidebar-section {
    margin-bottom: 35px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 3px;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.sidebar-title {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    border-bottom: 2px solid #c00;
    padding-bottom: 8px;
}

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

.sidebar-list li {
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

.sidebar-list li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: #c00;
}

.sidebar-list a {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-list a:hover {
    color: #c00;
    text-decoration: underline;
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    border: none;
}

.contact-box .sidebar-title {
    color: #fff;
    border-bottom-color: #c00;
}

.contact-box p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #ddd;
}

.contact-link {
    display: inline-block;
    color: #fff;
    background: #c00;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(192, 0, 0, 0.3);
}

.privacy-note {
    font-size: 11px;
    font-style: italic;
    color: #aaa;
}

/* Newspaper Footer */
.newspaper-footer {
    padding: 30px 40px;
    background: #f5f5f5;
    text-align: center;
}

.footer-text {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .newspaper-title {
        font-size: 2.5rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-container {
        padding: 20px;
    }
    
    .dropcap::first-letter {
        font-size: 4rem;
    }
}

/* Print Styles */
@media print {
    .sidebar,
    .contact-box {
        display: none;
    }
    
    .page-container {
        box-shadow: none;
    }
}