:root {
    --dark-bg: #1A1D21;
    --darker-bg: #141618;
    --accent-green: #2ecc71;
    --accent-green-transparent: rgba(46, 204, 113, 0.1);
    --text-light: #f5f5f5;
    --text-secondary: #a0a0a0;
    --card-bg: #212529;
    --border-radius: 10px;
}


    body {
        background-color: var(--dark-bg)!important;
        color: var(--text-light)!important;
        padding: 20px;
    }
    .container {
        padding: 20px;
    }

/* Стили для hero-section */
.hero-section {
    background: linear-gradient(to bottom right, #121212, #343a40);
    padding: 50px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%233498db' fill-opacity='0.1' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.main-title {
    margin-bottom: 25px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 2.5rem;
}

.subtitle {
    display: inline-block;
    font-size: 1.5rem;
    margin-top: 5px;
    font-weight: 400;
    color: #f8f9fa;
}

.typing-text {
    border-right: 2px solid transparent;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 24px;
    background-color: #2ecc71;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 700px;
}

.highlight-text {
    color: #2ecc71;
    font-weight: 600;
}

.tagline {
    font-style: italic;
    opacity: 0.9;
}

.code-element {
    font-family: 'Courier New', monospace;
    background-color: rgba(46, 204, 113, 0.15);
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 5px;
}

.code-text {
    color: #2ecc71;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.tech-icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.tech-icon i {
    color: #2ecc71;
}


/* Blog Styles */
.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.article-card {
    background: rgb(24 33 34);
    border: 3px solid transparent;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background-clip: padding-box;
    position: relative;
}

.article-card::before {
    content: "";
    position: absolute;
    top: -3px; right: -3px; bottom: -3px; left: -3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    border-radius: 11px;
    z-index: -1;
}

.article-card h2 {
    margin: 1rem 0;
    font-size: 1.5rem;
}

.article-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.article-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.article-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
}

.tags {
    margin-top: 2rem;
}

.tag {
    display: inline-block;
    background: #f0f2f5;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Pagination Styles */
.pagination {
    margin: 2rem 0;
    text-align: center;
}

.pagination-list {
    display: inline-flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-item {
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pagination-link {
    display: block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    color: #3498db;
    text-decoration: none;
    border: 1px solid #dee2e6;
}

.pagination-item.active .pagination-link {
    background: #3498db;
    color: white;
    border-color: #3498db;
}

.pagination-link:hover {
    background: #e9ecef;
}

.pagination-item.active .pagination-link:hover {
    background: #2980b9;
}


/* Стили для секции услуг */
:root {
    --primary-color: #2ecc71;
    --secondary-color: #3498db;
    --dark-bg: #2c3e50;
    --light-text: #ecf0f1;
}

#services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1rem;
    position: relative;
    overflow: hidden;
}

#services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    animation: text-glow 3s ease-in-out infinite alternate;
}

#services h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -10px;
    left: 0;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    animation: glow 2s ease-in-out infinite alternate;
}

/* Карточки услуг */
.service-card {
    background: linear-gradient(to bottom right, #121212, #1e2123);
    border-radius: 8px;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(46, 204, 113, 0.03), transparent);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.service-card::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.5s;
    animation: shine 5s infinite;
}

.service-content {
    display: flex;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.service-info {
    flex: 1;
}

.service-title {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--primary-color);
    animation: text-glow 3s ease-in-out infinite alternate;
}

.service-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    color: #fff
}

/* Ценник */
.price-tag {
    background: rgba(52, 152, 219, 0.1);
    border-radius: 8px;
    padding: 1rem;
    margin-left: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-width: 120px;
}

.price-tag::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 1px solid transparent;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    animation: border-glow 3s ease-in-out infinite alternate;
}

.price-content {
    text-align: center;
}

.price-from {
    display: block;
    font-size: 0.8rem;
    opacity: 0.7;
    color: #fff
}

.price-value {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    animation: text-glow 3s ease-in-out infinite alternate;
}

/* Кнопка */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 7px 20px rgba(46, 204, 113, 0.5);
    transform: translateY(-2px);
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: all 0.5s;
}

.btn-primary:hover::after {
    animation: btn-shine 1s forwards;
}

/* Модальное окно */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #1e272e;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(46, 204, 113, 0.2);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
    animation: modal-glow 3s ease-in-out infinite alternate;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(46, 204, 113, 0.3);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Анимации */
