/* ============================================ */
/* ========== ГЛОБАЛЬНЫЕ СТИЛИ ========== */
/* ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-cyan: #00f3ff;
    --neon-blue: #0066ff;
    --neon-purple: #aa00ff;
    --neon-pink: #ff00ff;
    --neon-green: #00ff9d;
    --neon-yellow: #ffcc00;
    
    --gradient-cyber: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    --gradient-electric: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
    
    --bg-space: #050510;
    --bg-dark: #0a0a1a;
    --bg-medium: #151530;
    
    --text-glow: #ffffff;
    --text-dim: #b8c1ff;
    --text-soft: #d0e0ff;
    
    --glow-sm: 0 0 10px;
    --glow-md: 0 0 20px;
    --glow-lg: 0 0 40px;
    --glow-xl: 0 0 60px;
    
    --transition-medium: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* ========== КОНЕЦ ГЛОБАЛЬНЫХ СТИЛЕЙ ========== */

/* ============================================ */
/* ========== БАЗОВЫЕ СТИЛИ BODY ========== */
/* ============================================ */
body {
    background: var(--bg-space);
    color: var(--text-glow);
    font-family: 'Exo 2', sans-serif;
    line-height: 1.4;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 243, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(170, 0, 255, 0.15) 0%, transparent 40%);
    z-index: -1;
}

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 243, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(0, 243, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    pointer-events: none;
}
/* ========== КОНЕЦ БАЗОВЫХ СТИЛЕЙ BODY ========== */

/* ============================================ */
/* ========== КОНТЕЙНЕРЫ ========== */
/* ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
    width: 100%;
}
/* ========== КОНЕЦ КОНТЕЙНЕРОВ ========== */

/* ============================================ */
/* ========== НАВИГАЦИЯ (ЗАГЛУШКА) ========== */
/* ============================================ */
.site-header {
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    width: 100%;
}

.nav-placeholder {
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px dashed var(--neon-cyan);
    border-radius: 50px;
    padding: 15px 30px;
    text-align: center;
    color: var(--text-dim);
    font-size: 1.2rem;
    letter-spacing: 2px;
    box-shadow: var(--glow-sm) var(--neon-cyan);
    width: 100%;
}

.nav-placeholder i {
    color: var(--neon-pink);
    margin: 0 10px;
}
/* ========== КОНЕЦ НАВИГАЦИИ ========== */

/* ============================================ */
/* ========== СЕКЦИЯ HERO (СЛОГАН) ========== */
/* ============================================ */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
    padding: 20px 0;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.hero-left {
    max-width: 680px;
    width: 100%;
    margin-left: auto;
    margin-right: 0;
    margin-top: -20px;
    padding: 20px 0;
}

.pre-badge {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 300;
    color: #c0d8ff;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(100, 150, 255, 0.6);
    background: linear-gradient(90deg, rgba(106, 140, 255, 0.15), transparent);
    padding: 8px 22px 8px 22px;
    border-radius: 0 30px 30px 0;
    margin-left: -20px;
    backdrop-filter: blur(4px);
    border-left: 3px solid #7a9cff;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.0;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -2px;
    white-space: nowrap;
    filter: drop-shadow(0 0 20px rgba(100, 160, 255, 0.5));
    color: #008efb;
    user-select: none;
}

.pro {
    color: #ff0068;
    font-size: 4rem; 
    font-weight: 100;              
}

.prosto {
    color: #499fe7;                
    font-size: 2.4rem;             
    font-weight: 100;
}

.slogan-block {
    margin: 28px 0 28px;
    padding: 15px 0;
}

.glitch-slogan {
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: flex-start;
}

.glitch-slogan .word {
    background: rgba(70, 120, 255, 0.12);
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid rgba(130, 170, 255, 0.4);
    backdrop-filter: blur(4px);
    font-style: italic;
    color: #f5f9ff;
    text-shadow: 0 0 15px rgba(130, 180, 255, 0.6);
    font-size: 1.7rem;
    transition: all 0.3s ease;
}

.glitch-slogan .word:hover {
    background: rgba(90, 140, 255, 0.25);
    border-color: rgba(200, 220, 255, 0.6);
    transform: scale(1.05);
}

