
        /* Reset b�sico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       /* Centraliza os botões na tela */
.parent-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Altura total da tela */
    overflow: hidden; /* Impede que o conteúdo ultrapasse os limites */
}

/* Estilização dos botões */
.btn-blue {
    position: relative;
    width: 130px;
    height: 50px; /* Altura de um hexágono com largura 180px */
    background-color: #4a6bff;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.6s ease;
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
}



/* Estilização dos botões */
.custom-button {
    position: relative;
    width: 200px;
    height: 90px; /* Altura de um hexágono com largura 180px */
    background-color: #4a6bff;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
}

/* Estilo específico para o botão Jogue Agora */
.btn1 {
    background-color: #3a5bef;
}

.btn1:hover {
    background-color: #ef3a3a;
}

.custom-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-button:hover::before {
    opacity: 1;
}


.btn2 {
    background: linear-gradient(135deg, #6b6ee1, #5254c7);
}

/* Efeito hover */
.custom-button:hover {
    background-color: #149CAB;
    transform: scale(1.05);
}

/* Estilizando o vídeo de fundo */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Ocupa 100% da largura da viewport */
    height: 100vh; /* Ocupa 100% da altura da viewport */
    object-fit: cover; /* Mantém a proporção e cobre toda a área */
    z-index: -2; /* Coloca o vídeo atrás de todo o conteúdo */
}

/* Estilizando a tela azul sobre o vídeo */
#bg-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw; /* Ocupa 100% da largura da viewport */
    height: 100vh; /* Ocupa 100% da altura da viewport */
    background-color: rgba(0, 247, 255, 0.2); /* Azul com 30% de opacidade */
    z-index: -1; /* Coloca a tela azul acima do vídeo */
}
        /* Ajustando o conteúdo para aparecer sobre o vídeo */
        .content {
        position: relative;
        z-index: 1;
        text-align: center;
        color: white;
        padding-top: 20vh;
        }
    

        /* Cabe�alho */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000; /* Garante que o header fique acima de outros elementos */
            box-shadow: 0 2px 5px rgba(0,0,0,0.3); /* opcional: sombra para efeito visual */
            background-color: rgba(31, 31, 31, 0.9);
            color: #fff;
            padding: 20px 0;
        }

        header .container {
            width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        
        /* Aplicando a fonte Poppins ao t�tulo e ao menu */
        header h1 a {
            text-decoration: none;
            color: #fff;
            font-size: 2rem;
            font-family: 'Poppins', sans-serif; /* Fonte aplicada ao t�tulo */
        }

        header nav ul {
		list-style: none;
		display: flex;
		justify-content: center; /* Centraliza os itens na linha */
		align-items: center; /* Alinha verticalmente */
        }

        header nav ul li {
		position: relative; /* Necess�rio para o submenu */
            margin-right: 20px;
        }

        /* Estilo para os itens do menu */
        header nav ul li a {
    display: inline-flex; /* Flex para alinhar �cones e texto */
    align-items: center; /* Alinha �cones e texto na vertical */
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    padding: 10px 15px;
    transition: all 0.3s ease;
        }


        /* Efeito de anima��o ao passar o mouse */
        header nav ul li a:hover {
            background-color: #f90; /* Cor de fundo quando o mouse passa */
            color: #333; /* Cor do texto quando o mouse passa */
            border-radius: 5px; /* Adiciona borda arredondada */
            transform: translateY(-3px); /* Efeito de eleva��o */
        }

        /* Banner */
        .banner {
            text-align: center;
            padding: 100px 0;
            color: #fff;
        }

        .banner h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: white; /* Cor do texto alterada para branco */
            text-shadow: 
                -2px -2px 0 black, /* Borda superior esquerda */
                2px -2px 0 black,  /* Borda superior direita */
                -2px 2px 0 black,  /* Borda inferior esquerda */
                2px 2px 0 black;   /* Borda inferior direita */
            border-radius: 5px; /* Bordas arredondadas (opcional, se aplicável ao fundo) */
            padding: 10px; /* Adiciona espaçamento interno (opcional) */
        }

        .banner p {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .banner .btn {
            background-color: #f90;
            color: #fff;
            padding: 15px 30px;
            text-decoration: none;
            font-size: 1.2rem;
            border-radius: 5px;
        }

        /* Se��es */
        .features,
        .voting {
            padding: 50px 0;
            background-color: #fff;
        }
.vote-option img {
    width: 100%;
    height: auto;
    max-width: 280px; /* Controle o tamanho m�ximo das imagens */
    transition: transform 0.3s ease;
}

        .features .container,
        .voting .container {
            width: 80%;
            margin: 0 auto;
        }

        .features h2,
        .voting h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
        }

        .feature-item {
            margin-bottom: 20px;
        }

        .feature-item h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        .feature-item p {
            font-size: 1.2rem;
        }

        .voting .btn {
            background-color: #1f1f1f;
            color: #fff;
            padding: 10px 20px;
            text-decoration: none;
            font-size: 1.2rem;
            border-radius: 5px;
            margin-right: 20px;
        }

        /* Rodap� */
/* Estilos Gerais do Rodapé */
footer {
    background-color: rgba(31, 31, 31, 0.7); /* Mantém o fundo semi-transparente */
    padding: 40px 0 20px 0;
    color: #fff !important; /* Mantém o texto branco */
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f39c12; /* Cor do título */
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff !important; /* Mantém os links brancos */
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #f39c12 !important; /* Cor ao passar o mouse */
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2); /* Efeito de zoom ao passar o mouse */
}

.footer-logo {
    width: 200px; /* Ajuste o tamanho do logo */
    margin-bottom: 30px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Linha divisória sutil */
    padding-top: 20px;
    font-size: 14px;
}	
/* Estilo geral da navega��o */
header nav ul {
    list-style: none;
    display: flex;
    justify-content: center; /* Centraliza os itens na linha */
    align-items: center; /* Alinha os itens verticalmente */
}

header nav ul li {
    margin-right: 20px;
}


body {
    cursor: url('img/cursor.png') 16 16, auto; /* A posi��o 16 16 � a posi��o do "ponto quente" do cursor */
}

