﻿/* =========================================
   ESTRUTURA GLOBAL E FUNDO
   ========================================= */
body.pangya-bg {
    /* 1. Define uma cor de fundo sólida para teste (se a cor aparecer e a imagem não, o caminho está errado) */
    background-color: #87CEEB;
    background-image: url('/Content/imagens/bg/main_bg_9.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    /* Camada que escurece levemente o fundo para destacar o conteúdo */
    body.pangya-bg::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/Content/imagens/bg/main_bg_9.jpg');
        background: rgba(135, 206, 235, 0.4); /* Azul celeste semi-transparente */
        z-index: -1;
    }

/* Container central com aspecto de "vidro" suave */
.main-content {
    background-color: rgba(255, 255, 255, 0.92);
    border: 3px solid #FFF;
    border-radius: 15px;
}

/* =========================================
   NAVEGAÇÃO E BARRA SUPERIOR
   ========================================= */
.top-bar {
    background-color: #005A8D;
    color: white;
    font-size: 0.85rem;
}

.pangya-nav {
    background-color: #0077BE;
    border-bottom: 4px solid #005A8D;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
    transition: 0.3s;
}

/* =========================================
   COMPONENTES DA HOME (Banners e Cards)
   ========================================= */
.main-banner {
    border: 5px solid white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hover-zoom {
    transition: transform 0.5s ease;
}

.main-banner:hover .hover-zoom {
    transform: scale(1.05);
}

.banner-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px !important;
}

/* Notícias e Destaques */
.card-news {
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent !important;
}

    .card-news:hover {
        transform: translateY(-5px);
        border-color: #0077BE !important;
        box-shadow: 0 8px 15px rgba(0,0,0,0.1) !important;
    }

/* =========================================
   INTERATIVIDADE (Login e Botões)
   ========================================= */
.btn-primary {
    background-color: #0077BE;
    border: none;
    border-bottom: 4px solid #005A8D;
    transition: all 0.1s;
    font-weight: bold;
}

    .btn-primary:active {
        transform: translateY(2px);
        border-bottom: 2px solid #005A8D;
    }

/* Animação de Pulso (Status e Alertas) */
.btn-login-pulse, .pulse-green {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 119, 190, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 119, 190, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 119, 190, 0);
    }
}

/* =========================================
   RANKING E TABELAS
   ========================================= */
.ranking-box {
    border: 1px solid #dee2e6;
}

.table-hover tbody tr:hover {
    background-color: #e3f2fd;
    cursor: pointer;
    transition: 0.2s;
}

.ranking-item:nth-child(even) {
    background-color: #F0F8FF;
}


/* Efeito de linha animada nos itens do menu */
.pangya-nav .nav-link {
    position: relative;
    padding: 8px 12px !important;
    transition: color 0.3s ease;
}

    .pangya-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        bottom: -2px;
        left: 0;
        background-color: #ffc107; /* Cor amarela/dourada para combinar com o Pangya */
        transition: width 0.3s ease;
    }

    .pangya-nav .nav-link:hover::after,
    .pangya-nav .nav-link.active::after {
        width: 100%;
    }

/* Estilo do Dropdown de Idiomas */
.dropdown-menu {
    background-color: #f8f9fa;
    border-radius: 8px;
    min-width: 150px;
}

.dropdown-item:hover {
    background-color: #0077BE;
    color: white;
}

/* Container Principal - O segredo da imagem está aqui */
.main-content {
    background-color: white; /* Fundo branco sólido como na imagem */
    border: 8px solid white; /* Borda branca bem grossa */
    border-radius: 30px; /* Cantos muito arredondados */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 20px;
    margin-bottom: 50px;
    overflow: hidden; /* Garante que o conteúdo não saia das bordas arredondadas */
}

/* Títulos das Seções (Login, Ranking, Notícias) */
.section-title {
    background: #0084ff; /* Azul vibrante da imagem */
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
    margin: -4px -4px 15px -4px; /* Alinha com a borda interna */
}

.char-float {
    position: fixed;
    bottom: 0;
    z-index: 10;
    width: 300px;
    pointer-events: none; /* Não atrapalha o clique no site */
}

.char-float-left {
    left: -50px;
}

.char-float-right {
    right: -50px;
}

