:root {
--bg-main: #090C12;
--bg-secondary: #0D1119;
--bg-panel: #111624;
--bg-elevated: #151B2A;
--panel-dark: #101522;
--panel-hover: #171D2B;
--panel-active: #1D2434;
--text-primary: #F2F4F8;
--text-secondary: #A8B0C0;
--text-muted: #596173;
--accent: #C8FFA0;
--accent-bright: #D9FFB8;
--accent-dark: #9FD775;
--radius-sm: 6px;
--radius-md: 10px;
--radius-lg: 16px;
--radius-xl: 20px;
--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
--font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--mono: 'JetBrains Mono', monospace;
--center-width: 1100px;
}

*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
}

body {
font-family: var(--font);
background: var(--bg-main);
color: var(--text-primary);
min-height: 100vh;
overflow-x: hidden;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-main); border-radius: 4px; }
::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, rgba(200,255,160,0.15), rgba(200,255,160,0.05));
border-radius: 4px;
border: 1px solid rgba(255,255,255,0.03);
transition: background var(--transition);
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, rgba(200,255,160,0.3), rgba(200,255,160,0.1));
}
::-webkit-scrollbar-corner { background: transparent; }

::selection {
background: rgba(200,255,160,0.25);
color: var(--text-primary);
}

/* ========== PRELOADER ========== */
#preloader {
position: fixed;
inset: 0;
background: var(--bg-main);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 9999;
transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.loader-ring {
width: 48px;
height: 48px;
border: 3px solid var(--bg-elevated);
border-top-color: var(--accent);
border-radius: 50%;
animation: spin 0.8s linear infinite;
margin-bottom: 16px;
}
.loader-text {
color: var(--text-muted);
font-size: 14px;
font-weight: 500;
font-family: var(--font);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========== BACKGROUND EFFECTS ========== */
.bg-effects {
position: fixed;
inset: 0;
pointer-events: none;
z-index: 0;
overflow: hidden;
}
.bg-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(200,255,160,0.015) 1px, transparent 1px),
linear-gradient(90deg, rgba(200,255,160,0.015) 1px, transparent 1px);
background-size: 60px 60px;
animation: grid-drift 20s linear infinite;
}
@keyframes grid-drift {
0% { transform: translate(0, 0); }
100% { transform: translate(60px, 60px); }
}
.bg-glow-orb {
position: absolute;
border-radius: 50%;
filter: blur(80px);
opacity: 0.3;
animation: orb-float 8s ease-in-out infinite alternate;
}
.orb-1 {
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(200,255,160,0.08), transparent);
top: -100px;
left: -100px;
animation-duration: 10s;
}
.orb-2 {
width: 350px;
height: 350px;
background: radial-gradient(circle, rgba(200,255,160,0.05), transparent);
bottom: -80px;
right: -80px;
animation-duration: 12s;
animation-delay: -4s;
}
@keyframes orb-float {
0% { transform: translate(0, 0) scale(1); }
50% { transform: translate(30px, -30px) scale(1.1); }
100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========== TOPBAR ========== */
.topbar {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 60px;
background: rgba(9, 12, 18, 0.88);
backdrop-filter: blur(24px) saturate(1.2);
-webkit-backdrop-filter: blur(24px) saturate(1.2);
border-bottom: 1px solid rgba(255,255,255,0.04);
display: flex;
justify-content: center;
z-index: 1000;
}
.topbar-inner {
width: 100%;
max-width: var(--center-width);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
}

.topbar-left {
display: flex;
align-items: center;
gap: 10px;
flex-shrink: 0;
}
.logo {
width: 28px;
height: 28px;
border-radius: 6px;
object-fit: contain;
}
.site-name {
font-size: 16px;
font-weight: 700;
color: var(--text-primary);
letter-spacing: -0.3px;
}
.version {
font-size: 11px;
font-weight: 600;
color: var(--text-muted);
background: var(--bg-elevated);
padding: 2px 7px;
border-radius: 4px;
border: 1px solid rgba(255,255,255,0.04);
line-height: 1.4;
}

.topbar-nav {
display: flex;
align-items: center;
gap: 2px;
}
.nav-btn {
background: none;
border: none;
color: var(--text-muted);
font-family: var(--font);
font-size: 13px;
font-weight: 500;
padding: 8px 16px;
border-radius: 8px;
cursor: pointer;
transition: all var(--transition);
position: relative;
white-space: nowrap;
}
.nav-btn:hover {
color: var(--text-secondary);
background: var(--panel-hover);
}
.nav-btn.active {
color: var(--text-primary);
background: var(--panel-active);
}
.nav-btn.active::after {
content: '';
position: absolute;
bottom: 2px;
left: 50%;
transform: translateX(-50%);
width: 18px;
height: 2px;
background: var(--accent);
border-radius: 1px;
box-shadow: 0 0 8px rgba(200,255,160,0.3);
}

.topbar-right {
display: flex;
align-items: center;
gap: 14px;
flex-shrink: 0;
}

.live-badge {
display: flex;
align-items: center;
gap: 7px;
background: rgba(200, 255, 160, 0.06);
border: 1px solid rgba(200, 255, 160, 0.12);
padding: 5px 12px;
border-radius: 20px;
font-size: 13px;
font-weight: 600;
color: var(--accent);
}
.live-dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--accent);
box-shadow: 0 0 8px rgba(200, 255, 160, 0.5);
animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(200,255,160,0.5); }
50% { opacity: 0.4; transform: scale(0.8); box-shadow: 0 0 2px rgba(200,255,160,0.15); }
}
.live-label {
color: var(--text-muted);
font-weight: 400;
font-size: 12px;
}

.lang-switch {
display: flex;
background: var(--bg-elevated);
border-radius: 8px;
padding: 2px;
border: 1px solid rgba(255,255,255,0.04);
}
.lang-btn {
background: none;
border: none;
color: var(--text-muted);
font-family: var(--font);
font-size: 12px;
font-weight: 600;
padding: 4px 10px;
border-radius: 6px;
cursor: pointer;
transition: all var(--transition);
}
.lang-btn.active {
background: var(--panel-active);
color: var(--text-primary);
}
.lang-btn:hover:not(.active) {
color: var(--text-secondary);
}