@keyframes text-glow {
    from {
        text-shadow: 0 0 2px rgba(255,255,255,0.5);
    }
    to {
        text-shadow: 0 0 6px rgba(255,255,255,0.8), 0 0 10px rgba(46, 204, 113, 0.5);
    }
}

@keyframes glow {
    from {
        opacity: 0.3;
        box-shadow: 0 0 5px rgba(46, 204, 113, 0.5);
    }
    to {
        opacity: 0.6;
        box-shadow: 0 0 15px rgba(52, 152, 219, 0.8);
    }
}

@keyframes border-glow {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

@keyframes shine {
    0% {
        top: -100%;
        left: -100%;
    }
    20% {
        top: 100%;
        left: 100%;
    }
    100% {
        top: 100%;
        left: 100%;
    }
}

@keyframes btn-shine {
    0% {
        top: -100%;
        left: -100%;
    }
    100% {
        top: 100%;
        left: 100%;
    }
}

@keyframes modal-glow {
    from {
        box-shadow: 0 0 10px rgba(46, 204, 113, 0.2);
    }
    to {
        box-shadow: 0 0 20px rgba(52, 152, 219, 0.4);
    }
}

/* Пульсирующие точки для карточек */
.service-card .pulse-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.service-card .pulse-dot:nth-child(1) {
    top: 20px;
    right: 20px;
    animation: pulse 3s ease-in-out infinite;
}

.service-card .pulse-dot:nth-child(2) {
    bottom: 20px;
    left: 20px;
    animation: pulse 3s ease-in-out 1s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.2;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.5);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
        box-shadow: 0 0 0 5px rgba(46, 204, 113, 0);
    }
    100% {
        opacity: 0.2;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

/* Медиа-запросы */
@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
    }
    
    .price-tag {
        margin-left: 0;
        margin-top: 1rem;
        width: 120px;
    }
}

/* Добавляем новый стиль для иконки Django */
.tech-icon .django-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M14.13 4.53h3.622v22.94H14.13zm8.582 2.512h-3.463L16.51 16.6l-2.79-9.56H9.678L8.36 13.87l-1.02-5.156H3.842l2.18 11.84 2.34 8.156h3.463l3.463-11.84 3.463 11.84h3.463l2.34-8.156 2.18-11.84h-3.497l-1.02 5.156-1.326-7.357zm-8.582.973l1.734 6.226 1.734-6.226h-3.468zm1.734 16.44l-1.734-5.82-1.734 5.82h3.468zm7.357 2.34H24.4l-2.18-6.226-1.326 3.81-1.02-5.82-1.02 3.463-1.326-5.156-1.326 5.156-1.02-3.463-1.02 5.82-1.326-3.81-2.18 6.226h3.497l1.326-3.81 1.326 3.81h2.04l1.326-3.81 1.326 3.81z' fill='%232ecc71'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-right: 8px;
}

