/* TEMA PREMIUM BANKING - MULTIPLYCK */
/* Design moderno com cores vibrantes e efeitos premium */

/* Reset e Base - PRIORIDADE MÁXIMA */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FUNDO PRETO FORÇADO COM MÁXIMA PRIORIDADE */
html, body, 
body *, 
.container, 
.container-fluid,
.row,
.main-content,
.content,
.wrapper {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

html, body {
    font-family: 'Inter', 'Roboto', sans-serif !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%) !important;
    color: #fff !important;
    overflow-x: hidden !important;
    min-height: 100vh !important;
}

/* Fundo Animado Cyberpunk */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 200, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(64, 224, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(138, 43, 226, 0.05) 0%, transparent 50%);
    z-index: -1;
    animation: premiumGlow 12s ease-in-out infinite alternate;
}

@keyframes premiumGlow {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.02); }
}

/* Cores do Tema */
:root {
    --primary-blue: #40e0ff;
    --primary-green: #00ff88;
    --primary-purple: #8a2be2;
    --primary-gold: #ffd700;
    --primary-orange: #ff6b35;
    --primary-pink: #ff1493;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-premium: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* REMOVER BACKGROUNDS PRETOS DAS COLUNAS - DEIXAR OS CARDS COLORIDOS APARECEREM */
.col-md-12,
.col-md-10,
.col-md-9,
.col-md-8,
.col-md-6,
.col-md-4,
.col-md-3 {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* Manter apenas o fundo geral e containers principais */
.main-content,
.content,
.wrapper {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
}

/* SOBRESCREVER APENAS ELEMENTOS ESPECÍFICOS, NÃO AS COLUNAS DOS CARDS */
.panel-body,
.panel-heading,
.well,
.jumbotron,
.alert,
.modal-content,
.dropdown-menu,
.nav-tabs,
.nav-pills,
.navbar,
.sidebar,
.main-panel,
.content-wrapper {
    background: rgba(17, 17, 17, 0.8) !important;
    background-color: rgba(17, 17, 17, 0.8) !important;
    background-image: none !important;
    color: #fff !important;
}

/* PERMITIR QUE OS CARDS MANTENHAM SUAS CORES ORIGINAIS */
.panel,
.widget {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: #fff !important;
}

/* ESTILOS ESPECÍFICOS PARA LOGIN */
.bank-login {
    background: #000000 !important;
    background-color: #000000 !important;
    background-image: none !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Animação de fundo para login */
.bank-bg-animation {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 255, 100, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 150, 0.1) 0%, transparent 50%) !important;
    z-index: -1 !important;
    animation: bankBgPulse 6s ease-in-out infinite alternate !important;
}

@keyframes bankBgPulse {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.4; transform: scale(1.05); }
}

/* Badge de Segurança */
.security-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 255, 102, 0.1) !important;
    border: 1px solid var(--neon-green);
    border-radius: 20px;
    padding: 8px 15px;
    color: var(--neon-green) !important;
    font-size: 12px;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.security-badge i {
    margin-right: 5px;
    animation: securityPulse 2s ease-in-out infinite;
}

@keyframes securityPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Container Principal do Login */
.bank-login-container {
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%) !important;
    border: 1px solid var(--neon-green) !important;
    border-radius: 15px !important;
    padding: 40px !important;
    max-width: 450px !important;
    width: 90% !important;
    box-shadow: 
        0 0 50px rgba(0, 255, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    position: relative !important;
    overflow: hidden !important;
}

.bank-login-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, var(--neon-green), transparent) !important;
    animation: borderScan 3s linear infinite !important;
}

@keyframes borderScan {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Seção do Logo */
.bank-logo-section {
    text-align: center;
    margin-bottom: 30px;
}

.logo-glow {
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 102, 0.2) 0%, transparent 70%) !important;
    margin-bottom: 15px;
}

.bank-logo {
    max-width: 80px;
    height: auto;
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.bank-title {
    color: var(--neon-green) !important;
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 5px !important;
    text-shadow: 0 0 10px var(--neon-green) !important;
    letter-spacing: 1px !important;
}

.bank-subtitle {
    color: #ccc !important;
    font-size: 14px !important;
    font-weight: 300 !important;
}

/* Container do Formulário */
.bank-form-container {
    margin-bottom: 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h2 {
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    margin-bottom: 5px !important;
}

.form-header h2 i {
    color: var(--neon-green) !important;
    margin-right: 8px !important;
}

.form-header p {
    color: #999 !important;
    font-size: 13px !important;
}

/* Grupos de Input */
.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-green) !important;
    z-index: 2;
}

