@import url('https://fonts.googleapis.com/css?family=Patua+One');

@font-face {
    font-family: 'Martel';
    src: url('/layout/martel.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.page-title {
    position: absolute;
    top: 230px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Martel', serif;
    font-size: clamp(40px, 8vw, 80px);
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0;
    /* background: linear-gradient(to top, #454545, #95303080); */
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: #ffffff;
    -webkit-text-stroke: 0.1px #000000;
    z-index: 2;
}

.page-title::before {
    
    content: "";
    position: absolute;
    top: 25%;
    left: -20%;
    transform: translate(-50%, -50%) scale(3);
    width: 150%;
    height: 150%;
    background: url('img/titulo_small.gif') center/contain no-repeat;
    /* opacity: 0.9; */
    z-index: -1;
    pointer-events: none;
    filter: drop-shadow(0 0 100px rgb(255, 255, 255));
}

 .aura {
    animation: auraPulse 3s infinite;
}

.aura::before {
    animation: auraGlow 7s infinite;
}

@keyframes auraPulse {
    0% {
       text-shadow: 2px 2px 0px #ffffff, 0px 0px 8px #ffee04;
    }
    50% {
        text-shadow: 2px 2px 0px #ffffff, 5px 0px 10px #ffb300 ;
    }
    100% {
        text-shadow: 2px 2px 0px #ffffff, 0px 0px 8px #ffee04;
    }
}


@keyframes auraGlow {
    0% {
        filter: drop-shadow(0 0 1px rgb(255, 255, 255));
        
        transform: translate(-50%, -50%) scale(2);
    }
    50% {
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.84));
        
        transform: translate(-50%, -50%) scale(2.1);
    }
    100% {
        filter: drop-shadow(0 0 1px rgb(255, 255, 255));
       
        transform: translate(-50%, -50%) scale(2);
    }
}


/* Esconde o input original */
input[type="file"] {
    display: none;
}

/* Estilo do botÃ£o customizado */
.file-label {
    display: inline-block;
    padding: 8px 15px;
    background: #000000ad;
    border: 1px solid #ffd391;
    color: #ffaa00;
    font-size: 12px;
    text-shadow: 1px 1px 0 #000;
    border-radius: 10px;
    cursor: pointer;
}

/* Quando passar o mouse */
.file-label:hover {
    background: #222;
}

/* Texto ao lado do botÃ£o */
#file-name {
    margin-left: 10px;
    font-size: 12px;
    color: #ffaa00;
}

select { 
    /* EstilizaÃ§Ã£o para a caixa de seleÃ§Ã£o */
    backdrop-filter: blur(1px);
    width: auto !important; /* Permite que o width se ajuste se necessÃ¡rio */
    height: 33px;
    padding: 5px 10px;
    border-radius: 7px;
    border: 1px solid #ffffff;
    background: #000000ba; /* Fundo escuro */
    color: #ffaa00; /* Texto em Laranja-Ouro Neon */
    font: 100% arial; /* Garante que a fonte seja aplicada */
    vertical-align: middle; /* MantÃ©m o alinhamento central */
    
    /* Remove a aparÃªncia nativa (crucial para o estilo funcionar) */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    
    /* Adiciona brilho ao foco/clique */
    transition: box-shadow 0.2s ease-in-out, border 0.2s ease-in-out;
}

select:focus {
    /* Brilho Neon Azul ao focar */
    border: 1px solid #ffaa00;
    box-shadow: 0 0 8px #ffaa00;
    outline: none;
    
}

select option {
    /* Estilizando as opÃ§Ãµes (o menu drop-down) */
    background: #0000005b;
    color: #f0f8ff;
    padding: 5px;
}

textarea {
    max-width: 530px !important;
    border-radius: 7px;
    /* Copiado do .form_settings input para textarea */
    padding: 5px; 
    font: 100% arial; 
    border: 1px solid #004d66;
    background: #1a1a33;
    color: #ffaa00;
}


/* --- ESTILIZAÃ‡ÃƒO DO BOTÃƒO DE SUBMIT (Baseado no seu HTML) --- */