/* Обновляем существующий стиль для выравнивания */
.tech-icon i {
    color: #2ecc71;
    min-width: 16px; /* Добавляем для правильного выравнивания */
}

    /* Основные стили для навигационной панели */
    .navbar-tech {
        background: linear-gradient(to right, #0a0c0e, #1a1c1e);
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        border-bottom: 1px solid rgba(46, 204, 113, 0.2);
        padding: 12px 0;
        position: relative;
        z-index: 1000;
        overflow: visible; /* Изменено с overflow: hidden чтобы выпадающее меню было видимым */
    }
    
    .navbar-tech:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%233498db' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z'/%3E%3C/svg%3E");
        opacity: 0.1;
        z-index: 0;
    }
        
        /* Стили для контейнера логотипа */
        .logo-container {
            position: relative;
            overflow: visible;
        }
        
        /* Анимация логотипа */
        .main-logo {
            position: relative;
            z-index: 2;
        }
        
        .logo-bg {
            stroke: #2ecc71;
            stroke-width: 1;
            stroke-dasharray: 780;
            stroke-dashoffset: 780;
            animation: draw-logo-border 4s linear forwards, glow 2s ease-in-out infinite alternate;
        }
        
        @keyframes draw-logo-border {
            to {
                stroke-dashoffset: 0;
            }
        }
        
        @keyframes glow {
            from {
                stroke: #2ecc71;
                stroke-opacity: 0.3;
            }
            to {
                stroke: #3498db;
                stroke-opacity: 0.6;
            }
        }
        
        /* Анимация пульсации для точек в логотипе */
        .pulse-element {
            animation: pulse 3s ease-in-out infinite;
        }
        
        .delay-1 {
            animation-delay: 0.5s;
        }
        
        .delay-2 {
            animation-delay: 1s;
        }
        
        .delay-3 {
            animation-delay: 1.5s;
        }
        
        @keyframes pulse {
            0% {
                opacity: 0.2;
                r: 5;
            }
            50% {
                opacity: 0.5;
                r: 6;
            }
            100% {
                opacity: 0.2;
                r: 5;
            }
        }
        
        /* Анимация для линий кода в логотипе */
        .code-line {
            animation: flicker 5s linear infinite;
        }
        
        .line-1 {
            animation-delay: 0s;
        }
        
        .line-2 {
            animation-delay: 1s;
        }
        
        .line-3 {
            animation-delay: 2s;
        }
        
        .line-4 {
            animation-delay: 3s;
        }
        
        .line-5 {
            animation-delay: 4s;
        }
        
        @keyframes flicker {
            0%, 100% {
                opacity: 0.2;
            }
            50% {
                opacity: 0.4;
            }
        }
        
        /* Анимация мерцания для скобок */
        .bracket {
            animation: flicker-brackets 3s ease-in-out infinite;
        }
        
        .bracket-right {
            animation-delay: 1.5s;
        }
        
        @keyframes flicker-brackets {
            0%, 100% {
                opacity: 0.9;
            }
            50% {
                opacity: 0.5;
            }
        }
        
        /* Эффект свечения для текста логотипа */
        .logo-text {
            animation: text-glow 3s ease-in-out infinite alternate;
        }
        
        @keyframes text-glow {
            from {
                text-shadow: 0 0 2px rgba(255,255,255,0.5);
            }
            to {
                text-shadow: 0 0 6px rgba(255,255,255,0.8), 0 0 10px rgba(46, 204, 113, 0.5);
            }
        }
        
        /* Стиль и анимация для подзаголовка */
        .subtitle {
            opacity: 0.8;
            animation: subtitle-blink 8s infinite;
        }
        
        @keyframes subtitle-blink {
            0%, 100% {
                opacity: 0.8;
            }
            50% {
                opacity: 0.4;
            }
        }
        
        /* Бинарный код под логотипом */
        .binary-code {
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 100%;
            text-align: center;
            font-family: 'Courier New', monospace;
            font-size: 8px;
            color: #3498db;
            opacity: 0.5;
            letter-spacing: 1px;
            z-index: 1;
        }
        
        /* Стилизация гамбургер-меню */
        .custom-toggler {
            border: none;
            background: transparent;
            padding: 8px;
            outline: none !important;
            position: relative;
        }
        
        .toggler-icon {
            position: relative;
            width: 30px;
            height: 30px;
            padding: 5px;
            border-radius: 4px;
            background: rgba(52, 152, 219, 0.1);
            border: 1px solid rgba(46, 204, 113, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transform: rotate(0deg);
            transition: transform 0.3s ease;
        }
        
        .navbar-toggler:hover .toggler-icon {
            transform: rotate(90deg);
        }
        
        .toggler-line {
            display: block;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, #3498db, #2ecc71);
            border-radius: 2px;
            opacity: 0.8;
            transition: transform 0.3s ease;
        }
        
        .toggler-dots {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .toggler-dot {
            width: 4px;
            height: 4px;
            background-color: #2ecc71;
            border-radius: 50%;
            margin: 0 2px;
        }
        
        .navbar-toggler:hover .toggler-dots {
            opacity: 1;
        }
        
        .navbar-toggler:hover .toggler-line {
            transform: scale(0.8);
        }
        
        /* Стили для навигационных ссылок */
        .navbar-tech .nav-link {
            color: #f8f9fa;
            transition: color 0.3s ease, transform 0.2s ease;
            position: relative;
            padding: 8px 15px;
            margin: 0 5px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .navbar-tech .nav-link:hover {
            color: #2ecc71;
            transform: translateY(-2px);
        }
        
        .nav-icon {
            margin-right: 8px;
            opacity: 0.8;
            transition: transform 0.3s ease;
        }
        
        .nav-text {
            position: relative;
        }
        
        .nav-bracket {
            opacity: 0;
            margin-left: 3px;
            color: #3498db;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }
        
        .navbar-tech .nav-link:hover .nav-icon {
            transform: rotate(10deg);
        }
        
        .navbar-tech .nav-link:hover .nav-bracket {
            opacity: 1;
            transform: translateX(0);
        }
        
        .navbar-tech .nav-link:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            bottom: 0;
            left: 0;
            background: linear-gradient(to right, #3498db, #2ecc71);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.3s ease;
        }
        
        .navbar-tech .nav-link:hover:after {
            transform: scaleX(1);
            transform-origin: left;
        }
        
        /* Эффект терминала в конце меню */
        .terminal-item {
            display: flex;
            align-items: center;
            padding: 8px 15px;
            color: #2ecc71;
            font-family: 'Courier New', monospace;
            margin-left: 15px;
        }
        
        .terminal-prompt {
            margin-right: 5px;
        }
        
        .terminal-cursor {
            width: 10px;
            height: 18px;
            background-color: #2ecc71;
            display: inline-block;
            animation: cursor-blink 1s step-end infinite;
        }
        
        @keyframes cursor-blink {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0;
            }
        }
        
        /* Декоративный элемент внизу навбара */
        .navbar-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            overflow: hidden;
        }
        
        .nav-dot {
            animation: dot-move 8s ease-in-out infinite;
        }
        
        .nav-dot-1 {
            animation-delay: 0s;
        }
        
        .nav-dot-2 {
            animation-delay: 4s;
        }
        
        .nav-dot-3 {
            animation-delay: 2s;
        }
        
        @keyframes dot-move {
            0%, 100% {
                opacity: 0.8;
                r: 2;
            }
            50% {
                opacity: 0.3;
                r: 1;
            }
        }
        
        /* Адаптивные стили для мобильного меню */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                position: absolute;
                top: 80px;
                right: 15px;
                width: 80%;
                max-width: 300px;
                background: rgba(10, 12, 14, 0.95);
                backdrop-filter: blur(10px);
                padding: 15px;
                border-radius: 8px;
                box-shadow: 0 6px 12px rgba(0,0,0,0.3), 0 0 0 1px rgba(46, 204, 113, 0.2);
                border: 1px solid rgba(46, 204, 113, 0.2);
                transform: translateY(-10px);
                opacity: 0;
                transition: transform 0.3s ease, opacity 0.3s ease;
                z-index: 1000;
            }
            
            .navbar-collapse.show {
                transform: translateY(0);
                opacity: 1;
            }
            
            .navbar-nav {
                flex-direction: column;
                width: 100%;
            }
            
            .nav-item {
                margin: 5px 0;
                border-bottom: 1px solid rgba(46, 204, 113, 0.1);
            }
            
            .nav-item:last-child {
                border-bottom: none;
            }
            
            .nav-link {
                padding: 12px 15px;
                display: flex;
                border-radius: 4px;
                transition: background-color 0.2s;
            }
            
            .nav-link:hover {
                background-color: rgba(46, 204, 113, 0.1);
            }
            
            /* Скрываем терминальное окно на мобильных */
            .terminal-item {
                display: none;
            }
        }
        
        /* Добавляем стили для активной страницы */
        .navbar-tech .nav-link.active {
            color: #2ecc71;
        }
        
        .navbar-tech .nav-link.active:after {
            transform: scaleX(1);
        }
        
        .navbar-tech .nav-link.active .nav-bracket {
            opacity: 1;
            transform: translateX(0);
        }
    /* Стили для обновленного футера */
    .footer-section {
        background: linear-gradient(to right, #0a0c0e, #1a1c1e);
        padding: 40px 0 20px;
        border-top: 2px solid rgba(46, 204, 113, 0.2);
        position: relative;
        overflow: hidden;
        color: #f8f9fa;
        box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
        margin-top: 50px;
    }
    
    .footer-section:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%233498db' fill-opacity='0.05' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z'/%3E%3C/svg%3E");
        opacity: 0.1;
        z-index: 0;
    }
    
    .footer-block {
        background: rgba(26, 28, 30, 0.5);
        border-radius: 8px;
        padding: 25px;
        margin-bottom: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2), 
                    0 1px 3px rgba(0,0,0,0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        z-index: 1;
        overflow: hidden;
        border-top: 3px solid #3498db;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(46, 204, 113, 0.2);
    }
    
    .footer-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 15px rgba(0,0,0,0.3), 
                    0 3px 6px rgba(0,0,0,0.2);
    }
    
    .footer-block:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(46, 204, 113, 0.1) 0%, rgba(52, 152, 219, 0.1) 100%);
        border-radius: 0 0 0 60px;
        z-index: -1;
    }
    
    .footer-block:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(46, 204, 113, 0.05) 100%);
        border-radius: 0 40px 0 0;
        z-index: -1;
    }
    
    .footer-block h3 {
        color: #f8f9fa;
        font-size: 1.25rem;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid #3498db;
        position: relative;
        display: flex;
        align-items: center;
    }
    
    .code-tag {
        font-family: 'Courier New', monospace;
        color: #2ecc71;
        font-weight: bold;
    }
    
    .footer-links {
        list-style: none;
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        transition: transform 0.2s ease;
    }
    
    .footer-links li:hover {
        transform: translateX(5px);
    }
    
    .footer-icon {
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    .footer-links a {
        color: #f8f9fa;
        text-decoration: none;
        transition: color 0.3s ease;
        position: relative;
        padding-bottom: 2px;
    }
    
    .footer-links a:hover {
        color: #3498db;
    }
    
    .footer-links a:after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: #2ecc71;
        transition: width 0.3s ease;
    }
    
    .footer-links a:hover:after {
        width: 100%;
    }
    
    .contact-info {
        margin-bottom: 15px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        transition: transform 0.2s ease;
    }
    
    .contact-item:hover {
        transform: translateX(5px);
    }
    
    .contact-info a {
        color: #f8f9fa;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .contact-info a:hover {
        color: #3498db;
    }
    
    .copyright {
        text-align: center;
        padding: 20px;
        margin-top: 30px;
        border-radius: 8px;
        background: rgba(10, 12, 14, 0.7);
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        color: #adb5bd;
        position: relative;
        z-index: 1;
        overflow: hidden;
        border: 1px solid rgba(46, 204, 113, 0.1);
    }
    
    .copyright:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, #3498db, #2ecc71);
    }
    
    .copyright-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .copyright-logo {
        margin-right: 8px;
    }
    
    .code-decoration {
        margin-top: 15px;
        font-family: 'Courier New', monospace;
        color: #6c757d;
        font-size: 0.85rem;
        opacity: 0.7;
    }
    
    .code-line {
        display: block;
        padding-left: 15px;
        position: relative;
    }
    
    .code-line:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 10px;
        height: 1px;
        background-color: #6c757d;
    }
    
    .code-decoration-bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 15px;
        font-family: 'Courier New', monospace;
    }
    
    .code-bracket {
        color: #2ecc71;
        font-size: 1.5rem;
        font-weight: bold;
    }
    
    .code-text {
        color: #6c757d;
        margin: 0 10px;
        font-size: 0.85rem;
    }
    
    .code-line-header, .matrix-decoration {
        margin: 15px 0;
        width: 100%;
        opacity: 0.7;
        position: relative;
        z-index: 1;
    }
    
    /* Добавляем анимацию линий кода в футере */
    .footer-code-line {
        animation: footer-flicker 5s linear infinite;
    }
    
    .footer-line-1 {
        animation-delay: 0s;
    }
    
    .footer-line-2 {
        animation-delay: 1s;
    }
    
    .footer-line-3 {
        animation-delay: 2s;
    }
    
    @keyframes footer-flicker {
        0%, 100% {
            opacity: 0.2;
        }
        50% {
            opacity: 0.5;
        }
    }
    
    /* Добавляем анимацию для точек в декорациях футера */
    .footer-dot {
        animation: footer-pulse 4s ease-in-out infinite;
    }
    
    .footer-dot-1 {
        animation-delay: 0s;
    }
    
    .footer-dot-2 {
        animation-delay: 2s;
    }
    
    @keyframes footer-pulse {
        0%, 100% {
            opacity: 0.5;
            r: 3;
        }
        50% {
            opacity: 0.8;
            r: 4;
        }
    }
    
    /* Декорация с бинарным кодом */
    .footer-binary {
        font-family: 'Courier New', monospace;
        color: rgba(46, 204, 113, 0.4);
        font-size: 0.7rem;
        text-align: center;
        margin-top: 10px;
        letter-spacing: 2px;
    }

