.request-bg {
    width: 1015px;
    height: 485px;
    margin: 0 auto;
    margin-bottom: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.request-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.request-content .title {
    font-size: 40px;
    font-weight: 800;
    color: var(--tg-color-white-default);
    margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
    .request-content .title {
        font-size: 32px;
    }
}
@media (max-width: 767.98px) {
    .request-content .title {
        font-size: 28px;
    }
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.play-btn {
    margin-bottom: 15px; /* Beri jarak antara tombol play dan teks */
}

.play-btn::after {
    display: none;
}

.play-icon {
    position: relative; /* Agar pseudo-element bisa diposisikan dengan benar */
}
.play-icon:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid var(--tg-color-white-default);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    -moz-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    -ms-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    -o-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    animation: pulse-border 1500ms ease-out infinite;
}

.request-bg::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(
        15,
        14,
        32,
        0.5
    ); /* Overlay untuk meningkatkan keterbacaan teks */
    border-radius: 10px;
    z-index: 0;
}

/* Responsif untuk layar ukuran 1199px ke bawah (Tablet besar) */
@media (max-width: 1199px) {
    .request-bg {
        width: 90%;
        height: 600px;
    }
    .play-icon {
        width: 70px;
        height: 70px;
    }
    .title {
        font-size: 1.8rem;
    }
    .text-white.fs-5 {
        font-size: 1.2rem;
    }
}

/* Responsif untuk layar ukuran 991px ke bawah (Tablet) */
@media (max-width: 991px) {
    .request-bg {
        width: 90%;
        height: 500px;
    }
    .play-icon {
        width: 70px;
        height: 70px;
    }
    .title {
        font-size: 1.5rem;
    }
    .text-white.fs-5 {
        font-size: 1.1rem;
    }
}

/* Responsif untuk layar ukuran 767px ke bawah (Mobile) */
@media (max-width: 767px) {
    .request-bg {
        width: 100%;
        height: 400px;
    }
    .play-icon {
        width: 60px;
        height: 60px;
    }
    .title {
        font-size: 1.3rem;
    }
    .text-white.fs-5 {
        font-size: 1rem;
    }
}

/* Responsif untuk layar ukuran 480px ke bawah (Mobile kecil) */
@media (max-width: 480px) {
    .request-bg {
        width: 100%;
        height: 380px;
    }
    .play-icon {
        width: 60px;
        height: 60px;
    }
    .title {
        font-size: 1.1rem;
    }
    .text-white.fs-5 {
        font-size: 0.9rem;
    }
}