/* ========== CONTENT ========== */
.content {
position: relative;
z-index: 1;
padding-top: 80px;
max-width: var(--center-width);
margin: 0 auto;
padding-left: 24px;
padding-right: 24px;
padding-bottom: 40px;
}

.page {
display: none;
opacity: 0;
transform: translateY(20px);
transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
will-change: transform, opacity;
}
.page.active {
display: block;
}
.page.visible {
opacity: 1;
transform: translateY(0);
}

/* ========== HERO ========== */
.hero {
text-align: center;
padding: 60px 20px 50px;
position: relative;
overflow: hidden;
}
.hero-glow {
position: absolute;
top: -60px;
left: 50%;
transform: translateX(-50%);
width: 700px;
height: 400px;
background: radial-gradient(ellipse, rgba(200,255,160,0.04) 0%, transparent 70%);
pointer-events: none;
animation: hero-glow-pulse 4s ease-in-out infinite alternate;
}
@keyframes hero-glow-pulse {
0% { opacity: 0.6; transform: translateX(-50%) scale(1); }
100% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}
.hero-title {
font-size: 52px;
font-weight: 800;
letter-spacing: -1.5px;
background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 14px;
position: relative;
}
.hero-sub {
font-size: 17px;
color: var(--text-secondary);
max-width: 500px;
margin: 0 auto 28px;
font-weight: 400;
}
.hero-actions {
display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
}

.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 24px;
border-radius: 10px;
font-family: var(--font);
font-size: 14px;
font-weight: 600;
border: none;
cursor: pointer;
transition: all var(--transition);
text-decoration: none;
position: relative;
overflow: hidden;
}
.btn-accent {
background: var(--accent);
color: var(--bg-main);
}
.btn-accent:hover {
background: var(--accent-bright);
transform: translateY(-2px);
box-shadow: 0 8px 30px rgba(200,255,160,0.2);
}
.btn-accent:active {
transform: translateY(0) scale(0.98);
}

/* ========== STATS ========== */
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 14px;
margin-bottom: 60px;
}
.stat-card {
background: var(--bg-panel);
border: 1px solid rgba(255,255,255,0.04);
border-radius: var(--radius-lg);
padding: 24px 16px;
text-align: center;
transition: all var(--transition);
position: relative;
overflow: hidden;
}
.stat-card::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, transparent 60%, rgba(200,255,160,0.025));
pointer-events: none;
}
.stat-card::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 40%;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(200,255,160,0.15), transparent);
opacity: 0;
transition: opacity var(--transition);
}
.stat-card:hover::after {
opacity: 1;
}
.stat-card::after {
content: '';
position: absolute;
inset: 0;
border-radius: var(--radius-lg);
opacity: 0;
transition: opacity var(--transition);
background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(200,255,160,0.04), transparent 60%);
pointer-events: none;
}
.stat-card:hover::after { opacity: 1; }
.stat-card:hover {
background: var(--bg-elevated);
border-color: rgba(200,255,160,0.12);
transform: translateY(-3px);
box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.stat-card:hover .stat-icon {
opacity: 1;
transform: scale(1.1);
}
.stat-card:hover .stat-value {
color: var(--accent);
}
.stat-card.stat-click {
transform: scale(0.96);
transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.stat-icon {
font-size: 20px;
color: var(--accent);
margin-bottom: 10px;
opacity: 0.6;
display: flex;
align-items: center;
justify-content: center;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.stat-icon svg {
width: 24px;
height: 24px;
transition: transform 0.3s ease;
}
.stat-value {
font-size: 34px;
font-weight: 800;
color: var(--text-primary);
letter-spacing: -1px;
display: inline;
transition: color 0.3s ease;
}
.stat-suffix {
font-size: 24px;
font-weight: 700;
color: var(--text-muted);
display: inline;
margin-left: 2px;
}
.stat-label {
font-size: 13px;
color: var(--text-muted);
margin-top: 8px;
font-weight: 400;
}

/* ========== MODULES ========== */
.section-header {
margin-bottom: 20px;
}
.section-header h2 {
font-size: 22px;
font-weight: 700;
color: var(--text-primary);
}
.section-header p {
font-size: 14px;
color: var(--text-muted);
margin-top: 4px;
}

.modules-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 12px;
}
.module-card {
background: var(--bg-panel);
border: 1px solid rgba(255,255,255,0.04);
border-radius: var(--radius-lg);
padding: 22px;
cursor: pointer;
transition: all var(--transition);
position: relative;
overflow: hidden;
}
.module-card::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, transparent 50%, rgba(200,255,160,0.015));
pointer-events: none;
}
.module-card:hover {
background: var(--bg-elevated);
border-color: rgba(200,255,160,0.1);
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.module-card:hover .module-arrow {
opacity: 1;
transform: translateX(4px);
}
.module-num {
font-size: 12px;
font-weight: 700;
color: var(--text-muted);
margin-bottom: 8px;
letter-spacing: 1px;
}
.module-card h3 {
font-size: 16px;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 6px;
}
.module-card p {
font-size: 13px;
color: var(--text-secondary);
line-height: 1.5;
}
.module-tags {
margin-top: 10px;
display: flex;
gap: 6px;
flex-wrap: wrap;
}
.module-tags span {
font-size: 10px;
font-weight: 600;
color: var(--accent-dark);
background: rgba(200,255,160,0.08);
padding: 2px 8px;
border-radius: 10px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.module-arrow {
position: absolute;
bottom: 16px;
right: 16px;
font-size: 18px;
color: var(--accent);
opacity: 0.3;
transition: all var(--transition);
}

/* ========== MODULE SELECTOR LINE ========== */
.module-selector-track {
    position: relative;
    height: 2px;
    margin-bottom: 16px;
    margin-top: -8px;
}
.module-selector-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 16px rgba(200,255,160,0.5), 0 0 40px rgba(200,255,160,0.15);
    border-radius: 2px;
    width: 0;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    will-change: width, transform;
}

/* ========== FOOTER SECTION ========== */
.footer-section {
margin-top: 50px;
padding: 20px 0;
border-top: 1px solid rgba(255,255,255,0.04);
text-align: center;
}
.footer-section p {
font-size: 12px;
color: var(--text-muted);
}

/* ========== GREEN ACCENT LINE ========== */
.accent-line {
width: 60px;
height: 2px;
background: var(--accent);
border-radius: 2px;
margin: 0 auto 16px;
box-shadow: 0 0 16px rgba(200,255,160,0.3);
animation: accent-pulse 3s ease-in-out infinite;
}
.accent-line.left { margin: 0 0 16px 0; }
@keyframes accent-pulse {
0%, 100% { opacity: 0.5; box-shadow: 0 0 8px rgba(200,255,160,0.2); }
50% { opacity: 1; box-shadow: 0 0 24px rgba(200,255,160,0.5); }
}

/* ========== DECORATIVE CORNER ========== */
.corner-deco {
position: absolute;
pointer-events: none;
opacity: 0.4;
transition: opacity var(--transition);
}
.corner-deco svg {
width: 18px;
height: 18px;
color: var(--accent);
filter: drop-shadow(0 0 4px rgba(200,255,160,0.15));
}
.corner-deco.tl { top: 6px; left: 6px; }
.corner-deco.tr { top: 6px; right: 6px; }
.corner-deco.tr svg { transform: scaleX(-1); }
.corner-deco.bl { bottom: 6px; left: 6px; }
.corner-deco.bl svg { transform: scaleY(-1); }
.corner-deco.br { bottom: 6px; right: 6px; }
.corner-deco.br svg { transform: scale(-1, -1); }
.module-card.selected {
    border-color: rgba(200,255,160,0.2);
    box-shadow: 0 0 30px rgba(200,255,160,0.05), inset 0 0 30px rgba(200,255,160,0.02);
}
.module-card.selected .corner-deco {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(200,255,160,0.3));
}
.module-card.selected .module-num {
    color: var(--accent);
}

