body {
    font-family: system-ui, Arial, sans-serif;
    margin: 0;
    background: #0b0b0b;
    color: #f2f2f2;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 24px;
}

.brand {
    display: flex;
    gap: 16px;
    align-items: center;
}

.logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 12px;
    background: #111;
}

.subtitle {
    margin: 6px 0 0;
    opacity: .8;
}

.player audio {
    width: 100%;
    margin-top: 16px;
}

.carousel {
    margin-top: 24px;
}

.carousel-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .35s ease;
}

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.caption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(0,0,0,.55);
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 14px;
}

.carousel-controls {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

    .carousel-controls button {
        padding: 10px 14px;
        border-radius: 12px;
        border: 0;
        background: #222;
        color: #fff;
        cursor: pointer;
    }

        .carousel-controls button:hover {
            background: #2c2c2c;
        }

.muted {
    opacity: .7;
}
