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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Zwiększony offset dla sticky navigation */
}

/* Add scroll margin to H2 headings */
.article-body h2 {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: 
        radial-gradient(circle at 15% 20%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.2) 0%, transparent 45%),
        radial-gradient(circle at 90% 40%, rgba(168, 85, 247, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 10% 90%, rgba(236, 72, 153, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, #0a0510 0%, #140a2e 30%, #1f1456 60%, #140a2e 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 40%, rgba(168, 85, 247, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 600px 800px at 80% 60%, rgba(236, 72, 153, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 700px 500px at 60% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 500px 700px at 40% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 65%);
    animation: nebulaSlow 30s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes nebulaSlow {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    25% { 
        transform: translateX(20px) translateY(-15px) rotate(1deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateX(-10px) translateY(20px) rotate(-0.5deg);
        opacity: 0.9;
    }
    75% { 
        transform: translateX(15px) translateY(10px) rotate(0.5deg);
        opacity: 0.7;
    }
}

/* Stars */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.stars::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 100px, white, transparent),
        radial-gradient(1px 1px at 150px 200px, white, transparent),
        radial-gradient(2px 2px at 250px 50px, white, transparent),
        radial-gradient(1px 1px at 350px 150px, white, transparent),
        radial-gradient(1px 1px at 450px 250px, white, transparent),
        radial-gradient(2px 2px at 550px 75px, white, transparent);
    background-repeat: repeat;
    background-size: 800px 500px;
    animation: starTwinkle1 3s ease-in-out infinite;
}

.stars::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 300px 325px, white, transparent),
        radial-gradient(2px 2px at 400px 425px, white, transparent),
        radial-gradient(1px 1px at 500px 375px, white, transparent),
        radial-gradient(1px 1px at 600px 475px, white, transparent);
    background-repeat: repeat;
    background-size: 800px 700px;
    animation: starTwinkle2 4s ease-in-out infinite 1.5s;
}

@keyframes starTwinkle1 {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

@keyframes starTwinkle2 {
    0% { opacity: 0.5; }
    50% { opacity: 0.8; }
    100% { opacity: 0.5; }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

/* Top Navigation - Updated */
.top-nav {
    padding: 16px 0;
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-link {
    text-decoration: none;
}

.logo {
    font-size: 1.4em;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
}

.logo:hover {
    color: #c5a572;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle:hover {
    background: rgba(197, 165, 114, 0.2);
    border-color: rgba(197, 165, 114, 0.4);
    color: #c5a572;
}

.dropdown-arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(197, 165, 114, 0.1);
    color: #c5a572;
}

.current-category .category-badge {
    background: rgba(197, 165, 114, 0.15);
    color: #c5a572;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85em;
    font-weight: 500;
    border: 1px solid rgba(197, 165, 114, 0.3);
}

.cta-nav-btn {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 1px solid #c5a572;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.cta-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
    border-color: #d4af37;
}

.site-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #ffffff;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6, #c5a572);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #c5a572;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: rgba(197, 165, 114, 0.15);
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(197, 165, 114, 0.3);
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.article-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #c5a572, #8b5cf6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    border-color: #c5a572;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.article-card:hover::before {
    opacity: 1;
}

.article-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-category {
    font-size: 0.8em;
    color: #c5a572;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    margin-bottom: 16px;
    flex-grow: 1;
}

.article-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-title a:hover {
    color: #c5a572;
}

.article-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: auto;
}

.read-more {
    color: #a855f7;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.read-more:hover {
    color: #c5a572;
}

