/* Tactical Futuristic Design - NERV Corporation Style */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    background: #f5f5f5;
    color: #333;
    line-height: 1.6;
    overflow: hidden; /* Убираем вертикальный скролл для десктопа */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid Layout System */
.tactical-grid {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    grid-template-rows: 80px 1fr 60px;
    height: 100vh; /* Фиксированная высота для десктопа */
    gap: 1px;
    background: #333;
    overflow: hidden; /* Убираем скролл для десктопа */
}

/* Header */
.tactical-header {
    grid-column: 1 / -1;
    grid-row: 1;
    background: #2a2a2a;
    border-bottom: 0px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    position: relative;
    animation: slideDown 0.8s ease-out;
    /* Убираем эффекты расширения */
    transform: none !important;
    transition: none !important;
    /* Добавляем высокий z-index чтобы хедер был поверх частиц */
    z-index: 1000;
}

/* Убираем hover эффекты для хедера */
.tactical-header:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Убираем голографические эффекты для хедера */
.tactical-header.holographic-effect::before,
.tactical-header.holographic-effect::after {
    display: none;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: fadeInLeft 1s ease-out 0.2s both;
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00aa00;
    animation: expandWidth 1s ease-out 1s forwards;
}

@keyframes expandWidth {
    to {
        width: 100%;
    }
}

.logo-placeholder {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

.main-interface {
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeIn 1s ease-out 0.4s both;
}

.header-links {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: fadeIn 1s ease-out 0.6s both;
}

.header-link {
    color: #666;
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.header-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #00aa00;
    transition: width 0.3s ease;
}

.header-link:hover::before {
    width: 100%;
}

.header-link:hover {
    color: #333;
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.8s both;
    /* Улучшаем позиционирование кнопок */
    position: relative;
    z-index: 1001;
}

@keyframes fadeInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.action-btn {
    background: #333;
    border: 1px solid #666;
    color: #fff;
    padding: 10px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    /* Улучшаем видимость кнопок */
    white-space: nowrap;
    min-width: 90px;
    text-align: center;
    font-weight: 600;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn:hover {
    background: #666;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.action-btn.primary {
    background: #00aa00;
    border-color: #00aa00;
    color: #fff;
}

.action-btn.primary:hover {
    background: #008800;
    border-color: #008800;
    box-shadow: 0 4px 12px rgba(0,170,0,0.4);
}

.action-btn.secondary {
    background: #f0f0f0;
    border-color: #333;
    color: #333;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.action-btn.secondary:hover {
    background: #333;
    color: #fff;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Header bottom bar */
.header-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 11px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideUp 0.8s ease-out 1s both;
    /* Добавляем z-index для bottom bar */
    z-index: 1001;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Left Sidebar - Filter/Menu */
.tactical-sidebar-left {
    grid-column: 1;
    grid-row: 2;
    background: #e8e8e8;
    border-right: 2px solid #333;
    padding: 20px;
    position: relative;
    overflow-y: auto;
    animation: slideInLeft 1s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sidebar-label {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left center;
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    animation: fadeIn 1s ease-out 1.2s both;
}

.menu-section {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.menu-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.menu-title {
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #00aa00;
    border-radius: 50%;
    box-shadow: 0 0 5px #00aa00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
    }
    50% { 
        opacity: 0.5; 
        transform: scale(1.2);
    }
}

.status-text {
    font-size: 10px;
    color: #00aa00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-grid {
    display: grid;
    gap: 10px;
}

.category-item {
    background: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 0.6s ease-out both;
    /* Улучшаем читаемость */
    color: #333;
}

.category-item:nth-child(1) { animation-delay: 0.6s; }
.category-item:nth-child(2) { animation-delay: 0.7s; }
.category-item:nth-child(3) { animation-delay: 0.8s; }
.category-item:nth-child(4) { animation-delay: 0.9s; }
.category-item:nth-child(5) { animation-delay: 1.0s; }
.category-item:nth-child(6) { animation-delay: 1.1s; }

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,170,0,0.1), transparent);
    transition: left 0.5s ease;
}

.category-item:hover::before {
    left: 100%;
}

.category-item:hover {
    border-color: #333;
    background: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateX(5px);
    /* Улучшаем читаемость при hover */
    color: #000;
}

.category-item.active {
    border-color: #00aa00;
    background: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0,170,0,0.3);
    transform: translateX(5px);
    /* Улучшаем читаемость активного состояния */
    color: #000;
}

.category-icon {
    width: 30px;
    height: 30px;
    background: #333;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    /* Убираем анимацию полностью */
    /* animation: scan 2s infinite; */
}

/* Убираем анимацию для активного элемента */
/* .category-item.enhanced.active .category-icon::before {
    animation: scan 2s infinite;
} */

