:where([class^="ri-"])::before {
            content: "\f3c2";
        }

        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            min-height: 100vh;
        }

        .neon-border {
            position: relative;
            border-radius: 50%;
            padding: 4px;
            background: linear-gradient(45deg, #06b6d4, #8b5cf6, #06b6d4);
            animation: rotate 3s linear infinite;
        }

        .neon-glow {
            box-shadow:
                0 0 20px rgba(6, 182, 212, 0.5),
                0 0 40px rgba(139, 92, 246, 0.3),
                0 0 60px rgba(6, 182, 212, 0.2);
        }

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

            100% {
                transform: rotate(360deg);
            }
        }

        .text-gradient {
            background: linear-gradient(45deg, #06b6d4, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link:hover {
            color: #06b6d4;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 50%;
            background: linear-gradient(45deg, #06b6d4, #8b5cf6);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

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

        .social-icon {
            transition: all 0.3s ease;
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
        }

        .social-icon:hover {
            background: rgba(6, 182, 212, 0.2);
            border-color: #06b6d4;
            box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
            transform: translateY(-2px);
        }

        .hero-text {
            animation: fadeInUp 1s ease-out;
        }

        .hero-image {
            animation: fadeInRight 1s ease-out 0.3s both;
        }

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

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }