/* Estilos específicos das páginas públicas (home, fila, rank).
   Variáveis, tipografia e componentes compartilhados estão em theme.css. */

main {
    padding: 2rem 0;
}

#guest {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
}

.logo {
    display: block;
    max-width: 124px;
    max-height: 124px;
    margin: 0 auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 6px 14px rgba(94, 46, 124, 0.18));
}

.buttons_home_container {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin: 2rem auto 0;
}

.btn_home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
    width: 100%;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 15px 30px;
    color: #ffffff;
    background: linear-gradient(145deg, var(--roxo-claro), var(--roxo));
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease-in-out;
}

.btn_home.outline {
    border: 2px solid var(--roxo);
    color: var(--roxo);
    background: transparent;
    box-shadow: none;
}

.btn_home.outline:hover {
    color: #fff;
    background: linear-gradient(145deg, var(--roxo-claro), var(--roxo));
    box-shadow: var(--shadow-hover);
}

.btn_home:hover {
    color: #fff;
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.btn_home:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.link_redes {
    font-size: 1.6em;
    color: var(--roxo);
    transition: all 0.25s ease-in-out;
}

.link_redes:hover {
    color: var(--roxo-escuro);
    transform: translateY(-4px);
}

.rank-podio {
    font-weight: 700;
}

@media (max-width: 575px) {
    #guest {
        padding: 1rem;
    }
}
