/* --- Стили --- */
:root {
    --primary: #9d4edd;
    --primary-light: #c77dff;
    --primary-dark: #7b2cbf;
    --secondary: #3a0ca3;
    --accent: #4cc9f0;
    --dark-bg: #0b0014;
    --darker-bg: #06000c;
    /* Обновленный фон карточки для мобильной версии без блюра */
    --card-bg: rgba(14, 8, 27, 0.7);
    --card-bg-mobile: rgba(14, 8, 27, 0.85); /* Немного плотнее */
    --text-light: #f8f9fa;
    --text-muted: #b8b8b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; /* Плавная прокрутка */
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden; /* Предотвращение горизонтальной прокрутки */
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    min-height: 100vh;
    position: relative;
    perspective: 1000px;
}

/* Фоновые слои */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Используем внешний SVG и градиент */
    background-image:
        url("pattern.svg"),
        linear-gradient(135deg, rgba(6, 0, 12, 0.9) 0%, rgba(11, 0, 20, 0.9) 100%);
    z-index: -3;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Используем внешний SVG */
    background-image: url("noise.svg");
    opacity: 0.03;
    z-index: -2;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--primary-dark) 1px, transparent 1px),
                      linear-gradient(90deg, var(--primary-dark) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    z-index: -2;
    pointer-events: none;
    animation: grid-move 60s linear infinite;
}

@keyframes grid-move {
    0% { background-position: 0px 0px; }
    100% { background-position: 50px 50px; }
}

/* Декоративные элементы (линии, схемы, силуэт) */
 .cyberpunk-line {
    position: fixed;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
    animation: line-move 15s linear infinite alternate; /* Добавлено alternate для разнообразия */
}

.cyberpunk-line-1 { top: 3.5%; animation-duration: 15s; }
.cyberpunk-line-2 { top: 37%; animation-duration: 20s; animation-direction: alternate-reverse; }
.cyberpunk-line-3 { top: 76%; animation-duration: 25s; }

@keyframes line-move {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.floating-circuit {
    position: fixed;
    width: 200px;
    height: 200px;
    /* Используем внешний SVG */
    background-image: url("circuit.svg");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    animation: float-circuit 15s linear infinite;
}

.floating-circuit-1 { top: 15%; left: 5%; animation-duration: 15s; }
.floating-circuit-2 { top: 60%; right: 10%; animation-duration: 20s; animation-direction: reverse; }
.floating-circuit-3 { bottom: 10%; left: 20%; animation-duration: 18s; }

@keyframes float-circuit {
    0% { transform: rotate(0deg) translateY(0); opacity: 0.2; }
    25% { transform: rotate(90deg) translateY(20px); opacity: 0.1; }
    50% { transform: rotate(180deg) translateY(0); opacity: 0.3; }
    75% { transform: rotate(270deg) translateY(-20px); opacity: 0.1; }
    100% { transform: rotate(360deg) translateY(0); opacity: 0.2; }
}

/*.city-skyline {
  position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; 
    background-image: url("city-skyline.svg");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
} */

/* Основной контейнер */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Для z-index дочерних элементов */
    z-index: 1; /* Контент выше фоновых эффектов */
}

/* Навигация */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: relative;
    flex-wrap: wrap; /* Позволяет перенос на маленьких экранах */
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.7);
    margin-left: 15px;
    position: relative;
}

.logo-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    width: 10px;
    height: 10px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px var(--accent);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.domain {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    padding: 8px 15px;
    border-radius: 20px;
    background: rgba(59, 12, 163, 0.1);
    border: 1px solid rgba(59, 12, 163, 0.3);
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.1);
    transition: all 0.3s ease;
    margin-top: 10px; /* Добавлен отступ для мобильных */
}

.domain:hover {
    border-color: rgba(76, 201, 240, 0.5);
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.2);
    color: var(--accent);
}

/* Секция Hero */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 0;
    min-height: 80vh; /* Можно уменьшить если не нужно занимать весь экран */
    position: relative;
    flex-wrap: wrap; /* Разрешаем перенос для адаптивности */
}

