:root {
    --color-flame-dark: #8b0000;
    --color-flame-mid: #c41e3a;
    --color-flame-bright: #ff6b35;
    --color-flame-glow: #ff8c42;
    --color-ink: #1a1a1a;
    --color-ink-light: #4a4a4a;
    --color-paper: #faf8f5;
    --color-paper-dark: #f0ebe3;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', sans-serif;
    --content-width: 720px;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-ink);
    background: var(--color-paper);
    line-height: 1.7;
}

a { color: var(--color-flame-dark); text-decoration: none; }
a:hover { color: var(--color-flame-mid); }

.site-header {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.header-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}.header-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.site-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 500;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.site-title a { color: #ffffff; }
.site-title a:hover { color: #ffffff; }

.site-subtitle {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.8);
}

.accent-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--color-flame-dark), var(--color-flame-mid), var(--color-flame-bright), var(--color-flame-glow));
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--color-paper-dark);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.main-nav a {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--color-ink-light);
}

.main-nav a:hover { color: var(--color-flame-dark); }
.main-nav a.active { color: var(--color-flame-dark); }

.main-content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.page-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-paper-dark);
}

.page-intro h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.page-intro p {
    font-size: 1.1rem;
    color: var(--color-ink-light);
}

.featured-article { margin-bottom: 4rem; }

.featured-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-flame-mid);
    margin-bottom: 1rem;
}

.featured-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.featured-content { padding: 2rem; }
.featured-content .article-title { font-size: 1.8rem; margin-bottom: 1rem; }

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.article-card {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-paper-dark);
}

.article-meta {
    font-size: 0.85rem;
    color: var(--color-ink-light);
    margin-bottom: 0.5rem;
}

.category {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.category.opinie { color: var(--color-flame-dark); }
.category.essay { color: #2d5a27; }
.category.column { color: #1a4a6e; }

.article-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.article-title a { color: var(--color-ink); }
.article-title a:hover { color: var(--color-flame-dark); }

.article-excerpt {
    color: var(--color-ink-light);
    line-height: 1.6;
}

.article-page .article-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.article-image {
    margin: 2rem 0;
}

.article-image img {
    width: 100%;
    border-radius: 8px;
}

.article-content {
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.8;
}

.article-content p { margin-bottom: 1.5rem; }

.article-content blockquote {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--color-flame-mid);
    background: rgba(139, 0, 0, 0.05);
    font-style: italic;
}

.share-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-paper-dark);
}

.share-section .label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-ink-light);
    margin-bottom: 0.75rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 4px;
    background: var(--color-paper-dark);
    color: var(--color-ink-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.share-btn svg { width: 18px; height: 18px; }
.share-btn:hover { transform: scale(1.1); }
.share-btn.whatsapp:hover { background: #25D366; color: white; }
.share-btn.facebook:hover { background: #1877F2; color: white; }
.share-btn.twitter:hover { background: #000000; color: white; }
.share-btn.bluesky:hover { background: #0085FF; color: white; }
.share-btn.linkedin:hover { background: #0A66C2; color: white; }
.share-btn.link:hover { background: var(--color-flame-mid); color: white; }

.about-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #1a0a0a 0%, #2d0f0f 100%);
    border-radius: 12px;
    color: #ffffff;
}

.about-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-section p { color: rgba(255, 255, 255, 0.8); margin-bottom: 1.5rem; }
.about-section em { color: var(--color-flame-glow); font-style: normal; }
.read-more { color: var(--color-flame-glow); font-weight: 500; }

.page-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.page-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--color-flame-dark);
}

.page-content p { margin-bottom: 1.25rem; line-height: 1.8; }
.page-content em { color: var(--color-flame-dark); }

.contact-form { margin-top: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--color-paper-dark);
    border-radius: 6px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-flame-mid);
}

.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(135deg, var(--color-flame-dark), var(--color-flame-mid));
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
    color: #ffffff;
}

.error-page { text-align: center; padding: 4rem 1.5rem; }

.error-code {
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 600;
    color: var(--color-flame-dark);
    opacity: 0.3;
}

.error-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-message {
    color: var(--color-ink-light);
    margin-bottom: 2rem;
}

.site-footer {
    background: #1a0a0a;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: var(--content-width);
    margin: 0 auto;
    text-align: center;
}

.footer-share { margin-bottom: 2rem; }
.footer-share p { font-size: 0.9rem; margin-bottom: 1rem; }

.footer-share-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.footer-share-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-share-btn svg { width: 18px; height: 18px; }
.footer-share-btn:hover { border-color: transparent; transform: scale(1.1); }
.footer-share-btn.whatsapp:hover { background: #25D366; color: white; }
.footer-share-btn.facebook:hover { background: #1877F2; color: white; }
.footer-share-btn.twitter:hover { background: #ffffff; color: #000000; }
.footer-share-btn.bluesky:hover { background: #0085FF; color: white; }
.footer-share-btn.linkedin:hover { background: #0A66C2; color: white; }
.footer-share-btn.link:hover { background: var(--color-flame-mid); color: white; }

.footer-links { margin-bottom: 1.5rem; }
.footer-links a { color: rgba(255, 255, 255, 0.7); margin: 0 1rem; }
.footer-links a:hover { color: #ffffff; }
.footer-copyright { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

.no-articles { color: var(--color-ink-light); font-style: italic; }
.recent-articles h2 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 2rem; }

@media (max-width: 768px) {
    .site-header { height: 280px; }
    .site-title { font-size: 2.5rem; }
    .main-nav ul { flex-wrap: wrap; }
    .main-nav a { padding: 0.75rem 1rem; font-size: 0.9rem; }
    .page-intro h2, .page-content h2 { font-size: 2rem; }
    .article-page .article-title { font-size: 1.8rem; }
}

**Commit changes!**