/* стили для вкладки Обновление ПО */

.navbar {
    background-color: var(--darker-bg);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.update-container {
    max-width: 1200px;
    margin: 0 auto;
}

.update-header {
    position: relative;
    padding: 40px 20px;
    margin-bottom: 30px;
    text-align: center;
    overflow: hidden;
    border-radius: var(--border-radius);
    background-color: var(--darker-bg);
}

.header-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.main-title {
    position: relative;
    font-size: 42px;
    margin-bottom: 10px;
    z-index: 1;
    letter-spacing: 1px;
    color: aliceblue;
}

.subtitle {
    position: relative;
    color: var(--text-secondary);
    font-size: 18px;
    z-index: 1;
}

.update-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 3px solid var(--accent-green);
}

.card-header {
    padding: 20px;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.1);
}

.program-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(46, 204, 113, 0.15);
    border-radius: 10px;
    margin-right: 15px;
}

.program-info h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

.program-description {
    color: var(--text-secondary);
    font-size: 14px;
}

.update-list {
    padding: 0 20px;
}

.update-item {
    padding: 20px 0;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.update-item:first-child {
    border-top: none;
}

.version-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    min-width: 80px;
}

.version {
    background-color: var(--accent-green);
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 5px;
}

.date {
    font-size: 12px;
    color: var(--text-secondary);
}

