/* ==========================================================================
   SISTEMA ANTIVÍRUS - NÚCLEO DE ESTILOS (ORIGINAL + UPGRADES)
   ========================================================================== */

/* --- VARIÁVEIS DO SISTEMA --- */
:root {
    --color-bg: #020205;
    --color-container: rgba(5, 10, 15, 0.85);
    --neon-cyan: #00f3ff;
    --neon-yellow: #fce803;
    --neon-green: #39ff14;
    --neon-gray: #444;
    --font-terminal: 'Consolas', 'Courier New', Courier, monospace;
}

/* --- EFEITOS ESPECIAIS --- */
@keyframes scanline {
    0% { transform: translateY(-100vh); }
    100% { transform: translateY(100vh); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 10px var(--neon-cyan), inset 0 0 5px var(--neon-cyan); }
    50% { box-shadow: 0 0 30px var(--neon-cyan), inset 0 0 15px var(--neon-cyan); }
    100% { box-shadow: 0 0 10px var(--neon-cyan), inset 0 0 5px var(--neon-cyan); }
}

/* --- BASE DA PÁGINA --- */
body {
    background-color: var(--color-bg);
    color: var(--neon-cyan);
    font-family: var(--font-terminal);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(0, 243, 255, 0.15) 0%, transparent 70%),
        linear-gradient(rgba(0, 243, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.08) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
}

body::after {
    content: ""; position: absolute; top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.25) 51%);
    background-size: 100% 4px; pointer-events: none; z-index: 998;
}

body::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100vw; height: 15vh;
    background: linear-gradient(to bottom, transparent, rgba(0, 243, 255, 0.15), transparent);
    animation: scanline 8s linear infinite; pointer-events: none; z-index: 999;
}

/* --- CAIXA DO JOGO --- */
#game-container {
    width: fit-content;
    min-width: 1070px;
    height: auto;
    min-height: 600px;
    background-color: var(--color-container);
    border: 2px solid var(--neon-cyan);
    animation: pulse-glow 4s ease-in-out infinite;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 20px;
    z-index: 10;
}

/* --- GERENCIAMENTO DE TELAS --- */
.screen {
    display: none; 
    width: 1070px; 
    height: 600px;
}
.screen.active { 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
}

h1, h2 { text-shadow: 0 0 10px var(--neon-cyan); letter-spacing: 4px; margin-bottom: 40px; text-align: center; }

/* --- BOTÕES GLOBAIS --- */
button {
    background: transparent; color: var(--neon-cyan); border: 2px solid var(--neon-cyan);
    padding: 15px 30px; font-size: 1.2rem; font-family: var(--font-terminal); font-weight: bold;
    cursor: pointer; text-transform: uppercase; animation: pulse-glow 2s ease-in-out infinite;
    transition: all 0.3s ease; margin: 10px; border-radius: 5px; outline: none;
}
button:hover {
    background: var(--neon-cyan); color: #000; box-shadow: 0 0 25px var(--neon-cyan), inset 0 0 25px var(--neon-cyan);
    animation: none;
}