/* No Articles */
.no-articles {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.no-articles h3 {
    color: #c5a572;
    margin-bottom: 16px;
    font-size: 1.5em;
}

.no-articles p {
    color: rgba(255, 255, 255, 0.7);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.pagination-btn,
.pagination-number {
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pagination-btn:hover,
.pagination-number:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #c5a572;
}

.pagination-number.active {
    background: rgba(197, 165, 114, 0.15);
    border-color: #d4af37;
    color: #d4af37;
}

.pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-dots {
    color: rgba(255, 255, 255, 0.5);
    padding: 0 8px;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(197, 165, 114, 0.2);
    padding: 40px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.site-footer p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

/* Single Article Styles */
.nav-category {
    display: flex;
    align-items: center;
}

.category-link {
    color: #c5a572;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: #d4af37;
}

.article-header {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

.article-category-badge {
    display: inline-block;
    background: rgba(197, 165, 114, 0.15);
    color: #c5a572;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(197, 165, 114, 0.3);
}

.article-main-title {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, #c5a572);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.article-meta-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

.article-date {
    color: #c5a572;
}

.reading-time {
    color: rgba(255, 255, 255, 0.6);
}

.keywords-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.keyword-tag {
    background: rgba(168, 85, 247, 0.2);
    color: #a855f7;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8em;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-body {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.article-body h1 {
    /* Usuń H1 z treści artykułu - mamy już H1 w header */
    display: none;
}

.article-body h2 {
    color: #c5a572;
    font-size: 1.6em;
    margin: 32px 0 16px;
    font-weight: 600;
}

.article-body h3 {
    color: #ffffff;
    font-size: 1.3em;
    margin: 24px 0 12px;
    font-weight: 500;
}

.article-featured-image {
    margin: 32px 0;
    text-align: center;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.article-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
    max-width: 100%;
}

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

/* Table of Contents */
.table-of-contents {
    background: rgba(197, 165, 114, 0.1);
    border: 1px solid rgba(197, 165, 114, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
}

.toc-title {
    color: #c5a572;
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list {
    list-style: none;
    counter-reset: toc-counter;
}

.toc-list li {
    counter-increment: toc-counter;
    margin-bottom: 8px;
}

.toc-list li::before {
    content: counter(toc-counter) ".";
    color: #c5a572;
    font-weight: 600;
    margin-right: 8px;
    min-width: 20px;
    display: inline-block;
}

.toc-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95em;
    line-height: 1.4;
}

.toc-list a:hover {
    color: #c5a572;
}

.article-body p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
}

.article-body strong {
    color: #ffffff;
    font-weight: 600;
}

.article-body a {
    color: #a855f7;
    text-decoration: none;
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
}

.article-body a:hover {
    color: #c5a572;
    border-bottom-color: rgba(197, 165, 114, 0.5);
}

.article-footer {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 40px;
}

.article-tags {
    margin-bottom: 24px;
}

.article-tags h4 {
    color: #c5a572;
    margin-bottom: 12px;
    font-size: 1.1em;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.85em;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.share-buttons h4 {
    color: #c5a572;
    margin-bottom: 12px;
    font-size: 1.1em;
}

.social-share {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9em;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.article-cta {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 48px;
}

.cta-content h3 {
    color: #a855f7;
    font-size: 1.8em;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 1px solid #c5a572;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
    border-color: #d4af37;
}

.related-articles {
    margin-bottom: 48px;
}

.related-articles h3 {
    color: #c5a572;
    font-size: 2em;
    margin-bottom: 32px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.related-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    border-color: #c5a572;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.related-category {
    font-size: 1.5em;
    margin-bottom: 12px;
}

.related-title {
    margin-bottom: 12px;
}

.related-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.related-title a:hover {
    color: #c5a572;
}

.related-excerpt {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    line-height: 1.5;
}

.related-link {
    color: #a855f7;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.related-link:hover {
    color: #c5a572;
}

.breadcrumbs {
    margin: 32px 0;
    padding: 16px 0;
    border-top: 1px solid rgba(197, 165, 114, 0.2);
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    align-items: center;
}

.breadcrumb-list li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9em;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-list a {
    color: #c5a572;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #d4af37;
}

.breadcrumb-list .active {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .page-header h1 {
        font-size: 2em;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8em;
    }
    
    .nav-left {
        gap: 16px;
    }
    
    .nav-right {
        gap: 12px;
    }
    
    .current-category {
        display: none; /* Hide on mobile */
    }
    
    .dropdown-menu {
        min-width: 180px;
        right: 0;
        left: auto;
    }
    
    .cta-nav-btn {
        padding: 8px 16px;
        font-size: 0.8em;
    }
    
    .table-of-contents {
        padding: 20px;
    }
    
    .toc-title {
        font-size: 1.1em;
    }
    
    .pagination {
        gap: 8px;
    }
    
    .pagination-btn,
    .pagination-number {
        padding: 8px 12px;
        font-size: 0.8em;
    }
    
    /* Single article mobile styles */
    .article-main-title {
        font-size: 2.2em;
    }
    
    .article-meta-header {
        flex-direction: column;
        gap: 12px;
    }
    
    .article-body {
        padding: 24px;
    }
    
    .article-featured-image {
        margin: 32px 0;
    }
    
    .article-featured-image img {
        height: 250px; /* Smaller height on mobile */
    }
    
    .article-cta {
        padding: 24px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .social-share {
        justify-content: center;
    }
    
    .breadcrumb-list {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .article-card {
        margin-bottom: 20px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-image {
        height: 180px;
    }
    
    .page-header h1 {
        font-size: 1.8em;
    }
    
    .page-header p {
        font-size: 1em;
    }
    
    .article-main-title {
        font-size: 1.8em;
    }
    
    .article-body {
        padding: 20px;
    }
    
    .article-cta {
        padding: 20px;
    }
}
/* SEO Description Section - dodaj na końcu pliku styles.css */
.seo-description {
    margin-top: 40px;
    margin-bottom: 48px;
}

.seo-content {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 165, 114, 0.15);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    max-width: 100%;
}

.seo-section {
    margin-bottom: 24px;
}

.seo-section:last-child {
    margin-bottom: 0;
}

.seo-section h2 {
    font-size: 1.1em;
    font-weight: 500;
    color: rgba(197, 165, 114, 0.8);
    margin-bottom: 12px;
    line-height: 1.4;
}

.seo-section p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.95em;
}

.show-more-btn {
    background: none;
    border: 1px solid rgba(197, 165, 114, 0.3);
    color: rgba(197, 165, 114, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9em;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.show-more-btn:hover {
    background: rgba(197, 165, 114, 0.1);
    border-color: rgba(197, 165, 114, 0.5);
    color: #c5a572;
}

.btn-icon {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.show-more-btn[aria-expanded="true"] .btn-icon {
    transform: rotate(180deg);
}

.seo-text-wrapper {
    position: relative;
}

.seo-collapsed-content {
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .seo-description {
        margin-top: 40px;
        padding: 32px 0;
    }
    
    .seo-content {
        padding: 24px;
    }
    
    .seo-section h2 {
        font-size: 1.05em;
    }
    
    .seo-section p {
        font-size: 0.9em;
    }
    
    .show-more-btn {
        padding: 8px 16px;
        font-size: 0.85em;
    }
}

@media (max-width: 480px) {
    .seo-content {
        padding: 20px;
    }
    
    .seo-section {
        margin-bottom: 20px;
    }
    
    .seo-section h2 {
        font-size: 1em;
    }
}