
/* Container jackpot dengan gradient animasi warna emas */
.jackpot-container {
    background: linear-gradient(270deg, rgb(255 255 255) 0% 0%, rgb(184 134 11) 21%, rgb(218 165 32) 33%, rgb(255 215 0) 44%, rgb(218 165 32) 60%, rgb(184 134 11) 73%, rgb(255 215 0) 85%, rgb(184 134 11) 100%);
    box-shadow: inset 0 1px 1px rgba(255, 215, 0, 0.3), 0 4px 0 rgba(255, 215, 0, 0.3), 0 8px 10px rgba(255, 215, 0, 0.2);
    animation: gradient 5s ease infinite;
    background-size: 400% 400%;
    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;
}

/* Tombol dengan warna emas */
.jackpot-button {
    background-color: #FFD700;
    color: #1a1a1a;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
}

.jackpot-grid.owl-carousel .owl-item {
    width: 120px;
    text-align: center;
}

.jackpot-item {
    text-align: center;
}

/* Wrapper gambar dengan background hitam */
.jackpot-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.jackpot-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    display: block;
    object-fit: cover;
}

/* Badge ranking dengan warna emas */
.jackpot-rank {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
    background-color: #FFD700;
    padding: 5px 10px;
    border-radius: 5px;
}

.jackpot-details {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Amount dengan warna putih agar kontras dengan background emas */
.jackpot-amount {
    font-weight: bold;
    color: #ffffff;
    font-size: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.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; 
}

/* Tanggal dengan warna putih agar kontras dengan background emas */
.jackpot-date {
    font-size: 0.7rem;
    color: #ffffff;
    margin-top: 3px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Navigasi carousel dengan warna emas */
.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(255, 215, 0, 0.8);
    border-radius: 50%;
    padding: 10px;
    color: #1a1a1a;
    font-size: 24px;
    line-height: 1;
    z-index: 10;
    font-weight: bold;
}
.jackpot-container .owl-prev {
    left: -25px;
}
.jackpot-container .owl-next {
    right: -25px;
}