/* Dark Mode Styles */
body {
    background-color: #091747;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    display: flex
;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}
html {
    display: flex
;
    justify-content: center;
    height: 100vh;
    align-items: center;
    align-content: center;
}

h1, h2 {
    font-size: 40px;
}

.container {
    text-align: center;
    max-height: 90vh;
    max-width: 90vw;
    padding: 30px;
    background-color: #00000090;
    border-radius: 10px;
    margin: 0px auto;
    /* height: 90vh; */
    display: flex
;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    align-content: center;
}
 
.container img {
    max-width: 200px;
}

button {
    background-color: transparent;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    width: 100%;
    margin: 10px;
    font-size: 16px;
    border: 2px solid #10e375;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #10e375;
    color: #091747;
    transform: scale(1.05);
}

.confirmar-sorteio button {
    background-color: #10e375;
    color: #091747;
}

.lista-premios {
    overflow-y: scroll;
    overflow-x: hidden;
}

.confirmar-sorteio {
    margin-top: 20px;
}

/* Telão de Sorteio Styles */
.sorteio-container {
    margin-top: 50px;
}

#premio-nome {
    font-size: 2em;
    color: #fff !important;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
}

.animacao {
    font-size: 50px !important;
    font-weight: 700;
    color: #ffca28;
    text-shadow: 0px 0px 10px #ffca28;
    animation: pulse 1.5s infinite;
}

.ganhador-nome {
    font-size: 2.5em;
    color: #fff !important;
    margin-top: 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Animações */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.fade-in {
    opacity: 1;
}

/* Canvas para fogos de artifício */
#fireworks-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Animação de pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}


.ganhador-nome {
    font-size: 50px;
    /* color: #17db4e; */
    /* text-shadow: 0px 0px 10px #17db4e; */
    margin-top: 20px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.fade-in {
    opacity: 1;
}