/* --- SUPORTE AOS BOTÕES INJETADOS PELO APP.JS --- */
.primary { background: var(--neon-cyan); color: #000; animation: none; }
.primary:hover { background: #fff; box-shadow: 0 0 25px var(--neon-cyan); }
.secondary { border-color: #ff0055; color: #ff0055; animation: none; box-shadow: inset 0 0 5px #ff0055, 0 0 5px #ff0055; }
.secondary:hover { background: rgba(255, 0, 85, 0.2); box-shadow: 0 0 15px #ff0055; color: #ff0055; }

/* --- GRADE DE FASES --- */
#level-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.level-btn { width: 70px; height: 70px; font-size: 1.5rem; display: flex; justify-content: center; align-items: center; padding: 0; margin: 0; animation: none;}

.available { color: var(--neon-yellow); border-color: var(--neon-yellow); box-shadow: 0 0 10px var(--neon-yellow), inset 0 0 10px var(--neon-yellow); }
.available:hover { background: var(--neon-yellow); color: #000; box-shadow: 0 0 25px var(--neon-yellow), inset 0 0 25px var(--neon-yellow); }
.passed { color: var(--neon-green); border-color: var(--neon-green); box-shadow: 0 0 10px var(--neon-green), inset 0 0 10px var(--neon-green); }
.passed:hover { background: var(--neon-green); color: #000; box-shadow: 0 0 25px var(--neon-green), inset 0 0 25px var(--neon-green); }
.locked { color: var(--neon-gray); border-color: var(--neon-gray); box-shadow: none; cursor: not-allowed; }
.locked:hover { background: transparent; color: var(--neon-gray); box-shadow: 0 0 5px var(--neon-gray); }

/* ==========================================================================
   NOVOS MÓDULOS DE INTERFACE (IN GAME, HUD E UPGRADES)
   ========================================================================== */

/* --- TELA DE GAMEPLAY --- */
.game-layout {
    display: flex; gap: 20px; justify-content: center; align-items: flex-start;
    width: 100%; height: 100%;
}

.canvas-wrapper { position: relative; width: 800px; height: 600px; }
.game-canvas {
    border: 2px solid var(--neon-cyan); border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2); display: block; width: 100%; height: 100%;
}

/* --- HUD LATERAL --- */
.sidebar-hud {
    width: 250px; height: 600px; background: rgba(0, 5, 20, 0.9);
    border: 2px solid var(--neon-cyan); border-radius: 10px; padding: 15px;
    display: flex; flex-direction: column; gap: 15px; box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    box-sizing: border-box; text-align: left;
}

.hud-label { color: #fff; margin: 0 0 5px 0; font-size: 12px; }
.hud-val-cyan { color: var(--neon-cyan); font-size: 24px; font-weight: bold; }
.hud-val-yellow { color: #ffcc00; font-size: 24px; font-weight: bold; display: flex; align-items: center; gap: 5px; }
.hud-val-green { color: #00ffaa; font-size: 24px; font-weight: bold; display: flex; align-items: center; gap: 5px; justify-content: flex-end; }

.hp-bar-bg { 
    width: 100%; 
    height: 10px; /* Reduzido de 20px para 10px */
    border: 1px solid #fff; /* Reduzido de 2px para 1px para ficar mais clean */
    border-radius: 2px; /* Cantos levemente arredondados combinando com a do plasma */
    background: #330000; 
    margin-bottom: 5px; 
    position: relative; 
}
#hud-hp-bar { width: 100%; height: 100%; background: #00ff00; transition: width 0.2s, background 0.2s; }

.minimap-canvas { background: #020205; border: 1px solid var(--neon-cyan); border-radius: 5px; width: 100%; aspect-ratio: 1/1; display: block; }

.btn-abort {
    width: 100%; height: 45px; display: flex; align-items: center; justify-content: center;
    background: rgba(255, 0, 85, 0.1); border-color: #ff0055; color: #ff0055;
    font-size: 16px; margin: 0; padding: 0; animation: none; box-shadow: 0 0 10px rgba(255, 0, 85, 0.4);
}
.btn-abort:hover { background: rgba(255, 0, 85, 0.3); box-shadow: 0 0 20px #ff0055; color: #ff0055; }

/* --- POPUP MODAL FASE CONCLUÍDA --- */
.modal-overlay {
    display: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 5, 10, 0.85); z-index: 99999; justify-content: center; align-items: center;
    backdrop-filter: blur(5px); border-radius: 10px;
}
.modal-box {
    background: rgba(0, 10, 30, 0.95); border: 2px solid var(--neon-cyan); border-radius: 10px;
    padding: 30px; text-align: center; max-width: 450px; width: 90%; box-shadow: 0 0 30px var(--neon-cyan);
}
.modal-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.modal-buttons button { margin: 0; width: 100%; }

/* --- TELA DE UPGRADES --- */
.upgrade-modal {
    width: 100%; height: 88%; background: rgba(0, 10, 30, 0.8);
    border: 2px solid var(--neon-cyan); border-radius: 10px; padding: 30px; 
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2); box-sizing: border-box;
    display: flex; flex-direction: column; overflow-y: auto;
}
.upgrade-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--neon-cyan); padding-bottom: 10px; margin-bottom: 25px; }
.upgrade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: -10px; }
.upgrade-card { background: rgba(0, 20, 40, 0.8); border: 1px solid var(--neon-cyan); padding: 15px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; text-align: left; }
.upgrade-footer { display: flex; justify-content: center; gap: 20px; margin-top: auto; }
.upgrade-footer button { margin: 0; }

.btn-upgrade { margin: 0; padding: 10px 20px; font-size: 16px; border-color: #00ffaa; color: #00ffaa; animation: none; box-shadow: inset 0 0 5px #00ffaa; }
.btn-upgrade:hover { background: #00ffaa; color: #000; box-shadow: 0 0 20px #00ffaa; }

/* ==========================================================================
   ESTILOS DO MÓDULO DE LOGIN
   ========================================================================== */

/* Botão no canto inferior direito do menu principal */
#main-menu {
    position: relative; /* Garante alinhamento absoluto interno */
}

.btn-login-bottom-right {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin: 0 !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 10, 25, 0.8);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
    transition: all 0.3s ease;
    z-index: 20;
}

.btn-login-bottom-right:hover {
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 20px var(--neon-cyan);
}

/* Modal de Login */
.login-modal-box {
    background: rgba(2, 6, 18, 0.95);
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    width: 380px;
    max-width: 90%;
    box-shadow: 0 0 35px rgba(0, 243, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--neon-cyan);
    background: rgba(0, 243, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

.login-cyber-icon {
    width: 32px;
    height: 32px;
}

.login-title {
    color: var(--neon-cyan);
    font-size: 22px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.login-subtitle {
    color: #888;
    font-size: 12px;
    margin-bottom: 20px;
}

/* Campos de Formulário */
#login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 5px;
}

.input-group label {
    font-size: 11px;
    color: var(--neon-cyan);
    letter-spacing: 1px;
}

.input-group input {
    background: rgba(0, 15, 30, 0.8);
    border: 1px solid var(--neon-cyan);
    border-radius: 5px;
    padding: 10px 12px;
    color: #fff;
    font-family: var(--font-terminal);
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.input-group input:focus {
    border-color: #00ffaa;
    box-shadow: 0 0 10px rgba(0, 255, 170, 0.4);
}

/* Mensagem de Status */
.login-status {
    font-size: 12px;
    min-height: 18px;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}

.status-pending { color: #ffcc00; }
.status-success { color: #00ffaa; text-shadow: 0 0 8px #00ffaa; }
.status-error { color: #ff0055; text-shadow: 0 0 8px #ff0055; }

/* ============================================================================
   🖱️ CURSORES CUSTOMIZADOS EM CÓDIGO PURO (SEM IMAGENS EXTERNAS)
   ============================================================================ */

/* 1. Cursor Global (Mão Tática com apenas o Indicador estendido e os outros alinhados) */
body, button, .btn, .cyber-toggle-slider, .level-btn, .click-selector span {
    cursor: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 12 V10 a2 2 0 0 0 -4 0 v2 V10 a2 2 0 0 0 -4 0 v2 V3 a2 2 0 0 0 -4 0 V14 M18 10 a2 2 0 0 1 2 2 v3 a8 8 0 0 1 -8 8 h-2 c-2.5 0 -4.5 -1.5 -5.5 -3.5 L2.5 14" stroke="%2300f3ff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') 8 2, pointer !important;
}

/* 2. Cursor dentro do Jogo (Micro-esfera vermelha neon) */
#game-canvas {
    cursor: url('data:image/svg+xml;utf8,<svg width="4" height="4" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="%23ff0055"/></svg>') 3 3, crosshair !important;
}

/* Tela de pintura e limites da bandeira */
.flag-icon { width: 22px; height: 14px; position: relative; overflow: hidden; display: inline-block; border-radius: 2px; vertical-align: middle; opacity: 0.95; }

/* 🇧🇷 BANDEIRA DO BRASIL */
.flag-br { background: #009c3b; }
.flag-br::before { content: ''; position: absolute; top: 10%; left: 10%; right: 10%; bottom: 10%; background: #ffdf00; clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.flag-br::after { content: ''; position: absolute; top: 28%; left: 35%; width: 30%; height: 44%; background: #002776; border-radius: 50%; }

/* 🇬🇧 BANDEIRA DO REINO UNIDO (Matemática de Gradientes) */
.flag-en { background: 
    linear-gradient(0deg, transparent 40%, #c8102e 40%, #c8102e 60%, transparent 60%), 
    linear-gradient(90deg, transparent 43%, #c8102e 43%, #c8102e 57%, transparent 57%), 
    linear-gradient(0deg, transparent 33%, #fff 33%, #fff 67%, transparent 67%), 
    linear-gradient(90deg, transparent 35%, #fff 35%, #fff 65%, transparent 65%), 
    linear-gradient(33deg, transparent 46%, #c8102e 46%, #c8102e 54%, transparent 54%), 
    linear-gradient(-33deg, transparent 46%, #c8102e 46%, #c8102e 54%, transparent 54%), 
    linear-gradient(33deg, transparent 40%, #fff 40%, #fff 60%, transparent 60%), 
    linear-gradient(-33deg, transparent 40%, #fff 40%, #fff 60%, transparent 60%), 
    #012169; }
    
/* 🇪🇸 BANDEIRA DA ESPANHA */
.flag-es { background: linear-gradient(180deg, #c60d1f 25%, #ffc400 25%, #ffc400 75%, #c60d1f 75%); }
.flag-es::before { content: ''; position: absolute; top: 35%; left: 20%; width: 15%; height: 30%; background: #c60d1f; border-radius: 1px; }

/* ==========================================================================
   ÍCONE DE BITS ANIMADO (0 e 1 SCROLLING)
   ========================================================================== */
/* ==========================================================================
   ÍCONE DE BITS ANIMADO (FITA DUPLA - DUAL BUFFER)
   ========================================================================== */
.icon-bit {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start; /* 🟢 Importante: Começa encostado na esquerda */
    width: 14px;
    height: 14px;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    vertical-align: middle;
    opacity: 0.8;
}

.icon-bit-track {
    display: flex;
    color: currentColor;
    font-family: 'Consolas', monospace;
    font-size: 11px;
    font-weight: bold;
    /* 🟢 Tempo alterado de 1.5s para 5s (bem mais lento e fluido) */
    animation: bitTrackScroll 5s linear infinite; 
}

.icon-bit-rain {
    position: absolute;
    left: 0; /* 🟢 Garante que a fita já nasça encostada na parede, sem buracos */
    color: currentColor;
    font-family: 'Consolas', monospace;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap; 
    /* 🟢 Diminuiu o tempo de 3s para 1.5s (Muito mais rápido!) */
    animation: bitScrollRightToLeft 1.5s linear infinite; 
}

@keyframes bitTrackScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* 🟢 Arrasta exatamente a largura da Fita 1 e reseta */
}

/* ==========================================================================
   MODAL DE PERFIL TÁTICO DO OPERADOR
   ========================================================================== */

#profile-modal-overlay {
    z-index: 999999;
}

.profile-modal-box {
    width: 700px;
    max-width: 95%;
    padding: 25px;
    position: relative;
}

/* Botão de Fechar (X) */
.profile-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #00f3ff;
    cursor: pointer;
    transition: color 0.2s, filter 0.2s;
    padding: 5px; /* Aumenta a área de clique */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.profile-close-btn:hover {
    color: #fff;
    filter: drop-shadow(0 0 5px #00f3ff); /* Usa filter em vez de text-shadow para SVGs */
}

/* Cabeçalho do Perfil */
.profile-header {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 15px;
    border-bottom: 2px solid #00f3ff;
    padding-bottom: 15px;
    margin-bottom: 25px;
    padding-right: 30px;
    box-sizing: border-box;
}

.profile-header-icon {
    margin: 0;
    width: 55px;
    height: 55px;
}

.profile-header-text {
    text-align: left;
    flex-grow: 1;
}

.profile-username {
    color: #00ffaa;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Barra de Purificação (Progresso) */
.profile-progress-container {
    width: 100%;
    margin-bottom: 25px;
    text-align: left;
}

.profile-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.profile-progress-title {
    color: #00f3ff;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
}

.profile-completion-pct {
    color: #00ffaa;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 0 5px #00ffaa;
}

.profile-progress-track {
    width: 100%;
    height: 12px;
    border: 1px solid #00f3ff;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.profile-completion-bar {
    height: 100%;
    background: #00ffaa;
    box-shadow: 0 0 10px #00ffaa;
    transition: width 0.4s ease-out;
}

/* Grid de Status (As duas colunas) */
.profile-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    text-align: left;
    margin-bottom: 25px;
}

.profile-stats-col {
    border-radius: 8px;
    padding: 15px;
}

/* Estilo Coluna 1: Modo História */
.profile-stats-col.story-col {
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid #00f3ff;
    box-shadow: inset 0 0 10px rgba(0, 243, 255, 0.1);
}

.profile-stats-col.story-col .profile-col-header {
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
}

.profile-stats-col.story-col .profile-col-title {
    color: #00f3ff;
}

#prof-story-bits {
    color: #00ffaa;
    text-shadow: 0 0 8px #00ffaa;
}

.profile-stats-col.story-col .profile-stats-list li span:last-child {
    color: #00ffaa;
}

/* Estilo Coluna 2: Modo Jogo Livre */
.profile-stats-col.free-col {
    background: rgba(40, 20, 0, 0.6);
    border: 1px solid #ffcc00;
    box-shadow: inset 0 0 10px rgba(255, 204, 0, 0.1);
}

.profile-stats-col.free-col .profile-col-header {
    border-bottom: 1px solid rgba(255, 204, 0, 0.3);
}

.profile-stats-col.free-col .profile-col-title {
    color: #ffcc00;
}

#prof-free-bits {
    color: #ffcc00;
    text-shadow: 0 0 8px #ffcc00;
}

.profile-stats-col.free-col .profile-stats-list li span:last-child {
    color: #ffcc00;
}

/* Estrutura das Listas e Cabeçalhos internos */
.profile-col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.profile-col-title {
    margin: 0;
    font-size: 15px;
}

.profile-bits-container {
    white-space: nowrap;
}

.profile-bits-container .bits-val {
    font-size: 20px;
    font-weight: bold;
}

.profile-bits-container .icon-wrap {
    font-size: 16px;
}

.profile-stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 2.0;
    max-height: 190px;
    overflow-y: auto;
    padding-right: 8px;
}

.profile-stats-list li {
    display: flex;
    justify-content: space-between;
}

.profile-stats-list li span:last-child {
    font-weight: bold;
}

/* Rodapé Tático */
.profile-footer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    border-top: 1px solid rgba(0, 243, 255, 0.3);
    padding-top: 15px;
}

.btn-logout-profile {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center; /* Centraliza o ícone perfeitamente */
    padding: 10px; /* Deixa o espaçamento igual em todos os lados */
    width: 44px; /* Fixa a largura para virar um quadrado */
    height: 44px; /* Fixa a altura para virar um quadrado */
    box-sizing: border-box; /* Impede que a borda quebre o tamanho */
}

/* Barras de Rolagem Customizadas (Cyberpunk) */
.cyber-scroll-cyan::-webkit-scrollbar { width: 6px; }
.cyber-scroll-cyan::-webkit-scrollbar-track { background: rgba(0, 243, 255, 0.1); border-radius: 4px; }
.cyber-scroll-cyan::-webkit-scrollbar-thumb { background: #00ffaa; border-radius: 4px; box-shadow: 0 0 5px #00ffaa; }

.cyber-scroll-yellow::-webkit-scrollbar { width: 6px; }
.cyber-scroll-yellow::-webkit-scrollbar-track { background: rgba(255, 204, 0, 0.1); border-radius: 4px; }
.cyber-scroll-yellow::-webkit-scrollbar-thumb { background: #ffcc00; border-radius: 4px; box-shadow: 0 0 5px #ffcc00; }

/* ==========================================================================
   BLOQUEIO DO MODO JOGO LIVRE NO PERFIL
   ========================================================================== */
.profile-stats-col.free-col {
    position: relative;
}

/* Quando estiver bloqueado, desfoca e apaga a lista de status */
.profile-stats-col.free-col.locked .profile-stats-list,
.profile-stats-col.free-col.locked .profile-col-header {
    opacity: 0.25;
    filter: blur(1px);
    pointer-events: none;
    user-select: none;
}

/* Placa Cyberpunk de Acesso Negado */
.profile-lock-overlay {
    position: absolute;
    top: 50px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 14, 23, 0.85);
    border: 1px dashed #ffcc00;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    z-index: 10;
    box-shadow: inset 0 0 15px rgba(255, 204, 0, 0.15);
}

/* Ícone do Cadeado Vetorial */
.profile-lock-icon {
    color: #ff0055; /* Cor vermelha/magenta neon de perigo */
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lockPulse 1.5s infinite alternate; /* Efeito de alerta piscando */
}

/* Efeito de brilho de segurança piscando */
@keyframes lockPulse {
    0% { filter: drop-shadow(0 0 2px currentColor); opacity: 0.7; transform: scale(0.95); }
    100% { filter: drop-shadow(0 0 12px currentColor); opacity: 1; transform: scale(1); }
}

.profile-lock-title {
    color: #ffcc00;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #ffcc00;
    margin-bottom: 4px;
}

.profile-lock-sub {
    color: #aaa;
    font-size: 11px;
    line-height: 1.3;
}

#btn-create-account {
    background-color: #00ffaa; color: #000; border-color: #00ffaa; box-shadow: inset 0 0 8px #00ffaa;
}