.slot-machine {
    background: linear-gradient(135deg, #1A3A52 0%, #2D5C4E 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 32px 0;
    box-shadow: inset 0 4px 16px rgba(0, 0, 0, 0.3);
}

.reels {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
}

.reel {
    background: white;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.reel.spinning {
    animation: spin 0.5s linear;
}

@keyframes spin {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-400px);
    }
}

.symbol {
    font-size: 64px;
    user-select: none;
}

.message {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    min-height: 40px;
    margin: 24px 0;
    color: var(--primary-red);
}

.message.win {
    animation: celebrate 0.6s ease;
}

@keyframes celebrate {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.bet-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 32px 0;
}

.bet-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bet-display {
    font-size: 20px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}

.paytable {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 2px solid var(--light-gray);
}

.paytable h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.paytable-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    background: var(--ice-blue);
    margin-bottom: 8px;
    border-radius: 8px;
    font-weight: 600;
}

.paytable-row span:first-child {
    font-size: 20px;
}

.paytable-row span:last-child {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .slot-machine {
        padding: 24px;
    }

    .reel {
        width: 90px;
        height: 90px;
    }

    .symbol {
        font-size: 48px;
    }

    .reels {
        gap: 12px;
    }
}