#blog-header {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(0, 0, 0, 0.5)), url('../img/blogBack.webp');
    background-size: cover;
}

/* Featured Section */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background-clip: text;
}

.card-custom {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    border-color: var(--primary-color);
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-custom:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.card-text {
    color: rgba(21, 36, 53, 0.7);
    line-height: 1.6;
}

.read-more-btn {
    background: var(--gradient);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Music Player Widget */
.music-player {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: sticky;
    top: 100px;
}

.album-art {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
}

.control-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.control-btn.play {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

/* Responsive */
@media (max-width: 768px) {

    .section-title {
        font-size: 2rem;
    }

    .album-art {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
}