.cj-game-root {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(160deg, #eef7f0 0%, #dff3e6 100%);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    color: #1f2d24;
}

.cj-loading { text-align: center; padding: 40px; color: #555; }

.cj-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.cj-topbar h2 { margin: 0; font-size: 22px; color: #2b6b3f; }

.cj-badge {
    background: #ffd166;
    color: #4a3400;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.cj-tela { min-height: 380px; }

.cj-mapa-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    background: #2b6b3f;
    padding: 10px;
    border-radius: 14px;
}

.cj-mapa-cel {
    aspect-ratio: 1;
    border-radius: 8px;
    background: #4c9a5b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
    font-size: 20px;
    border: 2px solid transparent;
}

.cj-mapa-cel:hover { transform: scale(1.06); background: #5cb56c; }
.cj-mapa-cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.cj-progresso-mundo {
    font-size: 12px;
    color: #567;
    background: #eef7f0;
    padding: 3px 10px;
    border-radius: 12px;
}

.cj-mapa-cel {
    transition: background-color 0.12s ease;
}
.cj-mapa-cel.cj-jogador {
    background: #ffd166;
    border-color: #e6a800;
    animation: cj-passo 0.15s ease;
}
@keyframes cj-passo {
    0% { transform: scale(0.85); }
    100% { transform: scale(1); }
}
.cj-mapa-cel.cj-treinador { background: #eb5757; border-color: #b93a3a; }
.cj-mapa-cel.cj-treinador-derrotado { background: #f2b8b8; border-color: #d98a8a; opacity: 0.8; }

.cj-tile-chao { background: #d9d9c9; }
.cj-tile-parede { background: #6b6b5a; cursor: default; }
.cj-tile-grama { background: #4c9a5b; }
.cj-tile-saida-esq, .cj-tile-saida-dir { background: #f2c94c; }

.cj-dpad {
    display: grid;
    grid-template-columns: repeat(3, 48px);
    grid-template-rows: repeat(3, 48px);
    gap: 4px;
    justify-content: center;
    margin-top: 16px;
}
.cj-dpad button {
    border: none;
    background: #2b6b3f;
    color: #fff;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
}
.cj-dpad button:active { background: #1e4d2c; }
.cj-dpad-centro {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0.5;
}

.cj-badge-emblemas {
    font-size: 12px;
    background: #fff3cd;
    color: #6b5300;
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 6px;
}

.cj-painel-equipe {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.cj-card-criatura {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    width: 120px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    border: 3px solid transparent;
}

.cj-card-criatura.cj-selecionada { border-color: #2b6b3f; }

.cj-card-criatura svg { width: 60px; height: 60px; }

.cj-card-criatura .cj-nome { font-weight: 700; font-size: 13px; margin-top: 4px; }
.cj-card-criatura .cj-nivel { font-size: 11px; color: #666; }

.cj-barra-vida-fundo {
    background: #ddd;
    border-radius: 8px;
    height: 8px;
    width: 100%;
    overflow: hidden;
    margin-top: 4px;
}

.cj-barra-vida {
    height: 100%;
    background: linear-gradient(90deg, #6fcf97, #27ae60);
    transition: width 0.3s ease;
}

.cj-barra-vida.cj-baixa { background: linear-gradient(90deg, #f2994a, #eb5757); }

.cj-batalha {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: linear-gradient(180deg, #cdeaff 0%, #a9d9ff 60%, #8fd19e 60%, #8fd19e 100%);
    border-radius: 14px;
    padding: 24px;
    min-height: 220px;
    position: relative;
}

.cj-lado-batalha { text-align: center; width: 45%; }
.cj-lado-batalha svg { width: 100px; height: 100px; filter: drop-shadow(0 6px 6px rgba(0,0,0,0.2)); }
.cj-lado-inimigo svg { transform: scaleX(-1); }

.cj-nome-batalha { font-weight: 700; margin-top: 6px; }

.cj-acoes-batalha {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.cj-botao {
    border: none;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 700;
    cursor: pointer;
    font-size: 14px;
    transition: filter 0.15s ease, transform 0.1s ease;
    color: #fff;
}
.cj-botao:hover { filter: brightness(1.08); transform: translateY(-1px); }
.cj-botao:active { transform: translateY(0); }

.cj-botao.cj-atacar { background: #eb5757; }
.cj-botao.cj-capturar { background: #f2c94c; color: #4a3400; }
.cj-botao.cj-fugir { background: #828282; }
.cj-botao.cj-confirmar { background: #27ae60; }
.cj-botao.cj-pocao { background: #56ccf2; color: #0a3a4a; }
.cj-botao.cj-isca { background: #a9714b; }
.cj-botao:disabled { opacity: 0.45; cursor: not-allowed; }

.cj-inventario {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
}
.cj-item-chip {
    background: #fff;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.cj-log-batalha {
    background: #fff;
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 14px;
    font-size: 14px;
    min-height: 40px;
    box-shadow: inset 0 0 0 1px #eee;
}

.cj-ranking-lista { list-style: none; padding: 0; }
.cj-ranking-lista li {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.cj-nav-tabs { display: flex; gap: 8px; margin-bottom: 14px; }
.cj-nav-tabs button {
    border: none;
    background: #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}
.cj-nav-tabs button.cj-ativa { background: #2b6b3f; color: #fff; }

.cj-login-aviso {
    text-align: center;
    padding: 40px 20px;
}
.cj-login-aviso a {
    display: inline-block;
    margin-top: 12px;
    background: #2b6b3f;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.cj-aviso-convidado {
    background: #fff3cd;
    border: 1px solid #ffe08a;
    color: #6b5300;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 14px;
}
.cj-aviso-convidado a { color: #2b6b3f; font-weight: 700; }

.cj-form-codigo {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.cj-form-codigo input {
    flex: 1;
    min-width: 200px;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    text-transform: uppercase;
}

.cj-codigo-recuperacao {
    background: #eef7f0;
    border: 1px solid #cfe8d6;
    color: #2b6b3f;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 16px;
}
.cj-codigo-recuperacao strong { font-family: monospace; font-size: 14px; letter-spacing: 0.5px; }
