@keyframes rotate {
    0% {
        transform: translateY(0);
    }

    100% {
        /* transform: translateY(-1000px); */
        transform: translateY(-800px);
    }
}

.slot-wheel {
    height: 80px;
    width: 80px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.slot-items {
    position: absolute;
    width: 100%;
    text-align: center;
}

.slot-item {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
}

.spinning {
    animation: rotate 1s linear infinite;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #1a202c;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
}

.win-animation {
    animation: pulse 0.5s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.bet-btn {
    transition: all 0.2s ease;
    flex: 1;
}

.bet-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.bet-btn.active {
    background-color: #f59e0b;
    color: #1f2937;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.5);
}

.quick-bets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.bet-control {
    display: flex;
    align-items: center;
    background-color: #374151;
    border-radius: 8px;
    padding: 4px;
}

.bet-input {
    width: 70px;
    text-align: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 8px;
}

.bet-input:focus {
    outline: none;
}

.control-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    background-color: #4b5563;
    transition: background-color 0.2s;
}

.control-btn:hover {
    background-color: #6b7280;
}