body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #ffd194, #70e1f5);
    color: #333;
    text-align: center;
    padding: 40px 20px;
    margin: 0;
}

.top-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.paytable span {
    background: #eee;
    padding: 6px 12px;
    border-radius: 10px;
    margin: 2px;
    display: inline-block;
}

.balance-box {
    font-weight: bold;
    font-size: 1.3em;
}

.recargar-button {
    margin-top: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.slot-button {
    background-color: #ff4757;
    color: white;
    padding: 12px 30px;
    font-size: 1.5em;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 20px;
}

.slot-container {
    display: inline-block;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.slot-row {
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.slot-icon {
    font-size: 3em;
    margin: 0 15px;
    opacity: 0;
    transform: translateY(-100px);
    animation: fall 0.7s ease forwards;
}

@keyframes fall {
    0% { opacity: 0; transform: translateY(-100px); }
    100% { opacity: 1; transform: translateY(0); }
}

.win-message, .lose-message, .rtp-message, .plays-message {
    margin-top: 15px;
    font-weight: bold;
}

.win-message { color: #2ed573; font-size: 1.5em; }
.lose-message { color: #e74c3c; }
.rtp-message { color: #007bff; }
.plays-message { color: #17a2b8; }
