/* Dodatkowe style dla kasyna */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.slot-machine {
    transition: all 0.3s ease;
}

/* Animacje dla automatów */
@keyframes spin {
    0% { transform: translateY(-100px); }
    100% { transform: translateY(0); }
}

.spinning {
    animation: spin 0.3s ease-in-out;
}

/* Style dla ruletki */
.roulette-number {
    width: 50px;
    height: 50px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.roulette-number:hover {
    transform: scale(1.1);
}

.roulette-red {
    background-color: #e53e3e;
    color: white;
}

.roulette-black {
    background-color: #1a202c;
    color: white;
}

.roulette-green {
    background-color: #38a169;
    color: white;
}

/* Dodatkowe animacje i efekty */
.pulse {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Stylowanie tabel */
.table-container {
    overflow-x: auto;
}

/* Responsywność na małych ekranach */
@media (max-width: 640px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .roulette-number {
        width: 40px;
        height: 40px;
        margin: 3px;
        font-size: 0.875rem;
    }
}