/* Estilo para o seu botÃ£o de submit que usa a classe .hover */
input[type="submit"].hover {
    /* ModernizaÃ§Ã£o: Remove a imagem e usa CSS Neon */
    background: #00000012 !important; /* Fundo base escuro/azul */
    color: #ffaa00 !important; /* Texto neon azul */
    
    /* SubstituiÃ§Ã£o das medidas do estilo embutido */
    width: 120px !important;
    height: 30px !important; /* Aumentei um pouco a altura para o texto caber */
    line-height: 28px; /* Centraliza o texto verticalmente */
    
    /* Borda e Arredondamento */
    border: 1px solid #ffaa00 !important;
    border-radius: 7px;
    padding: 0 !important;
    
    /* TransiÃ§Ã£o para o efeito hover */
    transition: all 0.2s ease-in-out;
    
    /* Garante que o vertical-align seja aplicado */
    vertical-align: middle !important;
    font-weight: bold;
    /* text-shadow: 0 0 5px rgba(0, 234, 255, 0.7); */ /* Sombra de texto sutil */
}

input[type="submit"].hover:hover {
    background: #ffaa00 !important; /* Inverte as cores no hover */
    color: #0a0a1a !important;
    cursor: pointer;
    box-shadow: 
        0 0 5px #ffaa00,
        0 0 15px #ffaa00;
    text-shadow: none;
}


/* --- RESTANTE DO CSS (INALTERADO) --- */

body
{
    background:
    url("img/bg.jpg") center top no-repeat,
    linear-gradient(to right, rgb(0, 0, 0), rgb(0, 0, 0));
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #f0f8ff;
}

a
{
           
           text-shadow: -3px 1px 2px #000a0c, 0 0 20px #000000;
           text-decoration: none;
           font-weight: 700;
           color: #ffffff;
           transition: color 0.1s linear, text-shadow 0.2s linear;
}
a:hover
{
    color: #ffaa00;
    text-shadow: 0 0 5px #ffaa00;
}
ul { 
    margin: 2px 0 0 0;
    padding: 0;
}
ul li { 
    list-style-type: none;
    margin: 0 0 6px 0; 
    padding: 0 0 4px 5px;
    line-height: 1.5em;
}

ol { 
    margin: 8px 0 5px 5px;
}

ol li { 
    margin: 0 0 11px 0;
}

/* --- ESTILOS DE FORMULÃRIO (Onde a regra .form_settings ainda Ã© necessÃ¡ria) --- */

.form_settings { 
    margin: 15px 0 0 0;
}

.form_settings p { 
    padding: 0 0 4px 0;
}

.form_settings span { 
    float: left; 
    width: 200px; 
    text-align: left;
    color: #f0f8ff;
}
    
.form_settings input { /* Target input fields */
    padding: 5px; 
    width: 299px; 
    font: 100% arial; 
    border: 1px solid #004d66;
    background: #1a1a33;
    color: #ffaa00;
    border-radius: 7px;
}
    
.form_settings .submit { /* Submit buttons dentro de .form_settings */
    font: 100% arial; 
    border: 0; 
    width: 99px; 
    margin: 0 0 0 212px; 
    height: 33px;
    padding: 2px 0 3px 0;
    cursor: pointer; 
    background: #004d66;
    color: #ffaa00;
    border-radius: 10px; 
    transition: all 0.2s ease-in-out;
}

.form_settings .submit:hover  {
    background: #ffaa00;
    color: #0a0a1a;
    box-shadow: 
        0 0 5px #ffaa00,
        0 0 15px #ffaa00;
}
.form_settings .checkbox { 
    margin: 4px 0; 
    padding: 0; 
    width: 14px;
    border: 0;
    background: none;
}

.separator { 
    width: 100%;
    height: 0;
    border-top: 1px solid #ffaa00;
    border-bottom: 1px solid #1a1a33;
    margin: 0 0 20px 0;
}
    
