body {
    font-family: Arial, sans-serif;
    background-color: #1e1e2f;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.slot-machine {
    margin: 0 auto;
    max-width: 300px;
    background: #ff3b3f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

.reels {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.reel {
    width: 70px;
    height: 70px;
    margin: 0 10px;
    background: #fff;
    color: #000;
    font-size: 2.5em;
    font-weight: bold;
    border-radius: 10px;
    line-height: 70px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#spinButton {
    padding: 10px 30px;
    font-size: 1em;
    font-weight: bold;
    color: #fff;
    background-color: #ffcc00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

#spinButton:hover {
    background-color: #ffc107;
}

#resultMessage {
    font-size: 18px;
    margin-top: 20px;
    color: #ffcc00;
}