.hero-content {
    flex: 1 1 55%; /* Даем больше места контенту, разрешаем сжиматься */
    z-index: 2;
    padding-right: 30px; /* Уменьшен отступ */
    min-width: 300px; /* Минимальная ширина для контента */
}

.hero-image-container {
    flex: 1 1 40%; /* Меньше места картинке, разрешаем сжиматься */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-width: 280px; /* Минимальная ширина для картинки */
    margin-top: 30px; /* Отступ сверху на больших экранах, если перенесется */
}

.hero-image {
    display: block; /* Убирает лишние отступы под картинкой */
    max-width: 100%; /* Картинка не будет больше контейнера */
    height: auto; /* Сохраняет пропорции */
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(157, 78, 221, 0.5));
    border-radius: 10px;
    animation: float 6s ease-in-out infinite;
    /* loading: lazy; уже есть в HTML */
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(10px) rotate(-1deg); }
}

/* Упрощенная анимация для мобильных (пример) */
@keyframes float-simple {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.image-glow {
    position: absolute;
    width: 90%;
    height: 90%;
    top: 5%; /* Центрирование */
    left: 5%; /* Центрирование */
    background: radial-gradient(circle, rgba(157, 78, 221, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
    animation: pulse 5s ease-in-out infinite alternate;
    border-radius: 50%; /* Делаем свечение круглым */
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Круговые рамки */
.circular-border {
    position: absolute;
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.1);
    animation: rotate 20s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    aspect-ratio: 1 / 1; /* Сохраняем круглую форму */
}

/* Используем относительные размеры, чтобы они масштабировались с контейнером */
.circular-border:nth-of-type(1) {
    width: 110%; /* % от родителя (.hero-image-container) */
    border-top-color: var(--primary);
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    animation-duration: 20s;
}

.circular-border:nth-of-type(2) {
    width: 115%; /* % от родителя */
    border-top-color: transparent;
    border-right-color: var(--accent);
    border-bottom-color: transparent;
    border-left-color: transparent;
    animation-direction: reverse;
    animation-duration: 15s;
}

.circular-border:nth-of-type(3) {
    width: 120%; /* % от родителя */
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: var(--primary-dark);
    border-left-color: transparent;
    animation-duration: 25s;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Текст в Hero */
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem); /* Адаптивный размер шрифта */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.hero-title .gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title .with {
    font-size: clamp(1.5rem, 4vw, 2rem); /* Адаптивный размер */
    display: block;
    color: var(--text-muted);
    text-transform: lowercase;
    font-weight: 400;
    margin: 5px 0;
}

.hero-title .brand {
    font-size: clamp(3rem, 8vw, 5rem); /* Адаптивный размер */
    display: block;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem); /* Адаптивный размер */
    margin-bottom: 40px;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
    position: relative;
}

/* Технические значки */
.tech-badges {
    margin-bottom: 40px;
    display: flex; /* Используем flex */
    flex-wrap: wrap; /* Разрешаем перенос */
    gap: 10px; /* Пространство между значками */
    justify-content: flex-start; /* Выравнивание по началу по умолчанию */
}

.tech-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(76, 201, 240, 0.1);
    border: 1px solid rgba(76, 201, 240, 0.3);
    color: var(--accent);
    transition: all 0.3s ease;
    white-space: nowrap; /* Предотвращаем перенос внутри самого значка */
}

.tech-badge:hover {
    background: rgba(76, 201, 240, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(76, 201, 240, 0.2);
}

/* Кнопка CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    border: none;
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(123, 44, 191, 0.4),
                inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    box-shadow: 0 8px 25px rgba(123, 44, 191, 0.6),
                inset 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button i {
    margin-right: 12px;
    font-size: 1.3rem;
}

/* Секция Особенностей */
.features-section {
    padding: 80px 0 50px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem); /* Адаптивный размер */
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Адаптивный размер */
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px; /* Небольшой отступ для текста на узких экранах */
}

.features-grid {
    display: grid;
    /* Адаптивная сетка: минимум 280px, максимум 1fr */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--card-bg); /* Используем переменную */
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; /* Оптимизируем transition */
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px); /* Эффект размытия фона */
    border: 1px solid rgba(157, 78, 221, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(157, 78, 221, 0.3);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.2) 0%, transparent 70%);
    animation: pulse-icon 3s infinite alternate;
}

