:root {
    --bg: #0d0d1a;
    --darker: #05050f;
    --neon-blue: #00f2ff;
    --neon-cyan: #00ffd0;
    --neon-purple: #8b00ff;
    --text: #e0e0ff;
    --text-muted: #8899cc;
    --card-bg: rgba(20, 25, 50, 0.7);
    --card-border: rgba(0, 242, 255, 0.3);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Roboto Mono', monospace;
    overflow-x: hidden;
    line-height: 1.6;
}
/* Particles Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    z-index: 0;
}
/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neon-blue);
    z-index: 1000;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}
.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-decoration: none;
    letter-spacing: 3px;
    text-shadow: 0 0 20px var(--neon-blue);
    z-index: 1001;
}
.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}
.nav-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 0;
    background: var(--neon-blue);
    transition: 0.4s;
}
.nav-menu a:hover::after { width: 100%; }
.nav-menu a:hover { color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }

/* ГАМБУРГЕР-МЕНЮ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--neon-blue);
    border-radius: 2px;
    transition: 0.3s;
    box-shadow: 0 0 10px var(--neon-blue);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 15, 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    font-size: 2rem;
    transition: left 0.4s ease;
    z-index: 999;
}
.mobile-menu.active { left: 0; }
.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    transition: 0.3s;
}
.mobile-menu a:hover { color: var(--neon-blue); text-shadow: 0 0 20px var(--neon-blue); }

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    padding: 2rem;
}
.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(0,242,255,0.5);
    margin-bottom: 1.5rem;
    animation: glitch 4s infinite;
}
.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
}
.cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--neon-blue);
    font-weight: bold;
    text-decoration: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,242,255,0.2), transparent);
    transition: 0.7s;
}
.cta-button:hover::before { left: 100%; }
.cta-button:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 30px var(--neon-blue);
}
/* Main Onion Link Box */
.main-link {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3rem;
    margin: 5rem auto;
    max-width: 900px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(0,242,255,0.2);
}
.onion-url {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.5rem;
    background: #000;
    color: var(--neon-cyan);
    padding: 1.5rem;
    border: 1px dashed var(--neon-blue);
    word-break: break-all;
    margin: 2rem 0;
    text-align: center;
    text-shadow: 0 0 10px var(--neon-cyan);
}
.onion-url a {
    color: var(--neon-cyan);
    text-decoration: none;
}
.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--neon-cyan);
    font-weight: bold;
}
.status::before {
    content: "●";
    color: var(--neon-cyan);
    animation: pulse 2s infinite;
}
/* Sections */
section {
    padding: 100px 5%;
    position: relative;
}
.container { max-width: 1300px; margin: 0 auto; }
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue);
}
/* Cards Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 0 50px rgba(0,242,255,0.4);
    border-color: var(--neon-blue);
}
.card h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    font-size: 1.6rem;
}
/* Glitch Animation */
@keyframes glitch {
    0%,100% { text-shadow: 0 0 20px var(--neon-blue); }
    2% { text-shadow: 3px 0 0 #ff00ff, -3px 0 0 #00ffff; }
    4% { text-shadow: none; }
}
@keyframes pulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ВСЁ ОСТАЛЬНОЕ ИЗ ТВОЕГО ОРИГИНАЛЬНОГО CSS — БЕЗ ИЗМЕНЕНИЙ */
.neon-card {
    background: rgba(10,15,40,0.7);
    border: 1px solid rgba(0,242,255,0.4);
    padding: 3rem 2.2rem;
    backdrop-filter: blur(15px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9);
    text-align: center;
}
.neon-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: #00f2ff;
    transform: translateX(-100%);
    transition: transform 0.8s;
}
.neon-card:hover::before { transform: translateX(0); }
.neon-card:hover {
    border-color: #00f2ff;
    box-shadow: 0 0 60px rgba(0,242,255,0.7);
    transform: translateY(-15px);
}
.icon-wrapper {
    width: 110px; height: 110px;
    margin: 0 auto 1.8rem;
    color: #00f2ff;
    filter: drop-shadow(0 0 20px currentColor);
    animation: iconPulse 4s infinite;
}
.icon-wrapper svg {
    width: 100%; height: 100%;
    stroke: currentColor;
}
.features-grid > div:nth-child(1) .icon-wrapper { color: #00f2ff; }
.features-grid > div:nth-child(2) .icon-wrapper { color: #00ffd0; }
.features-grid > div:nth-child(3) .icon-wrapper { color: #8b00ff; }
.features-grid > div:nth-child(4) .icon-wrapper { color: #00f2ff; }
.neon-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 15px currentColor;
    color: inherit !important;
}
.neon-card p { color: #ccd9ff; line-height: 1.85; font-size: 1.03rem; }
@keyframes iconPulse {
    0%, 100% { filter: drop-shadow(0 0 20px currentColor); }
    50% { filter: drop-shadow(0 0 35px currentColor); }
}
.link-card.neon-card {
    background: rgba(10,15,40,0.7);
    border: 1px solid rgba(0,242,255,0.4);
    padding: 3rem 2.2rem;
    backdrop-filter: blur(15px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.9);
    text-align: center;
}
.link-card.neon-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, #00f2ff, #00ffd0);
    transform: translateX(-100%);
    transition: transform 0.8s;
}
.link-card.neon-card:hover::before { transform: translateX(0); }
.link-card.neon-card:hover {
    border-color: #00f2ff;
    box-shadow: 0 0 60px rgba(0,242,255,0.7);
    transform: translateY(-15px);
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,255,208,0.15);
    color: #00ffd0;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 15px #00ffd0;
}
.status-badge::before {
    content: "●";
    color: #00ffd0;
    animation: pulse 2s infinite;
    text-shadow: 0 0 20px #00ffd0;
}
.link-button {
    display: block;
    margin-top: 2rem;
    padding: 16px 20px;
    background: transparent;
    border: 2px solid #00f2ff;
    color: #00f2ff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.link-button:hover {
    background: #00f2ff;
    color: #000;
    box-shadow: 0 0 30px rgba(0,242,255,0.8);
    transform: translateY(-3px);
}
.link-button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.7s;
}
.link-button:hover::after { left: 100%; }
.link-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.7rem;
    margin: 1rem 0;
    color: #00f2ff;
    text-shadow: 0 0 15px #00f2ff;
}
.link-card p { color: #ccd9ff; line-height: 1.85; font-size: 1.03rem; }
@keyframes pulse {
    0%,100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.glitch-title { 
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-align: center;
    color: #00f2ff;
    text-shadow: 0 0 30px #00f2ff;
    position: relative;
    margin-bottom: 4rem;
}
.glitch-title::before, .glitch-title::after { content: attr(data-text); position: absolute; left: 0; top: 0; width: 100%; }
.glitch-title::before { animation: glitch-1 2.5s infinite; color: #8b00ff; clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%); }
.glitch-title::after  { animation: glitch-2 2.5s infinite; color: #00ffd0; clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%); }
.security-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.terminal-box {
    background: rgba(5,5,25,0.85);
    border: 1px solid #00f2ff;
    padding: 2rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(0,242,255,0.3);
    font-family: 'Roboto Mono', monospace;
    color: #00ff9d;
    font-size: 1rem;
    line-height: 2.1;
    letter-spacing: 0.5px;
    min-height: 320px;
}
.terminal { overflow: hidden; }
.features-box {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.info-row {
    display: flex;
    gap: 1.2rem;
    align-items: start;
    background: rgba(10,15,40,0.6);
    padding: 1.3rem;
    border-left: 4px solid transparent;
    transition: 0.4s;
}
.info-row:hover {
    border-left-color: #00ffd0;
    background: rgba(0,242,255,0.08);
    transform: translateX(8px);
}
.ico {
    width: 50px; height: 50px;
    background: rgba(0,242,255,0.2);
    color: #00f2ff;
    font-weight: bold;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0,242,255,0.4);
}
.info-row h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00f2ff;
    margin-bottom: 0.4rem;
    font-size: 1.2rem;
}
.info-row p { color: #ccd9ff; line-height: 1.6; font-size: 0.98rem; margin:0; }
.review-card {
    background: rgba(10,15,40,0.7);
    border: 1px solid rgba(0,242,255,0.4);
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--neon-blue);
    transform: translateX(-100%);
    transition: 0.7s;
}
.review-card:hover::before { transform: translateX(0); }
.review-card:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 40px rgba(0,242,255,0.4);
    transform: translateY(-10px);
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.username {
    font-family: 'Orbitron', sans-serif;
    color: #00ffd0;
    font-size: 1.2rem;
    text-shadow: 0 0 10px #00ffd0;
}
.stars {
    color: #00ffd0;
    font-size: 1.4rem;
    letter-spacing: 4px;
    text-shadow: 0 0 15px #00ffd0;
}
.review-card p {
    color: #ccd9ff;
    line-height: 1.8;
    margin: 0 0 1rem 0;
}
.review-card .date {
    color: rgba(0,242,255,0.6);
    font-size: 0.9rem;
}
.faq-accordion { max-width: 1000px; margin: 0 auto; }
.faq-item {
    background: rgba(10,15,40,0.7);
    border: 1px solid rgba(0,242,255,0.3);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.4s;
}
.faq-item:hover { border-color: var(--neon-blue); }
.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,242,255,0.05);
}
.faq-question h3 {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    font-size: 1.25rem;
}
.faq-toggle {
    font-size: 2rem;
    color: var(--neon-blue);
    transition: transform 0.3s;
}
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.faq-answer p {
    padding: 2rem;
    margin: 0;
    color: #ccd9ff;
    line-height: 1.8;
    font-size: 1.02rem;
}
.faq-item.active .faq-answer { max-height: 600px; }

/* ========== АДАПТИВНОСТЬ (добавлено/усилено) ========== */
@media (max-width: 992px) {
    .features-grid,
    .links-grid,
    .reviews-grid,
    .security-wrapper {
        grid-template-columns: 1fr;
    }
    .terminal-box { min-height: auto; }
    footer > .container > div:first-child {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 3.2rem; }
    .hero p { font-size: 1.1rem; }
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    .section-title { font-size: 2.4rem; }
    .main-link { padding: 2rem; margin: 3rem auto; }
    .onion-url { font-size: 1.2rem; padding: 1.2rem; }
}
@media (max-width: 576px) {
    .hero h1 { font-size: 2.8rem; }
    .glitch-title { font-size: 2.4rem; }
    .info-row { flex-direction: column; text-align: center; }
    .ico { margin: 0 auto 1rem; }
    nav { padding: 1rem 5%; }
    .logo { font-size: 1.7rem; }
    .cta-button { padding: 14px 35px; font-size: 0.95rem; }
}

/* Дублирующиеся :root и section-title — оставил как было */
:root { --neon-blue: #00f2ff; }
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue);
}


