html {
    max-width: 100%;
    overflow-x: hidden;
}

body.repertoire-premium {
    background: #0A0A0A;
    color: #E5E7EB;
    max-width: 100%;
    overflow-x: hidden;
}

body.repertoire-premium * {
    box-sizing: border-box;
}

.rep-hero {
    position: relative;
    min-height: 76vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0) 28%),
        linear-gradient(135deg, #0A0A0A 0%, #121820 48%, #231d16 100%);
}

.rep-hero-media {
    position: absolute;
    inset: 0 0 0 58%;
    background-size: cover;
    background-position: center top;
    opacity: 0.9;
}

.rep-hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, #0A0A0A 0%, rgba(10, 10, 10, 0.78) 24%, rgba(10, 10, 10, 0.15) 62%),
        linear-gradient(to top, rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.08) 50%);
}

.rep-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0), #111820);
}

.rep-kicker {
    color: #D4AF37;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.rep-section-dark {
    background: #111820;
}

.rep-section-warm {
    background: #F6F1E7;
    color: #151515;
}

.rep-panel {
    border: 1px solid rgba(212, 175, 55, 0.26);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.rep-warm-card {
    border: 1px solid rgba(35, 29, 22, 0.12);
    border-radius: 8px;
    background: #FFFDF8;
    box-shadow: 0 20px 60px rgba(20, 20, 20, 0.08);
}

.rep-image {
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.rep-video {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.24);
    background: #0A0A0A;
}

.rep-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.rep-video iframe:not([src]) {
    display: none;
}

.rep-video-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #D4AF37;
    text-align: center;
    font-weight: 700;
    background:
        linear-gradient(rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.82)),
        url('/images/The_suited_singer_4.avif') center / cover;
    text-decoration: none;
}

.rep-video-fallback:hover {
    color: #F5D76E;
}

.rep-video iframe[src] + .rep-video-fallback {
    display: none;
}

.rep-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 999px;
    padding: 0.6rem 0.9rem;
    color: #F3F4F6;
    background: rgba(10, 10, 10, 0.38);
    font-size: 0.9rem;
}

.rep-song-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 1rem;
    color: #D1D5DB;
    font-size: 0.92rem;
}

.rep-song-list span {
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    padding-bottom: 0.45rem;
}

@media (max-width: 900px) {
    body.repertoire-premium [data-aos="fade-left"],
    body.repertoire-premium [data-aos="fade-right"] {
        transform: none !important;
    }

    .rep-hero {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 72px;
    }

    .rep-hero-media {
        inset: 0;
        opacity: 0.42;
    }

    .rep-hero-media::before {
        background: linear-gradient(to top, rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0.52));
    }
}

@media (max-width: 640px) {
    .rep-song-list {
        grid-template-columns: 1fr;
    }
}