.update-content {
    flex: 1;
}

.update-content p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.update-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-green);
    color: #000;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.download-btn:hover {
    background-color: #27ae60;
}

.download-btn i {
    margin-right: 8px;
}

.download-count {
    margin-left: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 12px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 13px;
}

.status-badge.active {
    background-color: rgba(46, 204, 113, 0.15);
    color: var(--accent-green);
}

.status-badge.archive {
    background-color: rgba(149, 165, 166, 0.1);
    color: #95a5a6;
}

.status-badge i {
    margin-right: 5px;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state svg {
    margin-bottom: 15px;
    opacity: 0.5;
}

.code-brackets {
    font-size: 36px;
    color: var(--accent-green);
    margin: 0 10px;
}

@media (max-width: 768px) {
    .update-item {
        flex-direction: column;
    }
    
    .version-badge {
        margin-right: 0;
        margin-bottom: 15px;
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
    }
    
    .version {
        margin-bottom: 0;
        margin-right: 10px;
    }
    
    .update-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

    /* стили для блока Контакты*/
    :root {
        --dark-bg_cont: #1a1d21;
        --darker-bg_cont: #141618;
        --accent-green_cont: #2ecc71;
        --accent-green-transparent_cont: rgba(46, 204, 113, 0.1);
        --text-light_cont: #f5f5f5;
        --text-secondary_cont: #a0a0a0;
        --card-bg_cont: #212529;
        --border-radius_cont: 10px;
    }

    #contact_cont {
        color: var(--text-light_cont);
        padding: 20px;
        background-color: var(--dark-bg_cont);
    }

    #contact_cont .contact-icon_cont {
        color: var(--accent-green_cont) !important;
        font-size: 1.5rem;
        min-width: 40px;
        margin-right: 15px;
    }

    #contact_cont .contact-link_cont {
        color: var(--accent-green_cont) !important;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    #contact_cont .contact-link_cont:hover {
        color: #3498db !important;
        text-decoration: underline;
    }

    .contact-container_cont {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .contact-card_cont {
        background-color: var(--card-bg_cont);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border-radius: var(--border-radius_cont);
        overflow: hidden;
        border-left: 3px solid var(--accent-green_cont);
    }

    .section-title_cont {
        color: var(--text-light_cont);
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding: 15px 15px;
        font-size: 32px;
        letter-spacing: 1px;
    }

    .section-title_cont:after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 120px;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    }

    .contact-content_cont {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 30px;
    }

    .contact-info_cont {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-description_cont {
        color: var(--text-secondary_cont);
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .contact-list_cont {
        list-style: none;
        padding: 0;
    }

    .contact-item_cont {
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        font-size: 1.1rem;
    }

    .map-container_cont {
        border-radius: var(--border-radius_cont);
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        background: var(--darker-bg_cont);
    }

    @media (max-width: 992px) {
        .contact-content_cont {
            grid-template-columns: 1fr;
            padding: 20px;
        }
        
        .map-container_cont {
            height: 300px;
        }
    }

    @media (max-width: 576px) {
        .contact-item_cont {
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .contact-icon_cont {
            margin-right: 0;
            width: 100%;
        }
    }

/* техкод*/
.tech-code {
    color: #27ae60;
}

pre {
    display: block;
    font-size: 87.5%;
    color: #b6b6b6 !important;
}

/* Модальное окно */
.modal-content {
    background-color: #121212 !important;
}