/* --- ESTILOS DE TABELAS --- */
table {
    margin: 10px 0 30px 0;
    width: 100%;
    border-spacing: 5px;
    border-collapse: separate;
    border-radius: 10px;
    overflow: hidden;
}

table tr th{
    background: #ffd391;
    color: #000000;
    padding: 7px 4px;
    text-align: left;
    text-shadow: -6px 1px 18px #ffa000;
    max-height:30px;
}

tr.yellow td {
    background: #ffffff83;
    color: #f0f8ff;
    padding: 7px 4px;
    text-align: left;
    max-height:30px;
}
table tr td {
    border-radius: 3px;
    padding-left: 10px;
    text-shadow: 0 0 10px #000000, -1px -1px 0px #000000;
    backdrop-filter: blur(1px);
    background: #00000069;
    max-height:30px;
    /* color: #ffaa00; */
    box-shadow: -2px -2px 0px 0px rgb(255 211 145);
}


table.stripped tr:nth-child(even) td {
    background-color: #fff9f13b;
}
table.stripped tr:nth-child(odd) td{
    background-color: #ff000000;
}
table.TableContent tr td , table.Table3 tr td { 
    background: #2a2a44;
}
table.TableContent tr.LabelH td { 
    background: #dfe6e9;
    color: #ffaa00;
}
.TableContainer table{ 
    margin: 0 !important;
    border-radius: 5px;
}
.TableContainer td { 
    padding:14px 13px !important;
}
td.outfitColumn {
  height: 25px;
  overflow: visible; /* importante! */
}
td.outfitColumn img {
  max-height: 100px;
  display: block;
  margin-top: -45px; /* sobe a imagem para ultrapassar */
}
table tr td img { 
    max-height:100px;
}
input.hover:hover
{
    cursor: pointer;
}
/* guild war */
tr.special:hover td {
    background: #ffa2008f !important;
    color: #ffa000 !important;
}

tr.special {

    cursor: pointer;
}

ul.war_list li {
    font-size:18px;
}

/* --- ESTRUTURA E LAYOUT --- */

.container_main
{
    width: 1322px; 
    margin: 350px auto 0 auto;
}
.container_left, .container_right
{
    width: 246px;
    float: left;
    margin: 15px 0 0 0;
}
.container_mid
{
    min-height: 200px;
    width: 800px; 
    float: left;
    margin: 0 15px;
}

.left_box, .right_box
{
    width: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.171), rgba(255, 255, 255, 0.322));
    /* border: 1px solid #ffaa00;  */
    border-radius: 15px;
    position: relative;
    margin-bottom: 50px; 
    
    box-shadow: -2px -4px 0px #ffd391;


	backdrop-filter: blur(5px);


}

.center_box
{
    width: 100%;
    background: rgba(0, 0, 0, 0);
    /* border: 1px solid #ffaa00;  */
    border-radius: 15px; 
    position: relative;
    margin-bottom: 30px; 
    
    /* box-shadow: 
        0 0 5px #ffaa00, 
        0 0 15px #ffaa00, 
        0 0 25px #ffaa00;  */
}

.corner_lt, .corner_rt, .corner_rb, .corner_lb {
    display: none;
}

.left_box .content, .right_box .content
{
    margin: 0px 15px;
    width: auto;
    padding: 20px 10px;
}
.center_box .content_bg
{
    border-radius: 18px;
    font-size: 15px !important;
    width: 800px;
    position: relative;
    background: linear-gradient(to bottom, rgb(0 0 0) 0%, rgb(0 0 0 / 53%) 90%, rgb(8 0 0 / 6%) 100%);
    color: #fff1da;
}
.center_box .content_bg .content
{
    padding: 20px;
}
#textocentral{
    padding: 40px;
}

.left_box .border_bottom, .right_box .border_bottom, .center_box .border_bottom
{
    background: none;
    border-top: 2px solid #ffffff00;
    width: 100%;
    display: block;
    height: 1px;
    border-bottom-left-radius: 15px; 
    border-bottom-right-radius: 15px;
}
.left_box .title, .right_box .title, .center_box .title
{
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 45px;
    line-height: 45px;
    position: relative;
    text-align: center;
    color: #ffffff;
    border-bottom: 1px solid #ffaa00;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    /* text-shadow: 0 0 2px #ffffff, 0 0 2px #ffffff; */
}

