.post-header {
    padding-top: 120px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

body {
    background: var(--background-color);

}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(156, 39, 176, 0.3), transparent 60%),
                radial-gradient(circle at bottom left, rgba(30, 176, 233, 0.3), transparent 60%);
    z-index: -1;
}

.post-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid var(--glass-border);
}

.post-content {
    background: rgba(30, 30, 36, 0.4);
    border-radius: var(--border-radius);
    padding: 2.2rem;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    height: 100%;
    backdrop-filter: blur(var(--glass-blur));
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: inset 0 0 15px var(--glass-inner);
}

.post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2.2rem;
    }
    
    .post-content {
        padding: 2rem;
    }
    
    .post-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .post-content {
        padding: 1.5rem;
    }
    
    .post-image {
        height: 250px;
    }
}