/* Efeito de dowload */
  .image-link {
    display: block;
    transition: transform 0.3s ease; /* Transi��o suave para o efeito de escala */
  }

  .image-link:hover {
    transform: scale(1.1); /* Aumenta o tamanho da imagem em 10% */
  }


/*  cadastro   */

/* Estilo para o formul�rio */


form label {
    display: block; /* Faz com que os labels fiquem um abaixo do outro */
    margin-top: 10px;
}

form input, form select, form button {
    width: 100%; /* Faz com que os campos ocupem toda a largura dispon�vel */
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 5px; /* Adiciona um espa�amento entre os campos */
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #4CAF50; /* Cor do bot�o */
    color: white;
    border: none;
    cursor: pointer;
}

form button:hover {
    background-color: #5ECCC7; /* Cor do bot�o ao passar o mouse */
}


/* Estilo para a se��o de recupera��o de senha */
#R_SENHA {
    padding: 20px;
    background-color: #f9f9f9; /* Fundo azul escuro */
    border-radius: 8px;
    max-width: 500px; /* Limita a largura da se��o */
    margin: 0 auto; /* Centraliza a se��o */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
    color: #fff; /* Cor do texto */
}

#R_SENHA h1 {
    text-align: center;
    color: #FFD700; /* Amarelo dourado */
    margin-bottom: 20px;
}

#R_SENHA .container {
    background-color: #f9f9f9; /* Cor de fundo do container do formul�rio */
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Ajuste das caixas de entrada (input) para menor tamanho */
#R_SENHA form input[type="text"],
#R_SENHA form input[type="email"] {
    width: 80%; /* Diminuindo a largura das caixas de entrada */
    padding: 8px; /* Diminuindo o preenchimento dentro das caixas */
    margin-bottom: 15px; /* Espa�o entre as caixas de entrada */
    border: 1px solid #ccc; /* Borda cinza clara */
    border-radius: 4px; /* Bordas arredondadas */
    font-size: 14px; /* Tamanho da fonte dentro da caixa */
    box-sizing: border-box; /* Inclui o padding e a borda no c�lculo da largura */
}

/* Estilo para os labels */
#R_SENHA form label {
    display: block; /* Faz com que os labels fiquem acima das caixas */
    margin-bottom: 5px; /* Espa�o abaixo do label */
    font-size: 14px;
}


.vote-buttons {
    display: flex;
    gap: 20px; /* Espa�o entre os bot�es */
    justify-content: center; /* Centraliza os bot�es */
}

.vote-option {
    display: flex;
    flex-direction: column; /* Coloca a imagem e o texto em coluna */
    align-items: center; /* Centraliza a imagem e o texto */
}

.vote-image-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.vote-image-button img {
    width: 500px; /* Ajuste conforme necess�rio */
    height: auto;
    transition: transform 0.2s;
}

.vote-image-button img:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.vote-image-button img:hover:not([disabled]) {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}

.vote-text {
    margin-top: 8px;
    font-size: 14px;
    text-align: center;
}

.time-remaining {
    font-size: 24px;
    color: white !important; /* For�a o BRANCO */
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}


#informacoes {
    text-align: left;
}

/* botoes do painel */ 

/* Alinhamento dos bot�es */
.custom-button-row {
    display: flex; /* Organiza os bot�es em linha */
    gap: 10px; /* Espa�amento entre os bot�es */
    justify-content: center; /* Centraliza os bot�es */
}

/* Estilo base para os bot�es personalizados */
.custom-button-row button {
    padding: 10px 20px; /* Tamanho do bot�o */
    border: none; /* Remove borda */
    border-radius: 5px; /* Bordas arredondadas */
    color: white; /* Cor do texto */
    font-size: 16px; /* Tamanho do texto */
    cursor: pointer; /* �cone de ponteiro ao passar o mouse */
    transition: opacity 0.3s ease; /* Suaviza a opacidade no hover */
}

/* Bot�es com cores exclusivas */
.custom-btn-vote {
    background-color: #4CAF50; /* Verde */
}

.custom-btn-register {
    background-color: #007BFF; /* Azul */
}

.custom-btn-new-password {
    background-color: #FF5733; /* Laranja */
}

.custom-btn-recover-password {
    background-color: #FFC107; /* Amarelo */
    color: black; /* Texto preto para contraste */
}

/* Efeito hover */
.custom-button-row button:hover {
    opacity: 0.8; /* Leve transpar�ncia no hover */
}

.message {
    text-align: center; /* Centraliza o texto */
    font-size: 18px; /* Ajuste o tamanho da fonte conforme necess�rio */
    margin-top: 50px; /* Adiciona um espa�amento superior */
    color: black; /* Ajusta a cor do texto, se necess�rio */
}

/* Estilos para dispositivos m�veis */
@media (max-width: 768px) {
    body {
        font-size: 14px; /* Reduz o tamanho da fonte para melhor visualiza��o */
    }

    header .container {
        flex-direction: column; /* Alinha o conte�do em coluna no cabe�alho */
        text-align: center; /* Centraliza o texto */
    }

    header nav ul {
        flex-direction: column; /* Alinha os itens do menu verticalmente */
    }

    header nav ul li {
        margin-bottom: 10px; /* Espa�amento entre os itens do menu */
    }

    .banner h2 {
        font-size: 2rem; /* Ajusta o tamanho do texto do banner */
    }

    .banner p {
        font-size: 1rem; /* Ajusta o tamanho do texto do par�grafo */
    }

    .banner .btn {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .features .container,
    .voting .container {
        width: 100%; /* Garante que o conte�do ocupe toda a largura */
        padding: 10px; /* Adiciona espa�amento interno */
    }

    footer ul {
        flex-direction: column; /* Alinha os itens do rodap� verticalmente */
    }

    footer ul li {
        margin-bottom: 10px; /* Espa�amento entre os itens do rodap� */
    }

    .vote-image-button img {
        width: 100%; /* Ajusta a largura das imagens para caber na tela */
    }

    .custom-button-row {
        flex-direction: column; /* Alinha os bot�es verticalmente */
        gap: 10px;
    }

    form input, form select, form button {
        font-size: 14px; /* Ajusta o tamanho da fonte dos formul�rios */
    }

    form label {
        font-size: 12px; /* Reduz o tamanho da fonte do r�tulo */
    }
}


/* parte de  noticias e informa��es  */

.custom-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Espa�o entre as caixas */
    flex-wrap: wrap; /* Permite que as caixas se ajustem em telas menores */
}