.title span
{
    background-image: none !important;
    width: 100%;
    height: 45px;
    display: block;
}

.rise-up-content
{
    position: relative;
    z-index: 10;
}
.left_box ul li a:after
{
    content: "";
    width: 100%;
    background: #ffffff2e;
    height: 2px;
    display: block;
    margin-left: -10px;
}
.title img
{
    max-width: 40px;
    position: absolute;
    left: 20px;
    top: 2px;
    z-index: 6;
    border-radius: 10px;
}
.left_box ul
{
    list-style: none;
    padding: 0;
    margin: 0 0 0 8px;
}
.left_box ul li
{
    padding: 1.5px 0 2px 0;
    margin: 0;
}
.left_box ul li a:hover
{
    font-size: 18px;
    color: #f9b514;
    padding-left: 5px;
    text-shadow: 2px 2px 0px #000000d3;
}
input
{
    width: 158px;
    height: 33px;
    background: #000000ad;
    padding: 0 10px;
    margin: 0 0 4px 11px;
    border: 1px solid #ffd391;
    color: #ffaa00;
    font-size: 12px;
    text-shadow: 1px 1px 0 #000;
    border-radius: 10px;
}
/* ========================================= */
/* RESET: Inputs da Tabela de Seleção de Pacotes */
/* ========================================= */

/* Seleciona qualquer INPUT dentro do formulário de seleção de pacotes */
#form_selecao_pacote input {
    /* O mais importante: zera o tamanho */
    width: auto !important;
    height: auto !important;
    
    /* Zera margens e paddings herdados */
    margin: 0 !important;
    padding: 0 !important;    
    /* Zera os estilos visuais que não são apropriados para radio buttons */
    background: transparent !important; /* Fundo transparente */
    border: none !important;           /* Sem borda */
    color: initial !important;         /* Cor do texto padrão */
    font-size: initial !important;     /* Tamanho de fonte padrão */
    text-shadow: none !important;      /* Sem sombra */
    border-radius: 0 !important;       /* Sem bordas arredondadas */
    
    /* Garante que o input seja tratado como um elemento de controle */
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.loginbtn, .createbtn 
{
    background: #ffd39178; 
    border-radius: 7px !important;
    color: #ffffff ;
    line-height: 23px !important;
    text-align: center !important;
    padding: 0 !important;
    border: 0 none !important;
    display: inline-block !important;
    vertical-align: middle !important;
    transition: all 0.2s ease-in-out ;
    width: 80px !important;
    height: 23px !important;
    margin: 0 0 4px 12px !important;
}
input:hover
{
    background-color: #ffd391b5;
    cursor: pointer;
    color: #ffffff;
    box-shadow: 
        0 0 5px #ffaa00,
        0 0 10px #ffaa00;
}