.glitch-slogan .word-core {
    background: rgba(110, 80, 230, 0.18);
    border-color: rgba(190, 160, 255, 0.5);
}

.desc-original {
    font-size: 1.3rem;
    color: #ccddff;
    margin: 35px 0 35px;
    font-weight: 350;
    max-width: 620px;
    line-height: 1.7;
    text-shadow: 0 0 15px rgba(80, 130, 230, 0.3);
    position: relative;
    padding-left: 25px;
}

.desc-original p {
    margin-bottom: 22px;
}

.desc-original p:last-child {
    margin-bottom: 0;
}

.desc-original .glow-text {
    color: #00e5ff;
    font-weight: 500;
    text-shadow: 0 0 20px rgb(0 0 0 / 90%);
    display: inline;
    background: linear-gradient(90deg, rgb(23 154 175 / 22%), transparent);
    padding: 2px 6px;
    border-radius: 4px;
}

.highlight-blue {
    color: #0090ff;
    font-weight: 450;
    text-shadow: 0 0 12px rgba(70, 150, 255, 0.6);
    border-bottom: 1px dotted rgba(100, 150, 255, 0.4);
}

.highlight-purple {
    color: #38a8ff;
    font-weight: 450;
    text-shadow: 0 0 12px rgb(86 141 213 / 69%);
    border-bottom: 1px dotted rgb(100 229 255 / 40%);
}

.divider-section {
    margin: 25px 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.divider-line {
    height: 1px;
    width: 180px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(100, 150, 255, 0.5) 20%, 
        rgba(170, 130, 255, 0.7) 50%, 
        rgba(100, 150, 255, 0.5) 80%, 
        transparent 100%);
    box-shadow: 0 0 10px rgba(100, 150, 255, 0.3);
}

.divider-line:nth-child(2) {
    width: 140px;
    margin-left: 20px;
}

.divider-line:nth-child(3) {
    width: 100px;
    margin-left: 40px;
}

.hero-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: -20px;
}

.pc-image-wrapper {
    max-width: 720px;
    width: 100%;
    overflow: visible;
    transform: translateX(18px) rotate(0.8deg) scale(1.02);
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.pc-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 28px;
    transition: filter 0.3s ease;
}

.hero-footnote {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    font-size: 0.8rem;
    color: rgb(255 0 139);
    writing-mode: vertical-rl;
    letter-spacing: 5px;
    text-transform: uppercase;
    border-right: 2px solid rgba(100, 150, 255, 0.45);
    padding-right: 7px;
    z-index: 10;
    text-shadow: 0 0 8px rgba(100, 150, 255, 0.3);
    font-weight: 500;
    white-space: nowrap;
    margin: 0;
    line-height: 1.2;
    user-select: none;
}
/* ========== КОНЕЦ СЕКЦИИ HERO ========== */

/* ============================================ */
/* ========== СЕКЦИЯ СЛАЙДЕРА ========== */
/* ============================================ */
.slider-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 60px auto;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 30px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 650px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 0 2px rgba(0, 234, 255, 0.3), 0 0 40px rgba(0, 234, 255, 0.3);
    background: #0a0718;
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide-content {
    display: flex;
    height: 100%;
    width: 100%;
}

.slide-image {
    flex: 0 0 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: transform 0.5s ease;
}

.slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.slide-info {
    flex: 0 0 50%;
    background: rgba(10, 10, 25, 0.85);
    backdrop-filter: blur(12px);
    padding: 45px 45px 35px 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
    border-left: 1px solid rgba(0, 234, 255, 0.2);
    box-shadow: inset 0 0 30px rgba(0, 234, 255, 0.1);
    position: relative;
}

.slide-info h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 20px;
    background: #007eff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.5);
}

.slide-info p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 90%;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.feature-item {
    background: rgba(0, 234, 255, 0.08);
    border: 1px solid rgba(0, 234, 255, 0.3);
    border-radius: 40px;
    padding: 10px 20px;
    font-size: clamp(0.85rem, 1.5vw, 1.05rem);
    font-weight: 500;
    color: #fff;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.2);
    backdrop-filter: blur(4px);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 234, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 0 20px #00eaff;
}

