@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&family=Oswald:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&display=swap');

@font-face {
    font-family: 'Hitmarker Wide';
    src: url('fonts/HitmarkerWide-Bold.woff2') format('woff2'),
         url('fonts/HitmarkerWide-Bold.woff') format('woff'),
         url('fonts/HitmarkerWide-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Hitmarker Regular';
    src: url('fonts/HitmarkerNormal-Regular.woff2') format('woff2'),
         url('fonts/HitmarkerNormal-Regular.woff') format('woff'),
         url('fonts/HitmarkerNormal-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Hitmarker Medium';
    src: url('fonts/HitmarkerNormal-Medium.woff2') format('woff2'),
         url('fonts/HitmarkerNormal-Medium.woff') format('woff'),
         url('fonts/HitmarkerNormal-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Hitmarker Light';
    src: url('fonts/HitmarkerNormal-Light.woff2') format('woff2'),
         url('fonts/HitmarkerNormal-Light.woff') format('woff'),
         url('fonts/HitmarkerNormal-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


/* Links */
a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Hitmarker Regular', 'Oswald', sans-serif;
    overflow-x: hidden; /* Previne scroll horizontal */
    color: white;
    background: url('bg.png') no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover; /* Suporte para Safari */
    -moz-background-size: cover;
    -o-background-size: cover;
    background-attachment: fixed;
}

.container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

.snap-section {
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Alinhamento ao topo */
    padding-top: 10px; /* Adicione um pouco de padding ao topo */
}

.table-section {
    justify-content: flex-start; /* Alinha a tabela ao topo */
}

.background {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Ajusta o alinhamento para o topo */
}

.header {
    font-family: 'Hitmarker Wide', 'Oswald', sans-serif;
    font-size: 36px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 1); /* Sombra aumentada */
    margin: 4px 0 20px 0; /* Remove margens para garantir que ele fique no topo */
    text-align: center;
}

.green-text {
    color: green;
}

.red-text {
    color: red;
}

.by_38tao {
    font-family: 'Hitmarker Medium', 'Oswald', sans-serif;
    font-size: 14px;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 1); /* Sombra aumentada */
    margin: 0px 0 0px 0; /* Remove margens para garantir que ele fique no topo */
    display: flex; /* Flexbox para alinhar os itens na mesma linha */
    align-items: center; /* Alinhar itens verticalmente ao centro */
    justify-content: center;
}

.by_38tao a {
    color: var(--primary);
    text-decoration: none;
}

.by_38tao a:hover {
    text-decoration: underline;
    color: red;
}



.whatsapp, .discord {
    display: flex;
    align-items: center;
}

.whatsapp img, .discord img {
    margin-right: 20px; /* Espaçamento entre a imagem e o texto */
}


.list {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    max-width: 600px;
    min-width: 410px; /* Defina o tamanho mínimo desejado aqui */
    margin-top: 0px;
}


.list-item {
    padding: 0px;
    width: calc(50% - 40px);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75);
    text-align: center; /* Alinhar o texto à esquerda */
    margin: 0 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Garante que o conteúdo fique no topo */
    background: linear-gradient(to bottom, #00313c 0%, #001419 100%); /* Dark gradient background */
    border-top: 4px solid #208c8c; /* Top border */
    border-bottom: 10px solid #208c8c; /* Bottom border */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Shadow for 3D effect */
    border-radius: 8px; /* Slight rounding of corners */
    position: relative;
    overflow: hidden;
    height: 100%; /* Garante que o item ocupe toda a altura disponível */

}

.list-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 14%;
    background: rgba(255, 255, 255, 0.05); /* Light overlay for subtle texture */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.list-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5)); /* Dark gradient overlay */
}

.list-item p {
    font-size: 20px;
    margin: 4px 0;
    z-index: 1; /* Garante que o texto fique acima do pseudo-elemento */
}

button {
    background-color: red;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    font-family: 'Hitmarker Medium', 'Oswald', sans-serif;
}

.table-container {
    padding: 0px;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0px; /* Adiciona bordas arredondadas */
    overflow-x: auto; /* Permite rolagem horizontal, se necessário */
}

table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Hitmarker Light', 'Oswald', sans-serif;
}

th, td {
    border: 1px solid #444; /* Cor da borda ajustada para combinar melhor */
    padding: 10px;
    text-align: left;
    color: white;
}

th {
    background-color: #222; /* Fundo do cabeçalho da tabela mais escuro */
}

.register-link {
    color: red;
    text-decoration: none;
}

.register-link:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-bottom: 20px;
    justify-content: flex-end;
    margin-top: auto; /* Empurra o footer para o fim da página */
}

footer p {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}

verefique p {
    font-size: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px; /* Adiciona espaçamento entre as letras */
}





.video-callout-container {
    display: flex;
    justify-content: space-between;
    align-items: top;
    margin-top: 20px; /* Adicione a margem superior conforme necessário */
}

.video-callout {
    padding: 2px;
    border-radius: 8px;
    text-align: center;
    flex: 1; /* Permite que os elementos cresçam para preencher o espaço */
    margin: 0 10px; /* Espaçamento entre os elementos */
}

.video-callout p {
    font-size: 14px;
    margin-bottom: 0px;
    margin-top: 0px;
}

.video-callout a.button img {
    max-width: 100%; /* Garante que a imagem não ultrapasse o container */
    height: auto;
    cursor: pointer;
}





.senha-sala {
    background-color: green; /* Cor de fundo verde */
    color: white; /* Cor do texto branco para contraste */
    padding: 4px; /* Espaçamento interno */
    border-radius: 5px; /* Bordas arredondadas */
    text-align: center; /* Alinhar o texto ao centro */
    margin-top: 10px; /* Espaçamento superior */
    flex-grow: 1; /* Permite que a div expanda para ocupar espaço disponível */
}

.no-senha {
    background-color: transparent; /* Cor de fundo transparente */
    color: transparent; /* Texto transparente */
    border: none; /* Sem borda */
    flex-grow: 0; /* Não permite que a div expanda */
    height: 0; /* Define a altura para 0 */
    padding: 0; /* Remove o espaçamento interno */
    margin-top: 0; /* Remove o espaçamento superior */
}






.tao_top {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 10px 20px;
    box-sizing: border-box;
}

.logo-container {
    flex-shrink: 0;
    margin-right: 5px;
}

.logo-container img {
    max-width: 130px;
    height: auto;
}

.info-container {
    flex-grow: 1;
}

.top-links {
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza os links de regras e membros */
    margin-bottom: 20px;
    margin-top: 5px;
}

.top-links a {
    margin: 0 10px; /* Adiciona espaço em ambos os lados dos links */
    text-decoration: none;
}

.header {
    margin-bottom: 5px;
    font-size: 22px;
    line-height: 1.5;
    text-align: center; /* Centraliza o texto do título */
}

.user-actions {
    display: flex;
    align-items: center;
    margin-top: 0px; /* Espaçamento acima dos links de login/logout */
    justify-content: flex-end; /* Alinha o login à esquerda */
}

.user-actions span {
    margin-right: 5px; /* Adiciona espaço entre o nome e o " | " */
}

.user-actions a {
    margin-left: 5px; /* Espaço entre o " | " e o link de logout */
    text-decoration: none;
}




