/* === DESIGN SYSTEM: DARK TECH === */
:root {
    --bg-base: #09090b;
    --bg-panel: #18181b;
    --bg-elevated: #27272a;
    --text-main: #f4f4f5;
    --text-muted: #a1a1aa;
    --neon-accent: #10b981; 
    --neon-hover: #059669;
    --border-color: #3f3f46;
    --font-ui: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 12px; 
    --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-ui); background-color: var(--bg-base); color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.w-100 { width: 100%; }
.mt-15 { margin-top: 15px; }

/* ТИПОГРАФИКА И УТИЛИТЫ */
.font-mono { font-family: var(--font-mono); }
.text-muted { color: var(--text-muted); }
.text-danger { color: #ef4444 !important; }
.text-danger:hover { background: rgba(239, 68, 68, 0.1) !important; }
.text-main { color: var(--text-main); font-weight: bold; }

/* === НАВИГАЦИЯ === */
.top-nav { background: rgba(9, 9, 11, 0.85); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(12px); }
.nav-container { display: flex; justify-content: space-between; align-items: center; height: 80px; max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; }

.brand-logo { 
    font-size: 24px; font-weight: 900; color: var(--text-main); text-decoration: none; 
    letter-spacing: 0.5px; cursor: pointer; margin-right: auto; padding-right: 30px; flex-shrink: 0; 
}
.brand-logo span { color: var(--neon-accent); }

.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-link { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 15px; transition: var(--transition); cursor: pointer; }
.nav-link:hover { color: var(--neon-accent); }

/* МОБИЛЬНОЕ МЕНЮ (Кнопка) */
.mobile-toggle { display: none; background: transparent; border: none; color: var(--text-main); font-size: 28px; cursor: pointer; transition: var(--transition); }
.mobile-toggle:hover { color: var(--neon-accent); }

/* === КНОПКИ === */
.btn-neon { background: transparent; color: var(--neon-accent); border: 1px solid var(--neon-accent); padding: 10px 22px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 14px; transition: var(--transition); font-family: var(--font-mono); text-transform: uppercase; cursor: pointer; }
.btn-neon:hover { background: rgba(16, 185, 129, 0.1); box-shadow: 0 0 15px rgba(16, 185, 129, 0.3); }

.btn-solid { background: var(--neon-accent); color: #000; border: none; padding: 16px 32px; border-radius: var(--radius); font-weight: 700; font-size: 16px; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.btn-solid:hover { background: var(--neon-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16, 185, 129, 0.2); }

.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--border-color); padding: 16px 32px; border-radius: var(--radius); font-weight: 600; font-size: 16px; cursor: pointer; transition: var(--transition); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 10px; }
.btn-outline:hover { border-color: var(--neon-accent); color: var(--neon-accent); }

/* === ПРОФИЛЬ ПОЛЬЗОВАТЕЛЯ (DROPDOWN) === */
.auth-section { position: relative; margin-left: 15px; }
.user-profile { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 6px 12px; background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 30px; transition: var(--transition); }
.user-profile:hover { border-color: var(--neon-accent); }