/* Efeito de balanço suave nos personagens */
@keyframes floatAnim {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.char-float {
    animation: floatAnim 6s ease-in-out infinite;
}
/* Personagens Laterais (O toque final) */
/* Adicione estas classes nas suas divs laterais para flutuar os personagens */
.char-float-left {
    position: fixed;
    left: -50px;
    bottom: 0;
    z-index: 10;
    width: 300px;
}

.char-float-right {
    position: fixed;
    right: -50px;
    bottom: 0;
    z-index: 10;
    width: 300px;
}

/* =========================================
   MENU SUPERIOR ESTILO PANGYA
   ========================================= */
/* =========================================
   ESTILO PANGYA BRASIL PARA NAVBAR BOOTSTRAP
   ========================================= */

/* 1. Container Principal do Menu */
.pangya-nav {
    /* Gradiente vertical azul clássico */
    background: linear-gradient(to bottom, #34aadc 0%, #0076b1 50%, #006090 100%) !important;
    border: 1px solid #005078 !important;
    border-radius: 12px !important;
    padding: 0 !important;
    min-height: 50px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 4px 10px rgba(0,0,0,0.2) !important;
}

    /* 2. Ajuste da lista de navegação */
    .pangya-nav .navbar-nav {
    }

.main-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Content/imagens/efx/stars.png'); /* Uma imagem de estrelinhas transparentes */
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

.discord-banner {
    background: #5865F2;
    color: white;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

    .discord-banner:hover {
        transform: scale(1.02);
        color: white;
    }

.hero-section {
    background: linear-gradient(135deg, #0084ff 0%, #00c6ff 100%);
    border-radius: 20px;
    height: 350px;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-character {
    position: absolute;
    right: 20px;
    bottom: -10px;
    height: 110%; /* Faz o personagem "sair" um pouco do card */
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.3));
}

.hero-text {
    padding: 50px;
    color: white;
    max-width: 60%;
}

/* Efeito de personagem saindo do banner */
.hero-banner {
    background: linear-gradient(135deg, #0076b1 0%, #00a8ff 100%);
    border-radius: 20px;
    height: 300px;
    position: relative;
    overflow: visible; /* Permite o personagem sair da div */
    padding: 40px;
    color: white;
}

.hero-char-img {
    position: absolute;
    right: 20px;
    bottom: 0;
    height: 350px; /* Maior que a div */
    filter: drop-shadow(10px 5px 15px rgba(0,0,0,0.3));
    z-index: 10;
}

/* Cards que "sobem" ao passar o mouse */
.hover-up {
    transition: transform 0.3s ease;
}

    .hover-up:hover {
        transform: translateY(-5px);
    }

/* Indicador de Status Pulse */
.status-indicator.online {
    width: 10px;
    height: 10px;
    background-color: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ecc71;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* =========================================
   AJUSTE DE CAMADAS (Z-INDEX)
   ========================================= */

.hero-banner {
    background: linear-gradient(135deg, #0076b1 0%, #00a8ff 100%) !important;
    border-radius: 20px;
    height: 300px;
    position: relative;
    overflow: visible; /* Importante para o GIF "sair" da div se quiser */
    display: flex;
    align-items: center; /* Centraliza o texto verticalmente */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10; /* Valor maior para ficar na frente do GIF */
    padding: 40px;
    color: white;
    max-width: 60%; /* Garante que o texto não bata no GIF à direita */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Melhora leitura sobre o GIF */
}

.hero-char-img {
    position: absolute;
    right: 10px; /* Ajuste conforme o tamanho do GIF */
    bottom: 0;
    height: 320px; /* Altura maior que o container para efeito 3D */
    z-index: 5; /* Menor que o hero-content (10) */
    pointer-events: none; /* Permite clicar no texto mesmo se o GIF estiver "por cima" */
    filter: drop-shadow(5px 5px 15px rgba(0,0,0,0.3));
}

/* Responsividade para Mobile */
@media (max-width: 768px) {
    .hero-char-img {
        opacity: 0.3; /* No mobile o GIF fica como fundo para não atrapalhar */
        height: 200px;
    }

    .hero-content {
        max-width: 100%;
    }
}

/* 3. Itens do Menu (Separadores) */
.pangya-nav .nav-item {
    position: relative;
    /* Divisor entre os itens */
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.1);
}

    .pangya-nav .nav-item:last-child {
        border-right: none;
        box-shadow: none;
    }

/* 4. Links de Navegação */
.pangya-nav .nav-link {
    color: white !important;
    font-weight: bold !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    padding: 15px 25px !important; /* Espaçamento interno maior como na imagem */
    font-size: 1.05rem;
    transition: all 0.2s ease;
    text-align: center;
}

    /* 5. Estados Hover e Ativo (Brilho Azul) */
    .pangya-nav .nav-link:hover,
    .pangya-nav .nav-link.active {
        background: linear-gradient(to bottom, #4fc3f7 0%, #0091ea 100%) !important;
        color: white !important;
    }

/* 6. Ajuste específico para o Botão Register (Destaque Amarelo) */
.pangya-nav .text-warning {
    color: #ffc107 !important; /* Amarelo mais vivo para o Register */
}

/* 7. Dropdowns (Submenus) */
.pangya-nav .dropdown-menu {
    background-color: #005a8d !important;
    border: 2px solid #34aadc !important;
    border-radius: 0 0 10px 10px !important;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3) !important;
    margin-top: -1px !important; /* Gruda no menu pai */
}

.pangya-nav .dropdown-item {
    color: white !important;
    font-weight: 500;
    padding: 10px 20px;
}

    .pangya-nav .dropdown-item:hover {
        background-color: #0084ff !important;
        color: white !important;
    }

/* Responsividade: Remover divisores no Mobile */
@media (max-width: 991px) {
    .pangya-nav .nav-item {
        border-right: none;
        box-shadow: none;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
}

/* Bandeiras de Idioma no Menu */
.lang-icon-nav {
    width: 25px;
    border: 2px solid white;
    border-radius: 4px;
    transition: transform 0.2s;
}

    .lang-icon-nav:hover {
        transform: scale(1.2);
    }


/* =========================================
   ESTILO DE DESTAQUES (IGUAL À IMAGEM)
   ========================================= */

/* Cabeçalho da Seção */
.section-header {
    background-color: #0084ff; /* Azul vibrante da imagem */
    color: white;
    padding: 10px 15px;
    border-radius: 12px 12px 0 0;
    margin-bottom: 0px;
    border: 2px solid #a5d8ff;
    border-bottom: none;
}

/* Indicadores de bolinha do topo */
.dot-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    display: inline-block;
}

    .dot-indicator.filled {
        background-color: white;
    }

/* Container Principal (Borda Branca e Arredondamento) */
.highlights-section .row {
    background-color: white;
    border: 8px solid white !important; /* Borda branca grossa da imagem */
    border-radius: 30px !important; /* Cantos muito arredondados */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Barrinha preta do topo no banner */
.banner-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 15px;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: right;
    border-radius: 30px 30px 0 0;
}

/* Estilo do Banner Principal */
.highlight-main img {
    border-radius: 30px 0 0 30px;
    object-fit: cover;
    max-height: 250px;
}

/* Estilo dos Itens Secundários (Lado Direito) */
.highlight-side {
    background-color: white;
    border-radius: 0 30px 30px 0;
}

.side-item {
    border-bottom: 1px solid #e3f2fd;
    padding-bottom: 15px;
}

    .side-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.side-img-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e3f2fd; /* Fundo suave para a imagem */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
}

.side-item-title {
    color: #0077BE;
    font-size: 1.1rem;
}

.side-item-text {
    line-height: 1.3;
}


.dot-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    display: inline-block;
    cursor: pointer; /* Muda a mãozinha do mouse */
    transition: 0.3s;
}

    .dot-indicator:hover {
        background-color: rgba(255, 255, 255, 0.7);
    }

    .dot-indicator.active {
        background-color: white;
        transform: scale(1.2); /* Fica um pouco maior quando ativa */
    }

/* Garante que o container de destaques tenha as bordas arredondadas e brancas */
#highlight-container {
    background-color: white;
    border: 8px solid white;
    border-radius: 0 0 30px 30px; /* Arredonda apenas o fundo */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Container que envolve o conteúdo das notícias */
.news-content-container {
    background-color: white;
    border: 8px solid white; /* Borda branca grossa da imagem */
    border-radius: 0 0 30px 30px; /* Arredonda apenas o fundo */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Container de Status do Servidor */
.server-status-container {
    border: 2px solid #dee2e6;
    transition: transform 0.3s ease;
}

    /* Cabeçalho do Status */
    .server-status-container .bg-dark {
        background-color: #1a1a1a !important;
        border-bottom: 2px solid #333;
    }

/* Animação do Badge Online (Pulse) */
.pulse-green {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    animation: pulse-green-animation 2s infinite;
}

@keyframes pulse-green-animation {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Estilização dos Números */
.server-status-container h4 {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: -0.5px;
}

.server-status-container .text-primary {
    color: #0084ff !important; /* Azul vibrante do Pangya */
}

/* Estilo para os blocos (Notícias, Destaques, Login, Ranking) */
.server-status-container, .card, .ranking-container, .login-box {
    background: rgba(255, 255, 255, 0.9) !important; /* Branco com leve transparência */
    border-radius: 20px !important; /* Arredondamento igual da foto */
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15) !important;
    backdrop-filter: blur(4px); /* Efeito de vidro */
    overflow: hidden;
    margin-bottom: 20px;
}

    /* Cabeçalhos dos blocos */
    .server-status-container .bg-dark,
    .card-header,
    .block-header {
        background: linear-gradient(180deg, #0094ff 0%, #0072c6 100%) !important;
        padding: 12px 20px !important;
        border: none !important;
        border-radius: 20px 20px 0 0 !important; /* Arredonda só o topo */
    }

        .block-header span {
            font-size: 1.2rem;
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

.ranking-list-item {
    border: none !important;
    background: transparent !important;
    padding: 10px 15px !important;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

    .ranking-list-item:nth-child(even) {
        background: rgba(0, 148, 255, 0.05) !important; /* Azul bem clarinho alternado */
    }

    .ranking-list-item:hover {
        background: rgba(0, 148, 255, 0.1) !important;
    }

.btn-login-pangya {
    background: linear-gradient(180deg, #00b4ff 0%, #0084ff 100%);
    border: 1px solid #005a8d;
    border-radius: 10px;
    font-weight: bold;
    color: white;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
    padding: 8px 25px;
}

    .btn-login-pangya:hover {
        filter: brightness(1.1);
        color: white;
    }

.main-content {
    padding: 30px !important; /* Espaço interno para os blocos não grudarem na borda branca */
}
/* Efeito de Hover */
.server-status-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1) !important;
}

/* Ajuste para o cabeçalho não ficar separado */
.news-section .section-header {
    border-radius: 12px 12px 0 0;
    background-color: #0084ff;
    padding: 8px 15px;
}

/* Moldura das imagens das notícias */
.news-img-frame {
    border: 1px solid #ddd;
    padding: 3px;
    background: #fff;
    transition: transform 0.3s;
}

    .news-img-frame:hover {
        transform: scale(1.02);
    }

/* Estilo dos textos da lista lateral */
.news-title-small {
    font-size: 0.85rem;
    line-height: 1.2;
    color: #333;
}

.news-item-text h6 {
    color: #111;
    font-size: 0.95rem;
    cursor: pointer;
}

    .news-item-text h6:hover {
        color: #0084ff;
    }

.news-item-text p {
    line-height: 1.4;
}

/* Separador pontilhado opcional */
.news-item-text.border-top {
    border-top: 1px solid #eee !important;
}

#news-page-container {
    transition: opacity 0.3s ease-in-out;
}

.dot-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: inline-block;
}

    .dot-indicator.active {
        background-color: white;
        transform: scale(1.2);
    }

/* Container de Login */
.login-content-container {
    border: 6px solid white; /* Borda branca da imagem */
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.login-section .section-header {
    background-color: #0084ff;
    padding: 10px 15px;
    border-radius: 12px 12px 0 0;
    border: 2px solid #a5d8ff;
    border-bottom: none;
}

/* Estilo dos Inputs (Mais suaves e cinzas como na imagem) */
.login-input {
    border: 1px solid #ccc !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    background-color: #fcfcfc !important;
}

    .login-input::placeholder {
        color: #aaa;
    }

/* Botão de Login Azul Vibrante */
.btn-login-blue {
    background-color: #0084ff !important;
    border: none !important;
    border-bottom: 3px solid #005a8d !important;
    border-radius: 10px !important;
    padding: 5px 20px !important;
}

    .btn-login-blue:hover {
        background-color: #0076e4 !important;
    }

/* Ajuste das labels dos checkboxes */
.login-options .form-check-label {
    color: #444;
    font-size: 0.8rem;
    cursor: pointer;
}

.login-options .form-check-input {
    cursor: pointer;
}

/* Container do Ranking */
.ranking-content-container {
    border: 6px solid white; /* Borda branca grossa da imagem */
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.ranking-section .section-header {
    background-color: #0084ff;
    padding: 10px 15px;
    border-radius: 12px 12px 0 0;
    border: 2px solid #a5d8ff;
    border-bottom: none;
}

/* Linhas da tabela */
.ranking-content-container table tr {
    height: 38px;
}

/* Efeito Zebrado (Linhas pares com fundo azul bem clarinho) */
.ranking-row-even {
    background-color: #e9f5ff !important;
}

/* Remove as bordas padrão da tabela para ficar limpo como na imagem */
.ranking-content-container table td {
    border: none !important;
}

/* Hover suave para interatividade */
.ranking-content-container tr:hover {
    background-color: #d1e9ff !important;
    cursor: pointer;
}



/* Botão de Cadastro Estilo Pangya */
.btn-primary.btn-pangya-lg {
    background: linear-gradient(180deg, #0094ff 0%, #005a8d 100%);
    border: 1px solid #004a75;
    font-weight: bold;
    box-shadow: 0 4px 0 #003a5c;
    transition: all 0.2s;
}

    .btn-primary.btn-pangya-lg:active {
        transform: translateY(2px);
        box-shadow: 0 2px 0 #003a5c;
    }

/* Ajuste dos inputs para ficarem parecidos com o formulário da imagem */
.registration-card .form-control,
.registration-card .form-select,
.registration-card .input-group-text {
    border-radius: 8px;
    font-size: 0.9rem;
}

.registration-card .input-group-text {
    color: #0084ff;
    border-right: none;
}

.registration-card .form-control:focus {
    border-color: #0084ff;
    box-shadow: 0 0 0 0.25rem rgba(0, 132, 255, 0.1);
}

/* Títulos das seções dentro do formulário */
.registration-card label {
    color: #444;
}

/* Container Mestre do Login */
.login-master-wrapper {
    background: white;
    border: 10px solid white; /* A famosa borda branca grossa */
    border-radius: 40px;
    overflow: hidden;
    min-height: 550px;
}

/* Lado da Marca (Esquerdo) */
.login-branding-side {
    background: url('/Content/imagens/bg/9.png') center/cover;
    position: relative;
    border-radius: 30px 0 0 30px;
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 132, 255, 0.8) 0%, rgba(0, 90, 141, 0.9) 100%);
    z-index: 1;
}

/* Estilo para o ponto de status online */
.pulse-green-dot {
    width: 10px;
    height: 10px;
    background-color: #28a745;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Inputs arredondados e modernos */
.login-input-group {
    border: 1.5px solid #e9ecef;
    border-radius: 12px !important;
    background-color: #f8f9fa;
    transition: all 0.3s;
}

    .login-input-group:focus-within {
        border-color: #0084ff;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 132, 255, 0.1);
    }

    .login-input-group .input-group-text {
        border: none;
    }

/* Lado da Marca (Esquerdo) */
.login-branding-side {
    background: url('/Content/imagens/hero-slide/hero-no-character.png') center/cover;
    position: relative;
    border-radius: 30px 0 0 30px;
}

/* =========================================
   ESTILO DOS SUBMENUS (DROPDOWNS)
   ========================================= */

/* Estilo do Container do Menu Suspenso */
.pangya-nav .dropdown-menu {
    background-color: var(--pangya-blue-dark);
    border: 2px solid var(--pangya-light-blue);
    border-top: none;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    padding: 10px 0;
    margin-top: 0; /* Cola no menu superior */
}

/* Itens do Submenu */
.pangya-nav .dropdown-item {
    color: white !important;
    font-size: 0.95rem;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

    /* Efeito Hover no Submenu (Amarelo Pangya) */
    .pangya-nav .dropdown-item:hover {
        background-color: rgba(255, 193, 7, 0.2);
        color: #ffc107 !important;
        padding-left: 25px; /* Efeito de deslize */
    }

/* Ajuste do Dropdown Toggle (Removendo a setinha padrão se preferir) */
.pangya-nav .dropdown-toggle::after {
    vertical-align: middle;
    color: var(--pangya-light-blue);
}

/* Animação Suave ao Abrir */
.animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
}

.slideIn {
    animation-name: slideIn;
}

/* Card de Perfil */
.profile-card {
    border: 2px solid #0076b1;
}

.profile-header {
    background: linear-gradient(to bottom, #34aadc 0%, #0076b1 100%) !important;
}

.rank-img-large {
    width: 80px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Área do Personagem com Efeito de Plataforma */
.char-display-area {
    background: #eef9ff radial-gradient(circle, #ffffff 0%, #d0e8f5 100%);
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.char-platform {
    position: absolute;
    bottom: 20px;
    width: 150px;
    height: 40px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    filter: blur(5px);
}

.char-gif-large {
    height: 280px;
    z-index: 2;
    filter: drop-shadow(5px 10px 15px rgba(0,0,0,0.2));
}

/* Stats Boxes */
.stat-box {
    border-bottom: 3px solid #dee2e6;
    transition: all 0.2s;
}

    .stat-box:hover {
        border-bottom-color: #0076b1;
        transform: translateY(-3px);
    }

.settings-menu .list-group-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    transition: all 0.2s ease;
}

    .settings-menu .list-group-item.active {
        background: linear-gradient(to right, #0084ff, #00c6ff) !important;
        border-left: 4px solid #fff !important;
    }

    .settings-menu .list-group-item:hover:not(.active) {
        background-color: #f8fbff;
        padding-left: 30px; /* Efeito de slide ao passar o mouse */
        color: #0084ff;
    }

.download-hero {
    background: linear-gradient(135deg, #005078 0%, #0084ff 100%);
    border: 1px solid rgba(255,255,255,0.1);
}

.download-char-img {
    position: absolute;
    right: -20px;
    bottom: -10px;
    height: 120%;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-5deg);
}

.z-index-2 {
    z-index: 2;
}

/* Efeito de destaque nos requisitos */
.list-unstyled li {
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

    .list-unstyled li:last-child {
        border: 0;
    }

/* Isso garante que o pai do submenu brilhe quando um filho for selecionado */
.pangya-nav .nav-link.active {
    background: linear-gradient(to bottom, #4fc3f7 0%, #0091ea 100%) !important;
    color: white !important;
    box-shadow: inset 0 0 8px rgba(255,255,255,0.3) !important;
}

.recovery-link {
    font-size: 0.7rem;
    transition: color 0.2s ease;
}

    .recovery-link:hover {
        color: #0d6efd !important; /* Azul destaque do Bootstrap */
    }

.border-top {
    border-top: 1px dashed #dee2e6 !important; /* Estilo de linha tracejada para parecer menu de jogo */
}

.server-card {
    border-radius: 8px;
    overflow: hidden;
}

.server-header {
    background: linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d); /* Um degradê que remete ao logo do Pangya */
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 5px currentColor;
}

    .status-indicator.online {
        background-color: #2ecc71;
        color: #2ecc71;
        animation: pulse-green 2s infinite;
    }

.rate-item {
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #eee;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(46, 204, 113, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Estilo dos Cards de Compra */
.card-package {
    border: 2px solid transparent;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    background: #ffffff;
    overflow: hidden;
}

    /* Efeito de Hover: Brilho e Elevação */
    .card-package:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-color: #0d6efd;
    }

/* Destaque para o Pacote Ouro/Mais Vendido */
.card-featured {
    border: 2px solid #ffc107;
    background: linear-gradient(180deg, #ffffff 0%, #fff9e6 100%);
}

    .card-featured:hover {
        border-color: #ff9800;
        box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
    }

/* Estilo do Título dos Cookies */
.cookie-amount {
    font-size: 1.5rem;
    color: #1e3c72;
    text-shadow: 1px 1px 0px #eee;
}

/* Badge de Bônus (estilo Pangya) */
.bonus-badge {
    background-color: #ff4757;
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Botão de Compra Personalizado */
.btn-buy {
    border-radius: 50px;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-buy-gold {
    background: linear-gradient(90deg, #ff8c00 0%, #ffc107 100%);
    border: none;
    color: #fff;
}

    .btn-buy-gold:hover {
        background: linear-gradient(90deg, #ffc107 0%, #ff8c00 100%);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
        color: white;
    }

/* Seção de Info do PIX */
.pix-info-box {
    border-left: 5px solid #00bfa5;
    background-color: #f0fdfa;
}