.download_client
{
    display: block;
    width: 250px;
    height: 59px;
    background: #00000059;
    margin: 0 0 10px -2px;
    border-radius: 10px;
    line-height: 59px;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
}
.download_client:hover
{
    background: #000000c0;
    color: #ffffff;
    box-shadow: 
        0 0 5px #ffaa00,
        0 0 15px #ffaa00;
}
.whatsapp
{
    display: block;
    width: 250px;
    height: 59px;
    background: #15724e;
    margin: 0 0 10px -2px;
    border-radius: 10px;
    line-height: 59px;
    text-align: center;
    color: #ffffff;
    font-size: 20px;
}
.whatsapp:hover
{
    background: #024b00;
    color: #ffffff;
    box-shadow: 
        0 0 5px #ffaa00,
        0 0 15px #ffaa00;
}
.right_box
{
    font-size: 13px;
    text-shadow: 0 1px 0 #000;
}
.right_box a
{
    color: #f0f8ff;
    transition: color 0.1s linear, text-shadow 0.2s linear;
}
.right_box a:hover
{
    color: #ffaa00;
    text-shadow: 0 0 5px #ffaa00;
}
table.sinfotable
{
    margin: 0 8px;
    font-size: 13px;
    width: 183px;
}
table.sinfotable td
{
    /* border-bottom: 1px solid #00334d; */
    /* border-top: 1px solid #1a1a33; */
    background: none transparent;
    color: #fff;
    padding: 4px 4px;
}
ul.toplvl
{
    list-style: none;
    margin: 0 8px;
}
ul.toplvl li
{
    padding: 1px 0;
    margin: 0;
}
.lvl
{
    display: block;
    background: #ffaa00;
    float: right;
    height: 15px;
    line-height: 14px;
    color: #0a0a1a;
    text-shadow: none;
    padding: 0px 5px;
    border-radius: 7px;
    box-shadow: 0 0 5px #ffaa00;
    border-top: 1px solid #ffcc66;
}
.acc_menu
{
    width: 183px;
    margin: 0 8px;
}
.acc_menu a
{
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    padding: 3px 0;
    font-size: 12px;
    text-align: center;
    background: rgba(0,0,0,0.5);
    border: 1px solid #004d66; 
    box-shadow: 0 1px 3px rgba(0,0,0,0.5) inset;
    border-radius: 7px;
    color: #ffaa00;
    transition: all 0.2s linear;
    margin: 1px 0;
}
.acc_menu a:hover
{
    background: #ffaa00;
    color: #0a0a1a;
    box-shadow: 0 0 10px #ffaa00;
}
.footer_cnt
{
    width: 1322px;
    float: left;
    margin: 20px auto 70px auto;
}

/* --- SLIDER --- */

.slider
{
    width: 207px;
    height: 100px;
    margin-left: -3px;
    margin-top: -3px;
    margin-bottom: -2px;
    border-radius: 10px;
    overflow: hidden;
}

#slides
{
    display: none;
    width: 207px;
    height: 100px;
    float: left;
    z-index: 90;
    overflow: initial !important;
    position: relative;
}
.slidesjs-pagination
{
    z-index: 999;
    position: absolute;
    bottom: 5px;
    right: 5px;
}
ul.slidesjs-pagination
{
    list-style: none;
    padding: 3px;
    border-radius: 7px;
    margin: 0;
    background: rgba(0,0,0,0.7);
}
.slidesjs-pagination li
{
    float: left;
    margin: 0 3px;
    padding: 0;
}
.slidesjs-pagination li a
{
    background: rgba(0,234,255,0.3);
    display: block;
    width: 10px;
    height: 10px;
    float: left;
    overflow: hidden;
    text-indent: -999999999px;
    line-height: 99px;
    color: rgba(0,0,0,0.6);
    border-radius: 15px;
}
.slidesjs-pagination li a:hover,
.slidesjs-pagination li a.active
{
    background: #ffaa00;
    box-shadow: 0 0 5px #ffaa00;
}

/* --- BARRA SUPERIOR FIXA --- */
.top-bar
{
    position: fixed;
    z-index: 200;
    top: 15px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Patua One', cursive;
    height: 50px;
    line-height: 50px;
    background: rgba(0,0,0,0.5);
    color: #ffaa00;
    border-radius: 10px;
    
    text-shadow: 
        0 0 5px #ffaa00, 
        0 0 10px #ffaa00,
        0 0 15px #ffaa00;
        
    font-weight: normal;
    font-size: 30px;
}
.top-bar a
{
    color: #ffaa00;
    text-shadow: 
        0 0 5px #ffaa00,
        0 0 10px #ffaa00;
}

#LMS, #BOSS, #MAPA, #WARS {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}
#WARS {
    height: 10000px;
}
#MAP {
    height: 200px;
}

iframe {
    position: relative;
    top: 1px;
    left: 5px;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

pix-action-container {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap; 
}

/* Área do Código PIX (à esquerda) */
.pix-code-area {
    flex-grow: 1;
    min-width: 250px;
}

/* Campo de Texto (Textarea) */
#pix_code_display {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-family: monospace;
    font-size: 14px;
    height: 100px;
    resize: none;
    box-sizing: border-box;
}

/* ------------------------------------- */
/* NOVO: Área dos Botões (à direita) */
/* ------------------------------------- */
.pix-buttons-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    
    /* 1. Define uma largura máxima para o contêiner dos botões (opcional, mas ajuda a limitar o tamanho) */
    width: 250px; 
    
    /* 2. Centraliza os botões dentro do seu contêiner (se o width for menor que o espaço disponível) */
    align-items: stretch; /* Garante que os filhos (botões) ocupem 100% da largura do pai */
}

/* ------------------------------------- */
/* NOVO: Estilos Comuns para os Botões PIX */
/* ------------------------------------- */
.pix-buttons-area button,
.pix-buttons-area .pix-btn-link {
    /* Ocupa 100% da largura de .pix-buttons-area (que definimos como 250px acima) */
    width: 100%; 
    padding: 10px 10px; /* Padding ajustado */
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
    box-sizing: border-box; /* Inclui padding e borda no cálculo do width */
}

/* Estilo do Botão COPIAR PIX */
.pix-btn-copy {
    background-color: #4CAF50; 
    color: white;
    border: none;
}
.pix-btn-copy:hover {
    background-color: #45a049;
}

/* Estilo do Botão MERCADO PAGO (Link) */
.pix-btn-link {
    background-color: #009ee3; 
    color: white;
    border: 1px solid #009ee3;
    
    /* === REGRAS DE RESET PARA ANULAR ESTILOS GERAIS DA TAG A === */
    text-decoration: none !important; /* ANULA sublinhado da tag A */
    color: white !important;  /* Garante que a cor seja branca, mesmo com regras gerais */
    
    /* Faz o link parecer um botão: */
    display: flex; 
    justify-content: center; 
    align-items: center;
    /* (Ele herda o padding, font-size e width de .pix-buttons-area .pix-btn-link, o que anula o tamanho padrão de A) */
}
.pix-btn-link:hover {
    background-color: #0087c5;
}


/* Responsividade para Telas Pequenas */
@media (max-width: 600px) {
    .pix-action-container {
        flex-direction: column;
        gap: 15px;
    }
    .pix-code-area,
    .pix-buttons-area {
        /* Ambos ocupam 90% da largura em telas pequenas para não tocar nas bordas */
        width: 90%; 
        min-width: auto;
    }
    .pix-buttons-area {
        align-items: center; 
    }
    .pix-buttons-area button,
    .pix-buttons-area .pix-btn-link {
        width: 100%; /* Ocupa 100% da largura do novo contêiner (90% da tela) */
    }
}

.coluna-selecao {
    /* Define uma largura fixa e pequena para a coluna */
    width: 80px; /* Um valor em torno de 50px a 80px costuma ser ideal para checkboxes/radios */
    
    /* Garante que o conteúdo não force a célula a expandir */
    white-space: nowrap; 
    
    /* Alinhamento do conteúdo (checkbox) */
    text-align: center;
}

/* Opcional: garantir que o checkbox não se expanda, se o reset não for suficiente */
.coluna-selecao input[type="radio"] {
    width: 16px !important; 
    height: 16px !important;
}

/* Estilo para dar feedback visual à linha */
.package-row {
    cursor: pointer; /* Indica que a linha é clicável */
    transition: background-color 0.2s ease;
}

.package-row:hover {
    /* Cor de fundo ao passar o mouse */
    background-color: #ffa24b !important; 
}

.selected-row {
    /* Cor de fundo da linha realmente selecionada */
    background-color: #9f773b !important; 
    border-left: 5px solid #ffc041; /* Destaque lateral */
}

/* Garante que o fundo da linha selecionada seja mantido,
   anulando o estilo geral do TH/TR do seu tema */
.selected-row td {
    background-color: transparent !important; /* Deixa o TD transparente para mostrar o TR */
}