.module-card:hover .corner-deco,
.activation-panel:hover .corner-deco { opacity: 0.8; }

/* ========== ACTIVATION PANEL ========== */
.panel-header {
margin-bottom: 24px;
}
.panel-breadcrumb {
font-size: 12px;
color: var(--text-muted);
margin-bottom: 6px;
display: flex;
align-items: center;
gap: 4px;
}
.breadcrumb-link {
background: none;
border: none;
color: var(--text-muted);
font-family: var(--font);
font-size: 12px;
cursor: pointer;
padding: 2px 4px;
border-radius: 4px;
transition: color var(--transition);
}
.breadcrumb-link:hover { color: var(--accent); }
.panel-breadcrumb .sep {
margin: 0 4px;
color: var(--panel-active);
}
.panel-title {
font-size: 28px;
font-weight: 700;
letter-spacing: -0.5px;
}
.panel-desc {
font-size: 14px;
color: var(--text-secondary);
margin-top: 4px;
}

.activation-layout {
display: flex;
gap: 20px;
align-items: flex-start;
}
.activation-main {
flex: 1;
min-width: 0;
}

.activation-panel {
background: var(--bg-panel);
border: 1px solid rgba(255,255,255,0.04);
border-radius: var(--radius-xl);
padding: 28px;
}

.panel-status-bar {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 22px;
padding-bottom: 16px;
border-bottom: 1px solid rgba(255,255,255,0.04);
flex-wrap: wrap;
gap: 8px;
}
.status-indicator {
display: flex;
align-items: center;
gap: 8px;
}
.status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
flex-shrink: 0;
transition: all 0.3s ease;
}
.status-dot.idle {
background: var(--text-muted);
box-shadow: 0 0 6px rgba(89,97,115,0.3);
}
.status-dot.running {
background: var(--accent);
box-shadow: 0 0 14px rgba(200,255,160,0.5);
animation: pulse-dot 1s ease-in-out infinite;
}
.status-dot.done {
background: var(--accent-dark);
box-shadow: 0 0 10px rgba(159,215,117,0.3);
}
.status-text {
font-size: 13px;
color: var(--text-secondary);
font-weight: 500;
}
.status-stats {
font-size: 12px;
color: var(--text-muted);
}