.bank-input {
    width: 100% !important;
    padding: 15px 15px 15px 45px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.bank-input:focus {
    outline: none !important;
    border-color: var(--neon-green) !important;
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.3) !important;
    background: rgba(0, 0, 0, 0.9) !important;
    color: #fff !important;
}

.bank-input::placeholder {
    color: #666 !important;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-green) !important;
    transition: width 0.3s ease;
}

.bank-input:focus + .input-line {
    width: 100%;
}

/* Botão de Submit */
.bank-submit-btn {
    width: 100% !important;
    padding: 15px !important;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #000 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

.bank-submit-btn:hover {
    background: linear-gradient(135deg, var(--neon-green-light) 0%, var(--neon-green) 100%) !important;
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.5) !important;
    transform: translateY(-2px) !important;
    color: #000 !important;
}

.bank-submit-btn span {
    position: relative;
    z-index: 2;
    color: #000 !important;
}

.bank-submit-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
    color: #000 !important;
}

.bank-submit-btn:hover i {
    transform: translateX(5px);
}

/* Footer do Formulário */
.form-footer {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.recovery-link, .register-link {
    color: #ccc !important;
    text-decoration: none !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    padding: 8px 12px !important;
    border-radius: 5px !important;
    border: 1px solid transparent !important;
}

.recovery-link:hover, .register-link:hover {
    color: var(--neon-green) !important;
    text-decoration: none !important;
    border-color: var(--neon-green) !important;
    background: rgba(0, 255, 102, 0.1) !important;
}

.recovery-link i, .register-link i {
    margin-right: 5px;
}

/* Informações de Segurança */
.security-info {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.security-item {
    text-align: center;
    color: #666 !important;
    font-size: 11px !important;
}

.security-item i {
    display: block;
    color: var(--neon-green) !important;
    font-size: 16px !important;
    margin-bottom: 5px !important;
}

/* Container Principal */
.container-fluid {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    padding: 0;
}

/* Header/Navbar */
.navbar {
    background: linear-gradient(135deg, #000 0%, #111 100%) !important;
    border-bottom: 2px solid var(--neon-green) !important;
    box-shadow: 0 2px 20px rgba(0, 255, 102, 0.3) !important;
}

.navbar-brand {
    color: var(--neon-green) !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    text-shadow: 0 0 10px var(--neon-green) !important;
}

.navbar-nav li a {
    color: #fff !important;
    transition: all 0.3s ease !important;
}

.navbar-nav li a:hover {
    color: var(--neon-green) !important;
    text-shadow: 0 0 5px var(--neon-green) !important;
}

/* Sidebar */
.sidebar {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%) !important;
    border-right: 1px solid var(--neon-green) !important;
    box-shadow: 2px 0 10px rgba(0, 255, 102, 0.2) !important;
}

.sidebar ul li a {
    color: #ccc !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid #222 !important;
    transition: all 0.3s ease !important;
}

.sidebar ul li a:hover {
    background: rgba(0, 255, 102, 0.1) !important;
    color: var(--neon-green) !important;
    border-left: 3px solid var(--neon-green) !important;
    text-shadow: 0 0 5px var(--neon-green) !important;
}

.sidebar ul li.active a {
    background: rgba(0, 255, 102, 0.2) !important;
    color: var(--neon-green) !important;
    border-left: 3px solid var(--neon-green) !important;
}

/* Painéis e Widgets */
.panel, .widget {
    background: linear-gradient(145deg, rgba(17, 17, 17, 0.8) 0%, rgba(10, 10, 10, 0.8) 100%) !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 20px !important;
    overflow: hidden !important;
}

.panel-heading {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    border-bottom: 1px solid var(--neon-green) !important;
    padding: 15px 20px !important;
    color: var(--neon-green) !important;
    font-weight: 600 !important;
}

.panel-body {
    padding: 20px !important;
    color: #fff !important;
    background: transparent !important;
}

/* CARDS NEON - BORDAS BONITAS RESTAURADAS */
.neon-counter-box {
    border: 2px solid var(--neon-green) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: 
        0 0 20px rgba(0, 255, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.neon-counter-box::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, var(--neon-green-light), transparent) !important;
    animation: borderScan 3s linear infinite !important;
}

.neon-counter-box:hover {
    border-color: var(--neon-green-light) !important;
    box-shadow: 
        0 0 30px rgba(0, 255, 102, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-3px) !important;
}

.neon-widget {
    border: 1px solid var(--neon-green) !important;
    border-radius: 10px !important;
    padding: 15px !important;
    margin-bottom: 20px !important;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(0, 255, 102, 0.2) !important;
    transition: all 0.3s ease !important;
}

.neon-widget:hover {
    border-color: var(--neon-green-light) !important;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.6),
        0 0 25px rgba(0, 255, 102, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* Widgets Sociais com Estilo Premium */
.neon-social-widget.neon-widget-earnings,
.wid-social.skype {
    background: linear-gradient(145deg, #00aaf1 0%, #0088cc 100%) !important;
    border: 1px solid rgba(0, 204, 255, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(0, 170, 241, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.neon-social-widget.neon-widget-network,
.wid-social.youtube {
    background: linear-gradient(145deg, #e02f2f 0%, #cc2525 100%) !important;
    border: 1px solid rgba(255, 68, 68, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(224, 47, 47, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.neon-social-widget.neon-widget-points,
.wid-social.facebook {
    background: linear-gradient(145deg, #3b5998 0%, #2d4373 100%) !important;
    border: 1px solid rgba(77, 107, 184, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(59, 89, 152, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Cards de Contador com Cores Específicas - ESTILO PREMIUM */
.r3_counter_box.neon-counter-box:nth-child(1) {
    background: linear-gradient(145deg, #9358ac 0%, #7a4690 100%) !important;
    border: 1px solid rgba(179, 102, 204, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(147, 88, 172, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.r3_counter_box.neon-counter-box:nth-child(2) {
    background: linear-gradient(145deg, #ef553a 0%, #cc4429 100%) !important;
    border: 1px solid rgba(255, 102, 68, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(239, 85, 58, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.r3_counter_box.neon-counter-box:nth-child(3) {
    background: linear-gradient(145deg, #00aced 0%, #0088bb 100%) !important;
    border: 1px solid rgba(0, 204, 255, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(0, 172, 237, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Cores alternativas para mais cards */
.r3_counter_box.neon-counter-box:nth-child(4) {
    background: linear-gradient(145deg, #78cd51 0%, #66b043 100%) !important;
    border: 2px solid #88dd61 !important;
    box-shadow: 
        0 4px 15px rgba(120, 205, 81, 0.4),
        0 0 20px rgba(120, 205, 81, 0.3) !important;
}

.r3_counter_box.neon-counter-box:nth-child(5) {
    background: linear-gradient(145deg, #ea4c89 0%, #d63875 100%) !important;
    border: 2px solid #ff5599 !important;
    box-shadow: 
        0 4px 15px rgba(234, 76, 137, 0.4),
        0 0 20px rgba(234, 76, 137, 0.3) !important;
}

.r3_counter_box.neon-counter-box:nth-child(6) {
    background: linear-gradient(145deg, #007bb5 0%, #005588 100%) !important;
    border: 2px solid #0099dd !important;
    box-shadow: 
        0 4px 15px rgba(0, 123, 181, 0.4),
        0 0 20px rgba(0, 123, 181, 0.3) !important;
}

/* Ícones com cores contrastantes */
.neon-widget-earnings .icon-rounded,
.wid-social.skype .fa {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
    color: #00aaf1 !important;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.5),
        inset 0 2px 5px rgba(0, 170, 241, 0.2) !important;
}

.neon-widget-network .icon-rounded,
.wid-social.youtube .fa {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
    color: #e02f2f !important;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.5),
        inset 0 2px 5px rgba(224, 47, 47, 0.2) !important;
}

.neon-widget-points .icon-rounded,
.wid-social.facebook .fa {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
    color: #3b5998 !important;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.5),
        inset 0 2px 5px rgba(59, 89, 152, 0.2) !important;
}

/* Efeitos de hover premium para cards coloridos */
.neon-social-widget:hover,
.r3_counter_box.neon-counter-box:hover {
    transform: translateY(-3px) !important;
    box-shadow: 
        0 8px 35px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25) !important;
}

/* Texto com melhor contraste */
.neon-social-widget *,
.r3_counter_box.neon-counter-box * {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Ícones com estilo premium */
.neon-widget-earnings .icon-rounded,
.neon-widget-network .icon-rounded,
.neon-widget-points .icon-rounded,
.wid-social .fa {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

.neon-widget-earnings .icon-rounded:hover,
.neon-widget-network .icon-rounded:hover,
.neon-widget-points .icon-rounded:hover,
.wid-social .fa:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: scale(1.05) !important;
}

/* Painéis com gradiente sutil */
.neon-panel {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    border: 1px solid var(--neon-green) !important;
}

/* Tabelas mantêm o fundo escuro para contraste */
.neon-table,
.neon-table-body tr {
    background: #111111 !important;
}

/* Botão de Submit */
.bank-submit-btn {
    width: 100% !important;
    padding: 15px !important;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #000 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

.bank-submit-btn:hover {
    background: linear-gradient(135deg, var(--neon-green-light) 0%, var(--neon-green) 100%) !important;
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.5) !important;
    transform: translateY(-2px) !important;
    color: #000 !important;
}

.bank-submit-btn span {
    position: relative;
    z-index: 2;
    color: #000 !important;
}

.bank-submit-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
    color: #000 !important;
}

.bank-submit-btn:hover i {
    transform: translateX(5px);
}

/* Footer do Formulário */
.form-footer {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.recovery-link, .register-link {
    color: #ccc !important;
    text-decoration: none !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    padding: 8px 12px !important;
    border-radius: 5px !important;
    border: 1px solid transparent !important;
}

.recovery-link:hover, .register-link:hover {
    color: var(--neon-green) !important;
    text-decoration: none !important;
    border-color: var(--neon-green) !important;
    background: rgba(0, 255, 102, 0.1) !important;
}

.recovery-link i, .register-link i {
    margin-right: 5px;
}

/* Informações de Segurança */
.security-info {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.security-item {
    text-align: center;
    color: #666 !important;
    font-size: 11px !important;
}

.security-item i {
    display: block;
    color: var(--neon-green) !important;
    font-size: 16px !important;
    margin-bottom: 5px !important;
}

/* Container Principal */
.container-fluid {
    background: #000000 !important;
    background-color: #000000 !important;
    background-image: none !important;
    padding: 0;
}

/* Header/Navbar */
.navbar {
    background: linear-gradient(135deg, #000 0%, #111 100%) !important;
    border-bottom: 2px solid var(--neon-green) !important;
    box-shadow: 0 2px 20px rgba(0, 255, 102, 0.3) !important;
}

.navbar-brand {
    color: var(--neon-green) !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    text-shadow: 0 0 10px var(--neon-green) !important;
}

.navbar-nav li a {
    color: #fff !important;
    transition: all 0.3s ease !important;
}

.navbar-nav li a:hover {
    color: var(--neon-green) !important;
    text-shadow: 0 0 5px var(--neon-green) !important;
}

/* Sidebar */
.sidebar {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%) !important;
    border-right: 1px solid var(--neon-green) !important;
    box-shadow: 2px 0 10px rgba(0, 255, 102, 0.2) !important;
}

.sidebar ul li a {
    color: #ccc !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid #222 !important;
    transition: all 0.3s ease !important;
}

.sidebar ul li a:hover {
    background: rgba(0, 255, 102, 0.1) !important;
    color: var(--neon-green) !important;
    border-left: 3px solid var(--neon-green) !important;
    text-shadow: 0 0 5px var(--neon-green) !important;
}

.sidebar ul li.active a {
    background: rgba(0, 255, 102, 0.2) !important;
    color: var(--neon-green) !important;
    border-left: 3px solid var(--neon-green) !important;
}

/* Painéis e Widgets */
.panel, .widget {
    background: linear-gradient(145deg, #111 0%, #0a0a0a 100%) !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 20px !important;
    overflow: hidden !important;
}

.panel-heading {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    border-bottom: 1px solid var(--neon-green) !important;
    padding: 15px 20px !important;
    color: var(--neon-green) !important;
    font-weight: 600 !important;
}

.panel-body {
    padding: 20px !important;
    color: #fff !important;
    background: #111111 !important;
}

/* CARDS PREMIUM - BORDAS PROFISSIONAIS E ELEGANTES */
.neon-counter-box {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

.neon-counter-box::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.neon-counter-box:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

.neon-counter-box:hover::before {
    opacity: 1 !important;
}

.neon-widget {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 10px !important;
    padding: 15px !important;
    margin-bottom: 20px !important;
    box-shadow: 
        0 2px 15px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(8px) !important;
}

.neon-widget:hover {
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.15),
        0 2px 5px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-1px) !important;
}

/* RESTAURAR CORES ORIGINAIS DOS CARDS - FUNDOS COLORIDOS BONITOS */

/* Widgets Sociais com Estilo Premium */
.neon-social-widget.neon-widget-earnings,
.wid-social.skype {
    background: linear-gradient(145deg, #00aaf1 0%, #0088cc 100%) !important;
    border: 1px solid rgba(0, 204, 255, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(0, 170, 241, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.neon-social-widget.neon-widget-network,
.wid-social.youtube {
    background: linear-gradient(145deg, #e02f2f 0%, #cc2525 100%) !important;
    border: 1px solid rgba(255, 68, 68, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(224, 47, 47, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.neon-social-widget.neon-widget-points,
.wid-social.facebook {
    background: linear-gradient(145deg, #3b5998 0%, #2d4373 100%) !important;
    border: 1px solid rgba(77, 107, 184, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(59, 89, 152, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Cards de Contador com Cores Específicas - ESTILO PREMIUM */
.r3_counter_box.neon-counter-box:nth-child(1) {
    background: linear-gradient(145deg, #9358ac 0%, #7a4690 100%) !important;
    border: 1px solid rgba(179, 102, 204, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(147, 88, 172, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.r3_counter_box.neon-counter-box:nth-child(2) {
    background: linear-gradient(145deg, #ef553a 0%, #cc4429 100%) !important;
    border: 1px solid rgba(255, 102, 68, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(239, 85, 58, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.r3_counter_box.neon-counter-box:nth-child(3) {
    background: linear-gradient(145deg, #00aced 0%, #0088bb 100%) !important;
    border: 1px solid rgba(0, 204, 255, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(0, 172, 237, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Cores alternativas para mais cards */
.r3_counter_box.neon-counter-box:nth-child(4) {
    background: linear-gradient(145deg, #78cd51 0%, #66b043 100%) !important;
    border: 1px solid rgba(136, 221, 97, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(120, 205, 81, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.r3_counter_box.neon-counter-box:nth-child(5) {
    background: linear-gradient(145deg, #ea4c89 0%, #d63875 100%) !important;
    border: 1px solid rgba(255, 85, 153, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(234, 76, 137, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.r3_counter_box.neon-counter-box:nth-child(6) {
    background: linear-gradient(145deg, #007bb5 0%, #005588 100%) !important;
    border: 1px solid rgba(0, 153, 221, 0.4) !important;
    box-shadow: 
        0 4px 20px rgba(0, 123, 181, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Ícones com cores contrastantes */
.neon-widget-earnings .icon-rounded,
.wid-social.skype .fa {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
    color: #00aaf1 !important;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.5),
        inset 0 2px 5px rgba(0, 170, 241, 0.2) !important;
}

.neon-widget-network .icon-rounded,
.wid-social.youtube .fa {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
    color: #e02f2f !important;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.5),
        inset 0 2px 5px rgba(224, 47, 47, 0.2) !important;
}

.neon-widget-points .icon-rounded,
.wid-social.facebook .fa {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%) !important;
    color: #3b5998 !important;
    box-shadow: 
        0 0 15px rgba(255, 255, 255, 0.5),
        inset 0 2px 5px rgba(59, 89, 152, 0.2) !important;
}

/* Efeitos de hover melhorados para cards coloridos */
.neon-social-widget:hover {
    transform: translateY(-5px) !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 0 30px currentColor !important;
}

.r3_counter_box.neon-counter-box:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 35px currentColor !important;
}

/* Animação de brilho para cards coloridos */
.neon-social-widget::before,
.r3_counter_box.neon-counter-box::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
}

/* Texto branco para contraste em fundos coloridos */
.neon-social-widget *,
.r3_counter_box.neon-counter-box * {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

/* Exceções para ícones que devem manter cor específica */
.neon-social-widget .icon-rounded,
.r3_counter_box .icon-rounded {
    color: inherit !important;
    text-shadow: none !important;
}

/* Painéis com gradiente sutil */
.neon-panel {
    background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    border: 1px solid var(--neon-green) !important;
}

/* Tabelas mantêm o fundo escuro para contraste */
.neon-table,
.neon-table-body tr {
    background: #111111 !important;
}

/* Botão de Submit */
.bank-submit-btn {
    width: 100% !important;
    padding: 15px !important;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-green-dark) 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #000 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

.bank-submit-btn:hover {
    background: linear-gradient(135deg, var(--neon-green-light) 0%, var(--neon-green) 100%) !important;
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.5) !important;
    transform: translateY(-2px) !important;
    color: #000 !important;
}

.bank-submit-btn span {
    position: relative;
    z-index: 2;
    color: #000 !important;
}

.bank-submit-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
    color: #000 !important;
}

.bank-submit-btn:hover i {
    transform: translateX(5px);
}

/* Footer do Formulário */
.form-footer {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.recovery-link, .register-link {
    color: #ccc !important;
    text-decoration: none !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    padding: 8px 12px !important;
    border-radius: 5px !important;
    border: 1px solid transparent !important;
}

.recovery-link:hover, .register-link:hover {
    color: var(--neon-green) !important;
    text-decoration: none !important;
    border-color: var(--neon-green) !important;
    background: rgba(0, 255, 102, 0.1) !important;
}

.recovery-link i, .register-link i {
    margin-right: 5px;
}

/* Informações de Segurança */
.security-info {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.security-item {
    text-align: center;
    color: #666 !important;
    font-size: 11px !important;
}

.security-item i {
    display: block;
    color: var(--neon-green) !important;
    font-size: 16px !important;
    margin-bottom: 5px !important;
}

/* Container Principal */
.container-fluid {
    background: #000000 !important;
    background-color: #000000 !important;
    background-image: none !important;
    padding: 0;
}

/* Header/Navbar */
.navbar {
    background: linear-gradient(135deg, #000 0%, #111 100%) !important;
    border-bottom: 2px solid var(--neon-green) !important;
    box-shadow: 0 2px 20px rgba(0, 255, 102, 0.3) !important;
}

.navbar-brand {
    color: var(--neon-green) !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    text-shadow: 0 0 10px var(--neon-green) !important;
}

.navbar-nav li a {
    color: #fff !important;
    transition: all 0.3s ease !important;
}

.navbar-nav li a:hover {
    color: var(--neon-green) !important;
    text-shadow: 0 0 5px var(--neon-green) !important;
}

/* Sidebar */
.sidebar {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%) !important;
    border-right: 1px solid var(--neon-green) !important;
    box-shadow: 2px 0 10px rgba(0, 255, 102, 0.2) !important;
}

.sidebar ul li a {
    color: #ccc !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid #222 !important;
    transition: all 0.3s ease !important;
}

.sidebar ul li a:hover {
    background: rgba(0, 255, 102, 0.1) !important;
    color: var(--neon-green) !important;
    border-left: 3px solid var(--neon-green) !important;
    text-shadow: 0 0 5px var(--neon-green) !important;
}

.sidebar ul li.active a {
    background: rgba(0, 255, 102, 0.2) !important;
    color: var(--neon-green) !important;
    border-left: 3px solid var(--neon-green) !important;
}

/* Painéis e Widgets */
.panel, .widget {
    background: linear-gradient(145deg, #111 0%, #0a0a0a 100%) !important;
    border: 1px solid #333 !important;
    border-radius: 8px !important;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 20px !important;
    overflow: hidden !important;
}

.panel-heading {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%) !important;
    border-bottom: 1px solid var(--neon-green) !important;
    padding: 15px 20px !important;
    color: var(--neon-green) !important;
    font-weight: 600 !important;
}

.panel-body {
    padding: 20px !important;
    color: #fff !important;
    background: #111111 !important;
}

/* CARDS PREMIUM - BORDAS PROFISSIONAIS E ELEGANTES */
.neon-counter-box {
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

.neon-counter-box::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.neon-counter-box:hover {
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

.neon-counter-box:hover::before {
    opacity: 1 !important;
}

.neon-widget {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 10px !important;
    padding: 15px !important;
    margin-bottom: 20px !important;
    box-shadow: 
        0 2px 15px rgba(0, 0, 0, 0.1),
        0 1px 2px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(8px) !important;
}

.neon-widget:hover {
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.15),
        0 2px 5px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-1px) !important;
}

/* Efeitos ESPECIAIS PARA CARDS ATIVOS */
.neon-row-active {
    background: rgba(0, 255, 102, 0.05) !important;
    border-left: 3px solid var(--neon-green) !important;
}

.neon-row-expired {
    background: rgba(255, 82, 82, 0.05) !important;
    border-left: 3px solid #ff5252 !important;
}

/* ANIMAÇÃO PARA TODOS OS CARDS */
.neon-counter-box,
.neon-widget,
.neon-social-widget,
.neon-panel {
    animation: cardFadeIn 0.6s ease-out !important;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ... existing code ... */