/* ===== RESET & БАЗОВЫЕ НАСТРОЙКИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #050510;
    color: #c8e4ff;
    overflow-x: hidden;
    line-height: 1.6;
    cursor: crosshair;
}

/* Статичный шум (Noise overlay) */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: repeating-radial-gradient(circle at 50% 50%, rgba(0,0,0,0) 0%, rgba(0,20,40,0.02) 100%);
    background-size: 3px 3px;
    mix-blend-mode: overlay;
    z-index: 10;
    opacity: 0.6;
    animation: noiseShift 0.5s steps(2) infinite;
}

@keyframes noiseShift {
    0% { background-position: 0 0; }
    100% { background-position: 2px 2px; }
}

/* Three.js Canvas */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Основной контент */
.content {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    pointer-events: none;
}

.content * {
    pointer-events: auto;
}

/* ===== ТИПОГРАФИКА ТЕРМИНАЛА ===== */
h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #a0f0ff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.7), 0 0 5px rgba(0, 0, 0, 0.8);
    border-right: 3px solid #00ffff;
    white-space: nowrap;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #ff6b9d;
    text-shadow: 0 0 15px rgba(255, 107, 157, 0.5);
    letter-spacing: 4px;
    margin-bottom: 40px;
    border-bottom: 1px solid #ff6b9d50;
    padding-bottom: 15px;
    display: inline-block;
}

h3 {
    font-size: 1.6rem;
    color: #a0f0ff;
    margin-bottom: 15px;
}