.feature-box {
    flex: 1;
    min-width: 350px; /* Largura m�nima para responsividade */
    max-width: 50%; /* Ajuste de largura m�ximo para manter as caixas proporcionais */
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/*-----------------    dowloads         -----------  */

.responsive-links {
    display: flex;
    flex-wrap: wrap; /* Permite empilhar itens em telas menores */
    justify-content: center;
    gap: 10px; /* Espa�amento entre os itens */
}

.responsive-links img {
    width: 100%; /* Imagem ocupar� 100% da largura dispon�vel no cont�iner */
    max-width: 250px; /* Limita o tamanho m�ximo das imagens */
    height: auto; /* Mant�m a propor��o original da imagem */
    flex: 1 1 auto; /* Permite que as imagens se ajustem automaticamente ao espa�o */
}

@media (max-width: 768px) {
    .responsive-links img {
        max-width: 150px; /* Reduz o tamanho m�ximo em telas menores */
    }
}

.custom-banner2 {
    width: 100%; /* Ajusta a largura ao tamanho do cont�iner pai */
    height: auto; /* Mant�m a propor��o original da imagem */
    max-width: 95px; /* Limita a largura m�xima da imagem */
    margin-right: 10px; /* Espa�amento � direita, se necess�rio */
    vertical-align: middle; /* Alinha verticalmente ao centro */
}


    .has-submenu {
        position: relative;
    }

    .submenu {
        display: none;
        position: absolute;
background-color: rgba(31, 31, 31, 0.5); /* Mais transparente */

        list-style: none;
        padding: 0;
        margin: 0;
        top: 100%;
        left: 0;
        z-index: 10;
    }

    .submenu li {
        margin: 0;
    }

    .submenu li a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: white;
background-color: rgba(31, 31, 31, 0.5); /* Mais transparente */

    }

    .submenu li a:hover {
        background-color: #f90;
    }

    .has-submenu:hover .submenu {
        display: block;
    }

/*  --------------  CARTAS MVP ------------------- */

/* Container geral */
.containercard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


/* Logotipo */
.logo {
    width: 100px;
    height: auto;
}

/* Texto centralizado */
.centered-text {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    
}

/* Cart�es de drop */
.drops-containerCARD {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.drops-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


.drop-cardCARD {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 250px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}


.drop-image {
    width: 100%;
    max-height: 200px; /* Limite m�ximo de altura */
    object-fit: contain; /* Mant�m a propor��o sem cortar */
    background-color: #eee; /* Fundo para imagens menores que o cont�iner */
    padding: 10px; /* Adiciona espa�o ao redor */
    box-sizing: border-box; /* Inclui o padding dentro do tamanho total */
}

.drop-infoCARD {
    padding: 10px;
}

.drop-info {
    padding: 10px;
}


.drop-info p {
    margin: 5px 0;
    font-size: 14px;
}

/* Bot�es de pagina��o */

.pagination-container {
    display: flex;
    justify-content: center;  /* Centraliza os bot�es horizontalmente */
    width: 100%;
    margin-top: 20px;
}

.pagination {
    display: flex;
    justify-content: center;  /* Centraliza os bot�es dentro da div de navega��o */
}

.pagination .btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px;
}

.pagination .btn:hover {
    background-color: #0056b3;
}


/* ------------------- ITEM DB ------------------------- */

/* Tornando o CSS exclusivo desta p�gina */
.page-item body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

.page-item .search-bar {
    margin: 20px 0;
    text-align: center;
}

