/* Added by Ayana Tahu Bulat */
.jackpot-container {
    background-color: rgba(128, 13, 13, 0.9);
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
}

.jackpot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 15px;
}

.jackpot-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

.jackpot-actions {
    display: flex;
    gap: 10px;
}

.jackpot-button {
    background-color: #bb1f1f;
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

/* Added by Ayana Tahu Bulat */
.jackpot-grid.owl-carousel .owl-item {
    width: 120px;
    text-align: center;
}

.jackpot-item {
    text-align: center;
}

.jackpot-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #bb1f1f;
}

.jackpot-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    display: block;
    object-fit: cover;
}

.jackpot-rank {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: #ff0000;
    padding: 5px 10px;
    border-radius: 5px;
}

.jackpot-details {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jackpot-amount {
    font-weight: bold;
    color: #FFD700;
    font-size: 1rem;
}

.jackpot-user {
    display: flex;
    align-items: center;
    margin-top: 5px;
    color: #ffffff;
    font-size: 0.8rem;
}

.jackpot-avatar {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    margin-right: 5px !important;
    object-fit: cover !important;
    /* Optional: Menggunakan rasio aspek modern untuk memastikan bentuk */
    aspect-ratio: 1 / 1 !important; 
}

.jackpot-date {
    font-size: 0.7rem;
    color: #888;
    margin-top: 3px;
}

/* Added by Ayana Tahu Bulat */
.jackpot-container .owl-nav {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.jackpot-container .owl-prev,
.jackpot-container .owl-next {
    position: absolute;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    z-index: 10;
}
.jackpot-container .owl-prev {
    left: -25px;
}
.jackpot-container .owl-next {
    right: -25px;
}