.btn-neon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #ff00cc, #00eaff);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 234, 255, 0.6);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: fit-content;
    text-transform: uppercase;
    margin-top: auto;
    margin-bottom: 10px;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-neon:hover::before {
    left: 100%;
}

.btn-neon:hover {
    transform: scale(1.05);
    box-shadow: 0 0 45px #00eaff;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(0, 10, 20, 0.7);
    backdrop-filter: blur(8px);
    border: 2px solid #00eaff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00eaff;
    font-size: 15px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.5);
}

.nav-arrow:hover {
    background: #00eaff;
    color: #000;
    box-shadow: 0 0 40px #00eaff;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev {
    left: 17px;
}

.nav-arrow.next {
    right: 17px;
}

.dot-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 20;
    padding: 4px 25px;
    background: rgba(10, 7, 24, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 60px;
    border: 1px solid rgba(0, 234, 255, 0.3);
    width: fit-content;
    margin: 0 auto;
    transform: translateY(-5px);
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(0, 234, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00eaff;
    transform: scale(1.4);
    box-shadow: 0 0 25px #00eaff;
}
/* ========== КОНЕЦ СЕКЦИИ СЛАЙДЕРА ========== */

/* ============================================ */
/* ========== СЕКЦИЯ КОМПЛЕКТУЮЩИХ ========== */
/* ============================================ */
.section-title {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin: 60px 0 20px;
    background: linear-gradient(135deg, #0066ff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: var(--glow-xl) rgba(0, 102, 255, 0.3);
    letter-spacing: 2px;
    user-select: none;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 50px;
    font-style: italic;
    width: 100%;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

.component-node {
    background: rgba(26, 26, 58, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 45px 20px 30px 20px;
    border: 2px solid;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    display: flex;
    flex-direction: column;
    min-height: 315px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.component-node:nth-child(1) { animation-delay: 0.1s; }
.component-node:nth-child(2) { animation-delay: 0.2s; }
.component-node:nth-child(3) { animation-delay: 0.3s; }
.component-node:nth-child(4) { animation-delay: 0.4s; }
.component-node:nth-child(5) { animation-delay: 0.5s; }
.component-node:nth-child(6) { animation-delay: 0.6s; }
.component-node:nth-child(7) { animation-delay: 0.7s; }
.component-node:nth-child(8) { animation-delay: 0.8s; }

.component-node::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 243, 255, 0.2), 
        transparent 50%,
        rgba(170, 0, 255, 0.2));
    opacity: 0;
    transition: var(--transition-medium);
}

.component-node:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--glow-lg) currentColor;
}

.component-node:hover::before {
    opacity: 1;
}

/* Цвета для разных типов комплектующих */
.node-cpu { border-color: var(--neon-cyan); color: var(--neon-cyan); }
.node-gpu { border-color: var(--neon-purple); color: var(--neon-purple); }
.node-motherboard { border-color: var(--neon-blue); color: var(--neon-blue); }
.node-ram { border-color: var(--neon-green); color: var(--neon-green); }
.node-storage { border-color: var(--neon-yellow); color: var(--neon-yellow); }
.node-cooling { border-color: var(--neon-pink); color: var(--neon-pink); }
.node-psu { border-color: #ff3366; color: #ff3366; }
.node-case { border-color: #aa66ff; color: #aa66ff; }

.node-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-cyber);
    color: var(--bg-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: var(--glow-sm) rgba(0, 243, 255, 0.5);
}

.node-icon {
    width: 80px;
    height: 80px;
    margin: 15px auto 25px auto;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 3px solid currentColor;
    box-shadow: var(--glow-md) currentColor;
    transition: var(--transition-medium);
}

.component-node:hover .node-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: var(--glow-lg) currentColor;
}

.node-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 5px;
    color: #00b6ff;
    letter-spacing: 1px;
}

.node-description {
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 5px;
    font-size: 0.95rem;
    margin-top: 5px;
}
/* ========== КОНЕЦ СЕКЦИИ КОМПЛЕКТУЮЩИХ ========== */

/* ============================================ */
/* ========== СЕКЦИЯ ПЕРИФЕРИИ ========== */
/* ============================================ */
.peripheria-section {
    margin: 80px 0;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 30px;
}