.page-item .search-bar input[type="text"] {
    padding: 10px;
    width: 70%;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Estilos para o bot�o de busca */
.page-item .search-bar button {
    padding: 8px 16px; /* Ajuste do padding para deixar o bot�o mais proporcional */
    font-size: 14px; /* Diminui o tamanho da fonte para um visual mais "normal" */
    background-color: #1e3d58; /* Mant�m a cor de fundo */
    color: white; /* Cor do texto */
    border: 1px solid #ddd; /* Borda sutil */
    border-radius: 5px; /* Borda arredondada */
    cursor: pointer; /* Aparece como pointer quando passa o mouse */
    transition: background-color 0.3s; /* Efeito de transi��o suave ao passar o mouse */
    width: auto; /* Corrige para o bot�o ter largura autom�tica */
    max-width: 200px; /* Limita a largura do bot�o */
    margin-left: 10px; /* Adiciona um pequeno espa�o entre o campo de texto e o bot�o */
}

/* Hover do bot�o de busca */
.page-item .search-bar button:hover {
    background-color: #555; /* Cor de fundo mais escura quando passa o mouse */
}

.page-item .item-table {
    margin: 20px;
    overflow-x: auto; /* Permite rolar horizontalmente caso necess�rio */
}

.page-item table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.page-item table th, .page-item table td {
    text-align: left;
    padding: 12px 15px;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
}

/* Centraliza o cabe�alho da coluna ID */
.page-item table th:nth-child(1) {
    text-align: center;
}

/* Centraliza o conte�do da coluna ID */
.page-item table td:nth-child(1) {
    text-align: center;
}

.page-item table th {
    background-color: #0056b3;
    color: #fff;
    font-weight: bold;
}

.page-item table tr:hover {
    background-color: #f1f1f1; /* Destaque na linha ao passar o mouse */
}

.page-item table td img.table-item-image {
    width: 30px; /* Reduza o tamanho aqui */
    height: 30px; /* Reduza o tamanho aqui */
    object-fit: contain; /* Garante que a imagem n�o fique distorcida */
}

.page-item .info-button {
    padding: 6px 10px;
    font-size: 12px;
    color: white;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 4px;
}

.page-item .info-button:hover {
    background-color: #0056b3;
}


/* ------------------- Estilos Exclusivos para a Caixa de Pesquisa de Itens ------------------------- */

/* Caixa exclusiva para os itens encontrados na pesquisa */
.search-item-box-exclusive {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Cabe�alho da caixa de item (contendo a imagem e o nome do item) */
.search-item-header {
    margin-bottom: 15px;
}

.search-item-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.search-item-name {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

/* ID do item */
.search-item-id {
    font-size: 14px;
    color: #555;
}

/* Descri��o do item */
.search-item-description {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 15px;
}

/* Exemplo de hover para a caixa (opcional) */
.search-item-box-exclusive:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

/* -----------------------------------MONSTRO DB ---------------------*/

    .monster-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
        padding: 20px 0;
    }

    .monster-box {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: left;
        padding: 15px;
        display: flex; /* Usando Flexbox para alinhar imagem e texto horizontalmente */
        align-items: center;
        transition: transform 0.3s ease;
        position: relative;
    }

    .monster-box:hover {
        transform: translateY(-5px);
    }

    .monster-image {
        width: 100px; /* Largura fixa para a imagem */
        height: auto; /* Altura ajustada proporcionalmente */
        object-fit: contain; /* Manter propor��o da imagem sem cortar */
        margin-right: 15px; /* Espa�o entre a imagem e o texto */
        max-width: 100px; /* Largura m�xima */
        max-height: 100px; /* Altura m�xima */
    }

    .monster-info {
        flex: 1; /* O texto ocupa o restante do espa�o */
    }

    .monster-name {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0;
    }

.monster-stats {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 10px;
}

.monster-stats span {
    margin-right: 10px;
}

.monster-box-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}

.monster-box-footer .info-button {
    margin-left: 10px; /* Adiciona espa�o entre o ID e o bot�o */
    text-decoration: none; /* Remove o sublinhado do bot�o */
    color: #fff; /* Cor do texto do bot�o */
    background-color: #007bff; /* Cor do bot�o */
    padding: 5px 10px; /* Espa�amento interno do bot�o */
    border-radius: 5px; /* Borda arredondada */
    transition: background-color 0.3s ease; /* Efeito de transi��o */
}

.monster-box-footer .info-button:hover {
    background-color: #0056b3; /* Cor de fundo ao passar o mouse */
}

    /* Estilo para o bot�o de informa��es */
    .info-button {
        background-color: #0056b3; /* Cor azul para o bot�o */
        color: white;
        padding: 5px 10px; /* Tornar o bot�o menor */
        font-size: 12px; /* Diminuir o texto do bot�o */
        border: none;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        display: inline-block; /* Tornar o bot�o um elemento de bloco, mas n�o em linha com outros */
        margin-top: 10px; /* Espa�o entre o ID e o bot�o */
    }

    .info-button:hover {
        background-color: #0056b3; /* Cor azul escuro no hover */
    }

    .pagination {
        text-align: center;
        margin-top: 20px;
    }

    .pagination a {
        margin: 0 5px;
        padding: 10px;
        background-color: #1e3d58;
        color: white;
        text-decoration: none;
        border-radius: 5px;
    }

    .pagination a:hover {
        background-color: #0056b3;
    }

/* ------------------------NOVA DO MOB-------------------------*/

/* Estilo exclusivo para a p�gina de monstros */
.mobdb {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.mobdb .monster-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.mobdb .monster-table th, .mobdb .monster-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    word-wrap: break-word;
}

/* Estilo para centralizar o ID */
.mobdb .monster-table th:nth-child(1), 
.mobdb .monster-table td:nth-child(1) {
    width: 10%;
    text-align: center; /* Centraliza o conte�do da coluna ID */
}

.mobdb .monster-table th {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

.mobdb .monster-table th:nth-child(2), 
.mobdb .monster-table td:nth-child(2) {
    width: 15%;
}

.mobdb .monster-table th:nth-child(3), 
.mobdb .monster-table td:nth-child(3) {
    width: 25%;
}

.mobdb .monster-table th:nth-child(4), 
.mobdb .monster-table td:nth-child(4) {
    width: 10%;
}

.mobdb .monster-table th:nth-child(5), 
.mobdb .monster-table td:nth-child(5) {
    width: 10%;
}

.mobdb .monster-table th:nth-child(6), 
.mobdb .monster-table td:nth-child(6) {
    width: 20%;
}

.mobdb .monster-table th:nth-child(7), 
.mobdb .monster-table td:nth-child(7) {
    width: 10%;
}

.mobdb .monster-table td {
    vertical-align: middle;
}

.mobdb .monster-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.mobdb .info-button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.mobdb .info-button:hover {
    background-color: #0056b3;
}

.mobdb .pagination {
    margin-top: 20px;
    text-align: center;
}

.mobdb .pagination a {
    padding: 8px 16px;
    background-color: #f2f2f2;
    color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 5px;
}

.mobdb .pagination a:hover {
    background-color: #007bff;
    color: white;
}

.mobdb .pagination a:active {
    background-color: #0056b3;
}

/* ---------------------- MOB DETALHES ------------------- */

        .containerMOB {
            max-width: 800px;
            margin: 0 auto;
		text-align: center; /* Centraliza o texto dentro do cont�iner */
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .monster-image {
            width: 200px;
            height: 200px;
            object-fit: contain;
            margin: 10px auto;
        }
        .monster-name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .monster-stats {
            font-size: 16px;
            color: #333;
        }
        .drops-list {
            margin-top: 20px;
            font-size: 16px;
            text-align: left;
        }
        .drops-list table {
            width: 100%;
            border-collapse: collapse;
        }
        .drops-list th, .drops-list td {
            padding: 10px;
            border: 1px solid #ddd;
            text-align: left;
        }
        .drops-list th {
            background-color: #f2f2f2;
        }
        .drop-info {
            display: flex;
            align-items: center;
        }
        .drop-info img {
            max-width: 50px;
            max-height: 50px;
            object-fit: contain;
            margin-right: 10px;
        }
        .drop-id {
            font-size: 12px;
            color: #808080; /* Cor cinza */
            margin-top: 5px;
        }
        .map-info {
            margin-top: 20px;
            font-size: 16px;
            text-align: left;
        }
        .map-info table {
            width: 100%;
            border-collapse: collapse;
        }
        .map-info th, .map-info td {
            padding: 10px;
            border: 1px solid #ddd;
            text-align: left;
        }
        .map-info th {
            background-color: #f2f2f2;
        }
        .map-info td img {
            max-width: 30px;
            max-height: 30px;
            object-fit: contain;
            margin-right: 10px;
        }
.map-info td img {
    max-width: 80px;  /* Controla o tamanho m�ximo da imagem */
    max-height: 80px; /* Controla o tamanho m�ximo da imagem */
    object-fit: contain; /* Ajusta a imagem dentro do espa�o dispon�vel */
    margin-right: 10px;
}

        .back-link {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
        .back-link:hover {
            background-color: #0056b3;
        }
        .info-button {
            background-color: #007bff;
            color: white;
            padding: 5px 10px;
            text-decoration: none;
            border-radius: 5px;
        }
        .info-button:hover {
            background-color: #0056b3;
        }

/* --------------------------- ITENS DETALHES -------------------------*/

        .containerITEM {
            text-align: center; /* Centraliza o texto dentro do cont�iner */
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .item-image {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin: 20px auto;
        }
        .item-name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 10px;
        }
        .item-stats {
            font-size: 16px;
            color: #333;
        }
         .back-link {
            display: inline-block;
            margin-top: 20px;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
        .back-link:hover {
            background-color: #0056b3;
        }
        .info-button {
            background-color: #007bff;
            color: white;
            padding: 5px 10px;
            text-decoration: none;
            border-radius: 5px;
        }
        .info-button:hover {
            background-color: #0056b3;
        }

#item-details-page .monsters-list {
    margin-top: 20px;
    font-size: 16px;
    text-align: left;
}
#item-details-page .monsters-list table {
    width: 100%;
    border-collapse: collapse;
}
#item-details-page .monsters-list th, #item-details-page .monsters-list td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}
#item-details-page .monsters-list th {
    background-color: #f2f2f2;
}
#item-details-page .monster-info {
    display: flex;
    align-items: center;
}
#item-details-page .monster-info img {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    margin-right: 10px;
}
#item-details-page .monster-id {
    font-size: 12px;
    color: #808080;
    margin-top: 5px;
}


