/* Estilo para o resultado do sorteio */
.resultado {
    margin-top: 24px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #00f0ff;
    background: rgba(0,240,255,0.08);
    border-radius: 12px;
    padding: 18px 32px;
    box-shadow: 0 2px 16px 0 rgba(0,240,255,0.15);
    text-align: center;
    letter-spacing: 2px;
    transition: all 0.3s;
    border: 2px solid #00f0ff;
    display: inline-block;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, sans-serif;
    background-color: black;
    color: white;
}

.container-central {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 24px;
    width: auto;
    padding: 0 20px;
}

.logo {
    width: 450px;
    height: auto;
    border-radius: 16px;
}

h2 {
    font-size: 32px;
    font-weight: 400;
    white-space: nowrap;
}

.inputs {
    display: flex;
    gap: 16px;
    width: 450px;
}

.inputs input {
    width: 100%;
    padding: 13px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.inputs input::-webkit-outer-spin-button,
.inputs input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.inputs input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.inputs input::placeholder {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.5;
}

button {
    width: 300px;
    height: 52px;
    border: none;
    border-radius: 10px;
    background: #00f0ff;
    box-shadow: 0 4px 12px 0 rgba(0,240,255,0.7);
    color: black;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

/* Responsividade para mobile, tablets e telas grandes */
@media (max-width: 1200px) {
    .container-central {
        padding: 0 10px;
        gap: 18px;
    }
    .logo {
        width: 320px;
    }
    .inputs {
        width: 320px;
        gap: 10px;
    }
    button {
        width: 220px;
        height: 46px;
        font-size: 16px;
    }
    h2 {
        font-size: 26px;
    }
    .resultado {
        font-size: 2rem;
        padding: 14px 20px;
    }
}

@media (max-width: 768px) {
    .container-central {
        min-height: 100vh;
        padding: 0 6px;
        gap: 14px;
    }
    .logo {
        width: 180px;
        border-radius: 10px;
    }
    .inputs {
        width: 100%;
        flex-direction: column;
        gap: 8px;
    }
    button {
        width: 100%;
        height: 44px;
        font-size: 15px;
    }
    h2 {
        font-size: 20px;
        white-space: normal;
    }
    .resultado {
        font-size: 1.3rem;
        padding: 10px 8px;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .container-central {
        min-height: 100vh;
        padding: 0 2px;
        gap: 10px;
    }
    .logo {
        width: 120px;
        border-radius: 8px;
    }
    .inputs {
        width: 100%;
        flex-direction: column;
        gap: 6px;
    }
    button {
        width: 100%;
        height: 38px;
        font-size: 14px;
    }
    h2 {
        font-size: 16px;
        white-space: normal;
    }
    .resultado {
        font-size: 1rem;
        padding: 8px 4px;
        border-radius: 6px;
    }
}