body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: white;
}

h1 {
    font-size: 3em;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#lottery-container {
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    display: inline-block;
}

#draw-button {
    padding: 15px 30px;
    font-size: 1.5em;
    cursor: pointer;
    background-color: #ff4081;
    color: white;
    border: none;
    border-radius: 10px;
    transition: background-color 0.3s;
}

#draw-button:hover {
    background-color: #c60055;
}

#results {
    margin-top: 30px;
    display: none;
}

.numbers, .bonus-number {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.number, .bonus {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: white;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8em;
    margin: 0 8px;
    animation: pop-in 0.5s ease-out;
}

.bonus {
    background-color: #ffeb3b;
}

@keyframes pop-in {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}