/* Основная сетка для features — 2 колонки на десктопе */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* на всякий случай, чтобы на мобиле не прижималось к краям */
}

/* На планшетах и ниже — 1 колонка */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* На очень узких экранах — ещё чуть меньше отступов */
@media (max-width: 576px) {
    .features-grid {
        gap: 2rem;
        padding: 0 0.5rem;
    }
}

/* Универсальная сетка 2×N → 1 колонка на мобильных */
.features-grid,
.links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* На всех устройствах до 992px — одна колонка */
@media (max-width: 992px) {
    .features-grid,
    .links-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .features-grid,
    .links-grid {
        gap: 2rem;
        padding: 0 0.5rem;
    }
}

/* Универсальная адаптивная сетка для всех 2-колоночных секций */
.features-grid,
.links-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Reviews чуть меньше gap, как у тебя было изначально */
.reviews-grid {
    gap: 2.5rem;
}

/* На планшетах и телефонах — одна колонка */
@media (max-width: 992px) {
    .features-grid,
    .links-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    /* Для reviews оставляем оригинальный gap даже на мобиле */
    .reviews-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .features-grid,
    .links-grid {
        gap: 2rem;
    }
    
    .reviews-grid {
        gap: 2rem;
        padding: 0 0.5rem;
    }
}

