/* SLOT JACKPOT BESAR */
.jackpot-section {
    position: relative;
    padding: 90px 20px;
    background:
        radial-gradient(circle at top left, rgba(0, 174, 255, 0.25), transparent 34%),
        radial-gradient(circle at bottom right, rgba(0, 91, 234, 0.28), transparent 36%),
        linear-gradient(135deg, #020b1f 0%, #061b44 48%, #003f88 100%);
    overflow: hidden;
}

.jackpot-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.35;
    pointer-events: none;
}

.jackpot-container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.jackpot-heading {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.jackpot-label {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 9px 18px;
    border: 1px solid rgba(99, 204, 255, 0.55);
    border-radius: 999px;
    background: rgba(0, 123, 255, 0.14);
    color: #7ddcff;
    font-size: 14px;
    font-weight: 800;
}

.jackpot-heading h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 900;
}

.jackpot-heading p {
    margin: 0;
    color: #c8dcff;
    font-size: 17px;
    line-height: 1.8;
}

.jackpot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.jackpot-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(72, 191, 255, 0.26);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(13, 48, 105, 0.92), rgba(4, 17, 45, 0.98));
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    transition: 0.35s ease;
}

.jackpot-card.featured {
    border-color: rgba(0, 212, 255, 0.75);
    box-shadow: 0 24px 70px rgba(0, 174, 255, 0.24);
}

.jackpot-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(0, 204, 255, 0.35), transparent 45%);
    opacity: 0;
    transition: 0.35s ease;
}

.jackpot-card:hover {
    transform: translateY(-8px);
    border-color: rgba(91, 209, 255, 0.78);
    box-shadow: 0 26px 64px rgba(0, 153, 255, 0.28);
}

.jackpot-card:hover::before {
    opacity: 1;
}

.jackpot-badge,
.jackpot-icon,
.jackpot-card h3,
.jackpot-card p,
.jackpot-info,
.jackpot-btn {
    position: relative;
    z-index: 2;
}

.jackpot-badge {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 198, 255, 0.14);
    color: #8ee6ff;
    font-size: 13px;
    font-weight: 800;
}

.jackpot-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #005bea, #00c6ff);
    box-shadow: 0 12px 30px rgba(0, 198, 255, 0.35);
    font-size: 32px;
}

.jackpot-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 23px;
    font-weight: 900;
}

.jackpot-card p {
    margin: 0 0 22px;
    color: #bcd3f7;
    font-size: 15.5px;
    line-height: 1.75;
}

.jackpot-info {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.jackpot-info li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 13px;
    border: 1px solid rgba(123, 220, 255, 0.14);
    border-radius: 14px;
    background: rgba(2, 11, 31, 0.36);
}

.jackpot-info span {
    color: #9fb9df;
    font-size: 13.5px;
}

.jackpot-info strong {
    color: #ffffff;
    font-size: 13.5px;
    text-align: right;
}

.jackpot-btn,
.jackpot-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #008cff, #00d4ff);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 174, 255, 0.35);
    transition: 0.3s ease;
}

.jackpot-btn:hover,
.jackpot-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 212, 255, 0.45);
}

.jackpot-cta {
    margin-top: 32px;
    padding: 28px;
    border: 1px solid rgba(96, 205, 255, 0.3);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(0, 91, 234, 0.24), rgba(0, 198, 255, 0.12)),
        rgba(2, 11, 31, 0.64);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.jackpot-cta h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
}

.jackpot-cta p {
    margin: 0;
    color: #c8dcff;
    font-size: 15.5px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .jackpot-section {
        padding: 74px 18px;
    }

    .jackpot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jackpot-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .jackpot-section {
        padding: 60px 16px;
    }

    .jackpot-heading {
        margin-bottom: 34px;
        text-align: left;
    }

    .jackpot-heading p {
        font-size: 15.5px;
    }

    .jackpot-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .jackpot-card {
        padding: 24px;
        border-radius: 22px;
    }

    .jackpot-info li {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .jackpot-info strong {
        text-align: left;
    }

    .jackpot-btn,
    .jackpot-cta-btn {
        width: 100%;
    }

    .jackpot-cta {
        padding: 24px;
        border-radius: 22px;
    }

    .jackpot-cta h3 {
        font-size: 21px;
    }
}