/* Анимация для всей кнопки активного элемента - используем ::after */
.category-item.enhanced.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,170,0,0.3), transparent);
    animation: scanFull 2s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes scan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes scanFull {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.category-item:hover .category-icon {
    background: #00aa00;
    border-color: #00aa00;
    transform: scale(1.1);
}

.category-item.active .category-icon {
    background: #00aa00;
    border-color: #00aa00;
    box-shadow: 0 0 10px rgba(0,170,0,0.5);
    color: #000; /* Темный цвет для иконок на зеленом фоне */
}

/* Улучшаем видимость иконок в активном состоянии */
.category-item.active .category-icon i {
    color: #000; /* Принудительно устанавливаем черный цвет для иконок */
    text-shadow: 0 0 2px rgba(255,255,255,0.5); /* Добавляем белую тень для лучшей видимости */
}

/* Также улучшаем видимость при hover */
.category-item:hover .category-icon i {
    color: #000;
    text-shadow: 0 0 2px rgba(255,255,255,0.5);
}

.category-name {
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    /* Улучшаем читаемость */
    text-shadow: none;
}

.category-item:hover .category-name {
    color: #00aa00;
    /* Улучшаем читаемость при hover */
    font-weight: 700;
}

.category-item.active .category-name {
    color: #00aa00;
    /* Улучшаем читаемость активного состояния */
    font-weight: 700;
}

/* Language Section */
.language-section {
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.language-dropdown:hover {
    border-color: #333;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
}

.language-dropdown-toggle:hover {
    background: #f9f9f9;
}

.language-dropdown-toggle .language-icon {
    width: 25px;
    height: 25px;
    background: #333;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    flex-shrink: 0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.language-dropdown-toggle:hover .language-icon {
    background: #00aa00;
    border-color: #00aa00;
    transform: scale(1.1);
}

.language-dropdown-toggle .language-name {
    font-size: 11px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.language-dropdown-toggle:hover .language-name {
    color: #00aa00;
    font-weight: 700;
}

.dropdown-arrow {
    font-size: 10px;
    color: #666;
    transition: all 0.3s ease;
    margin-left: auto;
}

.language-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #00aa00;
}

.language-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
    border-top: 1px solid transparent;
}

.language-dropdown.active .language-dropdown-menu {
    max-height: 200px;
    border-top-color: #ccc;
}

.language-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.language-dropdown-item:last-child {
    border-bottom: none;
}

.language-dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,170,0,0.1), transparent);
    transition: left 0.5s ease;
}

.language-dropdown-item:hover::before {
    left: 100%;
}

.language-dropdown-item:hover {
    background: #f9f9f9;
    color: #000;
    text-decoration: none;
    transform: translateX(3px);
    font-weight: 700;
}

.language-dropdown-item.active {
    background: #f0f0f0;
    color: #000;
    font-weight: 700;
    border-left: 3px solid #00aa00;
}

.language-dropdown-item .language-icon {
    width: 25px;
    height: 25px;
    background: #333;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    flex-shrink: 0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.language-dropdown-item:hover .language-icon {
    background: #00aa00;
    border-color: #00aa00;
    transform: scale(1.1);
}

.language-dropdown-item.active .language-icon {
    background: #00aa00;
    border-color: #00aa00;
    box-shadow: 0 0 8px rgba(0,170,0,0.4);
}

.language-dropdown-item .language-name {
    font-size: 11px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.language-dropdown-item:hover .language-name {
    color: #00aa00;
    font-weight: 700;
}

.language-dropdown-item.active .language-name {
    color: #00aa00;
    font-weight: 700;
}

/* Legacy language grid (keeping for compatibility) */
.language-grid {
    display: grid;
    gap: 8px;
}

.language-item {
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    /* Улучшаем читаемость */
    font-weight: 600;
}

.language-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,170,0,0.1), transparent);
    transition: left 0.5s ease;
}

.language-item:hover::before {
    left: 100%;
}

.language-item:hover {
    border-color: #333;
    background: #f9f9f9;
    text-decoration: none;
    color: #000;
    transform: translateX(3px);
    /* Улучшаем читаемость при hover */
    font-weight: 700;
}

.language-item.active {
    border-color: #00aa00;
    background: #f0f0f0;
    transform: translateX(3px);
    /* Улучшаем читаемость активного состояния */
    color: #000;
    font-weight: 700;
}

.language-icon {
    width: 25px;
    height: 25px;
    background: #333;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    flex-shrink: 0;
    font-weight: bold;
    transition: all 0.3s ease;
}

.language-item:hover .language-icon {
    background: #00aa00;
    border-color: #00aa00;
    transform: scale(1.1);
}

.language-item.active .language-icon {
    background: #00aa00;
    border-color: #00aa00;
    box-shadow: 0 0 8px rgba(0,170,0,0.4);
}

.language-name {
    font-size: 11px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    /* Улучшаем читаемость */
    text-shadow: none;
}

.language-item:hover .language-name {
    color: #00aa00;
    /* Улучшаем читаемость при hover */
    font-weight: 700;
}

.language-item.active .language-name {
    color: #00aa00;
    /* Улучшаем читаемость активного состояния */
    font-weight: 700;
}

.expansion-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    animation: fadeIn 1s ease-out 1.5s both;
}

