/* blog-header.css */
.blog-header-main {
    background: 
        linear-gradient(135deg, rgba(219, 52, 49, 0.95) 0%, rgba(31, 41, 55, 0.95) 100%),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="%23050506"/><rect width="1200" height="600" fill="url(%23grid)"/><circle cx="200" cy="100" r="3" fill="rgba(255,255,255,0.3)"/><circle cx="400" cy="200" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="800" cy="150" r="2.5" fill="rgba(255,255,255,0.25)"/><circle cx="1000" cy="300" r="3" fill="rgba(255,255,255,0.3)"/><circle cx="600" cy="400" r="2" fill="rgba(255,255,255,0.2)"/><path d="M 100 500 Q 300 450 500 500 T 900 500" stroke="rgba(255,255,255,0.15)" stroke-width="2" fill="none"/><path d="M 200 50 L 250 100 L 300 50 L 350 100" stroke="rgba(219,52,49,0.3)" stroke-width="3" fill="none" stroke-dasharray="5,5"/><circle cx="150" cy="400" r="40" fill="none" stroke="rgba(219,52,49,0.2)" stroke-width="2"/><circle cx="900" cy="200" r="50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.blog-header-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(219, 52, 49, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.blog-header-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.blog-header-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-header-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.blog-header-title-main {
    display: block;
}

.blog-header-title-accent {
    display: block;
    color: #ffd700;
    font-size: 0.75em;
    font-weight: 700;
}

.blog-header-description {
    font-size: 1.15rem;
    color: #f3f4f6;
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.blog-header-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
    justify-content: center;
}

.blog-header-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #e5e7eb;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.blog-header-feature i {
    color: #ffd700;
    font-size: 1.1rem;
}

.blog-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.05rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #ffffff;
    color: #db3431;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.blog-header-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    background: #ffd700;
    color: #050506;
}

.blog-header-btn i {
    transition: transform 0.3s ease;
}

.blog-header-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-header-main {
        padding: 60px 20px;
    }
    
    .blog-header-text h1 {
        font-size: 2.5rem;
    }
    
    .blog-header-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .blog-header-main {
        padding: 50px 16px;
    }
    
    .blog-header-text h1 {
        font-size: 2.2rem;
    }
    
    .blog-header-description {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .blog-header-main {
        padding: 40px 12px;
    }
    
    .blog-header-text h1 {
        font-size: 1.8rem;
    }
    
    .blog-header-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .blog-header-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 24px;
    }
    
    .blog-header-feature {
        font-size: 0.9rem;
    }
    
    .blog-header-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 24px;
        font-size: 1rem;
        box-sizing: border-box;
    }
}