.glitch-panel {
    width: 100%;
    max-width: 1400px;
    background: rgba(26, 26, 58, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 150, 255, 0.25);
    border-radius: min(70px, 7vw) min(20px, 2vw) min(70px, 7vw) min(20px, 2vw);
    box-shadow: 0 40px 70px -20px #000000dd, inset 0 0 0 1px rgba(200,0,255,0.3);
    display: flex; 
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

.glitch-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 243, 255, 0.1), 
        transparent 50%,
        rgba(170, 0, 255, 0.1));
    opacity: 0.5;
    pointer-events: none;
}
/* ========== КОНЕЦ ОСНОВНОГО КОНТЕЙНЕРА ПЕРИФЕРИИ ========== */

/* ============================================ */
/* ========== НАВИГАЦИОННЫЕ КУБИКИ ========== */
/* ============================================ */
.nav-cubes {
    width: 130px;
    background: rgba(0,0,0,0.35);
    border-right: 2px dashed rgba(255,70,255,0.4);
    padding: clamp(15px, 2vh, 20px) clamp(5px, 1vw, 8px);
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: clamp(10px, 1.5vh, 16px);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    flex-shrink: 0;
    transition: all 0.3s ease;
    justify-content: space-around;
}

.cube-btn {
    width: min(90px, 12vw);
    height: min(90px, 12vw);
    max-width: 90px;
    max-height: 90px;
    min-width: 55px;
    min-height: 55px;
    background: rgba(30,12,40,0.8);
    border: 2px solid rgba(180,70,255,0.5);
    border-radius: min(22px, 3vw) min(5px, 1vw) min(22px, 3vw) min(5px, 1vw);
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 4px;
    font-size: clamp(18px, 4vw, 28px);
    color: #d5b5ff;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.34,1.56,0.64,1);
    box-shadow: 0 5px 10px -5px #000, 0 0 10px #b180ff33;
    flex-shrink: 0;
}

.cube-btn span { 
    font-size: clamp(8px, 1.5vw, 10px);
    font-weight: 500; 
    letter-spacing: 0.3px;
    text-transform: uppercase; 
    color: #bfa0ff; 
    text-align: center;
    line-height: 1.2;
}

.cube-btn:hover {
    border-color: #ffb0ff;
    color: white;
    background: #3a1d5b;
    transform: scale(1.05) rotate(1deg);
    border-radius: min(10px, 2vw) min(20px, 3vw) min(10px, 2vw) min(20px, 3vw);
    box-shadow: 0 0 25px #ffa0ffcc;
}

.cube-btn.active {
    background: #6d21b0;
    border-color: #e800ff;
    color: white;
    box-shadow: 0 0 40px #f0f, 0 3px 10px #000;
    border-radius: min(6px, 1.5vw) min(25px, 4vw) min(6px, 1.5vw) min(25px, 4vw);
    transform: scale(1.02);
}
/* ========== КОНЕЦ НАВИГАЦИОННЫХ КУБИКОВ ========== */

/* ============================================ */
/* ========== ОСНОВНАЯ ЗОНА ПЕРИФЕРИИ ========== */
/* ============================================ */
.main-zone { 
    flex: 1; 
    padding: clamp(15px, 3vh, 30px) clamp(18px, 3vw, 35px);
    display: flex; 
    flex-direction: column; 
    position: relative;
    z-index: 1;
    min-width: 0;
    overflow: hidden;
}

.broken-line {
    display: flex; 
    align-items: center; 
    gap: clamp(4px, 1vw, 8px);
    font-family: 'Archivo', sans-serif;
    font-weight: 300;
    text-transform: uppercase; 
    font-size: clamp(10px, 1.5vw, 13px);
    letter-spacing: clamp(2px, 0.5vw, 4px);
    color: var(--text-dim);
    margin-bottom: clamp(10px, 2vh, 15px);
    flex-wrap: wrap;
}

.broken-line i { 
    color: var(--neon-pink);
    font-size: clamp(14px, 2vw, 18px);
    animation: flicker 2.5s infinite; 
}

