<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media (max-width: 580px) {
    
    .carousel-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: auto;
        margin-top: 0 !important;
    }

    .sidebar {
        width: 95% !important;
        padding: 0 10px 10px 10px !important;
        text-align: center;
    }

    .card-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
        width: 100px;
    }

    .card-inner {
        width: 270px !important;
        height: 270px !important;
    }

    .button-group {
        display: flex !important;
        justify-content: center;
        gap: 10px;
    }

    .button-group .btn {
        flex: 1;
        max-width: 150px;
    }

    #background-music {
        display: none;
    }

    #sidebar-title {
        font-size: 2.5rem;
        margin-top: 15px;
    }

}

.carousel-container {
    margin-top: 10px;
    padding: 0;
    min-height: 50vh;
    display: flex;
}

.sidebar {
    padding: 40px;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar h2 {
    margin: 0 0 10px 0;
}

.sidebar p {
    margin: 10px 0;
}

.sidebar button {
    margin: 15px 0;
}

.card-wrapper {
    flex: 1;
    width: 75%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.card {
    padding: 0 10px;
    --bs-card-border-color: none;
    /* background-color: green; */
}

.card-inner {
    position: relative;
    width: 85px;
    height: 480px;
    padding: 10px;
    border-radius: 10px;
    background-color: tomato;
    overflow: hidden;
    cursor: pointer;
    transition: all 1s cubic-bezier(0, 0.46, 0.32, 0.98)
}

.card-inner .image-wrapper {
    position: absolute;
    inset: 0;
}

.card-inner .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card:hover .card-inner {
    width: 130px;
}

.card.active .card-inner {
    width: 460px;
}

.card-index, .card-title {
    position: absolute;
    color: white;
    text-align: left;
    font-size: 1.5rem;
}

.card-index {
    left: 20px;
    top: 15px;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px black;
}

.card-title {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.8s ease-in-out;
    top: 40px;
    left: 20px;
    font-size: 1.3rem;
    text-shadow: 2px 2px 4px black;
}

.card.active .card-title {
    opacity: 1;
    transform: translateX(0);
}</pre></body></html>