        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600;700&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: #0a0a0a;
            color: #00ffff;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }

        /* Анимированный фон */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(ellipse at 20% 50%, rgba(255, 0, 128, 0.08) 0%, transparent 70%),
                radial-gradient(ellipse at 80% 20%, rgba(0, 255, 255, 0.06) 0%, transparent 70%),
                radial-gradient(ellipse at 40% 80%, rgba(255, 20, 147, 0.05) 0%, transparent 70%),
                linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 25%, #0a1a1a 50%, #1a0a0a 75%, #0a0a1a 100%);
            animation: bgShift 30s ease-in-out infinite;
            z-index: -2;
        }

        @keyframes bgShift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.05) rotate(0.5deg); }
        }

        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: -1;
            animation: gridMove 30s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }
         a, a:hover, a:focus, a:active, a:visited {
    text-decoration: none !important;
}

/* Кликабельные сервисы с анимированным подчеркиванием */
a.service-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* Анимированное подчеркивание снизу */
a.service-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff0080, #00ffff, #ff69b4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a.service-item:hover::after {
    width: 100%;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.6);
}

a.service-item:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: #ff0080;
    transform: translateX(5px) translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

/* Социальные ссылки с волновым подчеркиванием */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0080, #00ffff, #ff0080, transparent);
    transition: left 0.6s ease;
}

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

/* Дополнительный эффект для социальных ссылок */
.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), rgba(255, 0, 128, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

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

/* Footer ссылки с растущим подчеркиванием */
.footer-link {
    position: relative;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff0080, #00ffff);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.footer-link:hover::after {
    width: 110%;
    box-shadow:
        0 0 8px rgba(255, 0, 128, 0.6),
        0 0 16px rgba(0, 255, 255, 0.4);
}

/* Дополнительный светящийся эффект для footer ссылок */
.footer-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 128, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 4px;
}

.footer-link:hover::before {
    opacity: 1;
}

/* Контактные элементы с боковым подчеркиванием */
.contact-item {
    position: relative;
    overflow: hidden;
}

.contact-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #ff0080, #00ffff);
    transition: height 0.4s ease;
}

.contact-item:hover::after {
    height: 100%;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

/* Волновой эффект для категорий (уже есть, но улучшаем) */
.category-card::before {
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 0, 128, 0.3),
        rgba(0, 255, 255, 0.2),
        rgba(255, 105, 180, 0.3),
        transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Пульсирующие точки для декора */
.footer-link:hover {
    animation: linkPulse 1.5s ease-in-out infinite;
}

@keyframes linkPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 5px #ff0080;
    }
    50% {
        transform: scale(1.02);
        text-shadow:
            0 0 10px #ff0080,
            0 0 20px rgba(255, 0, 128, 0.5),
            0 0 30px rgba(0, 255, 255, 0.3);
    }
}

