.ssm-slot-machine {
    text-align: center;
    margin: 20px auto;
    max-width: 320px;
    background: #fffbe6;
    border: 2px solid #ffd700;
    border-radius: 16px;
    box-shadow: 0 4px 16px #ffd70033;
    padding: 20px;
}
.ssm-balance-area {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #3b3022;
    font-weight: bold;
}
.ssm-bet-area {
    margin-bottom: 14px;
}
.ssm-bet-btn {
    background: #eee;
    color: #333;
    border: 2px solid #ffd700;
    border-radius: 7px;
    margin: 0 3px;
    padding: 7px 18px;
    font-size: 1.05rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s, border 0.2s;
}
.ssm-bet-btn.ssm-selected, .ssm-bet-btn:active {
    background: #ffd700;
    border-color: #eec900;
}
.ssm-bet-btn:disabled {
    background: #f9f9f9;
    color: #aaa;
    border-color: #ddd;
    cursor: not-allowed;
}
.ssm-reels {
    font-size: 2.5rem;
    letter-spacing: 20px;
    margin-bottom: 15px;
}
.ssm-spin-btn {
    background: #ffd700;
    color: #333;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
    margin-top: 6px;
}
.ssm-spin-btn:disabled {
    background: #eee;
    color: #bbb;
    cursor: not-allowed;
}
.ssm-spin-btn:hover:not(:disabled) {
    background: #ffe066;
}
.ssm-result {
    font-size: 1.1rem;
    margin-top: 14px;
    min-height: 28px;
    font-weight: bold;
    color: #5b4e2c;
}