/* Main Content Area */
.tactical-main {
    grid-column: 2;
    grid-row: 2;
    background: #f5f5f5;
    padding: 30px;
    position: relative;
    overflow-y: auto;
    animation: slideInRight 1s ease-out 0.4s both;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Content Sections */
.content-section {
    display: none;
    animation: fadeInScale 0.5s ease;
    min-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: none;
}

.content-section.active {
    display: block;
}

@keyframes fadeInScale {
    from { 
        opacity: 0; 
        transform: scale(0.95) translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: scale(1) translateY(0); 
    }
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.section-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #00aa00;
    animation: expandWidth 0.8s ease-out 0.5s forwards;
}

/* Hero Content */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,170,0,0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    border-color: #00aa00;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    animation: countUp 2s ease-out 1s both;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-image {
    animation: fadeInRight 1s ease-out 0.7s both;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0,170,0,0.1) 50%, transparent 70%);
    animation: scan 3s infinite;
    pointer-events: none;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.hero-image:hover img {
    border-color: #00aa00;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.about-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
    animation: fadeInUp 0.8s ease-out both;
}

.about-text p:nth-child(1) { animation-delay: 0.4s; }
.about-text p:nth-child(2) { animation-delay: 0.5s; }
.about-text p:nth-child(3) { animation-delay: 0.6s; }
.about-text p:nth-child(4) { animation-delay: 0.7s; }
.about-text p:nth-child(5) { animation-delay: 0.8s; }
.about-text p:nth-child(6) { animation-delay: 0.9s; }

/* Trust Section Styles */
.trust-section {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f9f9f9, #f0f0f0);
    border-left: 4px solid #00aa00;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 170, 0, 0.1);
    animation: fadeInUp 1s ease-out 1s both;
}

.trust-section h3 {
    color: #00aa00;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.trust-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #00aa00;
    animation: expandWidth 0.8s ease-out 1.2s forwards;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.trust-item {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.trust-item:nth-child(1) { animation-delay: 1.1s; }
.trust-item:nth-child(2) { animation-delay: 1.2s; }
.trust-item:nth-child(3) { animation-delay: 1.3s; }
.trust-item:nth-child(4) { animation-delay: 1.4s; }
.trust-item:nth-child(5) { animation-delay: 1.5s; }
.trust-item:nth-child(6) { animation-delay: 1.6s; }
.trust-item:nth-child(7) { animation-delay: 1.7s; }
.trust-item:nth-child(8) { animation-delay: 1.8s; }
.trust-item:nth-child(9) { animation-delay: 1.9s; }
.trust-item:nth-child(10) { animation-delay: 2.0s; }
.trust-item:nth-child(11) { animation-delay: 2.1s; }
.trust-item:nth-child(12) { animation-delay: 2.2s; }
.trust-item:nth-child(13) { animation-delay: 2.3s; }
.trust-item:nth-child(14) { animation-delay: 2.4s; }
.trust-item:nth-child(15) { animation-delay: 2.5s; }
.trust-item:nth-child(16) { animation-delay: 2.6s; }

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.trust-item:hover::before {
    left: 100%;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 170, 0, 0.15);
    border-color: #00aa00;
}

.trust-item h4 {
    color: #333;
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.trust-item:hover h4 {
    color: #00aa00;
}

.trust-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: all 0.3s ease;
}

.trust-item:hover p {
    color: #555;
}

.about-image {
    animation: fadeInRight 1s ease-out 0.7s both;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0,170,0,0.1) 50%, transparent 70%);
    animation: scan 3s infinite;
    pointer-events: none;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.about-image:hover img {
    border-color: #00aa00;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.service-item {
    background: #fff;
    border: 1px solid #ccc;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.service-item:nth-child(1) { animation-delay: 0.4s; }
.service-item:nth-child(2) { animation-delay: 0.5s; }
.service-item:nth-child(3) { animation-delay: 0.6s; }
.service-item:nth-child(4) { animation-delay: 0.7s; }
.service-item:nth-child(5) { animation-delay: 0.8s; }
.service-item:nth-child(6) { animation-delay: 0.9s; }

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,170,0,0.1), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    border-color: #00aa00;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-icon {
    margin-bottom: 20px;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0,170,0,0.1) 0%, transparent 70%);
    animation: pulse 3s infinite;
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(0.7);
}

.service-item:hover .service-icon img {
    transform: scale(1.1);
}

.service-item h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.service-item:hover h4 {
    color: #00aa00;
}

.service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Documents Content */
.documents-content {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.documents-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.document-link {
    display: inline-block;
    position: relative;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.document-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(0,170,0,0.1) 50%, transparent 70%);
    animation: scan 3s infinite;
    pointer-events: none;
}

.document-link img {
    max-width: 100%;
    height: auto;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.document-link:hover img {
    border-color: #00aa00;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: scale(1.02);
}

/* FAQ Content */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.faq-item {
    background: #fff;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
    position: relative;
    overflow: hidden;
}

.faq-item:nth-child(1) { animation-delay: 0.4s; }
.faq-item:nth-child(2) { animation-delay: 0.5s; }
.faq-item:nth-child(3) { animation-delay: 0.6s; }
.faq-item:nth-child(4) { animation-delay: 0.7s; }

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,170,0,0.1), transparent);
    transition: left 0.5s ease;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    border-color: #00aa00;
    transform: translateX(5px);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h5 {
    font-size: 14px;
    color: #333;
    margin: 0;
    transition: all 0.3s ease;
}

