.slot250-wrap {
    --gold: #ffd75e;
    --orange: #ff8a00;
    --red: #ff284f;
    --dark: #09070f;
    --panel: #171321;

    width: min(100%, 430px);
    margin: 25px auto;
    padding: 16px;
    box-sizing: border-box;
    border: 2px solid var(--gold);
    border-radius: 22px;
    background:
        radial-gradient(circle at top, rgba(255, 215, 94, .18), transparent 36%),
        linear-gradient(160deg, #26172e, #09070f 70%);
    box-shadow:
        0 0 12px rgba(255, 215, 94, .5),
        0 18px 40px rgba(0, 0, 0, .55);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    overflow: hidden;
}

.slot250-wrap *,
.slot250-wrap *::before,
.slot250-wrap *::after {
    box-sizing: border-box;
}

.slot250-wrap::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        transparent,
        rgba(255, 215, 94, .18),
        transparent 30%
    );
    animation: slot250Glow 7s linear infinite;
    pointer-events: none;
}

.slot250-inner {
    position: relative;
    z-index: 2;
}

.slot250-header {
    text-align: center;
    margin-bottom: 14px;
}

.slot250-title {
    margin: 0;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--gold);
    text-shadow:
        0 2px 0 #8d4c00,
        0 0 14px rgba(255, 215, 94, .7);
}

.slot250-subtitle {
    margin-top: 5px;
    font-size: 12px;
    color: #ddd3e6;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.slot250-multiplier {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    margin-bottom: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 94, .55);
    background: linear-gradient(180deg, #321646, #150a20);
    box-shadow:
        inset 0 0 18px rgba(255, 215, 94, .13),
        0 0 14px rgba(255, 40, 79, .18);
}

.slot250-multiplier span {
    font-size: 29px;
    font-weight: 900;
    color: #fff;
    text-shadow:
        0 0 8px var(--red),
        0 0 18px var(--red);
    transition: transform .25s ease;
}

.slot250-machine {
    padding: 12px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ffcd43, #a34d00);
    box-shadow:
        inset 0 0 0 3px rgba(255, 255, 255, .18),
        0 10px 20px rgba(0, 0, 0, .45);
}

.slot250-reels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 9px;
    border-radius: 14px;
    background: #0d0913;
    border: 2px solid #4a263f;
    overflow: hidden;
}

.slot250-reel {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background:
        linear-gradient(
            180deg,
            #130d19 0%,
            #fff 12%,
            #f7e8cf 50%,
            #fff 88%,
            #130d19 100%
        );
    border: 2px solid #ffdc7b;
    box-shadow:
        inset 0 0 18px rgba(0, 0, 0, .3),
        0 0 8px rgba(255, 215, 94, .4);
    font-size: 52px;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.slot250-reel::before,
.slot250-reel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 18px;
    z-index: 2;
    pointer-events: none;
}

.slot250-reel::before {
    top: 0;
    background: linear-gradient(#130d19, transparent);
}

.slot250-reel::after {
    bottom: 0;
    background: linear-gradient(transparent, #130d19);
}

.slot250-reel.spinning {
    animation: slot250Shake .12s linear infinite;
    filter: blur(2px);
}

.slot250-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 12px;
}

.slot250-box {
    padding: 10px;
    text-align: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, .42);
    border: 1px solid rgba(255, 215, 94, .35);
}

.slot250-label {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    color: #cfc6d6;
    letter-spacing: 1px;
}

.slot250-value {
    font-size: 17px;
    font-weight: 800;
    color: var(--gold);
}

.slot250-message {
    min-height: 43px;
    margin: 12px 0;
    padding: 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, .4);
    border: 1px dashed rgba(255, 215, 94, .4);
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot250-spin {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 15px;
    cursor: pointer;
    color: #2b1000;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #fff59d, #ffc107 48%, #ff8500);
    box-shadow:
        0 6px 0 #8d3b00,
        0 10px 20px rgba(0, 0, 0, .4),
        inset 0 2px 0 rgba(255, 255, 255, .7);
    transition: transform .15s ease, filter .15s ease;
}

.slot250-spin:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

.slot250-spin:active {
    transform: translateY(5px);
    box-shadow:
        0 1px 0 #8d3b00,
        0 5px 10px rgba(0, 0, 0, .4);
}

.slot250-spin:disabled {
    cursor: not-allowed;
    filter: grayscale(.4);
    opacity: .7;
}

.slot250-win {
    animation: slot250Win .55s ease-in-out 3;
}

.slot250-jackpot {
    animation: slot250Jackpot .35s ease-in-out 7;
}

.slot250-note {
    margin-top: 11px;
    text-align: center;
    font-size: 10px;
    color: #9c93a4;
}

@keyframes slot250Glow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slot250Shake {
    0%   { transform: translateY(-4px); }
    50%  { transform: translateY(4px); }
    100% { transform: translateY(-4px); }
}

@keyframes slot250Win {
    0%, 100% {
        box-shadow: 0 0 12px rgba(255, 215, 94, .5);
    }
    50% {
        box-shadow:
            0 0 25px #ffd75e,
            0 0 55px #ff284f;
        transform: scale(1.015);
    }
}

@keyframes slot250Jackpot {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.7);
        transform: scale(1.02);
    }
}

@media (max-width: 420px) {
    .slot250-wrap {
        padding: 12px;
        border-radius: 17px;
    }

    .slot250-reel {
        height: 88px;
        font-size: 43px;
    }

    .slot250-title {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .slot250-wrap::before,
    .slot250-reel.spinning,
    .slot250-win,
    .slot250-jackpot {
        animation: none;
    }
}