/* Modern Premium Animations & Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

:root {
    --main-color: #ff0000;
    --text-color: #333;
    --bg-color: #fff;
    --bg-color-2: #f5f5f5;
    --border-radius: 12px;
}
/* Section Animations */
.animated-section {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animated-section:nth-child(1) {
    animation-delay: 0.1s;
}
.animated-section:nth-child(2) {
    animation-delay: 0.2s;
}
.animated-section:nth-child(3) {
    animation-delay: 0.3s;
}
.animated-section:nth-child(4) {
    animation-delay: 0.4s;
}
.animated-section:nth-child(5) {
    animation-delay: 0.5s;
}

/* Enhanced Title Styling */
.section-header {
    margin-top: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color), transparent);
    border-radius: 3px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header h2 svg {
    width: 28px;
    height: 28px;
    opacity: 0.9;
}

.section-description {
    font-size: 14px;
    opacity: 0.7;
    margin-top: 8px;
}

/* Card Hover Effects */
.album,
.artist {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.album:hover {
    transform: translateY(-8px);
}

.album__cover {
    position: relative;
    overflow: hidden;
}

.album__cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.5s;
    z-index: 1;
}

.album:hover .album__cover::before {
    left: 100%;
}

/* Premium Badge Enhancement */
.premium-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(245, 87, 108, 0.4);
    animation: pulse 2s infinite;
}

/* Section Dividers */
.section-divider {
    margin: 30px 0;
    position: relative;
    text-align: center;
}

.section-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(
        90deg,
        #f65656,
        rgba(255, 255, 255, 0.8),
        #f65656
    );
}

.section-divider span {
    position: relative;
    background: var(--body-bg);
    padding: 0 20px;
    color: #f65656;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Enhanced Premium Showcase */
.premium-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    margin: 40px 0;
}

.premium-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    animation: pulse 3s ease-in-out infinite;
}

.premium-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.premium-icon svg {
    width: 40px;
    height: 40px;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin: 35px 0;
    position: relative;
    z-index: 1;
}

.premium-feature {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.premium-feature:nth-child(1) {
    animation-delay: 0.1s;
}
.premium-feature:nth-child(2) {
    animation-delay: 0.2s;
}
.premium-feature:nth-child(3) {
    animation-delay: 0.3s;
}
.premium-feature:nth-child(4) {
    animation-delay: 0.4s;
}

.premium-feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.premium-feature:hover .premium-feature-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.premium-cta {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.premium-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(102, 126, 234, 0.1),
        transparent
    );
    transition: left 0.5s;
}

.premium-cta:hover::before {
    left: 100%;
}

.premium-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* List Item Enhancements */
.single-item {
    transition: all 0.3s;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 8px;
}

.single-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(5px);
}

/* Carousel Navigation Enhancement */
.main__nav {
    transition: all 0.3s;
}

.main__nav:hover {
    transform: scale(1.1);
    background: var(--main-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 22px;
    }

    .premium-card {
        padding: 40px 25px;
    }

    .premium-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-divider {
        margin: 40px 0;
    }
}

/* Loading Skeleton */
.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.05) 25%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