.faq-question:hover h5 {
    color: #00aa00;
}

.faq-question i {
    font-size: 12px;
    color: #666;
    transition: all 0.3s ease;
}

.faq-question:hover i {
    color: #00aa00;
    transform: scale(1.2);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none; /* Добавляем display: none по умолчанию */
}

.faq-answer.active {
    max-height: 200px; /* Максимальная высота для анимации */
    display: block;
    overflow: auto;
}

.faq-answer p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding: 20px 0;
    overflow: auto;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.contact-info {
    background: #fff;
    border: 1px solid #ccc;
    padding: 30px;
    animation: fadeInLeft 1s ease-out 0.5s both;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 5px;
}

.contact-item:hover {
    background: #f9f9f9;
    transform: translateX(5px);
}

.contact-item i {
    font-size: 18px;
    color: #333;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    color: #00aa00;
    transform: scale(1.2);
}

.contact-item span {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.social-links {
    margin-top: 30px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.social-links span {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #333;
    border: 1px solid #666;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: #00aa00;
    border-color: #00aa00;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 15px rgba(0,170,0,0.3);
}

/* Contact Form */
.contact-form {
    background: #fff;
    border: 1px solid #ccc;
    padding: 30px;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
}

.form-control:focus {
    outline: none;
    border-color: #00aa00;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,170,0,0.2);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

/* Right Sidebar - Media Community */
.tactical-sidebar-right {
    grid-column: 3;
    grid-row: 2;
    background: #e8e8e8;
    border-left: 2px solid #333;
    padding: 20px;
    position: relative;
    animation: slideInRight 1s ease-out 0.5s both;
}

.community-label {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    animation: fadeIn 1s ease-out 1.3s both;
}

.model-line {
    font-size: 12px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.instagram-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.instagram-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.instagram-icon:hover::before {
    left: 100%;
}

.instagram-icon:hover {
    background: #00aa00;
    border-color: #00aa00;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0,170,0,0.3);
    transform: translateY(-3px) scale(1.1);
}

.community-text {
    text-align: center;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.community-line {
    font-size: 11px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.community-line:hover {
    color: #00aa00;
    transform: translateX(3px);
}

.brain-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: #333;
    border: 1px solid #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out 1.5s both;
}

.brain-icon:hover {
    background: #00aa00;
    border-color: #00aa00;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(0,170,0,0.5);
}

/* Footer */
.tactical-footer {
    grid-column: 1 / -1;
    grid-row: 3;
    background: #2a2a2a;
    border-top: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 10px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideUp 0.8s ease-out 1.2s both;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .tactical-grid {
        grid-template-columns: 220px 1fr 280px;
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1200px) {
    .tactical-grid {
        grid-template-columns: 200px 1fr 250px;
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 20px;
    }
}

@media (max-width: 992px) {
    .tactical-grid {
        grid-template-columns: 180px 1fr 200px;
    }
    
    .tactical-header {
        padding: 0 20px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .action-btn {
        padding: 8px 15px;
        font-size: 11px;
        min-width: 80px;
    }
    
    .hero-content {
        gap: 25px;
    }
    
    .about-content {
        gap: 25px;
    }
    
    .contact-content {
        gap: 25px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 15px;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .hero-stats {
        gap: 12px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .stat-number {
        font-size: 18px;
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    /* Разрешаем скролл для мобильных */
    body {
        overflow: auto;
    }
    
    .tactical-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto;
        height: auto;
        min-height: 100vh;
        gap: 0;
        overflow: visible; /* Разрешаем скролл на мобильных */
    }
    
    .tactical-header {
        grid-column: 1;
        grid-row: 1;
        padding: 10px 15px;
        height: auto;
        min-height: 60px;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .action-btn {
        padding: 8px 15px;
        font-size: 11px;
        min-width: 70px;
    }
    
    .tactical-sidebar-left {
        grid-column: 1;
        grid-row: 2;
        height: auto;
        max-height: none;
        overflow-y: visible;
        padding: 15px;
        border-right: none;
        border-bottom: 2px solid #333;
    }
    
    .tactical-main {
        grid-column: 1;
        grid-row: 3;
        height: auto;
        overflow-y: visible;
        padding: 20px;
        min-height: 60vh;
    }
    
    .tactical-sidebar-right {
        grid-column: 1;
        grid-row: 4;
        height: auto;
        max-height: none;
        padding: 15px;
        border-left: none;
        border-top: 2px solid #333;
    }
    
    .tactical-footer {
        grid-column: 1;
        grid-row: 5;
        height: auto;
        min-height: 50px;
        padding: 10px 15px;
        position: relative;
        bottom: auto;
    }
    
    .category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-item {
        padding: 12px;
        min-height: 60px;
    }
    
    .category-icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .category-name {
        font-size: 11px;
        font-weight: 600;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .stat-item {
        padding: 15px 10px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 10px;
        font-weight: 500;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .action-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 12px;
        font-weight: 600;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-item {
        padding: 20px;
        text-align: center;
    }
    
    .service-item h4 {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .service-item p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .contact-item {
        padding: 10px 0;
        margin-bottom: 15px;
    }
    
    .contact-item i {
        font-size: 16px;
        margin-right: 10px;
    }
    
    .contact-item span {
        font-size: 11px;
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .contact-item p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .form-control {
        padding: 12px;
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .form-control::placeholder {
        font-size: 12px;
    }
    
    .sound-indicator {
        width: 35px;
        height: 35px;
        margin: 0 auto 15px;
    }
    
    .sound-indicator i {
        font-size: 14px;
    }
    
    .tactical-notification {
        bottom: 10px;
        right: 10px;
        left: auto;
        transform: none;
        font-size: 12px;
        padding: 12px 15px;
        max-width: 250px;
    }
    
    /* Mobile Language Dropdown */
    .language-dropdown-toggle {
        padding: 12px;
    }
    
    .language-dropdown-toggle .language-icon {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
    
    .language-dropdown-toggle .language-name {
        font-size: 10px;
    }
    
    .dropdown-arrow {
        font-size: 9px;
    }
    
    .language-dropdown-item {
        padding: 10px 12px;
    }
    
    .language-dropdown-item .language-icon {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
    
    .language-dropdown-item .language-name {
        font-size: 10px;
    }
    
    /* Mobile Header Adjustments */
    .header-actions {
        gap: 10px;
    }
    
    .header-bottom-bar {
        height: 12px;
        padding: 0 15px;
        font-size: 9px;
    }
    
    /* Mobile Sidebar Labels */
    .sidebar-label,
    .community-label,
    .expansion-label {
        display: none;
    }
    
    /* Mobile Menu Adjustments */
    .menu-title {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .status-indicator {
        width: 6px;
        height: 6px;
    }
    
    /* Mobile Content Adjustments */
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 22px;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 15px;
        line-height: 1.6;
        color: #333;
    }
    
    .about-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
        color: #333;
    }
    
    .service-item h4 {
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }
    
    .service-item p {
        font-size: 14px;
        line-height: 1.5;
        color: #555;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h5 {
        font-size: 14px;
        font-weight: 600;
        color: #333;
    }
    
    .faq-answer p {
        font-size: 13px;
        line-height: 1.5;
        color: #555;
        padding: 15px 0;
    }
    
    .contact-item p {
        font-size: 13px;
        line-height: 1.4;
        color: #333;
    }
    
    .form-control {
        padding: 12px;
        font-size: 14px;
        border: 1px solid #ccc;
        background: #fff;
        color: #333;
    }
    
    .form-control:focus {
        border-color: #00aa00;
        box-shadow: 0 0 5px rgba(0, 170, 0, 0.2);
    }
    
    /* Mobile Right Sidebar */
    .model-line {
        font-size: 11px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }
    
    .instagram-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .community-line {
        font-size: 10px;
        margin-bottom: 8px;
        color: #333;
    }
    
    .brain-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    /* Mobile Footer */
    .tactical-footer {
        font-size: 10px;
        color: #ccc;
        text-align: center;
        padding: 15px;
        background: #2a2a2a;
        border-top: 2px solid #333;
    }
    
    /* Mobile Trust Section */
    .trust-section {
        margin-top: 20px;
        padding: 15px;
    }
    
    .trust-section h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-item {
        padding: 15px;
    }
    
    .trust-item h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .trust-item p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    /* Разрешаем скролл для очень маленьких экранов */
    body {
        overflow: auto;
    }
    
    .tactical-grid {
        overflow: visible;
    }
    
    .tactical-header {
        padding: 8px 10px;
        min-height: 50px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .logo-placeholder {
        font-size: 10px;
    }
    
    .action-btn {
        padding: 6px 12px;
        font-size: 10px;
        min-width: 60px;
    }
    
    .tactical-sidebar-left {
        padding: 10px;
    }
    
    .tactical-main {
        padding: 15px;
        min-height: 50vh;
    }
    
    .tactical-sidebar-right {
        padding: 10px;
    }
    
    .tactical-footer {
        padding: 10px;
        min-height: 40px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .category-item {
        padding: 10px;
        min-height: 50px;
    }
    
    .category-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .category-name {
        font-size: 10px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .stat-item {
        padding: 12px 8px;
    }
    
    .stat-number {
        font-size: 16px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .hero-actions {
        gap: 8px;
    }
    
    .action-btn {
        padding: 10px 15px;
        font-size: 11px;
    }
    
    .services-grid {
        gap: 10px;
    }
    
    .service-item {
        padding: 15px;
    }
    
    .service-icon img {
        width: 40px;
        height: 40px;
    }
    
    .contact-info,
    .contact-form {
        padding: 15px;
    }
    
    .contact-item {
        padding: 8px 0;
        margin-bottom: 12px;
    }
    
    .contact-item i {
        font-size: 14px;
    }
    
    .contact-item span {
        font-size: 10px;
    }
    
    .contact-item p {
        font-size: 11px;
    }
    
    .form-control {
        padding: 10px;
        font-size: 13px;
    }
    
    .sound-indicator {
        width: 30px;
        height: 30px;
    }
    
    .sound-indicator i {
        font-size: 12px;
    }
    
    .instagram-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .brain-icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .community-line {
        font-size: 9px;
    }
    
    .model-line {
        font-size: 10px;
    }
    
    .tactical-footer {
        font-size: 9px;
        padding: 8px;
    }
    
    .tactical-notification {
        bottom: 5px;
        right: 5px;
        font-size: 10px;
        padding: 8px 10px;
        max-width: 200px;
    }
    
    /* Content adjustments for very small screens */
    .section-header h2 {
        font-size: 20px;
    }
    
    .hero-text p {
        font-size: 13px;
    }
    
    .about-text p {
        font-size: 12px;
    }
    
    .service-item h4 {
        font-size: 14px;
    }
    
    .service-item p {
        font-size: 12px;
    }
    
    .faq-question h5 {
        font-size: 12px;
    }
    
    .faq-answer p {
        font-size: 11px;
    }
    
    .contact-item p {
        font-size: 11px;
    }
    
    .form-control {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .tactical-header {
        padding: 0 8px;
        min-height: 45px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .action-btn {
        padding: 4px 8px;
        font-size: 8px;
        min-width: 50px;
    }
    
    .tactical-sidebar-left {
        padding: 8px;
    }
    
    .tactical-main {
        padding: 12px;
    }
    
    .tactical-sidebar-right {
        padding: 8px;
    }
    
    .category-item {
        padding: 8px;
    }
    
    .category-icon {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    
    .category-name {
        font-size: 9px;
    }
    
    .section-header h2 {
        font-size: 18px;
    }
    
    .hero-text p {
        font-size: 12px;
    }
    
    .about-text p {
        font-size: 11px;
    }
    
    .service-item h4 {
        font-size: 12px;
    }
    
    .service-item p {
        font-size: 10px;
    }
    
    .faq-question h5 {
        font-size: 11px;
    }
    
    .faq-answer p {
        font-size: 10px;
    }
    
    .contact-item p {
        font-size: 10px;
    }
    
    .form-control {
        padding: 6px;
        font-size: 11px;
    }
    
    .tactical-footer {
        font-size: 7px;
        height: 35px;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .tactical-grid {
        grid-template-rows: auto auto auto auto;
    }
    
    .tactical-sidebar-left {
        max-height: 120px;
        overflow-y: auto;
    }
    
    .tactical-sidebar-right {
        max-height: 100px;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .tactical-header {
        border-bottom-width: 0px;
    }
    
    .action-btn {
        border-width: 0.5px;
    }
    
    .category-item {
        border-width: 0.5px;
    }
    
    .service-item {
        border-width: 0.5px;
    }
}

/* Print styles */
@media print {
    .tactical-cursor,
    .sound-indicator,
    .particle-container,
    .tactical-grid-lines,
    .loading-overlay {
        display: none !important;
    }
    
    .tactical-grid {
        display: block;
        height: auto;
    }
    
    .tactical-header,
    .tactical-sidebar-left,
    .tactical-sidebar-right,
    .tactical-footer {
        display: block;
        position: static;
        height: auto;
    }
    
    .content-section {
        display: block !important;
        page-break-inside: avoid;
    }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    color: #00ff41;
    animation: fadeIn 1s ease-out;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid #333;
    border-top: 2px solid #00ff41;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

/* Utility Classes */
.text-glow {
    text-shadow: 0 0 10px currentColor;
}

.border-glow {
    box-shadow: 0 0 20px currentColor;
}

.hidden {
    display: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #666;
}

/* Additional Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 

/* Enhanced Tactical Effects */
.holographic-effect {
    position: relative;
    overflow: hidden;
}

.holographic-effect::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(0, 170, 0, 0.1) 50%,
        transparent 70%
    );
    animation: holographicScan 3s linear infinite;
    pointer-events: none;
}

@keyframes holographicScan {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Particle System */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00aa00;
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
    /* Устанавливаем z-index ниже хедера */
    z-index: 1;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

/* Enhanced Button Effects */
.action-btn.enhanced {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #2a2a2a, #333);
    border: 1px solid #00aa00;
    transition: all 0.3s ease;
}

.action-btn.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

.action-btn.enhanced:hover::before {
    left: 100%;
}

.action-btn.enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 170, 0, 0.3);
    border-color: #00ff00;
}

/* Tactical Sound Indicator */
.sound-indicator {
    position: relative;
    width: 35px;
    height: 35px;
    background: #333;
    border: 1px solid #666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.sound-indicator:hover {
    background: #00aa00;
    border-color: #00aa00;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,170,0,0.3);
}

.sound-indicator i {
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sound-indicator:hover i {
    color: #fff;
}

.sound-indicator.muted {
    background: #666;
    border-color: #666;
}

.sound-indicator.muted i {
    color: #ccc;
}

/* Enhanced Navigation */
.category-item.enhanced {
    position: relative;
    background: linear-gradient(135deg, #2a2a2a, #333);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.category-item.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 170, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-item.enhanced:hover::before {
    opacity: 1;
}

.category-item.enhanced:hover {
    border-color: #00aa00;
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0, 170, 0, 0.3);
}

/* Tactical Progress Bar */
.tactical-progress {
    position: relative;
    width: 100%;
    height: 4px;
    background: #333;
    border: 1px solid #00aa00;
    overflow: hidden;
}

.tactical-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #00aa00, #00ff00, #00aa00);
    animation: progressScan 2s linear infinite;
}

@keyframes progressScan {
    0% {
        width: 0%;
        left: 0%;
    }
    50% {
        width: 50%;
        left: 25%;
    }
    100% {
        width: 0%;
        left: 100%;
    }
}

/* Enhanced Loading Animation */
.loading-overlay.enhanced {
    background: radial-gradient(circle, #1a1a1a, #000);
}

.loading-content.enhanced {
    position: relative;
}

.loading-spinner.enhanced {
    width: 60px;
    height: 60px;
    border: 3px solid #333;
    border-top: 3px solid #00aa00;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.loading-spinner.enhanced::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid #00aa00;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Tactical Grid Lines */
.tactical-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 0, 0.1), transparent);
    animation: gridPulse 4s ease-in-out infinite;
}

.grid-line.horizontal {
    height: 1px;
    width: 100%;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .tactical-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto;
        height: auto;
        min-height: 100vh;
        gap: 0;
    }
    
    .tactical-sidebar-left {
        grid-column: 1;
        grid-row: 2;
        height: auto;
        max-height: none;
        overflow-y: visible;
        padding: 15px;
        border-right: none;
        border-bottom: 2px solid #333;
    }
    
    .tactical-main {
        grid-column: 1;
        grid-row: 3;
        height: auto;
        overflow-y: visible;
        padding: 20px;
        min-height: 60vh;
    }
    
    .tactical-sidebar-right {
        grid-column: 1;
        grid-row: 4;
        height: auto;
        max-height: none;
        padding: 15px;
        border-left: none;
        border-top: 2px solid #333;
    }
    
    .tactical-footer {
        grid-column: 1;
        grid-row: 5;
        height: auto;
        min-height: 50px;
        padding: 10px 15px;
        position: relative;
        bottom: auto;
    }
    
    .category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-item {
        padding: 12px;
        min-height: 60px;
    }
    
    .category-icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .category-name {
        font-size: 11px;
        font-weight: 600;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .stat-item {
        padding: 15px 10px;
        text-align: center;
    }
    
    .stat-number {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 10px;
        font-weight: 500;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .action-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 12px;
        font-weight: 600;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-item {
        padding: 20px;
        text-align: center;
    }
    
    .service-item h4 {
        font-size: 16px;
        margin-bottom: 10px;
        font-weight: 600;
    }
    
    .service-item p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .contact-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .contact-item {
        padding: 10px 0;
        margin-bottom: 15px;
    }
    
    .contact-item i {
        font-size: 16px;
        margin-right: 10px;
    }
    
    .contact-item span {
        font-size: 11px;
        font-weight: 600;
        margin-bottom: 5px;
    }
    
    .contact-item p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .form-control {
        padding: 12px;
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .form-control::placeholder {
        font-size: 12px;
    }
    
    .sound-indicator {
        width: 35px;
        height: 35px;
        margin: 0 auto 15px;
    }
    
    .sound-indicator i {
        font-size: 14px;
    }
    
    .tactical-notification {
        bottom: 10px;
        right: 10px;
        left: auto;
        transform: none;
        font-size: 12px;
        padding: 12px 15px;
        max-width: 250px;
    }
    
    /* Mobile Language Dropdown */
    .language-dropdown-toggle {
        padding: 12px;
    }
    
    .language-dropdown-toggle .language-icon {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
    
    .language-dropdown-toggle .language-name {
        font-size: 10px;
    }
    
    .dropdown-arrow {
        font-size: 9px;
    }
    
    .language-dropdown-item {
        padding: 10px 12px;
    }
    
    .language-dropdown-item .language-icon {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
    
    .language-dropdown-item .language-name {
        font-size: 10px;
    }
    
    /* Mobile Header Adjustments */
    .header-actions {
        gap: 10px;
    }
    
    .header-bottom-bar {
        height: 12px;
        padding: 0 15px;
        font-size: 9px;
    }
    
    /* Mobile Sidebar Labels */
    .sidebar-label,
    .community-label,
    .expansion-label {
        display: none;
    }
    
    /* Mobile Menu Adjustments */
    .menu-title {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    .status-indicator {
        width: 6px;
        height: 6px;
    }
    
    /* Mobile Content Adjustments */
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 22px;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-text p {
        font-size: 15px;
        line-height: 1.6;
        color: #333;
    }
    
    .about-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
        color: #333;
    }
    
    .service-item h4 {
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }
    
    .service-item p {
        font-size: 14px;
        line-height: 1.5;
        color: #555;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h5 {
        font-size: 14px;
        font-weight: 600;
        color: #333;
    }
    
    .faq-answer p {
        font-size: 13px;
        line-height: 1.5;
        color: #555;
        padding: 15px 0;
    }
    
    .contact-item p {
        font-size: 13px;
        line-height: 1.4;
        color: #333;
    }
    
    .form-control {
        padding: 12px;
        font-size: 14px;
        border: 1px solid #ccc;
        background: #fff;
        color: #333;
    }
    
    .form-control:focus {
        border-color: #00aa00;
        box-shadow: 0 0 5px rgba(0, 170, 0, 0.2);
    }
    
    /* Mobile Right Sidebar */
    .model-line {
        font-size: 11px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }
    
    .instagram-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .community-line {
        font-size: 10px;
        margin-bottom: 8px;
        color: #333;
    }
    
    .brain-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    /* Mobile Footer */
    .tactical-footer {
        font-size: 10px;
        color: #ccc;
        text-align: center;
        padding: 15px;
        background: #2a2a2a;
        border-top: 2px solid #333;
    }
    
    /* Mobile Trust Section */
    .trust-section {
        margin-top: 20px;
        padding: 15px;
    }
    
    .trust-section h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-item {
        padding: 15px;
    }
    
    .trust-item h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .trust-item p {
        font-size: 12px;
    }
}

/* Tactical Typography Enhancements */
.tactical-text {
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.tactical-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00aa00;
    animation: textUnderline 2s ease-out forwards;
}

@keyframes textUnderline {
    to {
        width: 100%;
    }
}

/* Enhanced Section Transitions */
.content-section.enhanced {
    position: relative;
    overflow: hidden;
}

.content-section.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 170, 0, 0.1), transparent);
    transition: left 0.8s ease;
}

.content-section.enhanced.active::before {
    left: 100%;
}

/* Tactical Notification System */
.tactical-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    transform: none;
    background: #2a2a2a;
    border: 1px solid #00aa00;
    padding: 15px 20px;
    color: #fff;
    font-family: 'Courier New', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10000;
    animation: notificationSlideRight 0.5s ease-out;
    box-shadow: 0 5px 15px rgba(0, 170, 0, 0.3);
    max-width: 300px;
    border-radius: 5px;
}

@keyframes notificationSlideRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced Form Controls */
.form-control.enhanced {
    background: #2a2a2a;
    border: 1px solid #333;
    color: #fff;
    font-family: 'Courier New', monospace;
    transition: all 0.3s ease;
}

.form-control.enhanced:focus {
    border-color: #00aa00;
    box-shadow: 0 0 10px rgba(0, 170, 0, 0.3);
    background: #333;
}

.form-control.enhanced::placeholder {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tactical Cursor */
.tactical-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #00aa00;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
    /* Скрываем тактический курсор */
    display: none;
}

.tactical-cursor::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #00aa00;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: cursorPulse 2s ease-in-out infinite;
}

@keyframes cursorPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
    }
}

/* Enhanced Scrollbar */
::-webkit-scrollbar.enhanced {
    width: 8px;
}

::-webkit-scrollbar-track.enhanced {
    background: #2a2a2a;
    border: 1px solid #333;
}

::-webkit-scrollbar-thumb.enhanced {
    background: linear-gradient(180deg, #00aa00, #00ff00);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb.enhanced:hover {
    background: linear-gradient(180deg, #00ff00, #00aa00);
}

/* Tactical Data Display */
.tactical-data {
    background: #2a2a2a;
    border: 1px solid #00aa00;
    padding: 15px;
    font-family: 'Courier New', monospace;
    position: relative;
    overflow: hidden;
}

.tactical-data::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00aa00, #00ff00, #00aa00);
    animation: dataScan 3s linear infinite;
}

@keyframes dataScan {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Enhanced Status Indicators */
.status-indicator.enhanced {
    position: relative;
    width: 12px;
    height: 12px;
    background: #00aa00;
    border-radius: 50%;
    animation: enhancedPulse 2s ease-in-out infinite;
}

.status-indicator.enhanced::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid #00aa00;
    border-radius: 50%;
    animation: enhancedPulse 2s ease-in-out infinite reverse;
}

@keyframes enhancedPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.action-btn.secondary {
    background: #f0f0f0;
    border-color: #333;
    color: #333;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.action-btn.secondary:hover {
    background: #333;
    color: #fff;
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Переопределяем стили для enhanced secondary кнопки */
.action-btn.enhanced.secondary {
    background: #f0f0f0 !important;
    border-color: #333 !important;
    color: #333 !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8) !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.action-btn.enhanced.secondary:hover {
    background: #333 !important;
    color: #fff !important;
    text-shadow: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
    border-color: #00aa00 !important;
}

/* Специальные стили для секции About */
#about.content-section {
    overflow-y: auto !important;
    max-height: none !important;
    height: auto !important;
}

#about .about-content {
    overflow-y: visible;
    max-height: none;
}
  