/* ========== ФУТЕР — ЧИСТЫЙ И АДАПТИВНЫЙ ========== */
.footer {
    padding: 120px 5% 60px;
    background: #050512;
    border-top: 1px solid rgba(0,242,255,0.3);
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: 0 0 30px var(--neon-blue);
    margin: 0 0 1rem 0;
    letter-spacing: 2px;
    line-height: 1;
}

.text-cyan { color: #00ffd0; }

.footer-slogan {
    color: #8899cc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-blue);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px var(--neon-blue);
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem 3rem;
    max-width: 420px;
}

.footer-nav-grid a,
.footer-legal a {
    color: #ccd9ff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-nav-grid a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.footer-legal a {
    color: #8899cc;
}

.footer-legal a:hover {
    color: #00ffd0;
    text-shadow: 0 0 10px #00ffd0;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,242,255,0.2);
    color: #556688;
    font-size: 0.95rem;
}

/* ========== АДАПТИВНОСТЬ ФУТЕРА ========== */

/* ========== SECURITY SECTION — ПОЛНАЯ АДАПТИВНОСТЬ ========== */
.security-section {
    padding: 140px 5% 100px;
    background: #000010;
    position: relative;
    overflow: hidden;
}

.glitch-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background: repeating-linear-gradient(0deg, #00f2ff 0px, transparent 2px, transparent 4px, #00f2ff 6px);
    animation: glitchLines 12s linear infinite;
}

.security-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Терминал */
.terminal-box {
    background: rgba(5,5,25,0.85);
    border: 1px solid #00f2ff;
    padding: 2rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px rgba(0,242,255,0.3);
    font-family: 'Roboto Mono', monospace;
    color: #00ff9d;
    font-size: 1rem;
    line-height: 2.1;
    min-height: 320px;
    overflow: hidden;
    word-wrap: break-word;
}

.terminal-btn {
    display: block;
    margin-top: 1.5rem;
    text-align: center;
}

/* Боковые фичи */
.features-box {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.info-row {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    background: rgba(10,15,40,0.6);
    padding: 1.3rem;
    border-left: 4px solid transparent;
    transition: 0.4s;
}

.info-row:hover {
    border-left-color: #00ffd0;
    background: rgba(0,242,255,0.08);
    transform: translateX(8px);
}

.ico {
    width: 50px;
    height: 50px;
    background: rgba(0,242,255,0.2);
    color: #00f2ff;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0,242,255,0.4);
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 992px) {
    .security-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .terminal-box {
        min-height: auto;
        padding: 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .security-section {
        padding: 100px 5% 80px;
    }
    
    .terminal-box {
        padding: 1.5rem;
        font-size: 0.9rem;
        line-height: 1.9;
    }
    
    .info-row {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .ico {
        margin: 0 auto 1rem;
    }
    
    .info-row:hover {
        transform: translateY(-5px);
    }
}


/* ========== ABOUT SECTION — ПОЛНАЯ АДАПТИВНОСТЬ ========== */
.about-section {
    padding: 140px 5% 100px;
    background: #0a0a17;
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Таймлайн */
.timeline-box {
    background: rgba(10,15,40,0.8);
    border: 1px solid rgba(0,242,255,0.4);
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    font-family: 'Roboto Mono', monospace;
    color: #00ff9d;
    line-height: 2.2;
    font-size: 0.98rem;
}

.timeline-header {
    color: var(--neon-blue);
    margin-bottom: 1.2rem;
    font-weight: bold;
}

.date {
    color: #00ffd0;
    font-weight: bold;
}

.timeline-status {
    margin-top: 1.8rem;
    color: var(--neon-blue);
    font-weight: bold;
    text-shadow: 0 0 15px var(--neon-blue);
}

/* Текст справа */
.about-text {
    color: #ccd9ff;
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline-box {
        padding: 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 100px 5% 80px;
    }
    
    .about-wrapper {
        gap: 2.5rem;
    }
    
    .timeline-box {
        padding: 1.8rem;
        font-size: 0.92rem;
        line-height: 2;
    }
    
    .about-text {
        font-size: 1.05rem;
        line-height: 1.85;
    }
}

/* Логотип-картинка вместо текста */
.logo {
    display: block;
    height: 56px;              /* высота логотипа в шапке */
    padding: 0;                /* убираем отступы от старого текстового лого */
}

.logo-img {
    height: 100%;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.6));
    transition: all 0.4s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 25px rgba(0, 242, 255, 0.9));
    transform: scale(1.05);
}

/* На мобильных чуть уменьшаем логотип */
@media (max-width: 768px) {
    .logo {
        height: 46px;
    }
}

@media (max-width: 576px) {
    .logo {
        height: 42px;
    }
}
/* Мигающий курсор — работает везде в 2025 году */
.blink {
    color: #00f2ff;
    animation: blinking 1s infinite;
    font-weight: bold;
}

@keyframes blinking {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0; }
}