.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.promo-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    /* border-radius: 10px; */
    transition: all 0.3s ease;
}

.promo-image:hover {
    transform: scale(1.02);
}

.collapsible {
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
}

.content-promo {
    padding: 20px;
    display: none;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.699);
    margin-top: -5px;
}

.content-promo.active {
    display: block;
}

.content-promo h2 {
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.content-promo p {
    color: gold;
    font-weight: bold;
    margin: 15px 0;
}

.content-promo li {
    color: #ffffff;
    margin: 10px 0;
    list-style-type: disc;
    margin-left: 20px;
    line-height: 1.6;
}

.content-promo ul li {
    color: #ffffff !important;
}

.promo-buttons {
    text-align: center;
    margin-top: 15px;
}

.promo-container .row.promosi .col-md-2.d-flex.flex-column button {
    max-width: 150px;
    width: 100%;
    height: 30px;
    background-color: #FFE401;
    color: black;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow:
        0px 4px 4px 0px rgba(0, 0, 0, 0.25),
        inset 0px -8px 8px 0px rgba(252, 192, 0, 255),
        inset 0px 8px 8px 0px rgba(252, 192, 0, 255);
    border: none;
}

.promo-container .row.promosi .col-md-2.d-flex.flex-column button:hover {
    background-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(255, 217, 0, 0.692);
}

.promo-container .row.promosi .col-md-2.d-flex.flex-column {
    margin-top: 40px;
}

.promosi-description {
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
}

.promosi-description * {
    color: #ffffff !important;
}

.promosi-description font,
.promosi-description font[color],
.promosi-description font[style],
.promosi-description span,
.promosi-description p {
    color: #ffffff !important;
}

.row.promosi-m {
    display: none;
}

.row.promosi.desktop .col-md-10 {
    margin-bottom: -5px;
}

@media (max-width: 992px) {
    .row.promosi.desktop {
        display: none;
    }

    .row.promosi-m {
        display: block;
        padding: 0;
    }

    .row.promosi-m .col-lg-12 {
        padding: 10px;
        margin-bottom: 0;
    }

    .row.promosi {
        margin: 0;
        padding: 0;
    }

    .promo-item-m {
        margin-bottom: 0;
        border-radius: 0;
        overflow: hidden;
    }

    .promo-image-m {
        position: relative;
        width: 100%;
        display: block;
        height: auto;
    }

    .promo-image-m img {
        width: 100%;
        height: auto;
    }

    .promo-buttons-m {
        display: flex;
        padding: 0;
        gap: 1px;
        background: rgb(0 0 0 / 80%);
    }

    .promo-buttons-m button {
        flex: 1;
        height: 100%;
        padding: 0;
        border: none;
        border-radius: 0;
        font-weight: 600;
        cursor: pointer;
        text-transform: uppercase;
        white-space: nowrap;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }

    .btn-more-info,
    .btn-play-now, 
    .btn-join-now {
        background-color: #FFE401;
        color: black;
        border-radius: 5px;
        font-weight: bold;
        font-size: 16px;
        cursor: pointer;
        box-shadow:
            0px 4px 4px 0px rgba(0, 0, 0, 0.25),
            inset 0px -8px 8px 0px rgba(252, 192, 0, 255),
            inset 0px 8px 8px 0px rgba(252, 192, 0, 255);
        border: none;
    }

    .promo-content-m {
        padding: 20px;
        display: none;
        background-color: rgba(0, 0, 0, 0.699);
        text-align: left;
    }

    .promo-content-m h2 {
        color: #ffffff;
        margin-bottom: 15px;
        font-size: 18px;
        text-align: left;
    }

    .promosi-description {
        color: #ffffff;
        text-align: left;
    }

    .promosi-description ul {
        padding-left: 20px;
        margin: 0;
        list-style-type: none;
        text-align: left;
    }

    .promosi-description li {
        margin-bottom: 10px;
        text-align: left;
        padding-left: 15px;
        position: relative;
    }

    .promosi-description li::before {
        content: "•";
        position: absolute;
        left: 0;
        color: #ffffff;
    }

    .promosi-description p {
        margin: 0;
        padding: 0;
        text-align: left;
    }

    /* Animation for content */
    .promo-content-m.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

@media (max-width: 576px) {
    .promo-buttons-m button {
        font-size: 12px;
    }
}