.file-slot {
margin-bottom: 18px;
}
.slot-label {
font-size: 12px;
font-weight: 600;
color: var(--text-secondary);
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.slot-label .slot-required {
color: var(--text-muted);
font-weight: 400;
}
.slot-input-wrap {
display: flex;
align-items: center;
background: var(--bg-secondary);
border: 1px solid rgba(255,255,255,0.06);
border-radius: var(--radius-md);
padding: 0 4px 0 16px;
transition: all var(--transition);
}
.slot-input-wrap:focus-within {
border-color: rgba(200,255,160,0.25);
box-shadow: 0 0 0 3px rgba(200,255,160,0.06);
}
.slot-input {
flex: 1;
background: none;
border: none;
outline: none;
color: var(--text-primary);
font-family: var(--font);
font-size: 15px;
padding: 14px 0;
font-weight: 400;
}
.slot-input::placeholder {
color: var(--text-muted);
font-weight: 300;
letter-spacing: 2px;
}
.btn-slot-clear {
background: none;
border: none;
color: var(--text-muted);
width: 32px;
height: 32px;
border-radius: 6px;
cursor: pointer;
font-size: 14px;
transition: all var(--transition);
display: flex;
align-items: center;
justify-content: center;
}
.btn-slot-clear:hover {
background: var(--panel-hover);
color: var(--text-secondary);
}

.btn-run {
width: 100%;
justify-content: center;
padding: 14px;
border-radius: var(--radius-md);
font-size: 15px;
background: var(--accent);
color: var(--bg-main);
gap: 10px;
}
.btn-run:hover {
background: var(--accent-bright);
box-shadow: 0 8px 30px rgba(200,255,160,0.2);
transform: translateY(-2px);
}
.btn-run:active {
transform: translateY(0) scale(0.98);
}
.btn-run-icon {
font-size: 14px;
}
.btn-run:disabled {
opacity: 0.5;
cursor: not-allowed;
transform: none !important;
}

.panel-log {
margin-top: 20px;
padding-top: 16px;
border-top: 1px solid rgba(255,255,255,0.04);
max-height: 180px;
overflow-y: auto;
}
.log-entry {
display: flex;
gap: 10px;
font-size: 12px;
padding: 4px 0;
font-family: var(--mono);
}
.log-time {
color: var(--text-muted);
flex-shrink: 0;
}
.log-info .log-msg { color: var(--text-secondary); }
.log-success .log-msg { color: var(--accent); }
.log-error .log-msg { color: #ff6b6b; }

/* ========== MODULE INFO PANEL ========== */
.module-info-panel {
background: var(--bg-panel);
border: 1px solid rgba(255,255,255,0.04);
border-radius: var(--radius-xl);
padding: 24px;
width: 320px;
flex-shrink: 0;
animation: slide-in-right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slide-in-right {
from { opacity: 0; transform: translateX(20px); }
to { opacity: 1; transform: translateX(0); }
}
.module-info-header {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}
.module-info-badge {
font-size: 11px;
font-weight: 700;
color: var(--accent-dark);
background: rgba(200,255,160,0.08);
padding: 2px 10px;
border-radius: 4px;
}
.module-info-header h3 {
font-size: 18px;
font-weight: 700;
color: var(--text-primary);
}
.module-info-body p {
font-size: 14px;
color: var(--text-secondary);
line-height: 1.7;
margin-bottom: 12px;
}
.module-info-details {
display: flex;
flex-direction: column;
gap: 6px;
}
.module-info-details .detail-row {
font-size: 13px;
color: var(--text-muted);
display: flex;
justify-content: space-between;
padding: 4px 0;
}
.module-info-details .detail-row span:last-child {
color: var(--text-secondary);
font-weight: 500;
}

/* ========== FAQ ========== */
.faq-header-center {
text-align: center;
max-width: 100%;
}
.faq-header-center .panel-title {
font-size: 30px;
}
.faq-header-center .panel-desc {
max-width: 400px;
margin: 6px auto 0;
}

.faq-search-wrap {
display: flex;
justify-content: center;
margin-bottom: 28px;
}
.faq-search {
width: 100%;
max-width: 520px;
position: relative;
}
.faq-search-icon {
position: absolute;
left: 18px;
top: 50%;
transform: translateY(-50%);
width: 18px;
height: 18px;
color: var(--text-muted);
pointer-events: none;
z-index: 1;
transition: color var(--transition);
}
.faq-search:focus-within .faq-search-icon {
color: var(--accent);
}
.faq-search-icon svg {
width: 100%;
height: 100%;
}
.faq-search-input {
width: 100%;
background: var(--bg-panel);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 100px;
padding: 14px 22px 14px 46px;
font-family: var(--font);
font-size: 14px;
color: var(--text-primary);
outline: none;
transition: all var(--transition);
}
.faq-search-input:focus {
border-color: rgba(200,255,160,0.2);
box-shadow: 0 0 0 3px rgba(200,255,160,0.06);
}
.faq-search-input::placeholder {
color: var(--text-muted);
}

.faq-list-wrap {
display: flex;
justify-content: center;
}
.faq-list {
width: 100%;
max-width: 640px;
}
.faq-item {
background: var(--bg-panel);
border: 1px solid rgba(255,255,255,0.04);
border-radius: var(--radius-md);
margin-bottom: 10px;
overflow: hidden;
transition: all var(--transition);
}
.faq-item:hover {
border-color: rgba(200,255,160,0.06);
background: var(--bg-elevated);
}
.faq-item.open {
border-color: rgba(200,255,160,0.15);
background: var(--bg-elevated);
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.faq-question {
display: flex;
align-items: center;
gap: 14px;
padding: 18px 22px;
cursor: pointer;
font-weight: 500;
font-size: 15px;
color: var(--text-primary);
transition: all var(--transition);
user-select: none;
}
.faq-item.open .faq-question {
color: var(--accent);
}
.faq-q-icon {
width: 24px;
height: 24px;
border-radius: 50%;
background: rgba(200,255,160,0.08);
color: var(--accent-dark);
font-size: 12px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.faq-item.open .faq-q-icon {
background: rgba(200,255,160,0.15);
}
.faq-question span:not(.faq-q-icon):not(.faq-arrow) {
flex: 1;
}
.faq-arrow {
font-size: 11px;
color: var(--text-muted);
transition: transform 0.35s ease;
flex-shrink: 0;
}
.faq-item.open .faq-arrow {
transform: rotate(180deg);
color: var(--accent);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
padding: 0 22px;
}
.faq-item.open .faq-answer {
max-height: 320px;
padding: 0 22px 20px;
}
.faq-answer p {
font-size: 14px;
color: var(--text-secondary);
line-height: 1.75;
padding-left: 38px;
}

/* ========== CONTACTS ========== */
.panel-header-center {
text-align: center;
}
.panel-header-center .panel-desc {
max-width: 400px;
margin: 6px auto 0;
}

.contacts-wrap {
display: flex;
justify-content: center;
}
.contacts-grid {
display: flex;
flex-direction: column;
gap: 14px;
width: 100%;
max-width: 500px;
}
.contact-card {
display: flex;
align-items: flex-start;
gap: 18px;
background: var(--bg-panel);
border: 1px solid rgba(255,255,255,0.04);
border-radius: var(--radius-lg);
padding: 22px 24px;
cursor: pointer;
transition: all var(--transition);
position: relative;
overflow: hidden;
}
.contact-card-glow {
position: absolute;
inset: 0;
opacity: 0;
transition: opacity var(--transition);
background: radial-gradient(600px circle at 50% 50%, rgba(200,255,160,0.03), transparent 60%);
pointer-events: none;
}
.contact-card:hover {
background: var(--bg-elevated);
border-color: rgba(200,255,160,0.08);
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.contact-card:hover .contact-card-glow { opacity: 1; }
.contact-card.discord:hover { border-color: rgba(88,101,242,0.25); }
.contact-card.discord .contact-icon { color: #5865F2; }
.contact-card.telegram:hover { border-color: rgba(0,136,204,0.25); }
.contact-card.telegram .contact-icon { color: #0088cc; }
.contact-card.email:hover { border-color: rgba(200,255,160,0.15); }
.contact-card.email .contact-icon { color: var(--accent); }

.contact-icon {
width: 44px;
height: 44px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255,255,255,0.02);
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.04);
}
.contact-icon svg {
width: 24px;
height: 24px;
}

.contact-info {
flex: 1;
min-width: 0;
}
.contact-badge {
display: inline-block;
font-size: 10px;
font-weight: 600;
color: var(--accent-dark);
background: rgba(200,255,160,0.08);
padding: 2px 10px;
border-radius: 10px;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 6px;
}
.contact-info h3 {
font-size: 17px;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 4px;
}
.contact-info p {
font-size: 13px;
color: var(--text-secondary);
line-height: 1.5;
margin-bottom: 8px;
}
.contact-meta {
display: flex;
gap: 10px;
margin-bottom: 6px;
flex-wrap: wrap;
}
.contact-stat {
font-size: 11px;
color: var(--text-muted);
background: rgba(255,255,255,0.03);
padding: 2px 10px;
border-radius: 6px;
border: 1px solid rgba(255,255,255,0.03);
}
.contact-link {
font-size: 12px;
color: var(--text-muted);
font-family: var(--mono);
display: block;
}

.contacts-extra {
margin-top: 16px;
text-align: center;
}
.contacts-response {
font-size: 13px;
color: var(--text-muted);
font-style: italic;
}

/* ========== DOTTED DIVIDER ========== */
.dotted-divider {
height: 1px;
background: repeating-linear-gradient(
90deg,
rgba(255,255,255,0.06) 0px,
rgba(255,255,255,0.06) 4px,
transparent 4px,
transparent 8px
);
margin: 12px 0;
}

/* ========== TERMINAL MODAL ========== */
.terminal-modal {
display: none;
position: fixed;
inset: 0;
z-index: 2000;
align-items: center;
justify-content: center;
}
.terminal-modal.open {
display: flex;
}
.terminal-overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.7);
backdrop-filter: blur(4px);
}
.terminal-frame {
position: relative;
width: 680px;
max-width: 94vw;
max-height: 90vh;
background: #111624;
border: none;
border-radius: 0;
box-shadow:
0 0 40px rgba(0,0,0,0.6),
0 0 80px rgba(200,255,160,0.03),
inset 0 0 30px rgba(0,0,0,0.3);
overflow: hidden;
animation: term-open 0.4s cubic-bezier(0.4, 0, 0.2, 1);
clip-path: polygon(
0% 0%, 1.5% 0.3%, 3% 0%, 4.5% 0.4%, 6% 0%,
7.5% 0.3%, 9% 0%, 10.5% 0.4%, 12% 0%, 13.5% 0.3%, 15% 0%,
16.5% 0.4%, 18% 0%, 19.5% 0.3%, 21% 0%, 22.5% 0.4%, 24% 0%,
25.5% 0.3%, 27% 0%, 28.5% 0.4%, 30% 0%, 31.5% 0.3%, 33% 0%,
34.5% 0.4%, 36% 0%, 37.5% 0.3%, 39% 0%, 40.5% 0.4%, 42% 0%,
43.5% 0.3%, 45% 0%, 46.5% 0.4%, 48% 0%, 49.5% 0.3%, 51% 0%,
52.5% 0.4%, 54% 0%, 55.5% 0.3%, 57% 0%, 58.5% 0.4%, 60% 0%,
61.5% 0.3%, 63% 0%, 64.5% 0.4%, 66% 0%, 67.5% 0.3%, 69% 0%,
70.5% 0.4%, 72% 0%, 73.5% 0.3%, 75% 0%, 76.5% 0.4%, 78% 0%,
79.5% 0.3%, 81% 0%, 82.5% 0.4%, 84% 0%, 85.5% 0.3%, 87% 0%,
88.5% 0.4%, 90% 0%, 91.5% 0.3%, 93% 0%, 94.5% 0.4%, 96% 0%,
97.5% 0.3%, 99% 0%, 100% 0.3%,
100% 2%, 99.6% 4%, 100% 6%, 99.6% 8%, 100% 10%,
99.6% 12%, 100% 14%, 99.6% 16%, 100% 18%, 99.6% 20%,
100% 22%, 99.6% 24%, 100% 26%, 99.6% 28%, 100% 30%,
99.6% 32%, 100% 34%, 99.6% 36%, 100% 38%, 99.6% 40%,
100% 42%, 99.6% 44%, 100% 46%, 99.6% 48%, 100% 50%,
99.6% 52%, 100% 54%, 99.6% 56%, 100% 58%, 99.6% 60%,
100% 62%, 99.6% 64%, 100% 66%, 99.6% 68%, 100% 70%,
99.6% 72%, 100% 74%, 99.6% 76%, 100% 78%, 99.6% 80%,
100% 82%, 99.6% 84%, 100% 86%, 99.6% 88%, 100% 90%,
99.6% 92%, 100% 94%, 99.6% 96%, 100% 98%, 99.6% 100%,
99% 99.7%, 97.5% 100%, 96% 99.6%, 94.5% 100%, 93% 99.7%,
91.5% 100%, 90% 99.6%, 88.5% 100%, 87% 99.7%, 85.5% 100%,
84% 99.6%, 82.5% 100%, 81% 99.7%, 79.5% 100%, 78% 99.6%,
76.5% 100%, 75% 99.7%, 73.5% 100%, 72% 99.6%, 70.5% 100%,
69% 99.7%, 67.5% 100%, 66% 99.6%, 64.5% 100%, 63% 99.7%,
61.5% 100%, 60% 99.6%, 58.5% 100%, 57% 99.7%, 55.5% 100%,
54% 99.6%, 52.5% 100%, 51% 99.7%, 49.5% 100%, 48% 99.6%,
46.5% 100%, 45% 99.7%, 43.5% 100%, 42% 99.6%, 40.5% 100%,
39% 99.7%, 37.5% 100%, 36% 99.6%, 34.5% 100%, 33% 99.7%,
31.5% 100%, 30% 99.6%, 28.5% 100%, 27% 99.7%, 25.5% 100%,
24% 99.6%, 22.5% 100%, 21% 99.7%, 19.5% 100%, 18% 99.6%,
16.5% 100%, 15% 99.7%, 13.5% 100%, 12% 99.6%, 10.5% 100%,
9% 99.7%, 7.5% 100%, 6% 99.6%, 4.5% 100%, 3% 99.7%,
1.5% 100%, 0% 99.6%,
0% 98%, 0.4% 96%, 0% 94%, 0.4% 92%, 0% 90%,
0.4% 88%, 0% 86%, 0.4% 84%, 0% 82%, 0.4% 80%,
0% 78%, 0.4% 76%, 0% 74%, 0.4% 72%, 0% 70%,
0.4% 68%, 0% 66%, 0.4% 64%, 0% 62%, 0.4% 60%,
0% 58%, 0.4% 56%, 0% 54%, 0.4% 52%, 0% 50%,
0.4% 48%, 0% 46%, 0.4% 44%, 0% 42%, 0.4% 40%,
0% 38%, 0.4% 36%, 0% 34%, 0.4% 32%, 0% 30%,
0.4% 28%, 0% 26%, 0.4% 24%, 0% 22%, 0.4% 20%,
0% 18%, 0.4% 16%, 0% 14%, 0.4% 12%, 0% 10%,
0.4% 8%, 0% 6%, 0.4% 4%, 0% 2%
);
}
@keyframes term-open {
from { opacity: 0; transform: scale(0.95) translateY(15px); }
to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Torn paper edge overlay */
.terminal-frame *:focus {
outline: none;
}

.terminal-frame::after {
content: '';
position: absolute;
inset: 0;
z-index: 7;
pointer-events: none;
background:
linear-gradient(135deg, transparent 48%, rgba(200,255,160,0.03) 48%, transparent 52%) 0 0 / 30px 30px,
linear-gradient(225deg, transparent 48%, rgba(200,255,160,0.03) 48%, transparent 52%) 0 0 / 30px 30px;
opacity: 0.3;
}

/* Scissors cut marker */
.terminal-scissor-cut {
position: absolute;
z-index: 8;
pointer-events: none;
opacity: 0;
transition: opacity 0.3s ease;
}
.terminal-scissor-cut.show {
opacity: 1;
}
.terminal-scissor-cut .cut-line {
position: absolute;
left: 0;
right: 0;
height: 1px;
background: repeating-linear-gradient(
90deg,
rgba(200,255,160,0.15) 0px,
rgba(200,255,160,0.15) 6px,
transparent 6px,
transparent 10px
);
}
.terminal-scissor-cut .cut-scissor {
position: absolute;
font-size: 20px;
line-height: 1;
animation: scissor-slide 0.6s ease-in-out forwards;
}
@keyframes scissor-slide {
0% { left: 0; transform: rotate(-30deg) scale(0.5); opacity: 0; }
30% { opacity: 1; }
60% { transform: rotate(10deg) scale(1.1); }
100% { left: 100%; transform: rotate(0deg) scale(1); opacity: 0.7; }
}

/* CRT scanlines */
.terminal-scanlines {
position: absolute;
inset: 0;
z-index: 3;
pointer-events: none;
background: repeating-linear-gradient(
0deg,
transparent,
transparent 2px,
rgba(0,0,0,0.03) 2px,
rgba(0,0,0,0.03) 4px
);
}

/* Noise grain */
.terminal-noise {
position: absolute;
inset: 0;
z-index: 4;
pointer-events: none;
opacity: 0.04;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
background-repeat: repeat;
background-size: 256px 256px;
animation: noise-shift 0.5s steps(4) infinite;
}
@keyframes noise-shift {
0% { background-position: 0 0; }
100% { background-position: 16px 16px; }
}

/* Chromatic aberration */
.terminal-chromatic {
position: absolute;
inset: 0;
z-index: 2;
pointer-events: none;
text-shadow:
1px 0 rgba(255,0,100,0.06),
-1px 0 rgba(0,200,255,0.06);
}

/* Terminal inner */
.terminal-inner {
position: relative;
z-index: 6;
padding: 24px 28px;
font-family: var(--mono);
color: var(--text-primary);
}

.term-topbar {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 4px;
}
.term-logo {
display: flex;
align-items: center;
gap: 8px;
font-size: 13px;
font-weight: 500;
color: var(--text-muted);
text-transform: lowercase;
}
.term-logo-box {
font-size: 16px;
color: var(--text-muted);
}
.term-op {
font-size: 11px;
font-weight: 600;
color: var(--text-muted);
letter-spacing: 1px;
padding: 2px 8px;
border: 1px solid rgba(255,255,255,0.06);
border-radius: 2px;
}

.term-body {
padding: 8px 0;
}

.term-title {
font-family: var(--font);
font-size: 32px;
font-weight: 800;
color: var(--text-primary);
letter-spacing: -0.5px;
margin-bottom: 12px;
}

.term-info {
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 4px;
}
.term-info-line {
font-size: 13px;
color: var(--text-muted);
letter-spacing: 0.5px;
}

.term-log {
max-height: 280px;
overflow-y: auto;
margin: 8px 0;
}
.term-log-wrap {
display: flex;
flex-direction: column;
}
.term-line {
display: flex;
align-items: center;
gap: 12px;
padding: 4px 0;
font-size: 13px;
color: var(--text-secondary);
opacity: 0;
animation: term-line-in 0.3s ease forwards;
outline: none;
border: none;
}
@keyframes term-line-in {
from { opacity: 0; transform: translateX(-8px); }
to { opacity: 1; transform: translateX(0); }
}
.term-line .line-time {
color: var(--text-muted);
flex-shrink: 0;
width: 64px;
}
.term-line .line-op {
flex: 1;
}
.term-line .line-ok {
color: var(--accent);
font-weight: 500;
opacity: 0;
animation: ok-pop 0.3s ease 0.1s forwards;
}
.term-line .line-err {
color: #ff6b6b;
font-weight: 600;
opacity: 0;
animation: ok-pop 0.3s ease 0.1s forwards;
text-shadow: 0 0 8px rgba(255,107,107,0.3);
}
.term-line-error {
background: rgba(255,107,107,0.04);
border-left: 2px solid rgba(255,107,107,0.2);
padding-left: 8px;
margin-left: -10px;
}
.term-line-error .line-op {
color: #ff6b6b;
}
.term-line-error .line-time {
color: rgba(255,107,107,0.5);
}
.term-line-final .line-op {
color: var(--accent);
font-weight: 600;
}
.term-line-final .line-ok {
color: var(--accent-bright);
font-weight: 700;
}

.term-scissor-line {
display: flex;
align-items: center;
gap: 8px;
padding: 6px 0 6px 2px;
font-size: 13px;
color: var(--text-muted);
opacity: 0;
animation: term-line-in 0.4s ease 0.2s forwards;
border-top: 1px dashed rgba(255,107,107,0.15);
margin-top: 4px;
padding-top: 8px;
}
.term-scissor-line .scissor-icon {
font-size: 18px;
animation: scissor-snip 0.8s ease-in-out;
}
@keyframes scissor-snip {
0% { transform: rotate(-20deg) scale(0.8); }
30% { transform: rotate(20deg) scale(1.2); }
60% { transform: rotate(-10deg) scale(1.1); }
100% { transform: rotate(0deg) scale(1); }
}
.term-scissor-text {
color: rgba(255,107,107,0.6);
font-size: 12px;
font-style: italic;
}
@keyframes ok-pop {
0% { opacity: 0; transform: translateY(4px); }
100% { opacity: 1; transform: translateY(0); }
}

.term-cursor-line {
display: flex;
align-items: center;
gap: 10px;
padding: 6px 0 4px;
min-height: 28px;
}
.term-triangle {
color: var(--accent);
font-size: 14px;
text-shadow: 0 0 12px rgba(200,255,160,0.4);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
flex-shrink: 0;
}
.term-cursor {
display: inline-block;
color: var(--text-primary);
font-size: 14px;
font-weight: 300;
animation: cursor-blink 0.7s step-end infinite;
}
@keyframes cursor-blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}

.term-close-bar {
display: flex;
justify-content: center;
padding-top: 4px;
}
.term-close-btn {
background: none;
border: none;
color: var(--text-muted);
font-family: var(--mono);
font-size: 12px;
cursor: pointer;
padding: 4px 16px;
border-radius: 2px;
transition: all var(--transition);
}
.term-close-btn:hover {
color: var(--text-primary);
background: rgba(255,255,255,0.04);
}
.term-close-btn.term-blink {
animation: term-blink-btn 1.2s ease-in-out infinite;
color: var(--accent);
}
@keyframes term-blink-btn {
0%, 100% { opacity: 0.5; color: var(--accent); text-shadow: 0 0 8px rgba(200,255,160,0.3); }
50% { opacity: 1; color: var(--accent-bright); text-shadow: 0 0 20px rgba(200,255,160,0.6); }
}

/* ========== SUPPORT MODAL ========== */
.support-form {
    padding: 4px 0;
}
.support-label {
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
}
.support-input-wrap {
    display: flex;
    align-items: flex-start;
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 4px;
    transition: all var(--transition);
}
.support-input-wrap:focus-within {
    border-color: rgba(200,255,160,0.25);
    box-shadow: 0 0 0 3px rgba(200,255,160,0.06);
}
.support-textarea {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--mono);
    font-size: 13px;
    padding: 10px 12px;
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}
.support-textarea::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

/* ========== ERROR MODAL ========== */
.error-modal {
display: none;
position: fixed;
inset: 0;
z-index: 3000;
align-items: center;
justify-content: center;
}
.error-modal.open {
display: flex;
}
.error-overlay {
position: absolute;
inset: 0;
background: rgba(0,0,0,0.6);
backdrop-filter: blur(4px);
}
.error-frame {
position: relative;
width: 400px;
max-width: 90vw;
background: var(--bg-panel);
border: 1px solid rgba(255,80,80,0.15);
border-radius: var(--radius-xl);
box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,80,80,0.03);
animation: error-open 0.35s cubic-bezier(0.16, 1, 0.3, 1);
overflow: hidden;
}
@keyframes error-open {
from { opacity: 0; transform: scale(0.92) translateY(10px); }
to { opacity: 1; transform: scale(1) translateY(0); }
}
.error-inner {
padding: 36px 32px 28px;
text-align: center;
}
.error-icon-wrap {
display: flex;
justify-content: center;
margin-bottom: 16px;
}
.error-icon {
width: 52px;
height: 52px;
border-radius: 50%;
background: rgba(255,80,80,0.1);
color: #ff6b6b;
font-size: 24px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
animation: error-icon-pulse 2s ease-in-out infinite;
}
@keyframes error-icon-pulse {
0%, 100% { box-shadow: 0 0 0 0 rgba(255,80,80,0.15); }
50% { box-shadow: 0 0 0 12px rgba(255,80,80,0); }
}
.error-title {
font-size: 20px;
font-weight: 700;
color: var(--text-primary);
margin-bottom: 8px;
}
.error-msg {
font-size: 14px;
color: var(--text-secondary);
line-height: 1.6;
margin-bottom: 24px;
}
.error-btn {
background: var(--bg-elevated);
border: 1px solid rgba(255,255,255,0.06);
color: var(--text-primary);
font-family: var(--font);
font-size: 14px;
font-weight: 600;
padding: 10px 36px;
border-radius: var(--radius-md);
cursor: pointer;
transition: all var(--transition);
}
.error-btn:hover {
background: var(--panel-active);
border-color: rgba(200,255,160,0.15);
color: var(--accent);
transform: translateY(-1px);
}
.error-btn:active {
transform: translateY(0) scale(0.97);
}

/* ========== MOUSE TRAIL ========== */
.mouse-trail {
position: fixed;
inset: 0;
z-index: 9998;
pointer-events: none;
}

/* ========== NOTIFICATIONS ========== */
.notif-container {
position: fixed;
bottom: 30px;
right: 30px;
z-index: 9999;
display: flex;
flex-direction: column;
gap: 12px;
pointer-events: none;
}

.notif {
display: flex;
align-items: flex-start;
gap: 14px;
min-width: 340px;
max-width: 420px;
background: rgba(17, 22, 36, 0.95);
border: 1px solid rgba(255,255,255,0.06);
border-radius: 14px;
padding: 16px 18px;
box-shadow: 0 12px 48px rgba(0,0,0,0.5);
animation: notif-in 0.45s cubic-bezier(0.16, 1, 0.3, 1);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
pointer-events: auto;
overflow: hidden;
position: relative;
}
.notif-out {
animation: notif-out 0.4s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.notif-icon {
width: 32px;
height: 32px;
border-radius: 10px;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
font-weight: 700;
}
.notif-info .notif-icon {
background: rgba(100,180,255,0.12);
color: #64b4ff;
}
.notif-success .notif-icon {
background: rgba(200,255,160,0.12);
color: var(--accent);
}
.notif-error .notif-icon {
background: rgba(255,80,80,0.12);
color: #ff5050;
}
.notif-warning .notif-icon {
background: rgba(255,200,50,0.12);
color: #ffc832;
}

.notif-body {
flex: 1;
min-width: 0;
}
.notif-title {
font-size: 14px;
font-weight: 600;
color: var(--text-primary);
margin-bottom: 2px;
}
.notif-msg {
font-size: 13px;
color: var(--text-secondary);
line-height: 1.4;
}

.notif-close {
width: 24px;
height: 24px;
border-radius: 6px;
background: none;
border: none;
color: var(--text-muted);
font-size: 14px;
cursor: pointer;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
transition: all var(--transition);
margin-top: -2px;
}
.notif-close:hover {
background: rgba(255,255,255,0.06);
color: var(--text-primary);
}

.notif-progress {
position: absolute;
bottom: 0;
left: 0;
height: 2px;
border-radius: 0 0 0 14px;
animation: notif-progress 3s linear forwards;
}
.notif-info .notif-progress { background: #64b4ff; }
.notif-success .notif-progress { background: var(--accent); }
.notif-error .notif-progress { background: #ff5050; }
.notif-warning .notif-progress { background: #ffc832; }

@keyframes notif-in {
0% { opacity: 0; transform: translateX(60px) scale(0.92); }
100% { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes notif-out {
0% { opacity: 1; transform: translateX(0) scale(1); }
100% { opacity: 0; transform: translateX(60px) scale(0.9); }
}
@keyframes notif-progress {
0% { width: 100%; }
100% { width: 0%; }
}

/* ========== SOUND TOGGLE ========== */
.sound-toggle {
position: relative;
width: 36px;
height: 36px;
border-radius: 10px;
background: var(--bg-elevated);
border: 1px solid rgba(255,255,255,0.04);
color: var(--text-muted);
font-size: 16px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all var(--transition);
}
.sound-toggle:hover {
background: var(--panel-hover);
color: var(--text-secondary);
}
.sound-toggle.on {
color: var(--accent);
border-color: rgba(200,255,160,0.1);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.activation-layout { flex-direction: column; }
.module-info-panel { width: 100%; }
}

@media (max-width: 768px) {
.topbar { height: 56px; }
.topbar-inner { padding: 0 14px; }
.topbar-nav { gap: 0; }
.nav-btn { font-size: 12px; padding: 6px 12px; }
.content { padding-top: 72px; padding-left: 16px; padding-right: 16px; }
.hero-title { font-size: 34px; }
.hero { padding: 40px 16px 36px; }
.modules-grid { grid-template-columns: 1fr 1fr; }
.contacts-grid { grid-template-columns: 1fr; }
.activation-panel { padding: 20px; }
.topbar-right .live-label { display: none; }
.terminal-inner { padding: 16px 18px; }
.term-title { font-size: 24px; }
}

@media (max-width: 600px) {
.topbar { flex-wrap: wrap; height: auto; padding: 8px 0; }
.topbar-inner { flex-wrap: wrap; gap: 6px; padding: 0 12px; }
.topbar-left { order: 1; }
.topbar-nav { order: 3; width: 100%; justify-content: center; overflow-x: auto; gap: 0; padding: 2px 0; }
.topbar-nav::-webkit-scrollbar { display: none; }
.topbar-right { order: 2; margin-left: auto; }
.content { padding-top: 108px; }
.stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
.stat-card { padding: 16px; }
.stat-value { font-size: 24px; }
.stat-suffix { font-size: 18px; }
.modules-grid { grid-template-columns: 1fr; }
.hero-title { font-size: 26px; }
.panel-title { font-size: 22px; }
.live-badge { padding: 4px 10px; font-size: 12px; }
.term-title { font-size: 20px; }
}

@media (max-width: 400px) {
.stats-grid { grid-template-columns: 1fr; }
}
