* { margin: 0; padding: 0; box-sizing: border-box; }

/* ========== ЗАСТАВКА ========== */
.splash-screen {
    position: fixed; inset: 0; background: #050505;
    display: flex; justify-content: center; align-items: center;
    z-index: 9999; overflow: hidden; opacity: 1; transition: opacity 0.8s ease;
}
.splash-screen::before {
    content: ""; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
    opacity: 0.5; pointer-events: none;
}
.splash-screen::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(51,255,51,0.05) 50%, transparent 100%);
    animation: scan 8s linear infinite; pointer-events: none;
}
@keyframes scan { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }
.splash-screen.hide { opacity: 0; pointer-events: none; }

.splash-content { width: 460px; max-width: 90vw; text-align: center; z-index: 2; display: flex; flex-direction: column; align-items: center; }

.logo-text {
    font-family: 'JetBrains Mono', 'Courier New', monospace !important; font-size: 44px !important; font-weight: 300 !important;
    letter-spacing: 14px !important; color: #33ff33 !important; text-transform: uppercase; position: relative;
    text-shadow: 0 0 10px #33ff33, 0 0 20px #00ff00, 0 0 40px rgba(0,255,0,0.3); margin-bottom: 5px; width: 100%; text-align: center;
    animation: logoGlowGreen 3s ease infinite;
}
@keyframes logoGlowGreen {
    0%, 100% { text-shadow: 0 0 10px #33ff33, 0 0 20px #00ff00, 0 0 40px rgba(0,255,0,0.3); color: #33ff33; }
    50% { text-shadow: 0 0 15px #33ff33, 0 0 30px #00ff00, 0 0 60px rgba(0,255,0,0.5); color: #00ff00; }
}
.logo-text::before, .logo-text::after { content: attr(data-text); position: absolute; left: 0; width: 100%; overflow: hidden; opacity: 0.03; }
.logo-text::before { color: #33ff33; animation: glitchTop 4s infinite linear; }
.logo-text::after { color: #00ff00; animation: glitchBottom 4s infinite linear; }
@keyframes glitchTop { 0% { clip-path: inset(0 0 90% 0); transform: translateX(0); } 50% { clip-path: inset(0 0 65% 0); transform: translateX(-1px); } 100% { clip-path: inset(0 0 90% 0); transform: translateX(0); } }
@keyframes glitchBottom { 0% { clip-path: inset(80% 0 0 0); transform: translateX(0); } 50% { clip-path: inset(55% 0 0 0); transform: translateX(1px); } 100% { clip-path: inset(80% 0 0 0); transform: translateX(0); } }

.tagline { margin-top: 12px; font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 300; letter-spacing: 8px; color: #33ff33; text-shadow: 0 0 5px #33ff33, 0 0 10px #00aa00; text-transform: uppercase; margin-bottom: 25px; opacity: 0.7; width: 100%; text-align: center; }

/* Терминал */
.terminal { width: 450px; max-width: 420px; background: rgba(10,10,10,0.95); border: 1px solid #33ff33; border-radius: 8px; padding: 0; margin: 30px auto 25px; box-shadow: 0 0 30px rgba(51,255,51,0.15); text-align: left; overflow: hidden; }
.terminal-header { display: flex; align-items: center; padding: 8px 12px; background: #0d0d0d; border-bottom: 1px solid #33ff33; }
.terminal-dot { width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; }
.terminal-dot.red { background: #33ff33; box-shadow: 0 0 5px #33ff33; }
.terminal-dot.yellow { background: #33ff33; box-shadow: 0 0 5px #33ff33; }
.terminal-dot.green { background: #00ff00; box-shadow: 0 0 8px #00ff00; }
.terminal-title { margin-left: auto; font-family: 'Courier New', monospace; font-size: 11px; color: #33ff33; opacity: 0.7; letter-spacing: 1px; }
.terminal-body { padding: 12px 15px; background: #080808; font-family: 'Courier New', monospace; font-size: 13px; line-height: 1.6; text-align: left; }
.terminal-line { display: flex; gap: 8px; color: #aaa; min-height: 22px; }
.prompt { color: #33ff33; opacity: 0.8; width: 16px; flex-shrink: 0; }
.command { color: #33ff33; }
.command.success { color: #00ff00; text-shadow: 0 0 8px #33ff33; animation: pulseGreen 1.5s infinite; }
@keyframes pulseGreen { 0%, 100% { opacity: 0.7; text-shadow: 0 0 5px #33ff33; } 50% { opacity: 1; text-shadow: 0 0 15px #00ff00, 0 0 30px #33ff33; } }
.cursor { display: inline-block; width: 8px; height: 15px; background: #33ff33; margin-left: 4px; animation: blink 1s infinite; vertical-align: middle; }
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

/* Прогресс-бар */
.progress-bar { width: 250px; max-width: 80%; height: 3px; background: rgba(51,255,51,0.05); margin: 20px auto 10px; overflow: hidden; border: 1px solid rgba(51,255,51,0.2); }
.progress-fill { width: 0%; height: 100%; background: linear-gradient(90deg, #006600, #33ff33, #00ff00, #33ff33, #006600); background-size: 300% 100%; animation: progressLoad 2.5s ease forwards; box-shadow: 0 0 10px #33ff33, 0 0 20px #00ff00; }
@keyframes progressLoad { 0% { width: 0%; } 100% { width: 100%; } }

.loading-text { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 300; color: #33ff33; text-shadow: 0 0 8px #33ff33; letter-spacing: 6px; text-transform: uppercase; opacity: 0.7; margin-top: 8px; width: 100%; text-align: center; animation: pulseText 1.5s infinite; }
@keyframes pulseText { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.9; } }

.loader-circle, .dot, #particles { display: none !important; }

/* ========== ОСНОВНОЙ ФОРУМ ========== */
body { background-color: #000000; font-family: 'Courier New', monospace; color: #e0e0e0; overflow-x: hidden; }
body.light-theme { background-color: #f0f0f0; color: #1a1a2e; }
.main-forum { opacity: 0; transition: opacity 1s ease; position: relative; z-index: 1; background: rgba(5,5,10,0.7) !important; backdrop-filter: blur(15px) !important; -webkit-backdrop-filter: blur(15px) !important; border: 1px solid rgba(51,255,51,0.1); box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.main-forum.visible { opacity: 1; }
.forum-container { max-width: 1400px; margin: 0 auto; background-color: #0a0a0a !important; border-radius: 12px; overflow: visible !important; }

/* ========== ХЕДЕР ========== */
.header {
    position: sticky !important; top: 0 !important; z-index: 1000 !important;
    background: rgba(0,30,0,0.25) !important; backdrop-filter: blur(10px) !important; -webkit-backdrop-filter: blur(10px) !important;
    padding: 12px 20px !important; border: none !important; border-radius: 12px !important;
    display: flex !important; align-items: center !important; justify-content: space-between !important; flex-wrap: wrap !important; gap: 15px !important;
    box-shadow: 0 0 30px rgba(51,255,51,0.15), 0 0 60px rgba(51,255,51,0.05), inset 0 1px 2px rgba(51,255,51,0.1) !important;
    transition: all 0.4s ease !important;
}
.header:hover { background: rgba(0,50,0,0.35) !important; box-shadow: 0 0 40px rgba(51,255,51,0.25), 0 0 80px rgba(51,255,51,0.1), inset 0 1px 3px rgba(51,255,51,0.15) !important; }

.nav-links { display: flex; flex-wrap: wrap; gap: 10px; font-size: 14px; align-items: center; }
.nav-links a {
    background: linear-gradient(145deg, #2a2d3a, #1b1d27); color: #cfd3dc; text-decoration: none; cursor: pointer !important;
    padding: 0 18px; height: 38px; display: flex !important; align-items: center !important; justify-content: center !important;
    transition: all 0.2s ease; border-radius: 30px; border: 1px solid rgba(255,255,255,0.08);
    font-weight: 500; letter-spacing: 0.3px; white-space: nowrap; line-height: 1 !important;
    box-shadow: inset 0 0 5px rgba(255,255,255,0.05), 0 0 6px rgba(0,0,0,0.6);
}
.nav-links a:hover { background: linear-gradient(145deg, #1a3a1a, #0d1a0d) !important; color: #ffffff; border-color: #33ff33 !important; box-shadow: inset 0 0 6px rgba(51,255,51,0.2), 0 0 10px #33ff33, 0 0 20px rgba(0,255,0,0.2) !important; transform: translateY(-1px); }
.nav-links a.active { background: linear-gradient(145deg, #006600, #004400) !important; color: #ffffff; border: 1px solid #33ff33 !important; box-shadow: inset 0 0 8px rgba(51,255,51,0.3), 0 0 15px #33ff33, 0 0 30px rgba(0,255,0,0.3) !important; }

#user-info-header { flex-wrap: wrap; justify-content: flex-end; }
.user-info-header {
    display: flex; align-items: center; gap: 10px; height: 44px; padding: 5px 14px 5px 16px;
    background: linear-gradient(145deg, #1a1c25, #0e1016); backdrop-filter: blur(10px); border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.06); box-shadow: inset 0 0 12px rgba(255,255,255,0.03), 0 4px 12px rgba(0,0,0,0.6); transition: all 0.2s ease;
}
.user-info-header:hover { box-shadow: inset 0 0 14px rgba(255,255,255,0.05), 0 6px 18px rgba(0,0,0,0.8); }
.user-info-header span { font-size: 14px !important; font-weight: 500; color: #d5d9e0; white-space: nowrap; letter-spacing: 0.3px; line-height: 44px; }
.user-info-header img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #33ff33; box-shadow: 0 0 12px rgba(51,255,51,0.4); transition: all 0.3s ease; object-fit: cover; }
.user-info-header img:hover { border-color: #66ff66; box-shadow: 0 0 20px rgba(51,255,51,0.6); transform: scale(1.05); }

.reputation-badge {
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, #006600, #004400) !important; color: #ffffff; padding: 0 8px; border-radius: 20px;
    font-size: 12px !important; font-weight: 600; height: 28px; line-height: 1; white-space: nowrap;
    border: 1px solid #33ff33 !important; box-shadow: inset 0 0 6px rgba(51,255,51,0.3), 0 0 10px #33ff33, 0 0 20px rgba(0,255,0,0.3) !important;
}

.logout-btn {
    background: linear-gradient(145deg, #2a2d3a, #1b1d27); color: #cfd3dc; border: 1px solid #33ff33 !important;
    padding: 0 12px; border-radius: 20px; cursor: pointer; font-size: 13px !important; font-weight: 500;
    height: 30px; display: flex; align-items: center; white-space: nowrap; letter-spacing: 0.3px;
    box-shadow: inset 0 0 5px rgba(255,255,255,0.05), 0 0 6px rgba(0,0,0,0.6); transition: all 0.2s ease;
}
.logout-btn:hover { background: linear-gradient(145deg, #3a3f55, #252938); color: #ffffff; box-shadow: inset 0 0 6px rgba(255,255,255,0.08), 0 0 10px rgba(0,0,0,0.8); }

.user-info-header .btn-primary {
    background: linear-gradient(145deg, #2a2d3a, #1b1d27); color: #cfd3dc; border: 1px solid #33ff33 !important;
    padding: 0 12px; border-radius: 20px; font-size: 13px !important; font-weight: 500; height: 30px;
    display: flex; align-items: center; transition: all 0.2s ease;
}
.user-info-header .btn-primary:hover { background: rgba(255,255,255,0.1); color: #ffffff; }

.admin-header-btn { display: inline-flex !important; align-items: center !important; justify-content: center !important; text-align: center !important; padding: 8px 16px !important; margin-left: 5px !important; line-height: 1 !important; vertical-align: middle !important; white-space: nowrap !important; height: auto !important; }

/* ========== АНИМИРОВАННЫЙ ЗАГОЛОВОК ========== */
.akhev-header {
    position: relative; background: linear-gradient(135deg, #0a0a0a 0%, #0d1a0d 50%, #0a0a0a 100%); background-image: url('/images/1122.jpg');
    background-size: cover; background-position: center; background-blend-mode: overlay;
    padding: 30px 20px; text-align: center; border: none !important; border-radius: 12px !important; margin: 10px 0;
    box-shadow: 0 0 30px rgba(51,255,51,0.15), 0 0 60px rgba(51,255,51,0.05), inset 0 1px 2px rgba(51,255,51,0.1) !important;
    overflow: hidden; transition: all 0.4s ease !important;
}
.akhev-header:hover { box-shadow: 0 0 40px rgba(51,255,51,0.25), 0 0 80px rgba(51,255,51,0.1), inset 0 1px 3px rgba(51,255,51,0.15) !important; }
.akhev-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,20,0,0.7) !important; border-radius: 12px; z-index: 1; }

.akhev-title-container { display: flex; justify-content: center; align-items: center; gap: 5px; position: relative; z-index: 2; flex-wrap: wrap; }
.akhev-letter {
    font-size: 60px; font-weight: 900; background: linear-gradient(45deg, #003300, #009900, #33ff33, #00aa00, #006600); background-size: 300% 300%;
    -webkit-background-clip: text; background-clip: text; color: transparent; animation: letterGlow 2.5s ease infinite;
    text-shadow: 0 0 20px #33ff33, 0 0 40px #00ff00 !important; display: inline-block; transition: transform 0.3s ease;
}
@keyframes letterGlow {
    0%, 100% { background-position: 0% 50%; filter: brightness(1); text-shadow: 0 0 20px #33ff33, 0 0 40px #00ff00; }
    50% { background-position: 100% 50%; filter: brightness(1.2); text-shadow: 0 0 30px #33ff33, 0 0 60px #00ff00, 0 0 90px rgba(0,255,0,0.6); }
}
.akhev-letter-space { width: 25px; display: inline-block; }
.akhev-letter:hover { transform: translateY(-5px) scale(1.15); filter: brightness(1.5); text-shadow: 0 0 30px #33ff33, 0 0 60px #00ff00, 0 0 100px rgba(0,255,0,0.7) !important; }

.akhev-subtitle { font-size: 16px; letter-spacing: 6px; color: #33ff33; margin-top: 8px; position: relative; z-index: 2; animation: subtitleFade 2s ease infinite alternate; text-transform: uppercase; text-shadow: 0 0 10px #33ff33, 0 0 20px #00ff00, 0 0 30px rgba(0,255,0,0.5); }
@keyframes subtitleFade { from { opacity: 0.6; letter-spacing: 6px; text-shadow: 0 0 10px #33ff33, 0 0 20px #00aa00; } to { opacity: 1; letter-spacing: 10px; text-shadow: 0 0 15px #33ff33, 0 0 30px #00ff00, 0 0 50px rgba(0,255,0,0.4); } }

.akhev-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 400px; height: 120px; background: radial-gradient(circle, rgba(51,255,51,0.3) 0%, transparent 70%) !important; border-radius: 50%; animation: glowPulse 3s ease infinite; z-index: 1; }
@keyframes glowPulse { 0%, 100% { opacity: 0.3; width: 350px; } 50% { opacity: 0.6; width: 450px; } }

/* ========== ПЛАШКА С ХАКЕРСКИМ КОДОМ ========== */
.stats-plate { background: rgba(0,30,0,0.25) !important; backdrop-filter: blur(8px) !important; -webkit-backdrop-filter: blur(8px) !important; border: none !important; border-radius: 12px !important; margin: 10px 0 !important; padding: 8px 0 !important; box-shadow: 0 0 30px rgba(51,255,51,0.15), 0 0 60px rgba(51,255,51,0.05), inset 0 1px 2px rgba(51,255,51,0.1) !important; overflow: hidden; white-space: nowrap; transition: all 0.4s ease !important; }
.stats-plate:hover { background: rgba(0,50,0,0.35) !important; box-shadow: 0 0 40px rgba(51,255,51,0.25), 0 0 80px rgba(51,255,51,0.1), inset 0 1px 3px rgba(51,255,51,0.15) !important; }
.stats-marquee-container { width: 100%; overflow: hidden; }
.stats-marquee-content { display: inline-block; animation: statsMarquee 60s linear infinite; white-space: nowrap; font-family: 'Courier New', monospace; font-size: 13px; font-weight: 600; color: #33ff33; text-shadow: 0 0 6px #33ff33; letter-spacing: 2px; }
.hacker-code-item { margin: 0 15px; text-transform: uppercase; }
.hacker-code-separator { margin: 0 20px; color: #006600; opacity: 0.7; font-size: 14px; }
@keyframes statsMarquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-100%); } }
.stats-plate:hover .stats-marquee-content { animation-play-state: paused; }

/* ========== ПЛАШКА ПРЕДУПРЕЖДЕНИЯ ========== */
.warning-plate {
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,30,0,0.25) !important; backdrop-filter: blur(8px) !important; -webkit-backdrop-filter: blur(8px) !important;
    padding: 12px 20px !important; margin: 10px 0 !important; border: none !important; border-radius: 12px !important;
    box-shadow: 0 0 30px rgba(51,255,51,0.15), 0 0 60px rgba(51,255,51,0.05), inset 0 1px 2px rgba(51,255,51,0.1) !important;
    flex-wrap: wrap; transition: all 0.4s ease !important; cursor: pointer;
}
.warning-plate:hover { background: rgba(0,50,0,0.35) !important; box-shadow: 0 0 40px rgba(51,255,51,0.25), 0 0 80px rgba(51,255,51,0.1), inset 0 1px 3px rgba(51,255,51,0.15) !important; transform: scale(1.01); }
.warning-icon { font-size: 20px; color: #33ff33; text-shadow: 0 0 12px #33ff33; margin: 0 8px; transition: all 0.3s ease; }
.warning-plate:hover .warning-icon { color: #66ff66; text-shadow: 0 0 20px #33ff33; transform: scale(1.1); }
.warning-text { display: flex; flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.warning-title { color: #33ff33 !important; text-shadow: 0 0 10px #33ff33 !important; font-weight: bold; letter-spacing: 1px; }
.warning-message { color: #ccffcc !important; }
.warning-message strong { color: #66ff66 !important; text-shadow: 0 0 10px #33ff33 !important; }

/* ========== КОПИЛКА ФОРУМА ========== */
.donate-plate {
    display: flex; flex-wrap: wrap; align-items: center; gap: 15px; padding: 15px 20px; margin: 15px 0;
    background: linear-gradient(135deg, rgba(0,40,0,0.4), rgba(0,20,0,0.5)); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,215,0,0.3); border-radius: 12px; box-shadow: 0 0 30px rgba(255,215,0,0.1), inset 0 1px 2px rgba(255,215,0,0.1);
    transition: all 0.3s ease; cursor: pointer; position: relative; overflow: hidden;
}
.donate-plate::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%); animation: donateGlow 4s ease infinite; pointer-events: none; }
@keyframes donateGlow { 0%, 100% { transform: translate(0,0); opacity: 0.3; } 50% { transform: translate(10%,10%); opacity: 0.6; } }
.donate-plate:hover { background: linear-gradient(135deg, rgba(0,60,0,0.5), rgba(0,30,0,0.6)); border-color: #ffd700; box-shadow: 0 0 40px rgba(255,215,0,0.2), inset 0 1px 3px rgba(255,215,0,0.2); transform: translateY(-2px); }
.donate-icon { font-size: 36px; filter: drop-shadow(0 0 10px #ffd700); animation: piggyWiggle 3s infinite; }
@keyframes piggyWiggle { 0%,90%,100% { transform: rotate(0deg); } 92% { transform: rotate(5deg); } 94% { transform: rotate(-5deg); } 96% { transform: rotate(3deg); } 98% { transform: rotate(-3deg); } }
.donate-info { flex: 1; min-width: 200px; }
.donate-title { display: block; font-size: 16px; font-weight: bold; color: #ffd700; text-shadow: 0 0 10px #ffd700; letter-spacing: 2px; margin-bottom: 5px; }
.donate-message { display: block; font-size: 13px; color: #ccffcc; opacity: 0.9; }
.donate-address { display: flex; align-items: center; gap: 10px; padding: 8px 15px; background: rgba(0,0,0,0.3); border-radius: 8px; border: 1px dashed rgba(255,215,0,0.3); cursor: pointer; transition: all 0.3s ease; }
.donate-address:hover { background: rgba(0,20,0,0.5); border-color: #ffd700; border-style: solid; }
.donate-label { color: #aaa; font-size: 12px; }
.donate-value { font-family: 'Courier New', monospace; font-size: 14px; color: #ffd700; text-shadow: 0 0 5px #ffd700; letter-spacing: 1px; }
.donate-copy { margin-left: auto; font-size: 16px; opacity: 0.7; transition: all 0.3s ease; }
.donate-address:hover .donate-copy { opacity: 1; transform: scale(1.1); }
.donate-stats { display: flex; gap: 20px; font-size: 13px; color: #ccffcc; }
.donate-stats strong { color: #ffd700; text-shadow: 0 0 5px #ffd700; }
.donate-progress { width: 100%; height: 6px; background: rgba(0,0,0,0.3); border-radius: 3px; overflow: hidden; margin-top: 5px; }
.donate-progress-fill { height: 100%; background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700); border-radius: 3px; box-shadow: 0 0 10px #ffd700; transition: width 0.5s ease; }
.donate-goal { display: flex; justify-content: space-between; width: 100%; font-size: 12px; color: #aaa; margin-top: 5px; }
.donate-goal span:last-child { color: #ffd700; font-weight: bold; }

/* ========== БАННЕРЫ ========== */
.banners-top {
    border: none !important;
    background: transparent !important;
    padding: 5px !important;
    margin: 10px 0 !important;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}.banner-item, .banner-gif-container {
    background: rgba(0,30,0,0.25) !important; backdrop-filter: blur(8px) !important; -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid #33ff33 !important; border-radius: 12px !important; box-sizing: border-box !important;
    box-shadow: 0 0 15px rgba(51,255,51,0.2), 0 0 30px rgba(51,255,51,0.1), 0 0 50px rgba(51,255,51,0.05), inset 0 0 10px rgba(51,255,51,0.1) !important;
    transition: all 0.3s ease !important; animation: none !important; overflow: hidden !important; margin-bottom: 12px !important;
    
    /* 🔥 КОМПАКТНЫЙ РАЗМЕР */
    width: 800px;
    max-width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
}
.banner-item:hover, .banner-gif-container:hover { background: rgba(0,50,0,0.35) !important; border-color: #66ff66 !important; box-shadow: 0 0 20px rgba(51,255,51,0.3), 0 0 40px rgba(51,255,51,0.15), 0 0 70px rgba(51,255,51,0.08), inset 0 0 15px rgba(51,255,51,0.15) !important; transform: translateX(5px); }
.banner-gif-container img, .banner-gif-full { border-radius: 11px !important; display: block !important; width: 100% !important; height: 100% !important; object-fit: cover !important; }
.banner-number { width: 45px; height: 45px; background: rgba(51,255,51,0.2) !important; color: #33ff33 !important; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 20px; box-shadow: 0 0 15px rgba(51,255,51,0.2) !important; }
.banner-info { flex: 1; margin-left: 15px; }
.banner-title { font-size: 18px; font-weight: bold; color: #33ff33 !important; text-shadow: 0 0 8px #33ff33 !important; }
.banner-desc { font-size: 13px; color: #ccffcc !important; margin-top: 3px; }
.banner-stats { font-size: 11px; color: #66ff66 !important; margin-top: 5px; }
.banner-arrow { font-size: 24px; color: #33ff33 !important; text-shadow: 0 0 8px #33ff33 !important; }
.banner-empty { text-align: center; padding: 40px; background: rgba(0,30,0,0.25) !important; border-radius: 12px !important; color: #66ff66 !important; box-shadow: 0 0 30px rgba(51,255,51,0.15), inset 0 1px 2px rgba(51,255,51,0.1) !important; }
.banner-admin-buttons { display: flex; gap: 8px; margin-left: 15px; }
.banner-admin-buttons-overlay { position: absolute; top: 5px; right: 8px; display: flex; gap: 5px; z-index: 100 !important; pointer-events: none; }
.banner-admin-buttons-overlay button { opacity: 0.85; padding: 2px 6px; font-size: 11px; border-radius: 4px; pointer-events: auto; cursor: pointer; }
.banner-admin-buttons-overlay button:hover { opacity: 1; }

/* ========== ОСНОВНОЙ КОНТЕНТ ========== */
.main-grid { display: flex; gap: 20px; padding: 20px; flex-wrap: wrap; }
.left-column { flex: 2; min-width: 300px; }
.right-column { flex: 1; min-width: 260px; }

.block { background-color: #0a0a0a !important; border-radius: 10px; margin-bottom: 20px; border: 1px solid #33ff33 !important; }
body.light-theme .block { background-color: #f5f5f5; border-color: #ddd; }
.block-title { background: rgba(0,20,0,0.3) !important; backdrop-filter: blur(5px) !important; -webkit-backdrop-filter: blur(5px) !important; padding: 12px 18px !important; font-weight: bold; cursor: pointer; display: flex; justify-content: space-between; border-radius: 10px 10px 0 0; border-bottom: 1px solid #33ff33 !important; color: #33ff33 !important; text-shadow: 0 0 10px rgba(51,255,51,0.5) !important; }
body.light-theme .block-title { background-color: #e8e8e8; }
.block-content { background: transparent !important; padding: 15px !important; }
.block-content.collapsed { display: none; }

/* ========== ТЕМЫ ========== */
.topic-item { padding: 14px 16px; margin-bottom: 8px; border-radius: 12px; background: rgba(20,20,30,0.5) !important; backdrop-filter: blur(5px) !important; -webkit-backdrop-filter: blur(5px) !important; border: 1px solid rgba(51,255,51,0.1) !important; transition: all 0.3s ease; box-shadow: inset 0 0 6px rgba(255,255,255,0.02), 0 2px 6px rgba(0,0,0,0.4); }
.topic-item:hover { background: rgba(30,30,45,0.7) !important; border-color: #33ff33 !important; box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 15px rgba(51,255,51,0.2) !important; transform: translateX(4px); }
.topic-item.pinned { border-left: 3px solid #ffd700 !important; background: rgba(255,215,0,0.05) !important; }
.topic-title { font-size: 15px; margin: 0 0 6px 0; font-weight: 500; }
.topic-title a { cursor: pointer; color: #d5d9e0; text-decoration: none; transition: all 0.2s ease; letter-spacing: 0.2px; }
.topic-title a:hover { color: #66ff66 !important; text-shadow: 0 0 12px #33ff33 !important; }
.topic-meta { font-size: 12px; color: #888; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 5px; }
.topic-meta-left { display: flex; align-items: center; gap: 15px; flex-wrap: wrap; }
.topic-meta-right { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.topic-stats { display: flex; align-items: center; gap: 12px; }
.topic-stats span { display: inline-flex; align-items: center; gap: 4px; color: #999; font-size: 12px; }

.btn-bookmark { background: rgba(255,255,255,0.05); color: #ffd700; border: 1px solid #33ff33 !important; padding: 0 12px; height: 28px; border-radius: 30px; cursor: pointer; font-size: 12px; font-weight: 500; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px; backdrop-filter: blur(5px); white-space: nowrap; }
.btn-bookmark:hover { background: rgba(255,215,0,0.1); color: #ffed4e; border-color: #00ff00 !important; box-shadow: 0 0 10px #33ff33, 0 0 20px rgba(0,255,0,0.2) !important; transform: translateY(-1px); }

/* ========== ПОПУЛЯРНЫЕ ТЕМЫ ========== */
.popular-topic-item { display: flex; align-items: center; padding: 12px 15px; border-bottom: 1px solid rgba(51,255,51,0.1) !important; transition: background 0.2s; background: rgba(20,20,30,0.4) !important; backdrop-filter: blur(5px) !important; -webkit-backdrop-filter: blur(5px) !important; }
.popular-topic-item:hover { background: rgba(30,30,45,0.6) !important; }
.popular-topic-rank { width: 35px; height: 35px; background: linear-gradient(135deg, #006600, #003300); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 16px; color: #fff; margin-right: 15px; text-shadow: 0 0 10px #33ff33; flex-shrink: 0; }
.popular-topic-info { flex: 1; min-width: 0; }
.popular-topic-title { color: #d5d9e0; font-size: 14px; margin-bottom: 5px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.popular-topic-title:hover { color: #66ff66 !important; text-shadow: 0 0 12px #33ff33 !important; }
.popular-topic-meta { display: flex; gap: 15px; font-size: 12px; color: #888; }

/* ========== ТОП ПОЛЬЗОВАТЕЛЕЙ ========== */
.total-users-badge { display: flex; align-items: center; justify-content: space-between; background: linear-gradient(145deg, #0a0a0a, #050505); border: 1px solid #33ff33; border-radius: 12px; padding: 12px 16px; margin-bottom: 20px; box-shadow: 0 0 10px rgba(51,255,51,0.2), inset 0 0 8px rgba(51,255,51,0.05); }
.total-users-icon { font-size: 24px; filter: drop-shadow(0 0 5px #33ff33); }
.total-users-text { flex: 1; margin-left: 12px; font-family: 'Courier New', monospace; font-size: 12px; font-weight: 600; letter-spacing: 2px; color: #888; text-transform: uppercase; }
.total-users-count { font-family: 'Courier New', monospace; font-size: 28px; font-weight: 700; color: #33ff33; text-shadow: 0 0 10px #33ff33, 0 0 20px #00ff00; letter-spacing: 2px; }
.top-users { margin-top: 15px; }
.top-user-item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-bottom: 1px solid #1a3a1a !important; background: rgba(20,20,30,0.3) !important; backdrop-filter: blur(4px) !important; -webkit-backdrop-filter: blur(4px) !important; border-radius: 8px !important; margin-bottom: 5px !important; }
.top-user-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid #33ff33 !important; }
.top-user-info { flex: 1; }
.top-user-name { font-weight: bold; }
.top-user-rep { color: #33ff33 !important; text-shadow: 0 0 5px #33ff33 !important; font-size: 12px; }

/* ========== КНОПКИ ========== */
.btn-primary { background-color: #006600 !important; color: white; padding: 8px 16px; border: 1px solid #33ff33 !important; border-radius: 6px; cursor: pointer; transition: background 0.2s; backdrop-filter: blur(5px) !important; -webkit-backdrop-filter: blur(5px) !important; box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important; }
.btn-primary:hover { background-color: #008800 !important; border-color: #00ff00 !important; box-shadow: 0 0 10px #33ff33, 0 0 20px #00aa00 !important; }
.btn-danger { background-color: #dc3545; color: white; padding: 8px 16px; border: 1px solid #33ff33 !important; border-radius: 6px; cursor: pointer; }
.btn-danger:hover { background-color: #c82333; border-color: #00ff00 !important; box-shadow: 0 0 10px #33ff33, 0 0 20px #00aa00 !important; }
.btn-warning { background-color: #ffc107; color: #333; padding: 8px 16px; border: 1px solid #33ff33 !important; border-radius: 6px; cursor: pointer; }
.btn-warning:hover { background-color: #e0a800; }
.btn-success { background-color: #28a745; color: white; padding: 8px 16px; border: 1px solid #33ff33 !important; border-radius: 6px; cursor: pointer; }
.btn-success:hover { background-color: #218838; }

/* ========== МОДАЛЬНЫЕ ОКНА ========== */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); z-index: 10000; justify-content: center; align-items: center; }
.modal-content { background: rgba(10,10,20,0.85) !important; backdrop-filter: blur(20px) !important; -webkit-backdrop-filter: blur(20px) !important; padding: 30px; border-radius: 12px; max-width: 500px; width: 90%; border: 1px solid #33ff33 !important; box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 30px rgba(51,255,51,0.1) !important; max-height: 90vh; overflow-y: auto; }
.modal-content input, .modal-content textarea, .modal-content select { width: 100%; padding: 10px; margin: 10px 0; background: rgba(20,20,30,0.6) !important; border: 1px solid rgba(51,255,51,0.2) !important; color: #fff !important; border-radius: 8px !important; font-family: inherit; backdrop-filter: blur(5px) !important; -webkit-backdrop-filter: blur(5px) !important; }
.modal-content input:focus, .modal-content textarea:focus, .modal-content select:focus { border-color: #33ff33 !important; box-shadow: 0 0 15px rgba(51,255,51,0.2) !important; outline: none !important; }
.close-modal { float: right; cursor: pointer; font-size: 28px; color: #888; transition: color 0.2s; }
.close-modal:hover { color: #33ff33 !important; }

/* ========== ПРОФИЛЬ ========== */
.profile-avatar-large { width: 120px; height: 120px; padding: 3px; background: linear-gradient(135deg, #33ff33, #006600, #33ff33, #66ff66); border-radius: 50%; box-shadow: 0 0 25px rgba(51,255,51,0.4); transition: all 0.3s ease; border: 3px solid #33ff33 !important; object-fit: cover; }
.profile-info { margin-top: 20px; }
.profile-field { margin: 15px 0; padding: 10px; background: #0a0a0a !important; border-radius: 8px; }
.profile-field a { color: #33ff33 !important; text-decoration: none; }
.notification-badge { background: #dc3545; color: white; border-radius: 10px; padding: 2px 6px; font-size: 10px; margin-left: 5px; font-weight: bold; }

/* ========== АВАТАРЫ ========== */
.user-avatar-small, .comment-avatar { width: 36px; height: 36px; padding: 2px; background: linear-gradient(135deg, #33ff33, #006600, #33ff33); border-radius: 50%; box-shadow: 0 0 12px rgba(51,255,51,0.3); transition: all 0.3s ease; }
.user-avatar-small img, .comment-avatar img { width: 100%; height: 100%; border-radius: 50%; border: 2px solid #0a0a0f; object-fit: cover; }
.user-avatar-small:hover, .comment-avatar:hover { transform: scale(1.05); box-shadow: 0 0 25px rgba(51,255,51,0.6); }
.avatar-upload { margin: 10px 0; }
.avatar-preview { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 10px auto; display: block; border: 2px solid #33ff33 !important; }

/* ========== ФУТЕР ========== */
.footer-note { text-align: center; padding: 12px 0; border: none !important; background: rgba(0,30,0,0.25) !important; backdrop-filter: blur(8px) !important; -webkit-backdrop-filter: blur(8px) !important; border-radius: 12px !important; margin: 10px 0 !important; box-shadow: 0 0 30px rgba(51,255,51,0.15), 0 0 60px rgba(51,255,51,0.05), inset 0 1px 2px rgba(51,255,51,0.1) !important; color: #33ff33; font-size: 13px; overflow: hidden; white-space: nowrap; position: relative; transition: all 0.4s ease !important; }
.footer-note:hover { background: rgba(0,50,0,0.35) !important; box-shadow: 0 0 40px rgba(51,255,51,0.25), 0 0 80px rgba(51,255,51,0.1), inset 0 1px 3px rgba(51,255,51,0.15) !important; }
.marquee-container { width: 100%; overflow: hidden; }
.marquee-content { display: inline-block; animation: marquee 25s linear infinite; white-space: nowrap; }
.marquee-text { font-family: 'Courier New', monospace; font-weight: 600; font-size: 13px; letter-spacing: 1px; color: #33ff33; text-shadow: 0 0 5px #33ff33, 0 0 10px #33ff33, 0 0 20px #33ff33, 0 0 40px #00aa00; text-transform: uppercase; animation: hackerFlicker 3s infinite; }
.marquee-separator { margin: 0 25px; color: #33ff33; opacity: 0.7; font-size: 11px; text-shadow: 0 0 5px #33ff33, 0 0 10px #00aa00; }
@keyframes marquee { 0% { transform: translateX(0%); } 100% { transform: translateX(-50%); } }
.marquee-container:hover .marquee-content { animation-play-state: paused; }

/* ========== ЛС ========== */
.pm-item { padding: 12px; border-bottom: 1px solid #3a3a48; cursor: pointer; transition: background 0.2s; }
.pm-item:hover { background: #2a2a38; }
.pm-item.unread { border-left: 3px solid #33ff33 !important; }

/* ========== КОММЕНТАРИИ ========== */
.comment-item { padding: 15px; border-bottom: 1px solid #33ff33 !important; background: rgba(20,20,30,0.4) !important; backdrop-filter: blur(5px) !important; -webkit-backdrop-filter: blur(5px) !important; border: 1px solid rgba(51,255,51,0.1) !important; border-radius: 10px !important; margin-bottom: 10px !important; }
.comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.comment-time { font-size: 11px; color: #888; margin-left: auto; }
.comment-text { margin-left: 42px; line-height: 1.5; }
.comment-image { max-width: 200px; max-height: 200px; border-radius: 8px; margin: 10px 0 10px 42px; border: 1px solid #3a3a48; cursor: pointer; }

/* ========== ТЕГИ ========== */
.tags-container { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.tag { background: #0a0a0a !important; color: #bbbbdd; padding: 4px 10px; border-radius: 15px; font-size: 12px; cursor: pointer; transition: all 0.2s; border: 1px solid #1a3a1a !important; }
.tag:hover { background: #33ff33 !important; color: #000000 !important; border-color: #33ff33 !important; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }

/* ========== ЗАГРУЗКА ИЗОБРАЖЕНИЙ ========== */
.image-upload-area { border: 2px dashed #3a3a48; border-radius: 8px; padding: 20px; text-align: center; margin: 15px 0; cursor: pointer; transition: border-color 0.2s; background: #0a0a0a !important; }
.image-upload-area:hover { border-color: #33ff33 !important; }
.image-preview { max-width: 100%; max-height: 300px; border-radius: 8px; margin-top: 10px; }

/* ========== ЛАЙКИ ========== */
.like-buttons { display: flex; gap: 15px; margin: 10px 0; }
.like-btn { background: none; border: 1px solid #3a3a48; color: #888; padding: 5px 12px; border-radius: 20px; cursor: pointer; font-size: 14px; transition: all 0.2s; display: inline-flex; align-items: center; gap: 5px; }
.like-btn:hover { border-color: #33ff33 !important; color: #33ff33 !important; }
.like-btn.active { background: #006600; color: white; border-color: #33ff33 !important; box-shadow: 0 0 10px #33ff33 !important; }
.comment-likes { display: flex; gap: 10px; margin-left: 42px; margin-top: 5px; }
.comment-like-btn { background: none; border: none; color: #888; cursor: pointer; font-size: 12px; padding: 2px 8px; transition: color 0.2s; }
.comment-like-btn:hover { color: #33ff33 !important; }

/* ========== ЧАТ С АДМИНОМ ========== */
#supportUsersList { display: flex; flex-direction: column; gap: 5px; }
#supportUsersList > div { transition: all 0.2s; padding: 8px !important; font-size: 13px; }
#supportUsersList > div:hover { background: #1a3a1a !important; border-left-color: #33ff33 !important; }
#supportUsersList > div span { color: #ffffff !important; font-weight: 500 !important; text-shadow: none !important; font-size: 14px !important; }
#supportChatMessages { scroll-behavior: smooth; background: #24242f !important; width: 100% !important; max-width: 100% !important; overflow: hidden !important; padding: 10px !important; box-sizing: border-box !important; }
#supportChatMessages .chat-message { padding: 6px; border-bottom: none; font-size: 14px !important; line-height: 1.4 !important; color: #e0e0e0 !important; }
#supportChatMessages .chat-message strong { color: #33ff33 !important; font-weight: 600 !important; font-size: 14px !important; }
#supportChatInput:focus { outline: none; border-color: #33ff33 !important; box-shadow: 0 0 10px #33ff33, 0 0 20px rgba(0,255,0,0.2) !important; }

/* ========== СКРОЛЛБАР ========== */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(0,20,0,0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #006600, #33ff33, #006600); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #33ff33, #66ff66, #33ff33); }

/* ========== ФОНОВЫЕ ЧАСТИЦЫ ========== */
#bg-particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: 0.8 !important; }
.bg-particle { position: absolute; background: radial-gradient(circle, rgba(51,255,51,0.8) 0%, rgba(0,170,0,0.3) 70%) !important; border-radius: 50%; pointer-events: none; animation: floatParticle linear infinite; box-shadow: 0 0 10px #33ff33 !important; }
@keyframes floatParticle { 0% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; } }

/* ========== ТЕМА КОНТЕНТА ========== */
.topic-content { background: rgba(20,20,30,0.5) !important; backdrop-filter: blur(5px) !important; -webkit-backdrop-filter: blur(5px) !important; white-space: pre-wrap; word-wrap: break-word; word-break: break-word; line-height: 1.6; font-size: 15px; padding: 20px; border-radius: 8px; margin: 15px 0; color: #d5d9e0; max-height: 400px; overflow-y: auto; border: 1px solid rgba(51,255,51,0.15) !important; }
.topic-content hr { border: none; border-top: 1px solid #3a3a48; margin: 20px 0; }

/* ========== СКЕЛЕТОН-ЗАГРУЗКА ========== */
.skeleton { background: linear-gradient(90deg, rgba(30,30,40,0.4) 25%, rgba(51,255,51,0.1) 50%, rgba(30,30,40,0.4) 75%); background-size: 200% 100%; animation: skeletonLoading 1.5s ease infinite; border-radius: 6px; }
@keyframes skeletonLoading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-topic { display: flex; flex-direction: column; padding: 15px; margin-bottom: 10px; background: rgba(20,20,30,0.3); border-radius: 10px; border: 1px solid rgba(51,255,51,0.1); }
.skeleton-topic-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.skeleton-avatar { width: 36px; height: 36px; border-radius: 50%; }
.skeleton-title { height: 20px; width: 60%; }
.skeleton-meta { height: 14px; width: 40%; margin-top: 5px; }
.skeleton-content { height: 16px; margin: 10px 0; }
.skeleton-content:last-child { width: 80%; }

/* ========== СТЕКЛЯННЫЙ ЭФФЕКТ ========== */
.glass-btn { position: relative; overflow: hidden; }
.glass-btn::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent 30%, rgba(51,255,51,0.1) 50%, transparent 70%); transform: rotate(45deg); animation: btnShine 3s infinite; }
@keyframes btnShine { 0% { transform: translateX(-100%) rotate(45deg); } 100% { transform: translateX(100%) rotate(45deg); } }

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 1200px) { .forum-container { max-width: 100%; border-radius: 0; } .main-grid { flex-direction: column; gap: 15px; padding: 10px; } .left-column, .right-column { flex: 1; min-width: 100%; } }
@media (max-width: 768px) {
    .header { flex-direction: column !important; align-items: center !important; padding: 12px 10px !important; gap: 10px !important; }
    .nav-links { justify-content: center; gap: 6px; width: 100%; }
    .nav-links a { padding: 7px 12px; font-size: 12px; height: 34px; border-radius: 20px; }
    #user-info-header { width: 100%; display: flex; justify-content: center; }
    .user-info-header { flex-wrap: nowrap; justify-content: center; gap: 8px; padding: 6px 14px; background: rgba(0,30,0,0.25); border-radius: 25px; border: 1px solid rgba(51,255,51,0.3); width: auto; height: auto; }
    .user-info-header span { font-size: 13px; }
    .reputation-badge { font-size: 11px; padding: 0 10px; height: 24px; }
    .logout-btn, .user-info-header .btn-primary { padding: 5px 12px; font-size: 11px; height: 28px; border-radius: 14px; }
    .block { margin-bottom: 12px; width: 100% !important; max-width: 100% !important; }
    .topic-item { padding: 10px 12px; border-radius: 8px; margin-bottom: 6px; }
    .topic-meta { flex-direction: column; gap: 5px; font-size: 11px; }
    .modal-content { width: 95%; max-width: 95%; padding: 15px; }
    .warning-plate { padding: 6px 10px; gap: 4px; }
    .warning-icon { font-size: 14px; }
    .warning-title { font-size: 11px; }
    .warning-message { font-size: 10px; line-height: 1.3; }
    .donate-plate { flex-direction: column; padding: 12px; gap: 8px; }
    .banner-item, .banner-gif-container { width: 100% !important; max-width: 100% !important; }
    .akhev-letter { font-size: 30px; }
    #supportChatMessages { height: 350px; }
    .popular-topic-title { white-space: normal; overflow: visible; font-size: 13px; }
    a, button, .clickable { min-height: 36px; min-width: 36px; display: inline-flex; align-items: center; justify-content: center; }
    .topic-item:hover, .banner-item:hover, .popular-topic-item:hover { transform: none; }
}
@media (max-width: 480px) {
    .nav-links a { padding: 5px 8px; font-size: 10px; height: 28px; }
    .user-info-header { padding: 4px 10px; gap: 5px; }
    .block-title { font-size: 13px; padding: 8px 10px; }
    .btn-primary, .logout-btn, .btn-warning, .btn-danger { padding: 6px 10px; font-size: 11px; }
    .logo-text { font-size: 24px; letter-spacing: 4px; }
    .terminal { width: 260px; }
    .splash-content { width: 280px; }
}
@media (max-width: 400px) {
    .popular-topic-title { font-size: 12px; }
    .donate-stats { font-size: 10px; flex-direction: column; gap: 2px; }
}

/* ========== ПЛАШКА ДЕПОЗИТ ========== */
.badge-deposit {
    background: #0a0a0a;
    color: #ffd700;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid #33ff33;
    text-shadow: 0 0 6px #ffd700;
    margin-left: 8px;
    display: inline-block;
}

.badge-deposit-small {
    padding: 2px 6px;
    font-size: 9px;
    margin-left: 8px;
}

/* Статус в профиле */
.profile-field .badge-deposit {
    display: inline-block;
    margin-top: 8px;
}

/* Плашка депозита в списке тем */
.topic-meta span[title="Депозит"] {
    background: #0a0a0a !important;
    color: #ffd700 !important;
    padding: 2px 10px !important;
    border-radius: 3px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border: 1px solid #33ff33 !important;
    text-shadow: 0 0 6px #ffd700 !important;
    margin-left: 8px !important;
    display: inline-block !important;
    white-space: nowrap !important;
    min-width: auto !important;
    width: auto !important;
    overflow: visible !important;
}
/* ========== УБИРАЕМ ТЕКСТОВЫЙ КУРСОР ИЗ КНОПОК И ССЫЛОК ========== */
.nav-links a,
.nav-links a *,
button,
button *,
.btn-primary,
.btn-danger,
.btn-warning,
.btn-success,
.logout-btn,
.btn-bookmark,
.close-modal,
.block-title,
.popular-topic-item,
.topic-item,
.topic-title a,
.pm-item,
.banner-item,
.banner-gif-container,
.user-info-header span,
.top-user-item,
a,
a *,
[onclick],
[onclick] * {
    cursor: pointer !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    caret-color: transparent !important;
}

/* Для input и textarea оставляем текстовый курсор */
input, textarea, [contenteditable="true"] {
    cursor: text !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    caret-color: auto !important;
}
/* ========== ИКОНКИ С МЯГКОЙ ТЕНЬЮ ========== */
.nav-links a,
.btn-bookmark,
.block-title span:first-child,
.warning-icon,
.donate-icon,
.popular-topic-rank,
.banner-number,
.like-btn,
.comment-like-btn,
.close-modal {
    filter: drop-shadow(0 0 3px currentColor);
    transition: filter 0.3s ease;
}

.nav-links a:hover,
.btn-bookmark:hover,
.block-title:hover span:first-child,
.close-modal:hover {
    filter: drop-shadow(0 0 8px #33ff33);
}

.warning-icon:hover {
    filter: drop-shadow(0 0 12px #33ff33);
}

.donate-icon:hover {
    filter: drop-shadow(0 0 15px #ffd700);
}
/* ========== ПЛАВНОЕ ПОЯВЛЕНИЕ МОДАЛЬНЫХ ОКОН ========== */
.modal {
    animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* ========== ЭФФЕКТ ПЕЧАТИ ДЛЯ НОВЫХ СООБЩЕНИЙ ========== */
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

.new-message {
    overflow: hidden;
    white-space: nowrap;
    animation: typewriter 0.5s steps(40);
}
/* ========== ФИКС МЕНЮ — ВСЕГДА В ОДНУ СТРОКУ ========== */
.header {
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.nav-links {
    flex-shrink: 0;
}

.nav-links a {
    font-size: 13px;
    padding: 6px 14px;
    height: 36px;
    white-space: nowrap;
}

#user-info-header {
    flex-shrink: 0;
    margin-left: auto;
}

.user-info-header {
    height: 40px;
    padding: 4px 12px;
    gap: 8px;
}

.user-info-header span {
    font-size: 13px !important;
}

.reputation-badge {
    font-size: 11px;
    padding: 0 8px;
    height: 24px;
}

.logout-btn,
.user-info-header .btn-primary {
    font-size: 12px;
    padding: 0 12px;
    height: 28px;
}
/* ========== МОБИЛЬНАЯ ВЕРСИЯ — КОМПАКТНЫЕ ПЛАШКИ ========== */
@media (max-width: 768px) {
    /* Плашка ВНИМАНИЕ */
    .warning-plate {
        padding: 6px 8px !important;
        gap: 4px !important;
        margin: 6px 0 !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    .warning-icon {
        font-size: 14px !important;
        flex-shrink: 0;
    }
    .warning-icon:first-child {
        display: block !important;
    }
    .warning-text {
        gap: 4px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .warning-title {
        font-size: 10px !important;
        letter-spacing: 0.5px !important;
    }
    .warning-message {
        font-size: 9px !important;
        line-height: 1.2 !important;
    }
    
    /* Копилка */
    .donate-plate {
        padding: 8px 10px !important;
        gap: 4px !important;
        margin: 6px 0 !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
    }
    .donate-icon {
        font-size: 20px !important;
        flex-shrink: 0;
    }
    .donate-info {
        flex: 1;
        min-width: 120px;
    }
    .donate-title {
        font-size: 11px !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 2px !important;
    }
    .donate-message {
        font-size: 9px !important;
        line-height: 1.2 !important;
    }
    .donate-address {
        padding: 4px 8px !important;
        gap: 4px !important;
        width: 100%;
    }
    .donate-address .donate-label {
        font-size: 9px !important;
    }
    .donate-address .donate-value {
        font-size: 9px !important;
        letter-spacing: 0 !important;
    }
    .donate-stats {
        font-size: 10px !important;
        gap: 8px !important;
        width: 100%;
    }
    .donate-stats strong {
        font-size: 11px !important;
    }
    .donate-progress {
        height: 3px !important;
    }
    .donate-goal {
        font-size: 9px !important;
        width: 100%;
    }
}

@media (max-width: 400px) {
    .warning-message {
        font-size: 8px !important;
    }
    .donate-address .donate-value {
        font-size: 8px !important;
        word-break: break-all;
    }
    .donate-stats {
        font-size: 9px !important;
        flex-direction: row !important;
        gap: 10px !important;
    }
}

.user-info-header {
    height: 40px;
    padding: 4px 10px;
    gap: 8px;
}

.user-info-header span {
    font-size: 13px !important;
}

.reputation-badge {
    font-size: 11px;
    padding: 0 6px;
    height: 24px;
}

.logout-btn,
.user-info-header .btn-primary {
    font-size: 12px;
    padding: 0 10px;
    height: 28px;
}

/* Для экранов где всё равно не помещается */
@media (max-width: 1100px) {
    .nav-links a {
        font-size: 11px;
        padding: 0 8px;
    }
    .user-info-header span {
        font-size: 12px !important;
    }
}
/* ========== ЦЕНТРИРОВАНИЕ ТЕКСТА В ПЛАШКЕ ПРЕДУПРЕЖДЕНИЯ ========== */
@media (max-width: 768px) {
    .warning-text {
        text-align: center !important;
        align-items: center !important;
        width: 100%;
    }
    .warning-title {
        text-align: center !important;
        width: 100%;
    }
    .warning-message {
        text-align: center !important;
        width: 100%;
    }
}