.user-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; background: var(--bg-elevated); border: 1px solid var(--border-color); }
.user-name { font-size: 14px; font-weight: 600; color: var(--text-main); max-width: 120px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Выпадающее меню профиля */
.profile-dropdown { position: absolute; top: 120%; right: 0; width: 220px; background: var(--bg-elevated); border: 1px solid var(--border-color); border-radius: var(--radius); box-shadow: 0 10px 25px rgba(0,0,0,0.5); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: 0.2s ease; z-index: 1000; }
.user-profile.active .profile-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown-header { padding: 15px; display: flex; flex-direction: column; }
.dropdown-header strong { font-size: 13px; color: var(--text-main); margin-top: 5px; word-break: break-all; }
.dropdown-divider { border: 0; height: 1px; background: var(--border-color); margin: 0; }

.dropdown-item { display: block; width: 100%; text-align: left; padding: 12px 15px; background: transparent; border: none; color: var(--text-main); font-size: 14px; cursor: pointer; transition: var(--transition); font-family: var(--font-ui); }
.dropdown-item i { margin-right: 8px; }
.dropdown-item:hover { background: var(--bg-panel); }

/* === ГЛАВНЫЙ БЛОК (HERO) === */
.hero-section { padding: 140px 0 100px; border-bottom: 1px solid var(--border-color); background: radial-gradient(circle at center top, #18181b 0%, #09090b 100%); text-align: center; }
.hero-title { font-size: 4.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px; }
.hero-desc { font-size: 18px; color: var(--text-muted); margin: 0 auto 40px; max-width: 700px; }
.hero-actions { display: flex; justify-content: center; gap: 16px; }

/* === ОБЩИЕ СТИЛИ СЕКЦИЙ === */
.content-section { padding: 100px 0; border-bottom: 1px solid var(--border-color); }
.section-darker { background-color: var(--bg-panel); }
.section-title { margin-bottom: 60px; text-align: center; }
.section-title h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 10px; letter-spacing: -1px; }
.section-title p { color: var(--text-muted); font-size: 16px; }

/* === ИНСТРУМЕНТЫ (Пароли и Хэш) === */
.tools-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.tool-box { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; }
.tool-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.tool-icon { font-size: 24px; color: var(--neon-accent); }
.tool-header h3 { font-size: 18px; font-weight: 700; }
.tool-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 25px; }

.input-with-btn { display: flex; gap: 10px; }
.input-with-btn input, .input-solo input { flex-grow: 1; min-width: 0; padding: 16px; background: var(--bg-base); border: 1px solid var(--border-color); color: var(--text-main); border-radius: var(--radius); font-size: 16px; font-family: var(--font-mono); outline: none; transition: var(--transition); }
.input-with-btn input:focus, .input-solo input:focus { border-color: var(--neon-accent); }
.input-solo input { width: 100%; }

.btn-icon-solid { background: var(--neon-accent); border: none; color: var(--bg-base); border-radius: var(--radius); width: 54px; height: 54px; flex-shrink: 0; cursor: pointer; transition: var(--transition); font-size: 18px; display: flex; align-items: center; justify-content: center; }
.btn-icon-solid:hover { background: var(--neon-hover); }

.pass-settings { margin-top: 20px; background: var(--bg-base); padding: 15px; border-radius: var(--radius); border: 1px dashed var(--border-color); }
.range-group { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.range-group label { font-size: 14px; color: var(--text-muted); }
.cyber-range { -webkit-appearance: none; width: 60%; height: 6px; background: var(--bg-elevated); border-radius: 3px; outline: none; }
.cyber-range::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 16px; height: 16px; border-radius: 50%; background: var(--neon-accent); cursor: pointer; transition: 0.2s; }
.cyber-range::-webkit-slider-thumb:hover { box-shadow: 0 0 10px var(--neon-accent); transform: scale(1.2); }
.checkbox-group { display: flex; gap: 20px; }
.checkbox-group .custom-checkbox { padding: 0; background: transparent; border: none; font-size: 14px; }

.pass-strength-bar { height: 6px; background: var(--bg-base); border-radius: 3px; margin: 20px 0 10px; overflow: hidden; }
.pass-meter-fill { height: 100%; width: 0%; background: #ef4444; transition: width 0.3s ease, background 0.3s ease; }
.tool-result { font-size: 14px; color: var(--text-muted); }
.hash-output-box { background: var(--bg-base); border: 1px dashed var(--border-color); padding: 16px; border-radius: var(--radius); min-height: 80px; word-break: break-all; margin-top: 15px; }

/* === АУДИТ УЯЗВИМОСТИ === */
.audit-panel { display: grid; grid-template-columns: 3fr 2fr; gap: 40px; background: var(--bg-elevated); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 40px; }
.audit-questions { display: flex; flex-direction: column; gap: 16px; }
.custom-checkbox { display: flex; align-items: center; gap: 16px; cursor: pointer; padding: 16px; background: var(--bg-base); border: 1px solid var(--border-color); border-radius: var(--radius); transition: var(--transition); font-weight: 500; font-size: 15px; }
.custom-checkbox:hover { border-color: #52525b; }
.custom-checkbox input { display: none; }
.checkbox-box { width: 24px; height: 24px; border: 2px solid var(--border-color); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.custom-checkbox input:checked ~ .checkbox-box { background: var(--neon-accent); border-color: var(--neon-accent); }
.custom-checkbox input:checked ~ .checkbox-box::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #000; font-size: 14px; }

.audit-result { background: var(--bg-base); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 40px; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.result-header { font-family: var(--font-mono); font-size: 14px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 15px; }
.score-display { font-size: 4.5rem; font-weight: 900; color: var(--text-main); line-height: 1; margin-bottom: 25px; font-family: var(--font-mono); }
.progress-bar-container { width: 100%; height: 8px; background: var(--bg-panel); border-radius: 4px; margin-bottom: 25px; overflow: hidden; }
.progress-bar-fill { height: 100%; width: 0%; background: #ef4444; transition: width 0.5s ease, background 0.5s ease; }
.status-badge { display: inline-block; padding: 8px 16px; font-weight: 700; font-size: 13px; border-radius: 6px; margin-bottom: 15px; border: 1px solid transparent; font-family: var(--font-mono); }
.status-text { font-size: 14px; color: var(--text-muted); }

/* === РЕЕСТР УГРОЗ === */
.search-wrapper { position: relative; max-width: 500px; margin: 0 auto 40px; }
.search-wrapper input { width: 100%; background: var(--bg-panel); border: 1px solid var(--border-color); color: var(--text-main); padding: 16px 20px; border-radius: var(--radius); font-size: 16px; outline: none; transition: var(--transition); }
.search-wrapper input:focus { border-color: var(--neon-accent); }
.search-wrapper i { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

.threat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.threat-card { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 30px; cursor: pointer; transition: var(--transition); display: flex; flex-direction: column; align-items: flex-start; }
.threat-card:hover { border-color: var(--neon-accent); transform: translateY(-5px); background: var(--bg-elevated); }
.card-icon { font-size: 24px; color: var(--neon-accent); background: rgba(16, 185, 129, 0.1); width: 50px; height: 50px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: 20px; }
.threat-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.threat-info p { font-size: 14px; color: var(--text-muted); }

/* === ГЛОССАРИЙ === */
.glossary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.glossary-item { background: var(--bg-base); border: 1px solid var(--border-color); padding: 24px; border-radius: var(--radius); border-left: 3px solid var(--neon-accent); transition: var(--transition); }
.glossary-item:hover { background: var(--bg-elevated); }
.gl-term { font-family: var(--font-mono); font-weight: 700; font-size: 15px; color: var(--neon-accent); margin-bottom: 10px; text-transform: uppercase; }
.gl-def { font-size: 14px; color: var(--text-muted); }

/* === СИМУЛЯТОР АТАК === */
.simulator-panel { max-width: 800px; margin: 0 auto; background: var(--bg-elevated); border: 1px solid var(--border-color); border-radius: var(--radius); }
.sim-header { padding: 20px 30px; border-bottom: 1px solid var(--border-color); background: var(--bg-base); border-radius: var(--radius) var(--radius) 0 0; }
.sim-counter { font-family: var(--font-mono); font-size: 14px; color: var(--neon-accent); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.sim-body { padding: 40px 30px; text-align: center; }
.sim-question { font-size: 20px; font-weight: 700; margin-bottom: 40px; line-height: 1.4; }
.sim-options { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.btn-option { text-align: left; padding: 20px 24px; background: var(--bg-base); border: 1px solid var(--border-color); color: var(--text-main); border-radius: var(--radius); font-size: 16px; font-weight: 500; cursor: pointer; transition: var(--transition); font-family: var(--font-ui); }
.btn-option:hover { border-color: var(--neon-accent); background: rgba(16, 185, 129, 0.05); }
.sim-feedback { padding: 24px; border-radius: var(--radius); font-size: 15px; margin-bottom: 30px; text-align: left; }
.feed-correct { background: rgba(16, 185, 129, 0.1); border: 1px solid rgba(16, 185, 129, 0.3); color: #34d399; }
.feed-wrong { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: #f87171; }
.sim-actions { display: flex; justify-content: center; gap: 16px; }

/* === ФОРМА ИНЦИДЕНТА === */
.report-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.report-info h2 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 800; letter-spacing: -1px; }
.report-info p { color: var(--text-muted); font-size: 16px; margin-bottom: 30px; }
.report-points { list-style: none; }
.report-points li { margin-bottom: 16px; font-weight: 600; font-family: var(--font-mono); font-size: 14px; color: var(--neon-accent); }
.report-points i { margin-right: 10px; }

.report-form-container { background: var(--bg-base); padding: 40px; border: 1px solid var(--border-color); border-radius: var(--radius); position: relative; }

/* Замок формы */
.report-lock { text-align: center; padding: 40px 20px; background: rgba(0,0,0,0.5); border: 1px dashed var(--border-color); border-radius: var(--radius); }
.report-lock i { font-size: 40px; color: var(--neon-accent); margin-bottom: 20px; opacity: 0.5; }
.report-lock p { color: var(--text-muted); margin-bottom: 25px; }

/* Поля формы */
.input-group { margin-bottom: 24px; }
.input-group label { display: block; font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 10px; }
.input-group input, .input-group select, .input-group textarea { width: 100%; padding: 16px 20px; background: var(--bg-panel); border: 1px solid var(--border-color); color: var(--text-main); border-radius: 8px; font-size: 16px; outline: none; transition: var(--transition); font-family: var(--font-ui); }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { border-color: var(--neon-accent); }
.input-group textarea { resize: vertical; }

.phone-input-wrapper { display: flex; gap: 10px; }
.country-select { width: 150px !important; flex-shrink: 0; background: var(--bg-panel); border: 1px solid var(--border-color); color: var(--text-main); border-radius: 8px; padding: 16px 10px; font-family: var(--font-mono); outline: none; }
.input-hint { color: var(--text-muted); font-size: 12px; margin-top: 8px; display: block; font-family: var(--font-mono); }

/* === ПОДВАЛ === */
.site-footer { background: #000000; padding: 80px 0 30px; border-top: 1px solid var(--border-color); }
.footer-layout { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.brand-logo.logo-footer { color: #fff; margin-bottom: 15px; display: inline-block; }
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer-contacts h4, .footer-links h4 { font-family: var(--font-mono); font-size: 14px; color: var(--text-main); text-transform: uppercase; margin-bottom: 20px; }
.footer-contacts p { color: var(--text-muted); font-size: 14px; margin-bottom: 10px; }
.footer-contacts strong { color: var(--neon-accent); font-size: 16px; }
.footer-link { color: var(--text-muted); text-decoration: none; display: block; margin-bottom: 12px; font-size: 14px; transition: var(--transition); }
.footer-link:hover { color: var(--neon-accent); }
.footer-legal { text-align: center; color: #52525b; font-size: 12px; border-top: 1px solid var(--border-color); margin-top: 60px; padding-top: 20px; font-family: var(--font-mono); }

/* === МОДАЛЬНЫЕ ОКНА (ОБЩИЕ) === */
.modal-wrapper { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(8px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); padding: 20px; }
.modal-wrapper.active { opacity: 1; visibility: visible; }
.modal-content { background: var(--bg-panel); width: 100%; max-width: 600px; border: 1px solid var(--border-color); border-radius: var(--radius); position: relative; transform: translateY(20px); transition: var(--transition); max-height: 90vh; display: flex; flex-direction: column; }
.modal-wrapper.active .modal-content { transform: translateY(0); }
.btn-close { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.1); border: none; color: #fff; width: 36px; height: 36px; border-radius: 50%; font-size: 18px; cursor: pointer; transition: var(--transition); z-index: 10; display: flex; justify-content: center; align-items: center; }
.btn-close:hover { background: var(--neon-accent); color: #000; }
.modal-header { padding: 30px 30px 20px; border-bottom: 1px solid var(--border-color); background: var(--bg-elevated); border-radius: var(--radius) var(--radius) 0 0; }
.modal-header h2 { font-size: 24px; font-weight: 800; padding-right: 40px; }
.modal-body { padding: 30px; color: var(--text-muted); font-size: 15px; overflow-y: auto; }
.modal-body img { width: 100%; height: auto; border-radius: 8px; margin-bottom: 20px; border: 1px solid var(--border-color); }
.modal-body p { margin-bottom: 16px; }
.modal-body strong { color: var(--text-main); }

/* === СТИЛИ АВТОРИЗАЦИИ (ВХОД И РЕГИСТРАЦИЯ) === */
.auth-card { max-width: 400px !important; }
.cyber-input { width: 100%; padding: 16px; background: var(--bg-base); border: 1px solid var(--border-color); border-radius: 8px; color: #fff; margin-bottom: 15px; outline: none; font-family: var(--font-ui); transition: var(--transition); }
.cyber-input:focus { border-color: var(--neon-accent); }
.g-recaptcha { margin-bottom: 15px; transform: scale(0.95); transform-origin: 0 0; }

.auth-divider { display: flex; align-items: center; text-align: center; margin: 24px 0; color: var(--text-muted); font-size: 12px; font-family: var(--font-mono); }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; border-bottom: 1px solid var(--border-color); }
.auth-divider span { padding: 0 10px; }

.google-btn { display: flex; justify-content: center; background: var(--bg-base); font-family: var(--font-ui); }
.google-btn:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.05); }

.auth-toggle-text { margin-top: 20px; text-align: center; font-size: 14px; color: var(--text-muted); }
.auth-toggle-text button { transition: var(--transition); }
.auth-toggle-text button:hover { text-shadow: 0 0 10px rgba(16, 185, 129, 0.4); }

/* === УВЕДОМЛЕНИЯ (TOASTS) === */
.alert-container { position: fixed; bottom: 30px; right: 30px; z-index: 3000; display: flex; flex-direction: column; gap: 10px; }
.alert-msg { background: var(--bg-elevated); border: 1px solid var(--border-color); border-left: 4px solid var(--neon-accent); color: var(--text-main); padding: 16px 24px; border-radius: var(--radius); font-size: 14px; font-weight: 500; font-family: var(--font-mono); box-shadow: 0 10px 30px rgba(0,0,0,0.5); animation: slideIn 0.3s ease; }
@keyframes slideIn { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* === ЛИЧНЫЙ КАБИНЕТ (ДАШБОРД) === */
.dashboard-layout { display: grid; grid-template-columns: 1fr 2.5fr; gap: 30px; }
.dash-card { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 40px; }
.profile-card { text-align: center; display: flex; flex-direction: column; align-items: center; }
.dash-avatar-large { width: 120px; height: 120px; border-radius: 50%; border: 3px solid var(--neon-accent); margin-bottom: 20px; object-fit: cover; }
.dash-card h3 { font-size: 20px; margin-bottom: 25px; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-box { background: var(--bg-base); border: 1px dashed var(--border-color); border-radius: var(--radius); padding: 25px 15px; text-align: center; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--neon-accent); font-family: var(--font-mono); line-height: 1; margin-bottom: 10px; }
.stat-label { color: var(--text-muted); font-size: 12px; text-transform: uppercase; font-weight: 600; }
.achievements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.achievement { background: var(--bg-base); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 20px; text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center; gap: 15px; }
.achievement i { font-size: 30px; color: var(--neon-accent); }
.achievement span { font-weight: 600; font-size: 14px; }
.achievement.locked { opacity: 0.3; filter: grayscale(100%); border-color: transparent; }

/* =========================================
   АДАПТИВНОСТЬ ПОД МОБИЛЬНЫЕ УСТРОЙСТВА 
   ========================================= */
@media (max-width: 900px) {
    .mobile-toggle { display: block; }
    .nav-menu { position: absolute; top: 80px; left: 0; right: 0; background: rgba(9, 9, 11, 0.98); flex-direction: column; padding: 20px 24px; border-bottom: 1px solid var(--border-color); display: none; gap: 15px; align-items: flex-start; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
    .nav-menu.active { display: flex; }
    .nav-link { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 16px; }
    
    .auth-section { display: flex; flex-direction: column; width: 100%; margin-left: 0; margin-top: 10px; }
    .btn-neon.mobile-report-btn, #auth-btn { width: 100%; text-align: center; display: block; margin-top: 10px; box-sizing: border-box; }
    
    .user-profile { width: 100%; justify-content: center; padding: 12px; }
    .profile-dropdown { width: 100%; top: 100%; margin-top: 10px; position: static; box-shadow: none; border-color: rgba(255,255,255,0.1); }
    .user-profile.active .profile-dropdown { display: block; }
    
    .hero-title { font-size: 2.6rem; letter-spacing: -1px; }
    .hero-desc { font-size: 16px; margin-bottom: 30px; }
    .hero-section { padding: 80px 0 60px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn-solid, .hero-actions .btn-outline { width: 100%; }
    
    .content-section { padding: 60px 0; }
    .section-title { margin-bottom: 40px; }
    .section-title h2 { font-size: 2rem; }
    
    .tools-panel-grid, .audit-panel, .report-grid, .footer-layout { grid-template-columns: 1fr; gap: 30px; }
    .glossary-grid { grid-template-columns: 1fr; gap: 16px; }
    
    .tool-box, .audit-panel, .threat-card, .glossary-item, .report-form-container, .report-lock { padding: 20px; }
    .sim-body { padding: 30px 20px; }
    .score-display { font-size: 3.5rem; }
    
    .sim-actions { flex-direction: column; width: 100%; }
    .sim-actions .btn-solid, .sim-actions .btn-outline { width: 100%; }
    
    .alert-container { bottom: 20px; left: 20px; right: 20px; }
    .alert-msg { font-size: 12px; }

    .dashboard-layout { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .achievements-grid { grid-template-columns: 1fr; }
    .checkbox-group { flex-direction: column; gap: 10px; }
    .cyber-range { width: 100%; margin-top: 10px; }
    .range-group { flex-direction: column; align-items: flex-start; }
}
