:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --warning-bg: #fff3cd;
    --warning-text: #856404;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo .highlight {
    color: var(--accent-color);
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--accent-color);
}

/* Main Content */
.content-wrapper {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.main-article {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    animation: fadeIn 0.8s ease-out;
}

.article-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-tag {
    background: #eef6fc;
    color: var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 20px 0;
    line-height: 1.3;
}

.meta-info {
    font-size: 0.95rem;
    color: #888;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.featured-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.02);
}

.article-body {
    font-size: 1.1rem;
    color: #4a4a4a;
}

.intro-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
    padding-left: 20px;
}

.article-body h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.article-body p {
    margin-bottom: 20px;
}

.info-box {
    background-color: #f0f4f8;
    border: 1px solid #dce4ec;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #34495e;
    padding-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.legal-warning {
    flex: 2;
    min-width: 300px;
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.legal-warning h4 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.legal-warning p {
    font-size: 0.95rem;
    color: #bdc3c7;
    line-height: 1.5;
}

.copyright {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

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

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
}
