/* Hero Section */
.hero-music {
    height: 80vh;
    background: url('../images/hero-11.jpg') center/cover no-repeat;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-music::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(245,166,35,0.2));
    z-index: 0;
    animation: pulseBg 1s ease-in-out infinite alternate;
}

.hero-music .hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: fadeInUp 1s ease-out;
}

.hero-music .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    color: #fff;
}

.hero-music .hero-content p {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-music .btn-explore {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #000;
    color: #fff;
    font-weight: 500;
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-music .btn-explore.pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-music .btn-explore:hover {
    background-color: #F5A623;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245,166,35,0.4);
}

.hero-music .btn-explore:focus {
    outline: 3px solid #F5A623;
    outline-offset: 3px;
}

/* Featured Artist Section */
.featured-artist {
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    padding: 5rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.artist-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.artist-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.artist-image img:hover {
    transform: scale(1.05);
}

.artist-info {
    flex: 1;
}

.artist-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.artist-bio {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.streaming-links {
    display: flex;
    gap: 1rem;
}

.btn-stream {
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-stream.yt {
    background-color: #FF0000;
}

.btn-stream.yt:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(204,0,0,0.4);
}

.btn-stream.dz {
    background: linear-gradient(45deg, #ff0000, #ffed00, #00ff85, #00aaff, #a600ff);
}

.btn-stream.dz:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.btn-stream.sp {
    background-color: #1DB954;
}

.btn-stream.sp:hover {
    background-color: #169b45;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(22,155,69,0.4);
}

/* Release Section */
.release {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    overflow: hidden;
}

.release-slider {
    display: flex;
    width: calc(300px * 24 + 1.5rem * 23);  /* For 12 originals + 12 duplicates */
    overflow-x: hidden;
    gap: 1.5rem;
    padding: 0 1rem;
    animation: slide 90s linear infinite;  /* Adjusted duration for consistent speed */
    will-change: transform;
}

.release-slider:hover,
.release-slider:focus-within {
    animation-play-state: paused;
}

.release-card {
    flex: 0 0 300px;
    text-align: center;
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.release-card:hover,
.release-card:focus {
    animation: none;
    box-shadow: 0 8px 20px rgba(245,166,35,0.4);
    border: 2px solid #F5A623;
}

.release-art {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.release-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: #111;
}

.release-artist {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
}

.release-links {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.btn-stream {
    padding: 0.6rem 1.2rem;
    background-color: #ff5500;
    color: #fff;
    border-radius: 2rem;
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-stream.youtube {
    background-color: #FF0000;
}

.btn-stream.spotify {
    background-color: #1db954;
}

.btn-stream:hover,
.btn-stream:focus {
    background-color: #F5A623;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245,166,35,0.4);
}

.btn-stream:focus {
    outline: 3px solid #F5A623;
    outline-offset: 3px;
}



/* Genre Section */
.genre-section {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #f8f8f8, #f0f0f0);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.genre-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.genre-section .section-subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.genre-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    animation: fadeInUp 0.5s ease-out;
}

.genre-card:hover {
    transform: translateY(-4px) rotate(2deg);
    box-shadow: 0 8px 20px rgba(245,166,35,0.4);
}

.genre-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #F5A623;
}

.genre-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5rem;
}

.genre-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Story Section */
.story-section {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #fafafa, #e8e8e8);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.story-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.5rem;
}

.story-section .section-subtitle {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.story-heading {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #111;
}

.top10-list {
    list-style-position: inside;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: left;
    color: #333;
}

.top10-list li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    animation: fadeInUp 0.5s ease-out;
}

.btn-readmore {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    background-color: #000;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-readmore:hover {
    background-color: #F5A623;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245,166,35,0.4);
}

.btn-readmore:focus {
    outline: 3px solid #F5A623;
    outline-offset: 3px;
}

/* Spotlight Section */
.spotlight {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.spotlight-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.spotlight-image img:hover {
    transform: scale(1.05);
}

.spotlight-content {
    flex: 1;
}

.btn-read {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    text-decoration: none;
    background-color: #000;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-read:hover {
    background-color: #F5A623;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245,166,35,0.6);
}

.btn-read:focus {
    outline: 3px solid #F5A623;
    outline-offset: 3px;
}

/* Banner Section */
.banner {
    background: #111;
    color: #fff;
    padding: 5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.banner-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-banner {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    color: #fff;
    background-color: transparent;
    border: 1px solid #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-banner:hover {
    background-color: #F5A623;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245,166,35,0.4);
}

.btn-banner:focus {
    outline: 3px solid #F5A623;
    outline-offset: 3px;
}

/* Visual Break */
.visual-break {
    background: linear-gradient(to bottom, #f0f0f0, #e8e8e8);
    padding: 4rem 1rem;
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-size: 1.5rem;
    font-style: italic;
    color: #111;
    margin-bottom: 1rem;
}

.author {
    font-size: 1rem;
    color: #555;
}

/* Animations */
@keyframes pulseBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.02); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-300px * 12 - 1.5rem * 11)); }  /* Slide by original 12 cards */
}

/* Responsive */
@media (max-width: 768px) {
@media (max-width: 768px) {
    .hero-music {
        height: 60vh;
        padding: 1.5rem;
    }

    .hero-music .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-music .hero-content p {
        font-size: 1.1rem;
    }

    .artist-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .artist-info {
        padding-top: 1rem;
    }

    .release {
        padding: 3rem 1rem;
    }

    .release-slider {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;  /* Snap to cards on swipe */
    }

    .release-card {
        flex: 0 0 300px;
        scroll-snap-align: start;  /* Align cards on snap */
    }

    .genre-grid {
        grid-template-columns: 1fr;
    }

    .story-section {
        padding: 3rem 1rem;
    }

    .genre-card,
    .top10-list li {
        animation: none; /* Disable animations on mobile for performance */
    }
}

    .genre-grid {
        grid-template-columns: 1fr;
    }

    .story-section {
        padding: 3rem 1rem;
    }

    .genre-card,
    .top10-list li {
        animation: none; /* Disable animations on mobile for performance */
    }
}

@media (max-width: 480px) {
    .hero-music .hero-content h1 {
        font-size: 2rem;
    }

    .hero-music .hero-content p {
        font-size: 1rem;
    }

    .artist-name {
        font-size: 2rem;
    }

    .btn-stream {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .release-title {
        font-size: 1.2rem;
    }

    .release-artist {
        font-size: 0.8rem;
    }

    .genre-section,
    .story-section {
        padding: 2rem 1rem;
    }

    .story-section .section-title {
        font-size: 1.8rem;
    }

    .story-section .section-subtitle {
        font-size: 0.9rem;
    }
}