.coin-icon {
    /* Define o tamanho do ícone (ajuste conforme a estética do seu site) */
    width: 25px; 
    height: 25px;
    
    /* Garante que o ícone fique alinhado verticalmente com o texto "X coins" */
    vertical-align: middle;
    
    /* Adiciona um pequeno espaço à esquerda para separar do texto */
    margin-left: 5px; 
}

/* my account ============================ */
.user-stats-bar {
    /* POSICIONAMENTO ABSOLUTO (Flutuando no canto superior direito) */
    position: absolute;
    top: 10px;        /* Distância do topo do container pai */
    right: 20px;      /* Distância da direita do container pai */
    
    /* ALINHAMENTO INTERNO (Flexbox) */
    display: flex;
    flex-direction: column;
    gap: 15px;            /* Espaçamento entre os dois círculos */
    align-items: center; /* Alinha os blocos pela base (melhor estética para tamanhos diferentes) */
    z-index: 10; /* Garante que fique por cima de outros elementos */
}


/* --------------------------------
 * 3. LINKS (TIBIA COINS & DIAS VIP)
 * --------------------------------
 * Remove a decoração padrão e define o cursor.
 */
.coins-link, 
.vip-link {
    text-decoration: none; 
    color: inherit; 
    cursor: pointer;
}


/* --------------------------------
 * 4. ESTILOS DOS CÍRCULOS (Tamanhos e aparência)
 * --------------------------------
 */

/* TIBIA COINS (Círculo maior) */
.have_tibia_coins {
    width: 60px; 
    height: 60px;
    
    border-radius: 50%; 
    border: 3px solid #ffcc00; /* Dourado */
    background-color: #222222; 
    
    /* Centraliza o número dentro do círculo */
    display: flex;
    justify-content: center; 
    align-items: center; 
    
    font-size: 1.2em; 
    font-weight: bold; 
    color: #ffffff; 
    
    margin: 0 auto 5px auto; /* Espaço para o rótulo abaixo */
    transition: border-color 0.2s; /* Transição suave para o hover */
}

/* VIP DAYS (Círculo menor) */
.have_vip_days {
    width: 40px; /* Seu novo tamanho */
    height: 40px; 
    
    border-radius: 50%; 
    border: 3px solid #00ffaa; /* Verde/Azul para VIP */
    background-color: #222222; 
    
    /* Centraliza o número dentro do círculo */
    display: flex;
    justify-content: center; 
    align-items: center; 
    
    font-size: 1em; 
    font-weight: bold; 
    color: #ffffff; 
    
    margin: 0 auto 5px auto; 
    transition: border-color 0.2s; 
}


/* --------------------------------
 * 5. ESTILOS DOS RÓTULOS (O texto abaixo dos círculos)
 * --------------------------------
 */
.coins-label, 
.vip-label {
    font-size: 0.8em; 
    color: #cccccc; /* Cor padrão do rótulo */
    text-align: center; /* Garante o alinhamento central */
    margin-top: 5px; 
    transition: color 0.2s;
}


/* --------------------------------
 * 6. EFEITOS HOVER (TIBIA COINS)
 * --------------------------------
 * Note: Estamos usando a classe .coins-link (o link pai) para acionar.
 */

/* Círculo (Borda fica branca) */
.coins-link:hover .have_tibia_coins {
    border-color: #ffffff; 
}

/* Rótulo (Texto fica dourado) */
.coins-link:hover .coins-label {
    color: #ffcc00; 
}


/* --------------------------------
 * 7. EFEITOS HOVER (DIAS VIP)
 * --------------------------------
 * Note: Usando a classe .vip-link (o link pai) para acionar.
 */

/* Círculo (Borda fica branca) */
.vip-link:hover .have_vip_days {
    border-color: #ffffff; 
}

/* Rótulo (Texto fica na cor VIP) */
.vip-link:hover .vip-label {
    color: #00ffaa; 
}



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 70%, rgba(0, 0, 0, 0.9) 98%);
    z-index: 2;
    pointer-events: none; 
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}