/* ── Jackpot 777 ──────────────────────────────────────────── */
.mc-jackpot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 8px;
}

.mc-jackpot-machine {
    background: linear-gradient(160deg, #1e1b4b 0%, #312e81 100%);
    border-radius: 20px;
    padding: 16px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 8px 32px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.1);
    border: 2px solid rgba(255,255,255,.1);
    transition: box-shadow .3s;
}

/* Lights strip */
.mc-jackpot-lights {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}
.mc-jackpot-light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #374151;
    transition: background .15s, box-shadow .15s;
}
.mc-jackpot-light--on {
    background: #fbbf24;
    box-shadow: 0 0 8px #fbbf24, 0 0 16px rgba(251,191,36,.4);
}

/* Reels container */
.mc-jackpot-reels {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}

.mc-jackpot-reel {
    flex: 1;
    max-width: 80px;
    height: 90px;
    background: #0f172a;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 2px solid rgba(255,255,255,.15);
    box-shadow: inset 0 4px 12px rgba(0,0,0,.5);
}
/* Gradient overlays top/bottom */
.mc-jackpot-reel::before,
.mc-jackpot-reel::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 28px;
    z-index: 2;
    pointer-events: none;
}
.mc-jackpot-reel::before {
    top: 0;
    background: linear-gradient(to bottom, #0f172a, transparent);
}
.mc-jackpot-reel::after {
    bottom: 0;
    background: linear-gradient(to top, #0f172a, transparent);
}

.mc-jackpot-reel-inner {
    position: absolute;
    top: 0; left: 0; right: 0;
    animation: mc-jackpot-scroll .12s linear infinite;
}

@keyframes mc-jackpot-scroll {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-90px); }
}

.mc-jackpot-stopping .mc-jackpot-reel-inner {
    animation-duration: .4s;
}
.mc-jackpot-stopped .mc-jackpot-reel-inner {
    animation: none;
}

.mc-jackpot-sym {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    line-height: 1;
}
.mc-jackpot-sym--final {
    display: none;
}
.mc-jackpot-sym--final.mc-jackpot-sym--visible {
    display: flex;
    animation: mc-jackpot-pop .3s cubic-bezier(.34,1.56,.64,1);
}
@keyframes mc-jackpot-pop {
    0%   { transform: scale(.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Result bar */
.mc-jackpot-result-bar {
    text-align: center;
    padding: 6px 0;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 2px;
    color: #fbbf24;
    text-shadow: 0 0 8px rgba(251,191,36,.5);
}

/* Win state */
@keyframes mc-jackpot-win-flash {
    0%,100% { box-shadow: 0 8px 32px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.1); }
    50%     { box-shadow: 0 0 40px rgba(251,191,36,.8), 0 8px 32px rgba(251,191,36,.4), inset 0 1px 0 rgba(255,255,255,.2); }
}
.mc-jackpot-win {
    animation: mc-jackpot-win-flash .5s ease 3;
    border-color: #fbbf24;
}

/* Pull button */
.mc-jackpot-lever-btn {
    background: linear-gradient(160deg, var(--mc-primary, #7c3aed), #5b21b6);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: 1px;
    box-shadow: 0 4px 16px rgba(124,58,237,.5);
    transition: transform .15s, box-shadow .15s;
}
.mc-jackpot-lever-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124,58,237,.6);
}
.mc-jackpot-lever-btn:disabled {
    opacity: .7;
    cursor: default;
    transform: none;
}