@keyframes pulse-icon {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.feature-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-description {
    color: var(--text-muted);
    font-size: 1rem; /* Немного уменьшен для компактности */
    line-height: 1.5;
}

/* Секция CTA (призыв к действию) */
.cta-section {
    text-align: center;
    padding: 80px 0; /* Уменьшены паддинги */
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 15px; /* Отступы для текста на узких экранах */
}

.cta-bg {
    position: absolute;
    width: 150%;
    height: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(157, 78, 221, 0.15) 0%, transparent 60%);
    z-index: 0;
    border-radius: 50%;
    animation: pulse-cta 8s infinite alternate ease-in-out;
}

@keyframes pulse-cta {
     0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.7; }
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem); /* Адаптивный размер */
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem); /* Адаптивный размер */
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-content {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: rgba(11, 0, 20, 0.5); /* Полупрозрачный фон */
    border-radius: 50px;
    backdrop-filter: blur(10px); /* Размытие */
    border: 1px solid rgba(157, 78, 221, 0.2);
    flex-wrap: wrap; /* Разрешаем перенос внутри */
    justify-content: center; /* Центрируем на маленьких экранах */
    transition: background-color 0.3s ease; /* Плавный переход для мобильных */
}

.footer-icon {
    font-size: 2rem;
    color: #0088cc; /* Цвет иконки Telegram */
    margin-right: 15px;
    animation: float-icon 3s ease-in-out infinite;
    margin-bottom: 5px; /* Небольшой отступ снизу при переносе */
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.footer-text {
    text-align: center; /* Центрируем текст при переносе */
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}


/* --- Адаптивность и ОПТИМИЗАЦИЯ --- */

/* Отключение ресурсоемких анимаций и эффектов для планшетов и телефонов */
@media (max-width: 992px) {
    /* Отключаем ненужные фоновые анимации и элементы */
    .grid-overlay,
    .floating-circuit,
    .cyberpunk-line,
    .city-skyline {
        display: none;
        animation: none; /* На всякий случай */
    }

    /* Упрощаем/отключаем анимации Hero секции */
    .hero-image {
        animation: float-simple 6s ease-in-out infinite; /* Можно использовать float-simple или none */
        /* animation: none; */
        filter: drop-shadow(0 0 15px rgba(157, 78, 221, 0.4)); /* Менее интенсивная тень */
    }
    .image-glow,
    .circular-border {
        display: none; /* Убираем свечение и рамки */
         /* animation: none; */
    }

    /* Отключаем размытие фона (backdrop-filter) для производительности */
    .feature-card {
        backdrop-filter: none; /* Убираем блюр */
        background: var(--card-bg-mobile); /* Используем более плотный фон */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25); /* Чуть проще тень */
    }
     .footer-content {
        backdrop-filter: none; /* Убираем блюр */
        background: rgba(11, 0, 20, 0.8); /* Более плотный фон */
    }

    /* Отключаем анимацию пульсации фона иконок */
    .feature-icon-bg {
        display: none;
        /* animation: none; */
    }

    /* Отключаем анимацию иконки в футере */
    .footer-icon {
        animation: none;
    }

    /* Остальные стили для планшетов из оригинального кода */
    .hero {
        flex-direction: column; /* Ставим элементы друг под друга */
        padding-top: 30px;
        text-align: center; /* Центрируем текст */
        min-height: auto; /* Убираем минимальную высоту */
    }

    .hero-content {
        padding-right: 0; /* Убираем правый отступ */
        margin-bottom: 40px;
        order: 2; /* Текст идет после картинки */
        flex-basis: auto; /* Сбрасываем flex-basis */
    }

    .hero-image-container {
        order: 1; /* Картинка идет перед текстом */
        margin-bottom: 30px;
        max-width: 70%; /* Ограничиваем ширину картинки */
        flex-basis: auto; /* Сбрасываем flex-basis */
         margin-top: 0; /* Убираем отступ сверху */
    }

     .hero-subtitle {
        margin: 0 auto 30px; /* Центрируем подзаголовок */
    }

    .tech-badges {
        justify-content: center; /* Центрируем значки */
    }
}