/* ---------------------- rank pvp -----------------------------*/
.rank-box {
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.rank-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.rank-table th, .rank-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.rank-table th {
    background-color: #4CAF50;
    color: white;
}

.rank-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* ------------------------------------- */

/* Seção principal */
/*main {*/
/*    margin-top: 50px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    gap: 10px;*/
/*}*/


/* Botões */
/*.cta-btn {*/
/*    padding: 15px 20px;*/
/*    font-size: 18px;*/
/*    color: #fff;*/
/*    background-color: #1976D2;*/
/*    border: none;*/
/*    border-radius: 45px;*/
/*    cursor: pointer;*/
/*    transition: 0.3s;*/
/*    width: 1900px;*/
/*    text-align: center;*/
/*}*/

/*.cta-btn:hover {*/
/*    background-color: #0D47A1;*/
/*}*/

/* Texto escondido */
/*.hidden-text, .toggle-content {*/
/*    display: none;*/
/*    margin-top: 10px;*/
/*    font-size: 16px;*/
/*    color: #FFF;*/
/*    background: rgba(0, 0, 0, 0.5);*/
/*    padding: 10px;*/
/*    border-radius: 5px;*/
/*    width: 1300px;*/
/*    text-align: center;*/
/*}*/

/*.hidden-text.visible, input[type="checkbox"]:checked + .toggle-content {*/
/*    display: block;*/
/*}*/

/* Esconde checkboxes */
/*input[type="checkbox"].toggle {*/
/*    display: none;*/
/*}*/


/*------------------------------------------------*/

/* ---------------------  elemento  --------------*/
.element-icon {
    width: 30px;
    height: 30px;
    margin-left: 8px;
    vertical-align: middle;
}


/* ---------------pequisa de mob -------------------------*/ 

/* Estilos para as caixas de monstros quando o mouse passa por cima */
.Pmob-search-item-box-exclusive:hover {
    transform: scale(1.05); /* Pequena anima��o de aumento ao passar o mouse */
}

/* Ajustando a imagem do monstro */
.Pmob-search-item-box-exclusive img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Informa��es do monstro */
.Pmob-monster-info {
    text-align: center;
}

.Pmob-monster-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.Pmob-monster-stats {
    font-size: 14px;
    color: #555;
}

.Pmob-monster-stats span {
    display: block;
    margin-bottom: 5px;
}

.Pmob-monster-box-footer {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

/* Bot�o de informa��es */
.Pmob-info-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 10px;
}

.Pmob-info-button:hover {
    background-color: #0056b3;
}

/*========================== ranks ==================================*/

/* Estilo do ranking - Ajustes */
#informacoes, #mvp-ranking {
    margin-top: 30px; /* Espa�o superior */
    margin-bottom: 30px; /* Espa�o inferior */
    padding: 0 20px; /* Adiciona espa�amento nas laterais */
}

table {
    width: 100%;
    max-width: 1200px; /* Limita a largura m�xima da tabela */
    margin: 0 auto; /* Centraliza a tabela */
    border-collapse: collapse;
    text-align: center;
    background-color: white;
    border: 1px solid #ccc;
}

