    :root {
        --bg: #050505;
        --card-bg: #0d0d0d;
        --gold: #d4af37;
        --neon-green: #00ff80;
        --neon-cyan: #00ffff;
        --glass: rgba(212, 175, 55, 0.05);
    }

    html, body { height: 100%; margin: 0; overflow-x: hidden; }
    body {
        display: flex;
        flex-direction: column;
        background-color: var(--bg);
        color: #fff;
        font-family: 'Rajdhani', sans-serif;
    }

    /* Painel Principal */
.admin-cyber-panel {
    background: #050505 !important;
    border: 1px solid var(--gold);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.2);
    font-family: 'Courier New', Courier, monospace;
    position: relative;
    color: #fff;
}

/* Decoradores de Canto */
.corner-decor {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--gold);
    z-index: 10;
}
.top-left { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.top-right { top: -2px; right: -2px; border-left: 0; border-bottom: 0; }
.bottom-left { bottom: -2px; left: -2px; border-right: 0; border-top: 0; }
.bottom-right { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }

.nexus-title {
    color: var(--gold);
    letter-spacing: 3px;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* Inputs Futuristas */
.nexus-label {
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 5px;
    display: block;
    opacity: 0.8;
}

.nexus-input {
    background: rgba(255, 204, 0, 0.05) !important;
    border: 1px solid rgba(255, 204, 0, 0.3) !important;
    color: #fff !important;
    border-radius: 0;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.nexus-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.3) !important;
    background: rgba(255, 204, 0, 0.1) !important;
}

/* Botão de Envio */
.cyber-submit-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 30px;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.cyber-submit-btn:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px var(--gold);
}

/* Botão Fechar */
.cyber-close {
    background: transparent;
    border: none;
    color: var(--gold);
    font-weight: bold;
    cursor: pointer;
}

/* Overlay de Terminal (Scanlines) */
.terminal-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 118, 0.06));
    background-size: 100% 2px, 3px 100%;
    z-index: 5;

    /* GARANTE QUE ESTÁ ASSIM: */
    pointer-events: none; 
}

.pulse-icon {
    animation: nexus-pulse 2s infinite;
}

@keyframes nexus-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}

    /* LOADING OVERLAY */
    #loader {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: #000;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: opacity 0.5s ease-out;
    }
    .loader-text {
        font-family: 'Orbitron';
        color: var(--gold);
        letter-spacing: 5px;
        margin-top: 20px;
        font-size: 0.8rem;
        text-transform: uppercase;
        animation: pulse 1.5s infinite;
    }
    .loader-bar {
        width: 200px;
        height: 2px;
        background: rgba(212,175,55,0.1);
        position: relative;
    }
    .loader-bar::after {
        content: '';
        position: absolute;
        top: 0; left: 0; height: 100%;
        width: 0%;
        background: var(--gold);
        animation: load 1.5s forwards ease-in-out;
    }
    @keyframes load { to { width: 100%; } }
    @keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

    .main-content { flex: 1 0 auto; padding-top: 90px; padding-bottom: 40px; }

    /* HEADER */
    .cyber-header {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 70px;
        background: rgba(0,0,0,0.9);
        backdrop-filter: blur(10px);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        border-bottom: 1px solid var(--gold);
    }

    .brand-nexus { font-family: 'Orbitron'; font-weight: 900; font-size: 1.3rem; }

    .cyber-btn-terminal {
        background: transparent;
        border: 1px solid var(--gold);
        color: var(--gold);
        font-family: 'Orbitron', sans-serif;
        font-size: 0.7rem;
        padding: 6px 14px;
        cursor: pointer;
        transition: 0.3s;
    }
    .cyber-btn-terminal:hover { background: var(--gold); color: #000; }

    .neon-flow {
        background: linear-gradient(90deg, rgba(212,175,55,1) 0%, rgba(255,255,255,1) 50%, rgba(212,175,55,1) 100%);
        background-size: 200% auto;
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
        animation: shine 3s linear infinite;
        font-weight: 900;
    }

    .hr-pulse { animation: blink-hr 2s infinite; }
    @keyframes shine { to { background-position: 200% center; } }
    @keyframes blink-hr {
        0%, 100% { opacity: 0.2; box-shadow: none; }
        50% { opacity: 0.8; box-shadow: 0 0 10px var(--gold); }
    }

    /* Efeito no link Promote */
.promote-link {
    display: block;
    margin-top: 10px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s ease;
    cursor: pointer;
    text-shadow: 0 0 5px rgba(212,175,55,0.2);
}

.promote-link:hover {
    color: #fff;
    text-shadow: 0 0 15px var(--gold);
    transform: scale(1.05);
}

/* Modal de Submissão Futurista (Membros) */
.submit-modal {
    display: none;
    position: fixed;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.9);
    z-index: 3000;
    align-items: center; justify-content: center;
}