.glitch-text {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% { transform: skew(0deg); opacity: 1; }
    95% { transform: skew(2deg); opacity: 0.8; text-shadow: 3px 0 #ff00c1, -3px 0 #00fff9; }
    96% { transform: skew(-2deg); opacity: 1; text-shadow: none; }
}

/* ===== HERO SECTION ===== */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.coordinates {
    font-size: 1.2rem;
    color: #7a9bcb;
    letter-spacing: 3px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-second-line {
    animation-delay: 1s;
    opacity: 0;
    animation: fadeInUp 0.5s forwards 1.5s;
}

.subtitle {
    font-size: 1.2rem;
    color: #b0d0ff;
    max-width: 600px;
    margin-top: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.warning-text {
    color: #ffaa00;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 0.9; transform: translateY(0); }
}

.typewriter {
    overflow: hidden;
    border-right: 3px solid #00ffff;
    white-space: nowrap;
    margin: 0 auto 0 0;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
    max-width: fit-content;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #00ffff; }
}

/* ===== СЕКЦИИ С ПАРАЛЛАКСОМ ===== */
.section {
    min-height: 100vh;
    padding: 120px 0;
    position: relative;
    transition: filter 0.1s linear;
}

/* ===== МИССИЯ ===== */
.mission-content {
    max-width: 800px;
    background: rgba(5, 15, 25, 0.5);
    padding: 30px;
    border-left: 4px solid #00ffff;
    backdrop-filter: blur(4px);
}

.mission-subject {
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.mission-content p {
    margin-bottom: 15px;
}

.mission-content p:last-child {
    margin-bottom: 0;
}

/* ===== ГОЛОГРАФИЧЕСКИЕ КАРТОЧКИ ===== */
.grid-3x2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.holo-card {
    background: rgba(10, 25, 45, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid #00ffff30;
    border-radius: 8px;
    padding: 30px 25px;
    color: #d0e8ff;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
    transition: box-shadow 0.3s, transform 0.1s ease-out;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    will-change: transform;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.holo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 65%, rgba(0, 255, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

.holo-card h3 {
    color: #ff9bc0;
    border-left: 3px solid #ff6b9d;
    padding-left: 15px;
}

.holo-card .tag {
    display: inline-block;
    background: #0a1a2a;
    border: 1px solid #3a6a9a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 15px;
    margin-right: 8px;
    color: #aac8ff;
}

.holo-card:hover {
    border-color: #ff6b9d80;
    box-shadow: 0 0 30px #ff6b9d40, 0 0 15px #00ffff30;
}

/* ===== ТЕЛЕМЕТРИЯ / ФУТЕР ===== */
.telemetry {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid #3a5a7a;
    margin-top: 60px;
    font-size: 1.1rem;
    flex-wrap: wrap;
    gap: 20px;
}

.signal-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.signal-level {
    display: flex;
    gap: 4px;
}

.signal-level span {
    width: 8px;
    height: 20px;
    background: #2a4a6a;
    border-radius: 2px;
}

.signal-level span.active {
    background: #00ffcc;
    box-shadow: 0 0 10px #00ffcc;
}

.ticker {
    background: #0a1520;
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid #2a5a7a;
    font-family: monospace;
    letter-spacing: 2px;
}

.footer-end {
    text-align: right;
    padding: 20px 0;
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .content {
        padding: 0 20px;
    }
    
    h1 {
        white-space: normal;
        border-right: none;
    }
    
    .typewriter {
        white-space: normal;
        animation: none;
        border-right: none;
    }
    
    .telemetry {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Мини 3D-сцена в углу */
#mini-3d {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid #00ffff40;
    box-shadow: 0 0 40px #00000080;
    z-index: 20;
    pointer-events: none;
    opacity: 0.7;
    backdrop-filter: blur(2px);
}

@media (max-width: 768px) {
    #mini-3d {
        display: none;
    }
}
/* ===== НАВИГАЦИЯ ===== */
.space-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 40px;
    background: linear-gradient(to bottom, rgba(5, 5, 16, 0.95) 0%, rgba(5, 5, 16, 0) 100%);
    backdrop-filter: blur(5px);
    pointer-events: none;
}

.space-nav * {
    pointer-events: auto;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: bold;
    color: #a0f0ff;
    text-decoration: none;
    text-shadow: 0 0 15px #00ffff80;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-symbol {
    color: #ff6b9d;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px #ff6b9d; }
    50% { opacity: 0.6; text-shadow: 0 0 20px #ff6b9d; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #8ab0d0;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #a0f0ff;
}

.nav-link.active {
    color: #ff9bc0;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b9d;
    box-shadow: 0 0 10px #ff6b9d;
}

.nav-link.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6ab0a0;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00ff88;
    box-shadow: 0 0 15px #00ff88;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* КНОПКА CTA */
.hero-cta {
    margin-top: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.5s forwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 35px;
    background: rgba(10, 30, 50, 0.7);
    border: 1px solid #00ffff60;
    border-radius: 50px;
    color: #a0f0ff;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 3px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    box-shadow: 0 0 30px #00000050;
}

.cta-button:hover {
    background: rgba(20, 50, 80, 0.8);
    border-color: #ff6b9d;
    box-shadow: 0 0 40px #ff6b9d40, 0 0 20px #00ffff30;
    transform: translateY(-3px);
}

.cta-icon {
    font-size: 1.5rem;
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* ССЫЛКА В СЕКЦИИ */
.section-link {
    margin-top: 40px;
    text-align: right;
}

.text-link {
    color: #8ab0d0;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border-bottom: 1px solid #3a6a9a;
    padding-bottom: 5px;
    transition: all 0.3s;
}

.text-link:hover {
    color: #a0f0ff;
    border-bottom-color: #00ffff;
}

/* ===== СТРАНИЦА БОРТОВОГО ЖУРНАЛА ===== */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #8ab0d0;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 2px;
    margin: 120px 0 30px 0;
    padding: 10px 20px;
    border: 1px solid #3a6a9a;
    border-radius: 30px;
    transition: all 0.3s;
}

.back-button:hover {
    color: #a0f0ff;
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.05);
}

.back-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.back-button:hover .back-arrow {
    transform: translateX(-5px);
}

.page-header {
    margin-bottom: 50px;
}

.page-title {
    font-size: clamp(2rem, 6vw, 4rem);
    color: #a0f0ff;
    text-shadow: 0 0 30px #00ffff80;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.page-subtitle {
    display: flex;
    gap: 30px;
    color: #7a9bcb;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* ФИЛЬТРЫ */
.log-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(10, 25, 45, 0.5);
    border: 1px solid #2a5a7a;
    color: #8ab0d0;
    padding: 10px 25px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.filter-btn:hover {
    background: rgba(20, 50, 80, 0.7);
    border-color: #5a9aca;
    color: #c0e0ff;
}

.filter-btn.active {
    background: rgba(0, 150, 200, 0.3);
    border-color: #00ffff;
    color: #a0f0ff;
    box-shadow: 0 0 20px #00ffff30;
}

/* ТАБЛИЦА ЗАПИСЕЙ */
.log-table-section {
    background: rgba(5, 15, 25, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #2a5a7a;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
}

.log-table-header {
    display: grid;
    grid-template-columns: 80px 2fr 1fr 1fr 120px;
    background: rgba(10, 30, 50, 0.8);
    padding: 20px 30px;
    border-bottom: 1px solid #3a6a9a;
    color: #a0f0ff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.log-entries {
    max-height: 500px;
    overflow-y: auto;
}

.log-entry {
    display: grid;
    grid-template-columns: 80px 2fr 1fr 1fr 120px;
    padding: 20px 30px;
    border-bottom: 1px solid #1a3a5a;
    transition: all 0.3s;
    cursor: pointer;
}

.log-entry:hover {
    background: rgba(20, 60, 100, 0.3);
    border-left: 3px solid #00ffff;
}

.log-entry:last-child {
    border-bottom: none;
}

.log-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.log-col-id {
    color: #6a9aba;
    font-family: monospace;
    font-size: 1rem;
}

.log-name-main {
    color: #c8e4ff;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.log-name-desc {
    color: #7a9bcb;
    font-size: 0.8rem;
    opacity: 0.8;
}

.type-badge,
.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    width: fit-content;
}

.type-badge.frontend {
    background: #1a3a5a;
    color: #6ab0ff;
    border: 1px solid #3a6a9a;
}

.type-badge.threejs {
    background: #2a1a3a;
    color: #c86aff;
    border: 1px solid #8a4aba;
}

.type-badge.experiment {
    background: #3a2a1a;
    color: #ffaa6a;
    border: 1px solid #ba7a4a;
}

.status-badge.active {
    background: #0a3a2a;
    color: #6affaa;
    border: 1px solid #3a9a6a;
}

.status-badge.testing {
    background: #3a3a0a;
    color: #ffff6a;
    border: 1px solid #9a9a3a;
}

.status-badge.completed {
    background: #1a3a3a;
    color: #6acaff;
    border: 1px solid #3a8a9a;
}

.log-col-date {
    color: #6a9aba;
    font-family: monospace;
}

/* СТАТИСТИКА */
.log-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.stat-card {
    background: rgba(10, 25, 45, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid #2a5a7a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: #5a9aca;
    box-shadow: 0 0 30px #00ffff20;
    transform: translateY(-5px);
}

.stat-value {
    font-size: 3rem;
    color: #a0f0ff;
    text-shadow: 0 0 20px #00ffff80;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    color: #7a9bcb;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* СКРОЛЛБАР ДЛЯ ТАБЛИЦЫ */
.log-entries::-webkit-scrollbar {
    width: 8px;
}

.log-entries::-webkit-scrollbar-track {
    background: #0a1a2a;
}

.log-entries::-webkit-scrollbar-thumb {
    background: #2a5a7a;
    border-radius: 4px;
}

.log-entries::-webkit-scrollbar-thumb:hover {
    background: #3a7aaa;
}

/* АДАПТИВ ДЛЯ НАВИГАЦИИ И ТАБЛИЦЫ */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .log-table-header,
    .log-entry {
        grid-template-columns: 60px 1.5fr 1fr 1fr 100px;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .space-nav {
        padding: 15px 20px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-status {
        display: none;
    }
    
    .page-subtitle {
        flex-direction: column;
        gap: 10px;
    }
    
    .log-table-header {
        display: none;
    }
    
    .log-entry {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
    }
    
    .log-col {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .log-col::before {
        content: attr(data-label);
        color: #5a8aaa;
        font-size: 0.8rem;
        text-transform: uppercase;
    }
    
    .log-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-cta .cta-button {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    
    .log-stats {
        grid-template-columns: 1fr;
    }
}
/* ===== СТРАНИЦА СВЯЗИ ===== */

/* СЕТКА КОНТАКТОВ */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin: 40px 0 60px;
}

/* СИГНАЛЬНЫЙ ИНДИКАТОР В ХЕДЕРЕ */
.signal-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.signal-wave {
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 15px #00ff88;
    animation: wave-pulse 1.5s infinite;
}

@keyframes wave-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.encryption-badge {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff8860;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ФОРМА */
.contact-form-section {
    background: rgba(5, 15, 25, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #2a5a7a;
    border-radius: 16px;
    padding: 40px;
}

.form-header h2 {
    margin-bottom: 10px;
}

.form-desc {
    color: #7a9bcb;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.space-form .form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #a0f0ff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.label-icon {
    font-size: 1.2rem;
}

.form-input {
    width: 100%;
    background: rgba(10, 25, 40, 0.6);
    border: none;
    border-bottom: 1px solid #3a6a9a;
    padding: 12px 0;
    color: #c8e4ff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.form-input:focus {
    border-bottom-color: #00ffff;
}

.form-input::placeholder {
    color: #4a6a8a;
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: #0a1a2a;
    color: #c8e4ff;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff6b9d);
    transition: width 0.4s ease;
}

.form-input:focus ~ .input-line {
    width: 100%;
}

/* ЧЕКБОКС */
.form-checkbox {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #8ab0d0;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    background: rgba(10, 25, 40, 0.6);
    border: 1px solid #3a6a9a;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s;
}

.checkbox-label input:checked ~ .checkmark {
    background: #00ff8860;
    border-color: #00ff88;
    box-shadow: 0 0 10px #00ff8860;
}

.checkbox-label input:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #00ff88;
    font-size: 14px;
}

/* КНОПКА ОТПРАВКИ */
.submit-btn {
    position: relative;
    width: 100%;
    padding: 18px;
    background: rgba(10, 40, 60, 0.8);
    border: 1px solid #00ffff60;
    border-radius: 50px;
    color: #a0f0ff;
    font-family: inherit;
    font-size: 1.1rem;
    letter-spacing: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    backdrop-filter: blur(5px);
    overflow: hidden;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: rgba(20, 70, 100, 0.9);
    border-color: #ff6b9d;
    box-shadow: 0 0 40px #ff6b9d40, 0 0 20px #00ffff30;
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.3rem;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.submit-btn:hover .btn-glow {
    left: 100%;
}

/* СТАТУС ФОРМЫ */
.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff8860;
    color: #6affaa;
}

.form-status.error {
    display: block;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff446060;
    color: #ff8a8a;
}

/* ГОЛОГРАММА-КАРТА */
.hologram-card {
    background: rgba(5, 15, 25, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #2a5a7a;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
}

.hologram-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.hologram-title {
    color: #a0f0ff;
    font-size: 1rem;
    letter-spacing: 2px;
}

.hologram-status {
    color: #00ff88;
    font-size: 0.8rem;
    padding: 3px 10px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff8860;
    border-radius: 20px;
}

.hologram-map {
    position: relative;
    height: 200px;
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid #1a4a6a;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
}

.point-pulse {
    display: block;
    width: 12px;
    height: 12px;
    background: #ff6b9d;
    border-radius: 50%;
    box-shadow: 0 0 20px #ff6b9d;
    animation: point-pulse 2s infinite;
}

@keyframes point-pulse {
    0% { box-shadow: 0 0 10px #ff6b9d; }
    50% { box-shadow: 0 0 30px #ff6b9d, 0 0 10px #ff6b9d; }
    100% { box-shadow: 0 0 10px #ff6b9d; }
}

.point-label {
    position: absolute;
    top: 20px;
    left: 20px;
    white-space: nowrap;
    color: #ff9bc0;
    font-size: 0.8rem;
    text-shadow: 0 0 10px #ff6b9d;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: 4px;
    border-left: 2px solid #ff6b9d;
}

.map-orbit {
    position: absolute;
    top: 45%;
    left: 55%;
    width: 80px;
    height: 80px;
    border: 1px dashed #00ffff40;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbit-rotate 10s linear infinite;
}

@keyframes orbit-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hologram-coords {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.coord-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.coord-label {
    color: #5a8aaa;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.coord-value {
    color: #a0f0ff;
    font-size: 0.9rem;
    font-family: monospace;
}

/* КАРТОЧКИ КОНТАКТОВ */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(5, 15, 25, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #2a5a7a;
    border-radius: 12px;
    padding: 20px 25px;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: #5a9aca;
    box-shadow: 0 0 20px #00ffff20;
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px #00ffff80);
}

.contact-info h4 {
    color: #a0f0ff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contact-info p {
    color: #8ab0d0;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.contact-status {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.contact-status.online {
    color: #00ff88;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #8ab0d0;
    text-decoration: none;
    padding: 5px 12px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid #2a5a7a;
    border-radius: 20px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.social-link:hover {
    color: #a0f0ff;
    border-color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
}

.response-time {
    color: #a0f0ff;
    font-size: 1.2rem;
    font-family: monospace;
    margin-bottom: 8px;
}

.time-bar {
    height: 4px;
    background: #1a3a5a;
    border-radius: 2px;
    overflow: hidden;
}

.time-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00ffff);
    border-radius: 2px;
    box-shadow: 0 0 10px #00ff88;
}

/* СИГНАЛЬНЫЙ ТЕРМИНАЛ */
.signal-terminal {
    background: #0a1220;
    border: 1px solid #1a3a5a;
    border-radius: 8px;
    overflow: hidden;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: #0d1a2a;
    border-bottom: 1px solid #1a3a5a;
}

.terminal-title {
    color: #6a9aba;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.terminal-blink {
    color: #00ff88;
    animation: blink 1s infinite;
}

.terminal-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
}

.terminal-line {
    color: #6ab0a0;
}

.terminal-cursor {
    color: #00ff88;
}

/* АДАПТИВ ДЛЯ СТРАНИЦЫ СВЯЗИ */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hologram-coords {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 25px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hologram-map {
        height: 150px;
    }
}
/* ===== СТРАНИЦА ДЕТАЛЕЙ ПРОЕКТА ===== */

.detail-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 120px 0 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.project-nav-buttons {
    display: flex;
    gap: 15px;
}

.nav-project-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(10, 25, 45, 0.5);
    border: 1px solid #2a5a7a;
    border-radius: 30px;
    color: #8ab0d0;
    font-family: inherit;
    font-size: 0.9rem;
    letter-spacing: 2px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.nav-project-btn:hover:not(:disabled) {
    background: rgba(20, 50, 80, 0.7);
    border-color: #5a9aca;
    color: #c0e0ff;
}

.nav-project-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ХЕРО ПРОЕКТА */
.project-hero {
    margin-bottom: 50px;
}

.project-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff60;
    border-radius: 30px;
    color: #a0f0ff;
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.project-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.project-type,
.project-status,
.project-date {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.project-type {
    background: #1a3a5a;
    color: #6ab0ff;
    border: 1px solid #3a6a9a;
}

.project-status {
    background: #0a3a2a;
    color: #6affaa;
    border: 1px solid #3a9a6a;
}

.project-date {
    background: #2a2a4a;
    color: #b0a0ff;
    border: 1px solid #6a5a9a;
}

/* СЕТКА КОНТЕНТА */
.project-content-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* ИНФО БЛОКИ */
.info-block {
    background: rgba(5, 15, 25, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #2a5a7a;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
}

.info-block h3 {
    color: #a0f0ff;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-block p {
    color: #b0d0e8;
    line-height: 1.8;
}

/* ТЕХНОЛОГИИ */
.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    padding: 8px 16px;
    background: rgba(20, 40, 60, 0.6);
    border: 1px solid #3a6a9a;
    border-radius: 30px;
    color: #a0d0ff;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* СПИСОК ОСОБЕННОСТЕЙ */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: #b0d0e8;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.features-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #00ffff;
}

/* ССЫЛКИ ПРОЕКТА */
.project-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(20, 40, 60, 0.5);
    border: 1px solid #2a5a7a;
    border-radius: 30px;
    color: #8ab0d0;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.project-link:hover {
    background: rgba(30, 60, 90, 0.7);
    border-color: #5a9aca;
    color: #c0e0ff;
    transform: translateY(-2px);
}

/* ПРЕВЬЮ КАРТОЧКА */
.preview-card {
    background: rgba(5, 15, 25, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #2a5a7a;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #8ab0d0;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.preview-status {
    color: #00ff88;
}

.preview-canvas {
    width: 100%;
    height: 250px;
    background: rgba(0, 20, 40, 0.5);
    border: 1px solid #1a4a6a;
    border-radius: 8px;
    overflow: hidden;
}

/* СТАТИСТИКА ПРОЕКТА */
.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-item {
    background: rgba(5, 15, 25, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #2a5a7a;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    color: #a0f0ff;
    text-shadow: 0 0 15px #00ffff80;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    color: #7a9bcb;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ПРОГРЕСС */
.project-progress {
    background: rgba(5, 15, 25, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid #2a5a7a;
    border-radius: 12px;
    padding: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #8ab0d0;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.progress-bar-container {
    height: 8px;
    background: #0a1a2a;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00ffff);
    border-radius: 4px;
    box-shadow: 0 0 15px #00ff88;
    transition: width 0.5s ease;
}

/* ГАЛЕРЕЯ */
.project-gallery {
    margin: 40px 0 60px;
}

.project-gallery h3 {
    color: #a0f0ff;
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    aspect-ratio: 16 / 9;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(5, 15, 25, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid #2a5a7a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a8aaa;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-placeholder:hover {
    border-color: #5a9aca;
    color: #8ab0d0;
    box-shadow: 0 0 20px #00ffff20;
}

/* АДАПТИВ ДЛЯ ДЕТАЛЕЙ */
@media (max-width: 1024px) {
    .project-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .detail-nav {
        margin-top: 100px;
    }
    
    .project-nav-buttons {
        width: 100%;
        justify-content: space-between;
    }
    
    .nav-project-btn {
        flex: 1;
        justify-content: center;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .project-links {
        flex-direction: column;
    }
    
    .project-link {
        justify-content: center;
    }
}