th, td {
    padding: 12px; /* Aumenta o espa�amento das c�lulas */
    border: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:hover {
    background-color: #e9e9e9;
}

.class-img {
    width: 50px;
    height: 50px;
}

img {
    vertical-align: middle;
}

header {
    padding: 20px 0;
    margin: 0 auto;
}


/*=============================MENU DO DB =====================*/

/* Estilo exclusivo para o submenu com escopo limitado */
ul.submenu li {
    list-style: none; /* Remove marcadores apenas neste submenu */
}

ul.submenu li a {
    text-decoration: none; /* Remove sublinhado dos links */
    display: flex; /* Alinha os itens na horizontal */
    align-items: center; /* Alinha imagem, prefixo e texto na vertical */
}

/* Estilo para o container de texto e imagem no submenu */
ul.submenu li a .custom-icon-text {
    display: inline-flex; /* Alinha imagem, texto e prefixo lado a lado */
    align-items: center; /* Centraliza verticalmente */
    gap: 8px; /* Espa�amento entre os itens */
}

/* Prefixo "Mdb" exclusivo para o submenu */
ul.submenu li a .custom-icon-text .mdb-prefix {
    font-weight: bold; /* Negrito para "Mdb" */
    color: #333; /* Cor espec�fica */
    margin-right: 4px; /* Espa�o entre "Mdb" e a imagem */
}

/* Estilo para a imagem no submenu */
ul.submenu li a .custom-icon-text .custom-icon {
    width: 25px; /* Define a largura da imagem */
    height: 25px; /* Define a altura da imagem */
    flex-shrink: 0; /* Impede redimensionamento da imagem */
}


.custom-icon-text {
    display: flex;
    align-items: center; /* Centraliza o conte�do verticalmente */
    gap: 8px; /* Espa�o entre a imagem e o texto */
}

.custom-icon {
    width: 20px; /* Ajuste o tamanho da imagem */
    height: 20px; /* Ajuste o tamanho da imagem */
}

/*=============================Mcarrosel=====================*/
/* Estilos gerais */
/* Estilos para o ícone do menu hambúrguer */
.menu-icon {
    display: none; /* Esconder por padrão */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
}

.menu-icon .bar {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    .menu-icon {
        display: flex; /* Mostrar o ícone apenas em dispositivos móveis */
    }

    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 1000;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 10px 0;
        text-align: center;
    }

    .nav-list li a {
        padding: 10px;
        display: block;
    }

    .has-submenu .submenu {
        display: none;
    }

    .has-submenu.active .submenu {
        display: block;
    }
}
body {
    background-color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.container-carrosel {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.section {
    background-color: white;
    border: 1px solid #C6C6C6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

.section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.section h1 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #3A3B3C;
}

.section p {
    font-size: 1em;
    color: #555;
}

.section a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.section a:hover {
    background-color: #0056b3;
}
.carousel-container {
    width: 100%;
    max-width: 800px; /* Ajuste conforme necessário */
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carousel-navigation {
    text-align: center;
    margin-top: 10px;
}

.carousel-navigation label {
    cursor: pointer;
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #007BFF;
    color: #007BFF;
    border-radius: 5px;
}

input[type="radio"] {
    display: none;
}

#slide1:checked ~ .carousel {
    transform: translateX(0%);
}

#slide2:checked ~ .carousel {
    transform: translateX(-100%);
}

#slide3:checked ~ .carousel {
    transform: translateX(-200%);
}

.online-count {
    position: relative; /* Permite posicionar o hexágono dentro deste contêiner */
    font-size: 16px;
    color: white;
    padding: 10px 20px; /* Espaçamento interno */
    display: inline-block; /* Faz o contêiner se ajustar ao conteúdo */
}

.hexagon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centraliza o hexágono */
    width: 130px; /* Largura do hexágono */
    height: 50px; /* Altura do hexágono */
    background-color: #007BFF; /* Cor do hexágono */
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); /* Formato do hexágono */
    z-index: -1; /* Coloca o hexágono atrás do texto */
    text-shadow: 
                -2px -2px 0 black, /* Borda superior esquerda */
                2px -2px 0 black,  /* Borda superior direita */
                -2px 2px 0 black,  /* Borda inferior esquerda */
                2px 2px 0 black;   /* Borda inferior direita */
            border-radius: 5px; /* Bordas arredondadas (opcional, se aplicável ao fundo) */
            padding: 10px; /* Adiciona espaçamento interno (opcional) */
}

.message-container {
    padding: 10px;
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
    border-radius: 5px;
}

.message-container p {
    font-size: 16px;
    font-weight: bold;
}

.message-container p.success {
    color: green;
}

.message-container p.error {
    color: red;
}

.growth-section {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 0;
    text-align: center;
    color: white;
    border-top: 2px solid #1a3e72;
    border-bottom: 2px solid #1a3e72;
}

.growth-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4a90e2;
    text-transform: uppercase;
}

.growth-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.stat-box {
    background-color: rgba(26, 62, 114, 0.5);
    padding: 20px;
    border-radius: 10px;
    min-width: 120px;
    border: 1px solid #2a4b7c;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: #4a90e2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #ccc;
}

.growth-section h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: #4a90e2;
    text-transform: uppercase;
}

.classes-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.class-box {
    background-color: rgba(26, 62, 114, 0.7);
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid #2a4b7c;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    text-decoration: none;
    color: white;
}

.class-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.class-box span {
    text-align: center;
    font-size: 14px;
}

.class-box:hover {
    background-color: rgba(74, 144, 226, 0.7);
    transform: translateY(-3px);
    color: #fff;
}

.class-box:hover .class-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(74, 144, 226, 0.8));
}

/* Responsive Styles */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-box {
        width: 80%;
    }
    
    .classes-container {
        gap: 10px;
    }
    
    .class-box {
        padding: 10px;
        min-width: 80px;
    }
    
    .class-icon {
        width: 40px;
        height: 40px;
    }
    
    .class-box span {
        font-size: 12px;
    }
}

.discord-section {
    background-color: #2c2f33;
    padding: 50px 0;
    color: white;
    border-top: 3px solid #7289da;
    border-bottom: 3px solid #7289da;
}

.discord-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 40px;
    color: #fdfdfd;
    text-transform: uppercase;
}

.discord-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.discord-info {
    flex: 1;
    padding: 20px;
}

