:root {
    --primary-color: #E50914;
    --ink-color: #1a1a1a;
    --subtext-color: #555;
    --border-color: #ddd;
    --bg-color: #f9f9f9;
    --muted-color: #f0f0f0;
    --link-color: #0056b3;
    --font-family: 'Roboto', sans-serif;
    --font-family-headings: 'Georgia', serif;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-family);
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-color);
    background-color: var(--bg-color);
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}
.site-header {
    border-bottom: 1px solid var(--border-color);
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 40px;
}
.lang-nav a {
    margin-left: 15px;
    color: var(--subtext-color);
    text-decoration: none;
    font-weight: 500;
}
.lang-nav a:hover {
    color: var(--primary-color);
}
main {
    flex-grow: 1;
    padding: 40px 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    color: var(--ink-color);
    line-height: 1.3;
}
h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.75em; }

.article-meta {
    margin-bottom: 20px;
    color: var(--subtext-color);
}
.article-meta .category {
    font-weight: bold;
    color: var(--primary-color);
}
.article img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}
.site-footer {
    background-color: #1c1c1c;
    color: #a0a0a0;
    padding: 40px 20px;
    font-size: 0.9em;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid > div {
    flex: 1;
    min-width: 250px;
}
.footer-grid a {
    color: #ffffff;
    text-decoration: none;
}
.footer-grid a:hover {
    text-decoration: underline;
}
.copyright {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
}
.byline {
    font-size: 0.9em;
    color: var(--subtext-color);
    margin-bottom: 1em;
}
.byline .badge {
    background-color: var(--primary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}
.source {
    font-style: italic;
}
.figure {
    margin: 0 0 1em;
}
.figure img {
    width: 100%;
    border-radius: 5px;
}
.figure figcaption {
    font-size: 0.8em;
    color: var(--subtext-color);
    text-align: center;
    margin-top: 5px;
}
.article h1 {
    margin-bottom: 0.5em;
}
.article p {
    margin-bottom: 1.5em;
}
hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 2em 0;
}
.source-link a {
    color: var(--link-color);
    font-weight: bold;
}