@keyframes flicker { 
    0%,100% { opacity: 1; text-shadow: 0 0 8px var(--neon-pink); } 
    50% { opacity: 0.3; text-shadow: none; } 
}

.hero-head { 
    margin-bottom: clamp(10px, 2vh, 15px);
}

.hero-head h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 700; 
    line-height: 0.9;
    background: linear-gradient(145deg, #fff 10%, #e088ff, #a0f0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: clamp(3px, 1vw, 5px) clamp(3px, 1vw, 5px) 0px #38006b40;
    word-break: break-word;
}

.layout-dual { 
    display: flex; 
    gap: clamp(15px, 2vw, 30px);
    flex: 1; 
    min-height: 0; 
    height: 100%;
}

.stream-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.5vh, 15px);
    overflow-y: auto;
    padding-right: clamp(5px, 1vw, 10px);
    min-width: 0;
    height: 100%;
}

.bubble-desc {
    background: rgba(26, 26, 58, 0.5);
    border: 2px solid var(--neon-purple);
    border-radius: min(45px, 5vw) min(10px, 2vw) min(45px, 5vw) min(10px, 2vw);
    padding: clamp(14px, 2vh, 22px) clamp(16px, 2vw, 25px);
    font-size: clamp(0.85rem, 2vw, 1rem);
    line-height: 1.5;
    backdrop-filter: blur(5px);
    box-shadow: 0 15px 25px -15px black;
    transition: all 0.3s ease;
    color: var(--text-dim);
}

.char-section-title {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    color: var(--neon-pink);
    margin: clamp(3px, 0.8vh, 5px) 0;
    letter-spacing: 0.3px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: var(--glow-sm) currentColor;
}

.char-list {
    list-style: none;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: clamp(5px, 1vh, 10px);
}

.char-list li {
    margin-bottom: clamp(4px, 0.8vh, 6px);
    padding-left: clamp(5px, 1vw, 10px);
    border-left: 2px solid var(--neon-purple);
    transition: all 0.3s ease;
}

.char-list li:hover {
    border-color: var(--neon-pink);
    padding-left: clamp(8px, 1.5vw, 14px);
    color: var(--text-glow);
    text-shadow: var(--glow-sm) var(--neon-pink);
}

.char-list li strong {
    color: var(--neon-cyan);
    font-weight: 600;
}

.more-btn-wrapper {
    margin-top: 0;
    padding-top: 0;
}

.more-btn {
    background: rgba(26, 26, 58, 0.5);
    border: 2px solid var(--neon-purple);
    border-radius: 35px;
    padding: clamp(8px, 1.5vh, 12px) clamp(16px, 2vw, 24px);
    color: var(--text-dim);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    display: inline-block;
    width: 31%;
}

.more-btn:hover { 
    transform: translateY(-2px);
}
/* ========== КОНЕЦ ОСНОВНОЙ ЗОНЫ ПЕРИФЕРИИ ========== */

/* ============================================ */
/* ========== БЛОК С ИЗОБРАЖЕНИЯМИ ========== */
/* ============================================ */
.prism-box { 
    flex: 0 0 50%;
    display: flex; 
    flex-direction: column; 
    gap: clamp(10px, 1.5vh, 15px);
    min-width: 0;
    transition: all 0.3s ease;
    max-width: 50%;
}

.holo-frame {
    border: none;
    border-radius: 0px;
    box-shadow: none;
    aspect-ratio: auto;
    height: 650px;
    width: 100%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.holo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-out;
    will-change: transform;
    cursor: zoom-in;
}
/* ========== КОНЕЦ БЛОКА С ИЗОБРАЖЕНИЯМИ ========== */

/* ============================================ */
/* ========== СТИЛИ ПРИ НАВЕДЕНИИ (HOVER) ========== */
/* ============================================ */
.holo-frame[data-device="keyboard"]:hover img {
    transform: scale(3.20);
}

.holo-frame[data-device="mouse"]:hover img {
    transform: scale(1.5);
}

.holo-frame[data-device="monitor"]:hover img {
    transform: scale(1.03);
}

.holo-frame[data-device="headphones"]:hover img {
    transform: scale(1.0);
}

.holo-frame[data-device="camera"]:hover img {
    transform: scale(1.4);
}

