/* General styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://www.transparenttextures.com/patterns/subtle-noise.png');
}

/* Lotto Generator styles */
lotto-generator {
    display: block;
    width: 90%;
    max-width: 500px;
    background: #1e1e1e;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
}

.title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.number {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e1e1e;
    background: linear-gradient(145deg, #f0f0f0, #cacaca);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.number:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.generate-btn {
    background: linear-gradient(145deg, #6a11cb, #2575fc);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.4);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.generate-btn:hover {
    background: linear-gradient(145deg, #2575fc, #6a11cb);
    box-shadow: 0 8px 25px rgba(37, 117, 252, 0.5);
}

.generate-btn:active {
    transform: translateY(2px);
}

.icon {
    width: 24px;
    height: 24px;
}

/* Responsive styles */
@media (max-width: 600px) {
    lotto-generator {
        padding: 1.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .generate-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
