* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background: linear-gradient(135deg, #1e1e2f, #2c2c3e);
    color: #e2e8f0;
    padding: 20px;
}

h1, p {
    text-align: center;
}

a {
    display: inline-block;
    margin: 10px;
    color: white;
    text-decoration: none;
}

.container {
    text-align: center;
}

.inputs input, .filtros input, select {
    margin: 5px;
    padding: 8px;
    border-radius: 6px;
    border: none;
}

button {
    padding: 8px 12px;
    margin: 5px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    background-color: #3a3a55;
    color: white;
    transition: 0.3s;
   
}

button:hover {
    background-color: #4c4cf8;
    transform: scale(1.05);
}

ul {
    margin-top: 20px;
}

li {
    list-style: none;
    margin: 10px auto;
    width: 80%;
}

li div {
    display: flex;
    gap: 15px;
    background-color: #2a2a3d;
    padding: 10px;
    border-radius: 10px;
    align-items: center;
}

img {
    width: 80px;
    height: 110px;
    object-fit: cover;
}

#resultado-sorteio {
    margin: 20px auto;
    padding: 15px;
    border-radius: 10px;
    background-color: #4c4cf8;
    width: 60%;
    display: none;
}
.voltar {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;

    background: linear-gradient(270deg, #4c4cf8, #6366f1, #4c4cf8);
    background-size: 600% 600%;

    transition: 0.3s;
    animation: gradienteAnimado 6s ease infinite;
}
@keyframes gradienteAnimado {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.voltar:hover {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.7);
}
@media (max-width: 600px) {
    .inputs, .filtros {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .inputs input, .filtros input, select, button {
        width: 100%;
        margin: 0;
        padding: 12px;
    }

    li {
        width: 100%;
    }

    li div {
        flex-direction: column;
        text-align: center;
    }

    img {
        width: 120px;
        height: 160px;
    }

    #resultado-sorteio {
        width: 95%;
    }
}