/* Дополнительные настройки для телефонов */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center; /* Центрируем лого */
    }

    .domain {
        margin-top: 15px; /* Отступ домена от лого */
    }

    .hero-image-container {
        max-width: 80%; /* Немного увеличиваем картинку относительно 992px */
    }

     .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

     .footer-content {
        padding: 10px 20px;
        border-radius: 10px; /* Менее круглый на мобильных */
    }
     .footer-text {
        font-size: 0.9rem;
    }
}

 /* Совсем маленькие экраны */
@media (max-width: 480px) {
     .logo-text {
        font-size: 1.8rem; /* Уменьшаем лого */
     }
     .domain {
         font-size: 0.9rem;
     }
     .hero-image-container {
        max-width: 90%;
     }
     .feature-icon-wrapper {
         width: 60px; /* Уменьшаем иконки */
         height: 60px;
     }
     .feature-icon {
         font-size: 2rem;
     }
     .feature-title {
         font-size: 1.3rem;
     }
}


/* --- Неоновый курсор (без изменений) --- */
.neon-cursor {
    pointer-events: none; /* Курсор не должен мешать кликам */
    position: fixed; /* Позиционирование относительно окна */
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 201, 240, 0.6) 0%, transparent 60%);
    /* Центрируем курсор относительно точки */
    transform: translate(-50%, -50%);
    z-index: 9999; /* Выше всех элементов */
    mix-blend-mode: screen; /* Эффект наложения */
    /* Плавный переход для анимации и скрытия/появления */
    transition: width 0.2s ease, height 0.2s ease, opacity 0.3s ease, transform 0.05s linear; /* Добавлен transform для плавности */
    filter: blur(2px);
    opacity: 0; /* Скрыт по умолчанию */
    /* Убираем курсор на тач-устройствах */
     @media (hover: none) {
        display: none;
     }
}

/* --- Низ стараницы типо инфа там--- */
.footer-info {
    margin-top: 30px;
    padding: 25px;
    background: rgba(11, 0, 20, 0.7); /* Полупрозрачный темный фон */
    border-radius: 15px;
    border: 1px solid rgba(157, 78, 221, 0.2); /* Тонкий неоновый бордер */
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); /* Легкая тень для глубины */
}

.footer-info p {
    margin: 10px 0;
}

.footer-info strong {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5); /* Неоновое свечение */
}

.footer-info a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-info a:hover {
    color: var(--primary-light);
    text-shadow: 0 0 10px var(--primary-light);
    transform: translateY(-2px); /* Легкий подъем при наведении */
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .footer-info {
        padding: 15px;
        font-size: 0.9rem;
    }
}

/* Стилизация скроллбара (для Webkit браузеров) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 4px;
    border: 1px solid var(--darker-bg);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- Оптимизация для пользователей, предпочитающих меньше анимаций --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important; /* Оставить 1 цикл для @keyframes, которые меняют состояние */
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important; /* Отключить плавную прокрутку */
  }

  /* Принудительно отключаем основные анимации */
  .grid-overlay,
  .cyberpunk-line,
  .floating-circuit,
  .hero-image,
  .image-glow,
  .circular-border,
  .feature-icon-bg,
  .footer-icon,
  .cta-bg,
  .logo-text::after,
  .neon-cursor {
      animation: none !important;
      transition: none !important; /* Отключаем и transition на всякий случай */
  }

  .neon-cursor {
      display: none !important; /* Полностью скрываем кастомный курсор */
  }
}