.holo-frame[data-device="microphone"]:hover img {
    transform: scale(1.25);
}

.holo-frame[data-device="mat"]:hover img {
    transform: scale(1.1);
}
/* ========== КОНЕЦ СТИЛЕЙ ПРИ НАВЕДЕНИИ ========== */

/* ============================================ */
/* ========== ПОЛНОЭКРАННЫЙ РЕЖИМ (ZOOM) ========== */
/* ============================================ */
.holo-frame.zoomed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    height: 90vh;
    z-index: 1000;
    border: 2px solid var(--neon-pink);
    box-shadow: var(--glow-xl) var(--neon-pink);
    cursor: zoom-out;
    background: rgba(26, 26, 58, 0.95);
    border-radius: 20px;
    overflow: hidden;
}

.holo-frame.zoomed img {
    cursor: zoom-out;
    width: 30%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Общий стиль для всех увеличенных картинок в полноэкранном режиме */
.holo-frame.zoomed img {
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Индивидуальные размеры для каждого устройства в полноэкранном режиме */
.holo-frame.zoomed[data-device="keyboard"] img {
    transform: scale(2.5);
}

.holo-frame.zoomed[data-device="mouse"] img {
    transform: scale(2.0);
}

.holo-frame.zoomed[data-device="monitor"] img {
    transform: scale(1.2);
}

.holo-frame.zoomed[data-device="headphones"] img {
    transform: scale(1.4);
}

.holo-frame.zoomed[data-device="camera"] img {
    transform: scale(1.6);
}

.holo-frame.zoomed[data-device="microphone"] img {
    transform: scale(1.5);
}

.holo-frame.zoomed[data-device="mat"] img {
    transform: scale(1.3);
}
/* ========== КОНЕЦ ПОЛНОЭКРАННОГО РЕЖИМА ========== */

/* ============================================ */
/* ========== ОВЕРЛЕЙ ДЛЯ ЗАТЕМНЕНИЯ ========== */
/* ============================================ */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(8px);
    z-index: 999;
    display: none;
}

.zoom-overlay.active {
    display: block;
}
/* ========== КОНЕЦ ОВЕРЛЕЯ ========== */

/* ============================================ */
/* ========== ЗАГЛУШКА ПРИ ЗАГРУЗКЕ ========== */
/* ============================================ */
.placeholder-glow {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: clamp(5px, 1vh, 10px);
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: var(--neon-purple);
    width: 100%; 
    height: 100%; 
    justify-content: center;
    text-shadow: var(--glow-lg) currentColor;
    text-align: center;
    padding: 15px;
}
/* ========== КОНЕЦ ЗАГЛУШКИ ========== */

/* ============================================ */
/* ========== СЕКЦИЯ КОНСТРУКТОРА (УЛУЧШЕННАЯ) ========== */
/* ============================================ */
.constructor-section {
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 100%);
    border-radius: 2rem;
    margin: 3rem auto;
    max-width: 1400px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.constructor-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
    animation: rotateBg 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-panel {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 255, 157, 0.3);
}

.knowledge-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.3);
    padding: 0.7rem 1.5rem;
    border-radius: 40px;
    color: #00f3ff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
}

.knowledge-nav-btn:hover {
    background: rgba(0, 243, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
    transform: translateX(-5px);
}

.tools-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 0;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}

.tool-card {
    background: linear-gradient(145deg, #0d0d1f, #05050f);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 32px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(0, 243, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.tool-card:hover {
    transform: translateY(-10px);
    border-color: #00f3ff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 50px rgba(0, 243, 255, 0.4);
}

.card-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(90deg, #ff00cc, #3333ff);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 3;
}

.tool-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.tool-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00f3ff, #7000ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
    animation: pulse 2s infinite;
}

.tool-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 243, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0); }
}

.tool-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, #00f3ff, #aaffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0,243,255,0.3);
    margin: 0;
}

.tool-description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
    padding: 20px;
    background: rgba(0, 255, 157, 0.05);
    border-left: 4px solid #00ff9d;
    border-radius: 0 20px 20px 0;
    text-align: left;
}

