body {
    font-family: Arial, sans-serif;
    background-color: #282c34;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}

.game-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.slot-machine {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.slot {
    width: 120px;
    height: 120px;
    margin: 0 10px;
    border: 2px solid #fff;
    border-radius: 8px;
}

.score-board {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.controls {
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    font-size: 1.2rem;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#spin-button {
    background-color: #28a745;
    color: white;
}

.bet-btn {
    background-color: #007bff;
    color: white;
}

.bet-btn:hover {
    background-color: #0056b3;
}

#spin-button:hover {
    background-color: #218838;
}

#result {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #ffc107;
}
