body {
    background: #1a1a2e;
    color: white;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.sorteador-container {
    background: #16213e;
    padding: 10px 40px 40px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    width: 350px;
    border: 2px solid #e94560;
}

h1 { color: #e94560; margin-bottom: 30px; }

.inputs { margin-bottom: 25px; display: flex; justify-content: space-between; align-items: center; }

input {
    width: 120px;
    padding: 10px;
    border-radius: 8px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
}

.display-sorteio {
    background: #0f3460;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: hidden;
    border: 4px inset #16213e;
}

#numero_rolando {
    font-family: 'Bungee', cursive;
    font-size: 6rem;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

button {
    background: #e94560;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

button:hover { background: #ff2e63; transform: scale(1.05); }
button:disabled { background: #555; cursor: not-allowed; }

.btn-voltar {
    display: inline-block;
    margin-top: 25px;         /* Espaço entre o botão de sortear e o link */
    text-decoration: none;    /* Remove o sublinhado padrão */
    color: #666;              /* Cor cinza mais suave */
    font-family: sans-serif;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.btn-voltar:hover {
    color: #000;              /* Escurece ao passar o mouse */
    text-decoration: underline; /* Aparece o sublinhado apenas no hover */
}