/* Мобильные версии подчеркиваний */
@media (max-width: 768px) {
    /* Упрощаем анимации на мобильных */
    a.service-item::after,
    .social-link::after,
    .footer-link::after,
    .contact-item::after {
        transition-duration: 0.2s;
    }

    /* Убираем сложные анимации на touch устройствах */
    @media (hover: none) {
        .footer-link:hover {
            animation: none;
        }

        a.service-item:hover::after,
        .social-link:hover::after,
        .footer-link:hover::after {
            transition-duration: 0.1s;
        }
    }
}
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .glitch-text {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2rem, 8vw, 6rem);
            font-weight: 900;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #00ffff;
            text-shadow:
                0 0 5px #00ffff,
                0 0 10px #00ffff,
                0 0 15px #00ffff,
                0 0 20px #00ffff;
            animation: glitchTitle 3s ease-in-out infinite;
        }

        .glitch-text::before,
        .glitch-text::after {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .glitch-text::before {
            animation: glitchBefore 2s infinite;
            color: #ff0080;
            z-index: -1;
        }

        .glitch-text::after {
            animation: glitchAfter 2s infinite;
            color: #00ff41;
            z-index: -2;
        }

        @keyframes glitchTitle {
            0%, 100% { transform: translate(0); }
            10% { transform: translate(-2px, -1px); }
            20% { transform: translate(2px, 1px); }
            30% { transform: translate(-1px, 2px); }
            40% { transform: translate(1px, -1px); }
            50% { transform: translate(-2px, 2px); }
            60% { transform: translate(2px, -2px); }
            70% { transform: translate(-1px, 1px); }
            80% { transform: translate(1px, 2px); }
            90% { transform: translate(-2px, -1px); }
        }

        @keyframes glitchBefore {
            0%, 100% { clip: rect(0, 900px, 0, 0); }
            10% { clip: rect(10px, 900px, 20px, 0); }
            20% { clip: rect(30px, 900px, 40px, 0); }
            30% { clip: rect(50px, 900px, 60px, 0); }
            40% { clip: rect(70px, 900px, 80px, 0); }
            50% { clip: rect(90px, 900px, 100px, 0); }
        }

        @keyframes glitchAfter {
            0%, 100% { clip: rect(0, 900px, 0, 0); }
            15% { clip: rect(5px, 900px, 15px, 0); }
            25% { clip: rect(25px, 900px, 35px, 0); }
            35% { clip: rect(45px, 900px, 55px, 0); }
            45% { clip: rect(65px, 900px, 75px, 0); }
            55% { clip: rect(85px, 900px, 95px, 0); }
        }

        .subtitle {
            font-size: clamp(1rem, 3vw, 1.5rem);
            margin-bottom: 40px;
            text-align: center;
            color: #ff0080;
            font-weight: 300;
            letter-spacing: 2px;
            opacity: 0.8;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .search-container {
            width: 100%;
            max-width: 600px;
            position: relative;
            margin-bottom: 40px;
        }

        .search-box {
            width: 100%;
            padding: 20px 60px 20px 20px;
            font-size: 18px;
            background: rgba(0, 0, 0, 0.8);
            border: 2px solid #00ffff;
            border-radius: 50px;
            color: #00ffff;
            font-family: 'Rajdhani', sans-serif;
            outline: none;
            transition: all 0.3s ease;
            box-shadow:
                0 0 20px rgba(0, 255, 255, 0.3),
                inset 0 0 20px rgba(0, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .search-box:focus {
            border-color: #ff0080;
            box-shadow:
                0 0 30px rgba(255, 0, 128, 0.5),
                inset 0 0 30px rgba(255, 0, 128, 0.1);
            color: #ff0080;
            transform: translateY(-2px);
        }

        .search-box:hover {
            border-color: #ff69b4;
            box-shadow:
                0 0 25px rgba(255, 105, 180, 0.4),
                inset 0 0 25px rgba(255, 105, 180, 0.1);
        }

        .search-box::placeholder {
            color: rgba(0, 255, 255, 0.5);
            font-style: italic;
        }

        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(45deg, #00ffff, #ff0080);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
        }

        .search-btn:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 0 25px rgba(255, 0, 128, 0.7);
        }

        .search-btn:active {
            transform: translateY(-50%) scale(0.95);
        }

        .search-btn::before {
            content: '🔍';
            font-size: 16px;
            filter: invert(1);
        }

        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            width: 100%;
            max-width: 800px;
            margin-bottom: 40px;
        }

        .category-card {
            background: rgba(0, 0, 0, 0.85);
            border: 1px solid #00ffff;
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

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

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

        .category-card:hover {
            border-color: #ff0080;
            box-shadow:
                0 0 20px rgba(255, 0, 128, 0.4),
                inset 0 0 20px rgba(255, 0, 128, 0.05);
            transform: translateY(-5px);
            background: rgba(10, 0, 10, 0.9);
        }

        .category-emoji {
            font-size: 2rem;
            margin-bottom: 10px;
            display: block;
            filter: brightness(1.2);
            transition: all 0.3s ease;
        }

        .category-card:hover .category-emoji {
            transform: scale(1.1);
            filter: brightness(1.4) drop-shadow(0 0 10px rgba(255, 0, 128, 0.5));
        }

        .category-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #00ffff;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .category-card:hover .category-name {
            color: #ff69b4;
            text-shadow: 0 0 5px rgba(255, 105, 180, 0.5);
        }

        .neon-border {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #00ffff, #ff0080, #00ff41, #00ffff);
            border-radius: 17px;
            z-index: -1;
            animation: borderRotate 6s linear infinite;
            opacity: 0.6;
        }
.neon-border,
.neon-border *,
.category-card,
.category-card * {
    text-decoration: none !important;
}

.neon-border:hover,
.neon-border:hover *,
.category-card:hover,
.category-card:hover * {
    text-decoration: none !important;
}

/* Дополнительно убираем для всех состояний ссылок */
a.category-card,
a.category-card:hover,
a.category-card:focus,
a.category-card:active,
a.category-card:visited {
    text-decoration: none !important;
}

a.category-card *,
a.category-card:hover *,
a.category-card:focus *,
a.category-card:active *,
a.category-card:visited * {
    text-decoration: none !important;
}
        .category-card:hover .neon-border {
            opacity: 1;
            animation: borderRotate 3s linear infinite;
        }

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

        .floating-elements {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            color: rgba(0, 255, 255, 0.3);
            font-size: 20px;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Футер */
        .footer {
            width: 100%;
            background: rgba(0, 0, 0, 0.9);
            border-top: 2px solid #00ffff;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff0080, #00ffff, #00ff41, transparent);
            animation: scanLine 3s linear infinite;
        }

        @keyframes scanLine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .footer-title {
            font-family: 'Orbitron', monospace;
            font-size: 1.2rem;
            font-weight: 700;
            color: #00ffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            text-shadow: 0 0 10px #00ffff;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #ff0080, #00ffff);
        }

        .contact-item, .service-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            background: rgba(0, 255, 255, 0.05);
            border-radius: 8px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-item:hover, .service-item:hover {
            background: rgba(255, 0, 128, 0.1);
            border-color: #ff0080;
            transform: translateX(5px);
            box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
        }

        .contact-icon, .service-icon {
            font-size: 1.2rem;
            margin-right: 12px;
            filter: brightness(1.5);
        }

        .contact-text, .service-text {
            color: #ffffff;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .social-link {
            display: flex;
            align-items: center;
            padding: 12px;
            background: rgba(0, 0, 0, 0.7);
            border: 1px solid #00ffff;
            border-radius: 25px;
            color: #00ffff;
            text-decoration: none;
            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(0, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

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

        .social-link:hover {
            border-color: #ff0080;
            color: #ff0080;
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
        }

        .social-icon {
            font-size: 1.2rem;
            margin-right: 10px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 255, 255, 0.3);
            padding: 20px;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-family: 'Orbitron', monospace;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-link {
            color: #00ffff;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #ff0080;
            transition: width 0.3s ease;
        }

        .footer-link:hover {
            color: #ff0080;
            text-shadow: 0 0 5px #ff0080;
        }

        .footer-link:hover::after {
            width: 100%;
        }

        /* Мобильная адаптация */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
                padding-top: 40px;
            }

            .glitch-text {
                font-size: clamp(2rem, 12vw, 3rem);
                margin-bottom: 10px;
                line-height: 1.1;
            }

            .subtitle {
                font-size: clamp(0.9rem, 4vw, 1rem);
                margin-bottom: 25px;
                padding: 0 10px;
            }

            .search-container {
                margin-bottom: 30px;
                max-width: 100%;
            }

            .search-box {
                padding: 18px 55px 18px 18px;
                font-size: 16px;
                border-radius: 25px;
            }

            .search-btn {
                width: 45px;
                height: 45px;
                right: 5px;
            }

            .categories {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                max-width: 100%;
            }

            .category-card {
                padding: 16px 12px;
                border-radius: 12px;
                min-height: 80px;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

            .category-emoji {
                font-size: 1.8rem;
                margin-bottom: 8px;
            }

            .category-name {
                font-size: 0.95rem;
                font-weight: 600;
                text-align: center;
                letter-spacing: 0.5px;
            }

            /* Мобильные touch эффекты - улучшенные для iOS */
            .category-card {
                -webkit-tap-highlight-color: transparent;
                touch-action: manipulation;
            }

            .category-card:active {
                transform: translateY(-2px) scale(0.98) !important;
                border-color: #ff0080 !important;
                box-shadow: 0 0 15px rgba(255, 0, 128, 0.4) !important;
                background: rgba(10, 0, 10, 0.9) !important;
            }

            .category-card:active .category-emoji {
                transform: scale(1.1) !important;
            }

            .category-card:active .category-name {
                color: #ff69b4 !important;
            }

            .search-btn {
                -webkit-tap-highlight-color: transparent;
                touch-action: manipulation;
            }

            .search-btn:active {
                transform: translateY(-50%) scale(0.95) !important;
            }

            .social-link, .contact-item, .service-item, .footer-link {
                -webkit-tap-highlight-color: transparent;
                touch-action: manipulation;
            }

            .social-link:active {
                transform: scale(0.98) !important;
                border-color: #ff0080 !important;
                color: #ff0080 !important;
            }

            .contact-item:active, .service-item:active {
                background: rgba(255, 0, 128, 0.1) !important;
                transform: translateX(2px) !important;
            }

            .footer-link:active {
                color: #ff0080 !important;
                text-shadow: 0 0 5px #ff0080 !important;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 30px 15px;
                text-align: center;
            }

            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .social-links {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                max-width: 300px;
                margin: 0 auto;
            }

            .social-link {
                justify-content: center;
                padding: 12px 8px;
                border-radius: 15px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
                padding: 20px 15px;
            }

            .footer-links {
                justify-content: center;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .search-box {
                padding: 16px 50px 16px 16px;
                font-size: 15px;
                border-radius: 20px;
            }

            .search-btn {
                width: 40px;
                height: 40px;
                right: 4px;
            }

            .categories {
                gap: 10px;
            }

            .category-card {
                padding: 14px 10px;
                border-radius: 10px;
                min-height: 75px;
            }

            .category-emoji {
                font-size: 1.6rem;
                margin-bottom: 6px;
            }

            .category-name {
                font-size: 0.85rem;
                font-weight: 500;
                letter-spacing: 0.3px;
            }
        }

        /* Скроллбар */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #00ffff, #ff0080);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, #ff0080, #00ffff);
        }