.discord-widget {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.discord-feature {
    margin-bottom: 30px;
}

.discord-feature h3 {
    color: #7289da;
    font-size: 20px;
    margin-bottom: 15px;
}

.discord-feature ul {
    padding-left: 20px;
}

.discord-feature li {
    margin-bottom: 15px;
    list-style-type: none;
    position: relative;
    padding-left: 25px;
}

.discord-feature li:before {
    content: "•";
    color: #7289da;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -3px;
}

.discord-feature strong {
    color: #7289da;
}

.discord-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #7289da;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.discord-button img {
    width: 24px;
    height: 24px;
}

.discord-button:hover {
    background-color: #5a6fbb;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
}

/* Responsive Design */
@media (max-width: 900px) {
    .discord-content {
        flex-direction: column;
        align-items: center;
    }
    
    .discord-widget {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .discord-widget {
        width: 100%;
    }
    
    .discord-widget iframe {
        width: 100%;
    }
}

.downloads-section {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 0;
    color: white;
    border-top: 2px solid #1a3e72;
    border-bottom: 2px solid #1a3e72;
}

.section-divider {
    width: 100%;
    height: auto;
    vertical-align: middle;
    margin: 20px 0;
}

.downloads-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 25px;
}

.downloads-card {
    background-color: rgba(26, 62, 114, 0.5);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #2a4b7c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.downloads-card h3 {
    color: #4a90e2;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.downloads-card p {
    text-align: center;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.download-platforms {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    width: 160px;
}

.platform-icon {
    background-color: rgba(74, 144, 226, 0.2);
    border: 1px solid #4a90e2;
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.platform-link img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.platform-link span {
    margin-top: 10px;
    font-weight: bold;
}

.platform-link:hover {
    transform: translateY(-5px);
}

.platform-link:hover .platform-icon {
    background-color: rgba(74, 144, 226, 0.4);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.download-note {
    text-align: center;
    font-style: italic;
    color: #a0a0a0;
    margin-top: 20px;
}

.downloads-notice {
    background-color: rgba(114, 137, 218, 0.1);
    border: 1px solid #7289da;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.downloads-notice h3 {
    color: #f04747;
    font-size: 22px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.downloads-notice p {
    margin-bottom: 20px;
    color: #e0e0e0;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #7289da;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.support-button:hover {
    background-color: #5a6fbb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 137, 218, 0.4);
}

.support-button img {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .download-platforms {
        gap: 15px;
    }
    
    .platform-link {
        width: 120px;
    }
    
    .platform-icon {
        height: 80px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .downloads-card {
        padding: 20px 15px;
    }
    
    .download-platforms {
        gap: 10px;
    }
    
    .platform-link {
        width: 100px;
    }
    
    .platform-link img {
        max-height: 50px;
    }
    
    .platform-link span {
        font-size: 14px;
    }
}

.server-info-section {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 0;
    color: white;
    border-top: 2px solid #1a3e72;
    border-bottom: 2px solid #1a3e72;
}

.section-divider {
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.section-divider h2 {
    text-align: center;
}

.features-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

.feature-card {
    background-color: rgba(26, 62, 114, 0.5);
    border-radius: 10px;
    padding: 25px;
    width: 280px;
    text-align: center;
    border: 1px solid #2a4b7c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(74, 144, 226, 0.3);
    border-color: #4a90e2;
}

.feature-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid rgba(74, 144, 226, 0.5);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    color: #4a90e2;
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.info-button {
    display: inline-block;
    background-color: #4a90e2;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 14px;
}

.info-button:hover {
    background-color: #3a7bc8;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.5);
}

.server-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.details-column {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.details-box {
    background-color: rgba(26, 62, 114, 0.5);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #2a4b7c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 100%;
}

.details-box h3 {
    color: #4a90e2;
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-box h4 {
    color: #4a90e2;
    font-size: 20px;
    margin: 25px 0 15px;
}

.details-box p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #e0e0e0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.notice-box {
    background-color: rgba(240, 71, 71, 0.1);
    border-left: 3px solid #f04747;
    padding: 12px 15px;
    margin: 20px 0;
    border-radius: 0 5px 5px 0;
}

.notice-box p {
    margin: 0;
    color: #ff9e9e;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-card {
        width: 100%;
        max-width: 350px;
    }
    
    .details-column {
        min-width: 100%;
    }
    
    .server-details {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .feature-card {
        padding: 20px;
    }
    
    .details-box {
        padding: 25px 20px;
    }
    
    .details-box h3 {
        font-size: 22px;
    }
}

 .login-section {
        padding: 40px 0;
        color: white;
        border-top: 2px solidrgb(14, 54, 109);
        border-bottom: 2px solidrgb(11, 47, 97);
    }

    .login-container {
        max-width: 500px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .login-card {
        background-color: rgba(5, 5, 5, 0.9);
        border-radius: 10px;
        padding: 40px;
        border: 1px solidrgb(5, 5, 5);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.51);
    }

    .login-card h3 {
        color: #4a90e2;
        font-size: 24px;
        margin-bottom: 10px;
        text-align: center;
    }

    .login-card p {
        text-align: center;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #white;
        font-weight: bold;
    }

    .form-group input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 5px;
        border: 1px solidrgb(22, 53, 100);
        background-color: rgba(26, 63, 114, 0.86);
        color: white;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .form-group input:focus {
        outline: none;
        border-color: #4a90e2;
        box-shadow: 0 0 0 2px rgba(25, 74, 131, 0.69);
    }

    .login-button {
        width: 100%;
        background-color: #4a90e2;
        color: white;
        border: none;
        padding: 14px;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
    }

    .login-button:hover {
        background-color: #3a7bc8;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(11, 41, 75, 0.7);
    }

    .login-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .login-links a {
        color: #e0e0e0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .login-links a:hover {
        color: #4a90e2;
    }

    .login-links span {
        color: #4a90e2;
    }

    .login-links strong {
        color: #4a90e2;
        font-weight: bold;
    }

    .login-message {
        background-color: rgba(240, 71, 71, 0.2);
        border-left: 3px solid #f04747;
        padding: 12px 15px;
        margin-bottom: 20px;
        border-radius: 0 5px 5px 0;
        color: #ff9e9e;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .login-card {
            padding: 30px 25px;
        }
    }

    @media (max-width: 480px) {
        .login-card {
            padding: 25px 20px;
        }
        
        .login-links {
            flex-direction: column;
            gap: 5px;
        }
        
        .login-links span {
            display: none;
        }
    }
    
     .register-section {
        padding: 40px 0;
        color: white;
        border-top: 2px solid #1a3e72;
        border-bottom: 2px solid #1a3e72;
    }

    .register-container {
        max-width: 600px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .register-card {
        background-color: rgba(7, 7, 7, 0.81);
        border-radius: 10px;
        padding: 40px;
        border: 1px solid #2a4b7c;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .register-intro {
        text-align: center;
        margin-bottom: 25px;
        color: #e0e0e0;
        line-height: 1.6;
    }

    .register-notes {
        background-color: rgba(74, 144, 226, 0.2);
        border-left: 3px solid #4a90e2;
        padding: 15px;
        margin-bottom: 25px;
        border-radius: 0 5px 5px 0;
    }

    .register-notes p {
        margin: 8px 0;
        font-size: 14px;
        color: #e0e0e0;
    }

    .register-notes strong {
        color: #4a90e2;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        color: #4a90e2;
        font-weight: bold;
    }

    .form-group input {
        width: 100%;
        padding: 12px 15px;
        border-radius: 5px;
        border: 1px solid #2a4b7c;
        background-color: rgba(26, 62, 114, 0.5);
        color: white;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .form-group input:focus {
        outline: none;
        border-color: #4a90e2;
        box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.3);
    }

    .radio-group {
        display: flex;
        gap: 20px;
        margin-top: 10px;
    }

    .radio-group label {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

    .radio-group input[type="radio"] {
        appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #2a4b7c;
        border-radius: 50%;
        background-color: rgba(26, 62, 114, 0.5);
        transition: all 0.3s ease;
    }

    .radio-group input[type="radio"]:checked {
        background-color: #4a90e2;
        border-color: #4a90e2;
    }

    .register-button {
        width: 100%;
        background-color: #4a90e2;
        color: white;
        border: none;
        padding: 14px;
        border-radius: 5px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 20px;
    }

    .register-button:hover {
        background-color: #3a7bc8;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(74, 144, 226, 0.3);
    }

    .register-links {
        text-align: center;
        margin-top: 20px;
        font-size: 14px;
    }

    .register-links a {
        color: #4a90e2;
        text-decoration: none;
        font-weight: bold;
    }

    .register-links a:hover {
        text-decoration: underline;
    }

    .register-message {
        background-color: rgba(240, 71, 71, 0.2);
        border-left: 3px solid #f04747;
        padding: 12px 15px;
        margin-bottom: 20px;
        border-radius: 0 5px 5px 0;
        color: #ff9e9e;
    }
    
     .register-card h3 {
        color: #4a90e2;
        font-size: 24px;
        margin-bottom: 10px;
        text-align: center;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .register-card {
            padding: 30px 25px;
        }
        
        .radio-group {
            flex-direction: column;
            gap: 10px;
        }
    }

    @media (max-width: 480px) {
        .register-card {
            padding: 25px 20px;
        }
    }
    
    /* Estilo para o select personalizado */
.select-wrapper {
    position: relative;
    width: 100%;
}

select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #2a4b7c;
    background-color: rgba(26, 62, 114, 0.5);
    color: white;
    font-size: 16px;
    appearance: none; /* Remove o estilo padrão do navegador */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

select:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.3);
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #4a90e2;
    pointer-events: none;
}

/* Estilo para as opções */
select option {
    background-color: rgba(26, 62, 114, 0.9);
    color: white;
}

/* Estilo para o placeholder */
select option[disabled][selected] {
    color: #a0a0a0;
}

.vip-section {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 0;
    color: white;
    border-top: 2px solid #1a3e72;
    border-bottom: 2px solid #1a3e72;
}

.vip-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vip-intro {
    background-color: rgba(26, 62, 114, 0.5);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #2a4b7c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.vip-intro h3 {
    color: #4a90e2;
    font-size: 26px;
    margin-bottom: 15px;
    text-align: center;
}

.vip-intro p {
    margin-bottom: 15px;
    line-height: 1.6;
    text-align: center;
    color: #e0e0e0;
}

.vip-packages {
    margin-bottom: 40px;
}

.vip-packages h3 {
    color: #4a90e2;
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.package-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2a4b7c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(74, 144, 226, 0.3);
}

.package-item img {
    width: 100%;
    height: auto;
    display: block;
}

.payment-methods {
    background-color: rgba(26, 62, 114, 0.5);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #2a4b7c;
}

.payment-methods h3 {
    color: #4a90e2;
    font-size: 24px;
    text-align: center;
    margin-bottom: 25px;
}

.payment-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.payment-image {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2a4b7c;
}

.payment-image img {
    width: 100%;
    height: auto;
    display: block;
}

.payment-buttons {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.payment-button {
    background-color: #4a90e2;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-button.whatsapp {
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.vip-commands {
    background-color: rgba(26, 62, 114, 0.5);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #2a4b7c;
}

.vip-commands h3 {
    color: #4a90e2;
    font-size: 26px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.command-category {
    margin-bottom: 20px;
}

.command-category h4 {
    color: #4a90e2;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2a4b7c;
}

.command-list {
    list-style: none;
    padding: 0;
}

.command-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-content {
        flex-direction: column;
    }
    
    .payment-image, .payment-buttons {
        min-width: 100%;
        max-width: 100%;
    }
    
    .commands-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .vip-intro, .payment-methods, .vip-commands {
        padding: 25px 20px;
    }
    
    .package-item {
        min-width: 200px;
    }
}
   
   
/* Estilos para os botões de votação */
.vote-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.vote-option {
    text-align: center;
    width: 250px;
}

.vote-button {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    border: none;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vote-button-special {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    border: none;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.vote-button-special:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.vote-button-special:active {
    transform: translateY(1px);
}

.vote-now {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vote-button img, .vote-button-special img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.vote-text {
    margin-top: 10px;
    font-weight: bold;
    color: #333;
}

.time-remaining {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 5px;
}

/* Efeito para o botão especial */
.vote-button-special::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
} 