.cyber-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg, #00f3ff, #00aaff);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0a0a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
    position: relative;
    overflow: hidden;
    width: fit-content;
    margin: 0 auto;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.cyber-btn:hover::before {
    left: 100%;
}

.cyber-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 243, 255, 0.5);
    background: linear-gradient(90deg, #00aaff, #00f3ff);
}

.cyber-btn i {
    font-size: 1.3rem;
}
/* ========== КОНЕЦ СЕКЦИИ КОНСТРУКТОРА ========== */

/* ============================================ */
/* ========== ФУТЕР (ЗАГЛУШКА) ========== */
/* ============================================ */
.site-footer {
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 0, 255, 0.2);
    width: 100%;
}

.footer-placeholder {
    background: rgba(10, 10, 26, 0.6);
    backdrop-filter: blur(10px);
    border: 1px dashed var(--neon-pink);
    border-radius: 50px;
    padding: 20px 30px;
    text-align: center;
    color: var(--text-dim);
    font-size: 1.2rem;
    letter-spacing: 2px;
    width: 100%;
}

.footer-placeholder i {
    color: var(--neon-green);
    margin: 0 10px;
}
/* ========== КОНЕЦ ФУТЕРА ========== */

/* ============================================ */
/* ========== АДАПТИВНОСТЬ (MEDIA QUERIES) ========== */
/* ============================================ */
@media (max-width: 1100px) {
    .hero-grid { grid-template-columns: 1fr; }
    .hero-left { max-width: 700px; margin: 0 auto; }
    .hero-right { display: none; }
    .hero-footnote { display: none; }
}

@media (max-width: 1024px) {
    .slider-container { height: 550px; }
    .slide-info { padding: 35px 30px; }
    .nav-arrow.prev { left: 17px; }
    .nav-arrow.next { right: 17px; }
}

@media (max-width: 900px) {
    .glitch-panel { flex-direction: column; }
    .nav-cubes { 
        flex-direction: row; 
        width: 100%; 
        height: auto; 
        border-right: none; 
        border-bottom: 2px dashed rgba(255,70,255,0.4); 
        padding: clamp(8px, 1.5vh, 12px); 
        gap: clamp(6px, 1.5vw, 10px); 
        overflow-x: auto; 
        justify-content: flex-start;
    }
    .cube-btn {
        width: min(80px, 15vw);
        height: min(80px, 15vw);
        font-size: clamp(22px, 4vw, 26px);
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .slider-wrapper { padding: 0 20px; }
    .peripheria-section { padding: 0 20px; }
    .constructor-section { 
        padding: 2rem 1rem; 
        margin: 1.5rem;
    }
    
    .hero-title { font-size: 3.2rem; }
    .hero-title span { font-size: 2.2rem; }
    .glitch-slogan { font-size: 1.6rem; }
    .glitch-slogan .word { font-size: 1.4rem; }
    
    .slider-container { height: 600px; }
    .slide-content { flex-direction: column; }
    .slide-image { flex: 0 0 35%; }
    .slide-info { flex: 1; width: 100%; border-left: none; border-top: 2px solid rgba(0, 234, 255, 0.3); padding: 22px 18px; overflow-y: auto; }
    
    .components-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    
    .prism-box { display: none; }
    .stream-text { flex: 1; padding-right: 0; }
    
    .tools-container { 
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .tool-header { flex-direction: column; text-align: center; }
    .tool-title { font-size: 1.5rem; }
    .tool-icon-wrapper { width: 50px; height: 50px; }
    .tool-icon-wrapper i { font-size: 1.8rem; }
    .cyber-btn { padding: 0.7rem 1.5rem; font-size: 1rem; }
}

@media (max-width: 480px) {
    .slider-container { height: 550px; }
    .slide-image { flex: 0 0 30%; }
    .nav-arrow { width: 38px; height: 38px; font-size: 18px; }
    
    .tools-container {
        gap: 30px;
    }
    
    .tool-card {
        padding: 30px 20px;
    }
    
    .tool-title {
        font-size: 1.5rem;
    }
    
    .tool-description {
        font-size: 0.95rem;
        padding: 15px;
    }
}
/* ========== КОНЕЦ АДАПТИВНОСТИ ========== */