.submit-box {
    background: #0d0d0d;
    border: 1px solid var(--gold);
    padding: 25px;
    width: 90%;
    max-width: 500px;
}

.submit-input {
    width: 100%;
    background: #000;
    border: 1px solid #333;
    color: #fff;
    padding: 10px;
    margin-bottom: 15px;
    font-family: 'Rajdhani', sans-serif;
}

    /* BANNER AREA 468x60 - UPDATED RESPONSIVE */
    .nexus-banner-container {
        width: 100%;
        max-width: 484px; 
        margin: 0 auto 30px;
        padding: 8px;
        background: var(--glass);
        border: 1px solid rgba(212, 175, 55, 0.2);
        text-align: center;
        overflow: hidden;
    }
    .nexus-banner-wrap {
        width: 100%;
        max-width: 468px;
        height: 60px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nexus-banner-wrap img, .nexus-banner-wrap a {
        max-width: 100% !important;
        height: auto !important;
        max-height: 60px !important;
        object-fit: contain;
    }
    .promote-link {
        display: block;
        margin-top: 8px;
        color: var(--gold);
        text-decoration: none;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.7;
    }

    /* ADMIN HUB STYLES */
    .admin-only { display: none !important; }
    body.admin .admin-only { display: flex !important; }

    .admin-hub-container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px;
        background: rgba(0, 255, 128, 0.02);
        border: 1px dashed var(--neon-green);
        margin-bottom: 30px;
        justify-content: center;
    }

    .btn-nexus-admin {
        background: transparent;
        border: 1px solid var(--neon-cyan);
        color: var(--neon-cyan);
        font-family: 'Orbitron', sans-serif;
        font-size: 0.65rem;
        letter-spacing: 1px;
        padding: 10px 15px;
        text-transform: uppercase;
        transition: 0.3s all;
        position: relative;
    }
    .btn-nexus-admin:hover {
        background: var(--neon-cyan);
        color: #000;
        box-shadow: 0 0 15px var(--neon-cyan);
    }
    .btn-node-add { border-color: var(--neon-green); color: var(--neon-green); }
    .btn-node-add:hover { background: var(--neon-green); box-shadow: 0 0 15px var(--neon-green); }
    .btn-node-warn { border-color: var(--gold); color: var(--gold); }
    .btn-node-warn:hover { background: var(--gold); box-shadow: 0 0 15px var(--gold); }
    .btn-node-tele { border-color: #0088cc; color: #0088cc; }
    .btn-node-tele:hover { background: #0088cc; color: #fff; }

    /* TERMINAL LOGIN MODAL */
    .nexus-modal {
        display: none;
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.95);
        backdrop-filter: blur(10px);
        z-index: 2000;
        align-items: center;
        justify-content: center;
    }
    .terminal-box {
        width: 100%;
        max-width: 400px;
        padding: 30px;
        background: #0d0d0d;
        border: 1px solid var(--gold);
        position: relative;
        box-shadow: 0 0 30px rgba(212,175,55,0.1);
    }
    .terminal-box::before {
        content: "ADMIN_ACCESS_REQUIRED";
        position: absolute;
        top: -10px; left: 20px;
        background: var(--bg);
        padding: 0 10px;
        color: var(--gold);
        font-family: 'Orbitron';
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
    .terminal-input {
        width: 100%; background: #000; border: 1px solid #333; color: var(--neon-green);
        font-family: 'Orbitron'; padding: 12px; text-align: center; letter-spacing: 5px; outline: none; margin-bottom: 20px;
    }
    .terminal-input:focus { border-color: var(--gold); box-shadow: 0 0 10px rgba(212,175,55,0.2); }
    .scan-line {
        width: 100%; height: 2px; background: var(--gold); position: absolute;
        top: 0; left: 0; opacity: 0.3; animation: scanMove 3s infinite linear;
    }
    @keyframes scanMove { 0% { top: 0; } 100% { top: 100%; } }

    .nexus-card {
        background: var(--card-bg);
        border: 1px solid rgba(255, 255, 255, 0.05);
        transition: 0.3s;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .nexus-card:hover { border-color: var(--gold); transform: translateY(-3px); }

    .status-badge { font-family: 'Orbitron'; font-size: 0.6rem; padding: 3px 8px; border: 1px solid; }
    .status-multi { color: var(--neon-cyan); border-color: var(--neon-cyan); }
    .status-paid { color: var(--neon-green); border-color: var(--neon-green); }
    .status-loading { color: var(--gold); border-color: var(--gold); }

    .pagination .page-link {
        background: var(--card-bg); border: 1px solid var(--gold); color: var(--gold);
        font-family: 'Orbitron'; margin: 0 5px; font-size: 0.8rem;
    }
    .pagination .page-item.active .page-link { background: var(--gold); color: #000; }

    /* Notificação de Sucesso (Toast Futurista) */
#submitFeedback {
    display: none;
    position: fixed;
    bottom: 20px; right: 20px;
    background: #000;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 15px 25px;
    font-family: 'Orbitron';
    font-size: 0.8rem;
    z-index: 4000;
    box-shadow: 0 0 20px rgba(0, 255, 128, 0.2);
    animation: slideIn 0.5s ease-out;
}

/* Área de Gestão de Pendentes no Modal */
.pending-item {
    background: #1a1a1a;
    border-left: 3px solid var(--gold);
    margin-bottom: 10px;
    padding: 15px;
}

@keyframes slideIn { from { transform: translateX(100%); } to { transform: translateX(0); } }

    /* FOOTER */
    .nexus-footer {
        flex-shrink: 0;
        background: #000;
        border-top: 1px solid var(--gold);
        padding: 15px 0;
        text-align: center;
    }

    /* Badge Styles */
.status-badge {
    padding: 2px 8px;
    font-size: 0.65rem;
    font-family: 'Orbitron';
    text-transform: uppercase;
    border-radius: 3px;
}

.status-paid {
    box-shadow: 0 0 5px rgba(0, 255, 65, 0.2);
}

.status-testing {
    box-shadow: 0 0 5px rgba(255, 152, 0, 0.2);
}

.nexus-notify {
position: fixed;
bottom: 25px;
right: 25px;
padding: 15px 25px;
font-family: 'Orbitron', sans-serif;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 2px;
background: rgba(5, 5, 5, 0.95);
border: 1px solid rgba(255, 255, 255, 0.1);
border-left: 4px solid #fff;
z-index: 10000;
display: none;
pointer-events: none;
/* Recorte estilo Cyberpunk */
clip-path: polygon(0 0, 100% 0, 100% 75%, 92% 100%, 0 100%);
box-shadow: 0 10px 30px rgba(0,0,0,0.8);
transition: all 0.3s ease;
}

.nexus-notify.error {
border-left-color: #ff4444;
color: #ff4444;
box-shadow: -5px 0 15px rgba(255, 68, 68, 0.15);
}

.nexus-notify.success {
border-left-color: #00ff41;
color: #00ff41;
box-shadow: -5px 0 15px rgba(0, 255, 65, 0.15);
}

.promo-tab-btn {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: #888;
padding: 8px 15px;
font-family: 'Orbitron';
font-size: 0.7rem;
transition: all 0.3s ease;
cursor: pointer;
}

.promo-tab-btn.active {
background: rgba(255, 193, 7, 0.1);
border-color: var(--gold);
color: var(--gold);
box-shadow: 0 0 10px rgba(255, 193, 7, 0.2);
}

.promo-tab-btn:hover:not(.active) {
background: rgba(255, 255, 255, 0.1);
color: #fff;
}

:root {
    --nexus-gold: #ffcc00;
    --nexus-dark: #0d0d0d;
    --nexus-red: #ff4757;
}

.tg-wrapper {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.tg-icon {
    width: 20px;
    height: 20px;
    transition: fill 0.3s ease;
}
.nexus-btn:hover .tg-icon {
    fill: #0088cc; /* O azul aparece no hover como pediste */
}

.nexus-btn {
    position: relative;
    display: inline-block;
    padding: 1px; /* Borda fina */
    background: linear-gradient(90deg, transparent, var(--nexus-gold), transparent);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: visible; /* Para o badge não cortar */
}

.btn-body {
    background: var(--nexus-dark);
    color: var(--nexus-gold);
    padding: 10px 25px; /* Tamanho mais pequeno/compacto */
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.85rem; /* Fonte ligeiramente menor */
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 204, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Badge LIVE a Vermelho */
.live-badge {
    position: absolute;
    top: -12px;
    right: -10px;
    background: var(--nexus-red);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    font-weight: 900;
    border-radius: 3px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
    animation: live-pulse 1.2s infinite ease-in-out;
}

.scan-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.4), transparent);
    animation: fast-scan 3s infinite linear;
    z-index: 1;
    
    /* ADICIONA ISTO AQUI: */
    pointer-events: none; 
}

@keyframes live-pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 15px var(--nexus-red); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fast-scan {
    0% { left: -100%; }
    30% { left: 120%; }
    100% { left: 120%; }
}

.nexus-btn:hover {
    transform: translateY(-2px);
}

.nexus-btn:hover .btn-body {
    background: var(--nexus-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

/* Ícone muda para azul no hover para identificação rápida */
.nexus-btn:hover .fa-telegram-plane {
    color: #0088cc;
}

/* --- AJUSTE TELEGRAM MOBILE --- */
@media (max-width: 480px) {
    /* Centraliza e dá respiro ao botão */
    .tg-wrapper {
        margin: 25px 0 !important;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    /* Reduz a escala geral sem quebrar o design */
    .nexus-btn {
        transform: scale(0.9); /* Redução proporcional rápida */
    }

    .btn-body {
        padding: 8px 15px !important; /* Mais fino e menos largo */
        gap: 6px !important;
        font-size: 0.7rem !important; /* Fonte compacta */
        letter-spacing: 1px !important;
        min-width: 160px; /* Garante que não fica demasiado pequeno */
        justify-content: center;
    }

    .tg-icon {
        width: 15px !important;
        height: 15px !important;
    }

    /* Ajusta o Badge para não colidir com o topo da secção */
    .live-badge {
        top: -8px !important;
        right: -5px !important;
        font-size: 8px !important;
        padding: 1px 4px !important;
    }
}

.btn-node-tele {
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 204, 0, 0.3);
    background: rgba(0, 0, 0, 0.5);
    color: var(--gold);
}

.btn-node-tele:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px var(--gold);
    transform: translateY(-2px);
}

.nexus-footer {
    background: #000000 !important; /* Fundo preto puro para o branco brilhar */
    padding: 20px 0;
    border-top: 1px solid #333;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    /* --- FORÇAR BRANCO --- */
    color: #ffffff !important;
}

.footer-left, .footer-center, .footer-right {
    color: #ffffff !important; /* Garante que todos os lados ficam brancos */
}

.footer-center span {
    color: var(--gold) !important; /* Mantém o dourado no nome */
}

.pulse-text {
    animation: nexusPulse 2s infinite;
    margin-right: 5px;
}

@keyframes nexusPulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}