﻿        * {
            box-sizing: border-box;
        }

        body {
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Samsung One', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            font-weight: 400;
            line-height: 1.6;
            letter-spacing: -0.01em;
            background: #000000;
            background-image:
                radial-gradient(circle at 20% 20%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #1a0a2e 50%, #16213e 75%, #0f3460 100%);
            background-size: 800px 800px, 600px 600px, 400px 400px, 300px 300px, 100% 100%;
            background-attachment: fixed;
            animation: spaceBackground 60s ease-in-out infinite;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Samsung One', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -0.02em;
        }

        .font-display {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Samsung One', sans-serif;
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        .font-body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Samsung One', sans-serif;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        .text-smooth {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        @keyframes typewriter {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        @keyframes blink {

            0%,
            50% {
                border-color: transparent;
            }

            51%,
            100% {
                border-color: currentColor;
            }
        }

        @keyframes typewriterFast {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        @keyframes typewriterSlow {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        @keyframes cursorBlink {

            0%,
            50% {
                opacity: 1;
            }

            51%,
            100% {
                opacity: 0;
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease-out;
        }

        .animate-slideInLeft {
            animation: slideInLeft 0.8s ease-out;
        }

        .animate-slideInRight {
            animation: slideInRight 0.8s ease-out;
        }

        .animate-bounce-custom {
            animation: bounce 2s infinite;
        }

        .animate-pulse-custom {
            animation: pulse 2s infinite;
        }

        .typewriter {
            overflow: hidden;
            white-space: nowrap;
            animation: typewriter 3s steps(40) 1s both;
        }

        .typewriter-fast {
            overflow: hidden;
            white-space: nowrap;
            animation: typewriterFast 1.5s steps(30) 0.5s both;
        }

        .typewriter-slow {
            overflow: hidden;
            white-space: nowrap;
            animation: typewriterSlow 5s steps(50) 1.5s both;
        }

        .typewriter-title {
            overflow: hidden;
            white-space: nowrap;
            animation: typewriter 4s steps(20) 0.5s both;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
        }

        .typewriter-subtitle {
            overflow: hidden;
            white-space: nowrap;
            animation: typewriter 3s steps(60) 2s both;
            text-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
        }

        .typewriter-description {
            overflow: hidden;
            white-space: nowrap;
            animation: typewriter 4s steps(80) 3.5s both;
        }

        .typewriter-card {
            overflow: hidden;
            white-space: nowrap;
            animation: typewriter 2s steps(25) 0.3s both;
        }

        .typewriter-service {
            overflow: hidden;
            white-space: nowrap;
            animation: typewriter 2.5s steps(35) 0.8s both;
        }

        .typewriter-testimonial {
            overflow: hidden;
            white-space: nowrap;
            animation: typewriter 3.5s steps(45) 1s both;
        }

        .typewriter-contact {
            overflow: hidden;
            white-space: nowrap;
            animation: typewriter 2s steps(20) 0.5s both;
        }

        .typewriter-delay-1 {
            animation-delay: 1s;
        }

        .typewriter-delay-2 {
            animation-delay: 2s;
        }

        .typewriter-delay-3 {
            animation-delay: 3s;
        }

        .typewriter-delay-4 {
            animation-delay: 4s;
        }

        .typewriter-delay-5 {
            animation-delay: 5s;
        }

        .gradient-bg {
            background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        }

        .hero-background {
            background: linear-gradient(135deg, #000000 0%, #0a0a0a 20%, #1a0a2e 40%, #16213e 60%, #0f3460 80%, #000000 100%);
            background-size: 400% 400%;
            animation: spaceGradient 20s ease infinite;
            position: relative;
            overflow: hidden;
        }

        .hero-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 15% 25%, rgba(0, 255, 255, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 85% 75%, rgba(138, 43, 226, 0.12) 0%, transparent 35%),
                radial-gradient(circle at 45% 10%, rgba(0, 191, 255, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 70% 90%, rgba(255, 20, 147, 0.08) 0%, transparent 25%);
            animation: cosmicNebula 25s ease-in-out infinite;
        }

        .hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.9), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(0, 255, 255, 0.8), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.7), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(138, 43, 226, 0.6), transparent),
                radial-gradient(2px 2px at 160px 30px, rgba(0, 191, 255, 0.5), transparent),
                radial-gradient(1px 1px at 200px 120px, rgba(255, 20, 147, 0.4), transparent);
            background-repeat: repeat;
            background-size: 250px 150px;
            animation: starField 40s linear infinite;
            opacity: 0.8;
        }

        @keyframes spaceGradient {
            0% {
                background-position: 0% 50%;
            }

            25% {
                background-position: 100% 25%;
            }

            50% {
                background-position: 50% 100%;
            }

            75% {
                background-position: 0% 75%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        @keyframes cosmicNebula {

            0%,
            100% {
                transform: scale(1) rotate(0deg);
                opacity: 0.8;
            }

            25% {
                transform: scale(1.1) rotate(90deg);
                opacity: 0.6;
            }

            50% {
                transform: scale(0.9) rotate(180deg);
                opacity: 1;
            }

            75% {
                transform: scale(1.05) rotate(270deg);
                opacity: 0.7;
            }
        }

        @keyframes starField {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }

            100% {
                transform: translate(-250px, -150px) rotate(360deg);
            }
        }

        .floating-particles {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            animation: cosmicFloat 20s infinite linear;
        }

        .particle:nth-child(1) {
            left: 10%;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.9), rgba(0, 255, 255, 0.3));
            box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
            animation-delay: 0s;
            animation-duration: 15s;
        }

        .particle:nth-child(2) {
            left: 20%;
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, rgba(138, 43, 226, 0.9), rgba(138, 43, 226, 0.3));
            box-shadow: 0 0 12px rgba(138, 43, 226, 0.8);
            animation-delay: 3s;
            animation-duration: 18s;
        }

        .particle:nth-child(3) {
            left: 30%;
            width: 3px;
            height: 3px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
            animation-delay: 6s;
            animation-duration: 22s;
        }

        .particle:nth-child(4) {
            left: 40%;
            width: 5px;
            height: 5px;
            background: radial-gradient(circle, rgba(0, 191, 255, 0.9), rgba(0, 191, 255, 0.3));
            box-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
            animation-delay: 9s;
            animation-duration: 16s;
        }

        .particle:nth-child(5) {
            left: 50%;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, rgba(255, 20, 147, 0.9), rgba(255, 20, 147, 0.3));
            box-shadow: 0 0 10px rgba(255, 20, 147, 0.8);
            animation-delay: 12s;
            animation-duration: 19s;
        }

        .particle:nth-child(6) {
            left: 60%;
            width: 7px;
            height: 7px;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.9), rgba(0, 255, 255, 0.3));
            box-shadow: 0 0 14px rgba(0, 255, 255, 0.8);
            animation-delay: 15s;
            animation-duration: 14s;
        }

        .particle:nth-child(7) {
            left: 70%;
            width: 3px;
            height: 3px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4));
            box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
            animation-delay: 18s;
            animation-duration: 21s;
        }

        .particle:nth-child(8) {
            left: 80%;
            width: 5px;
            height: 5px;
            background: radial-gradient(circle, rgba(138, 43, 226, 0.9), rgba(138, 43, 226, 0.3));
            box-shadow: 0 0 10px rgba(138, 43, 226, 0.8);
            animation-delay: 21s;
            animation-duration: 17s;
        }

        .particle:nth-child(9) {
            left: 90%;
            width: 4px;
            height: 4px;
            background: radial-gradient(circle, rgba(0, 191, 255, 0.9), rgba(0, 191, 255, 0.3));
            box-shadow: 0 0 10px rgba(0, 191, 255, 0.8);
            animation-delay: 24s;
            animation-duration: 13s;
        }

        .particle:nth-child(10) {
            left: 15%;
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, rgba(255, 20, 147, 0.9), rgba(255, 20, 147, 0.3));
            box-shadow: 0 0 12px rgba(255, 20, 147, 0.8);
            animation-delay: 27s;
            animation-duration: 25s;
        }

        @keyframes cosmicFloat {
            0% {
                transform: translateY(100vh) translateX(0px) rotate(0deg) scale(0.5);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            25% {
                transform: translateY(75vh) translateX(20px) rotate(90deg) scale(1);
            }

            50% {
                transform: translateY(50vh) translateX(-15px) rotate(180deg) scale(1.2);
            }

            75% {
                transform: translateY(25vh) translateX(30px) rotate(270deg) scale(0.8);
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100px) translateX(0px) rotate(360deg) scale(0.3);
                opacity: 0;
            }
        }

        .hero-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1000px;
            height: 1000px;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, rgba(138, 43, 226, 0.1) 30%, rgba(0, 191, 255, 0.08) 60%, transparent 80%);
            animation: cosmicPulse 12s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes cosmicPulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
                opacity: 0.6;
            }

            33% {
                transform: translate(-50%, -50%) scale(1.3) rotate(120deg);
                opacity: 0.9;
            }

            66% {
                transform: translate(-50%, -50%) scale(0.8) rotate(240deg);
                opacity: 0.4;
            }
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .glass-effect {
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .floating {
            animation: bounce 3s ease-in-out infinite;
        }

        .hover-scale {
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            backface-visibility: hidden;
            will-change: transform;
            position: relative;
        }

        .hover-scale::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
            border-radius: inherit;
            opacity: 0;
            z-index: -1;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: blur(6px);
        }

        .hover-scale:hover::before {
            opacity: 0.5;
        }

        .hover-scale:hover {
            transform: scale(1.05) translateY(-8px) rotateX(3deg);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.2),
                0 10px 20px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .hover-scale:active {
            transform: scale(1.02) translateY(-4px) rotateX(1deg);
            transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .hover-glow {
            transition: all 0.3s ease;
            position: relative;
        }

        .hover-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .hover-bounce {
            transition: all 0.3s ease;
        }

        .hover-bounce:hover {
            transform: translateY(-8px);
            animation: bounce 0.6s ease-in-out;
        }

        .hover-rotate {
            transition: all 0.3s ease;
        }

        .hover-rotate:hover {
            transform: rotate(5deg) scale(1.1);
        }

        .hover-slide {
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .hover-slide:hover {
            transform: translateX(10px);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .hover-pulse {
            transition: all 0.3s ease;
        }

        .hover-pulse:hover {
            animation: pulse 1s infinite;
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
        }

        .hover-flip {
            transition: all 0.6s ease;
            transform-style: preserve-3d;
        }

        .hover-flip:hover {
            transform: rotateY(180deg);
        }

        .hover-shake {
            transition: all 0.3s ease;
        }

        .hover-shake:hover {
            animation: shake 0.5s ease-in-out;
        }

        @keyframes shake {

            0%,
            100% {
                transform: translateX(0);
            }

            25% {
                transform: translateX(-5px);
            }

            75% {
                transform: translateX(5px);
            }
        }

        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: #667eea;
            transform: translateY(-2px);
        }

        .nav-link-enhanced {
            position: relative;
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            border-radius: 0.75rem;
            font-weight: 600;
            color: #374151;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
            overflow: hidden;
        }

        .dark .nav-link-enhanced {
            color: #d1d5db;
        }

        .nav-link-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: inherit;
        }

        .nav-link-enhanced:hover::before {
            opacity: 1;
        }

        .nav-link-enhanced:hover {
            color: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
        }

        .dark .nav-link-enhanced:hover {
            color: #60a5fa;
        }

        .nav-link-enhanced i {
            transition: all 0.3s ease;
        }

        .nav-link-enhanced:hover i {
            transform: scale(1.1);
            color: #3b82f6;
        }

        .dark .nav-link-enhanced:hover i {
            color: #60a5fa;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem;
            border-radius: 0.75rem;
            font-weight: 600;
            color: #374151;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .dark .mobile-nav-link {
            color: #d1d5db;
            background: rgba(31, 41, 55, 0.5);
            border: 1px solid rgba(75, 85, 99, 0.3);
        }

        .mobile-nav-link:hover {
            transform: translateX(8px);
            background: rgba(59, 130, 246, 0.1);
            border-color: rgba(59, 130, 246, 0.3);
            color: #3b82f6;
        }

        .dark .mobile-nav-link:hover {
            background: rgba(59, 130, 246, 0.1);
            border-color: rgba(59, 130, 246, 0.3);
            color: #60a5fa;
        }

        .button-hover {
            position: relative;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            backface-visibility: hidden;
            will-change: transform;
        }

        .button-hover::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: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .button-hover::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            border-radius: inherit;
            opacity: 0;
            z-index: -1;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            filter: blur(4px);
        }

        .button-hover:hover::before {
            left: 100%;
        }

        .button-hover:hover::after {
            opacity: 0.8;
        }

        .button-hover:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow:
                0 15px 35px rgba(0, 0, 0, 0.25),
                0 8px 16px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        .button-hover:active {
            transform: translateY(-2px) scale(1.01);
            transition: all 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .card-hover {
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: cardFloat 6s ease-in-out infinite;
        }

        @keyframes cardFloat {

            0%,
            100% {
                transform: translateY(0px) translateX(0px);
            }

            25% {
                transform: translateY(-3px) translateX(2px);
            }

            50% {
                transform: translateY(-6px) translateX(0px);
            }

            75% {
                transform: translateY(-3px) translateX(-2px);
            }
        }

        .card-hover::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }

        .card-hover::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(138, 43, 226, 0.05));
            opacity: 0;
            transition: all 0.4s ease;
            border-radius: inherit;
            z-index: 0;
        }

        .card-hover:hover::before {
            left: 100%;
        }

        .card-hover:hover::after {
            opacity: 1;
        }

        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow:
                0 15px 35px rgba(0, 255, 255, 0.15),
                0 8px 20px rgba(138, 43, 226, 0.1),
                0 0 30px rgba(0, 255, 255, 0.1);
            border-color: rgba(0, 255, 255, 0.3);
        }

        .card-hover:active {
            transform: translateY(-2px);
            transition: all 0.1s ease;
        }

        .icon-hover {
            transition: all 0.3s ease;
        }

        .icon-hover:hover {
            transform: scale(1.3) rotate(15deg);
            color: #667eea;
        }

        .text-hover {
            transition: all 0.3s ease;
            position: relative;
        }

        .text-hover:hover {
            color: #667eea;
            text-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
        }

        .hologram-text {
            position: relative;
            background: linear-gradient(135deg, #00ffff, #40e0d0, #00bfff, #87ceeb, #ffffff);
            background-size: 100% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            letter-spacing: -0.01em;
            text-shadow:
                0 0 10px rgba(0, 255, 255, 0.8),
                0 0 20px rgba(0, 255, 255, 0.6),
                0 0 30px rgba(0, 255, 255, 0.4),
                0 2px 4px rgba(0, 0, 0, 0.8);
            filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.7));
        }

        .hologram-text::before {
            content: attr(data-text);
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            -webkit-background-clip: text;
            background-clip: text;
            animation: hologramScan 8s linear infinite;
            z-index: 1;
            opacity: 0.5;
        }

        .hologram-text::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg,
                    rgba(59, 130, 246, 0.08) 0%,
                    rgba(139, 92, 246, 0.08) 50%,
                    rgba(6, 182, 212, 0.08) 100%);
            border-radius: inherit;
            z-index: -1;
            animation: hologramBorder 8s ease-in-out infinite;
            opacity: 0.3;
            filter: blur(1px);
        }

        @keyframes hologramShift {

            0%,
            100% {
                background-position: 0% 50%;
                filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.25));
            }

            33% {
                background-position: 100% 50%;
                filter: drop-shadow(0 2px 8px rgba(139, 92, 246, 0.25));
            }

            66% {
                background-position: 50% 100%;
                filter: drop-shadow(0 2px 8px rgba(6, 182, 212, 0.25));
            }
        }

        @keyframes hologramGlow {
            0% {
                text-shadow:
                    0 0 8px rgba(0, 255, 255, 0.6),
                    0 0 16px rgba(0, 255, 255, 0.4),
                    0 0 24px rgba(0, 255, 255, 0.3),
                    0 0 32px rgba(0, 255, 255, 0.2);
            }

            50% {
                text-shadow:
                    0 0 12px rgba(0, 255, 255, 0.8),
                    0 0 24px rgba(0, 255, 255, 0.6),
                    0 0 36px rgba(0, 255, 255, 0.4),
                    0 0 48px rgba(0, 255, 255, 0.3),
                    0 0 60px rgba(0, 255, 255, 0.2);
            }

            100% {
                text-shadow:
                    0 0 10px rgba(0, 255, 255, 0.7),
                    0 0 20px rgba(0, 255, 255, 0.5),
                    0 0 30px rgba(0, 255, 255, 0.35),
                    0 0 40px rgba(0, 255, 255, 0.25);
            }
        }

        @keyframes hologramScan {
            0% {
                transform: translateX(-100%);
                opacity: 0;
            }

            50% {
                opacity: 0.4;
            }

            100% {
                transform: translateX(100%);
                opacity: 0;
            }
        }

        @keyframes hologramBorder {

            0%,
            100% {
                opacity: 0.2;
                transform: scale(1);
            }

            50% {
                opacity: 0.4;
                transform: scale(1.005);
            }
        }

        .hologram-title {
            position: relative;
            background: linear-gradient(135deg, #00ffff, #00e5ff, #40e0d0, #87ceeb, #ffffff);
            background-size: 100% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
            letter-spacing: -0.02em;
            text-shadow:
                0 0 15px rgba(0, 255, 255, 0.9),
                0 0 25px rgba(0, 255, 255, 0.7),
                0 0 35px rgba(0, 255, 255, 0.5),
                0 3px 6px rgba(0, 0, 0, 0.9);
            filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
        }

        .hologram-subtitle {
            background: linear-gradient(135deg, #ff69b4, #ff1493, #dc143c, #ff6347, #ffffff);
            background-size: 100% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            letter-spacing: 0.01em;
            text-shadow:
                0 0 8px rgba(255, 105, 180, 0.8),
                0 0 15px rgba(255, 20, 147, 0.6),
                0 0 22px rgba(220, 20, 60, 0.4),
                0 2px 4px rgba(0, 0, 0, 0.8);
            filter: drop-shadow(0 0 10px rgba(255, 105, 180, 0.6));
        }

        @keyframes hologramPulse {

            0%,
            100% {
                opacity: 0.95;
                text-shadow:
                    0 1px 3px rgba(255, 107, 53, 0.4),
                    0 2px 6px rgba(255, 107, 53, 0.3);
            }

            50% {
                opacity: 1;
                text-shadow:
                    0 2px 4px rgba(255, 107, 53, 0.5),
                    0 3px 8px rgba(255, 107, 53, 0.4);
            }
        }

        .hologram-card-title {
            background: linear-gradient(135deg, #00ffff, #00bfff, #1e90ff, #4169e1, #ffffff);
            background-size: 100% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            letter-spacing: 0em;
            text-shadow:
                0 0 8px rgba(0, 255, 255, 0.8),
                0 0 15px rgba(0, 191, 255, 0.6),
                0 1px 3px rgba(0, 0, 0, 0.7);
            filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.6));
        }

        .hologram-price {
            background: linear-gradient(135deg, #00ff7f, #00fa9a, #32cd32, #7fff00, #ffffff);
            background-size: 100% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            letter-spacing: -0.01em;
            text-shadow:
                0 0 10px rgba(0, 255, 127, 0.8),
                0 0 18px rgba(0, 250, 154, 0.6),
                0 0 25px rgba(50, 205, 50, 0.4),
                0 2px 4px rgba(0, 0, 0, 0.8);
            filter: drop-shadow(0 0 12px rgba(0, 255, 127, 0.7));
        }

        .social-hover {
            transition: all 0.3s ease;
        }

        .social-hover:hover {
            transform: translateY(-5px) scale(1.2);
            text-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .logo-hover {
            transition: all 0.3s ease;
            animation: logoFloat 3s ease-in-out infinite;
        }

        .logo-hover:hover {
            transform: scale(1.2) rotate(15deg);
            filter: drop-shadow(0 0 15px rgba(102, 126, 234, 0.7));
            animation-play-state: paused;
        }

        @keyframes logoFloat {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            25% {
                transform: translateY(-5px) rotate(2deg);
            }

            50% {
                transform: translateY(-8px) rotate(0deg);
            }

            75% {
                transform: translateY(-3px) rotate(-2deg);
            }
        }

        .logo-spin {
            animation: logoSpin 4s linear infinite;
        }

        @keyframes logoSpin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .logo-bounce {
            animation: logoBounce 2s ease-in-out infinite;
        }

        @keyframes logoBounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        .logo-pulse {
            animation: logoPulse 2s ease-in-out infinite;
        }

        @keyframes logoPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        .logo-shake {
            animation: logoShake 3s ease-in-out infinite;
        }

        @keyframes logoShake {

            0%,
            100% {
                transform: translateX(0);
            }

            10%,
            30%,
            50%,
            70%,
            90% {
                transform: translateX(-2px);
            }

            20%,
            40%,
            60%,
            80% {
                transform: translateX(2px);
            }
        }

        .logo-swing {
            animation: logoSwing 4s ease-in-out infinite;
            transform-origin: top center;
        }

        @keyframes logoSwing {

            0%,
            100% {
                transform: rotate(0deg);
            }

            25% {
                transform: rotate(10deg);
            }

            75% {
                transform: rotate(-10deg);
            }
        }

        .logo-glow {
            animation: logoGlow 3s ease-in-out infinite;
        }

        @keyframes logoGlow {

            0%,
            100% {
                filter: drop-shadow(0 0 5px rgba(255, 107, 53, 0.6));
            }

            50% {
                filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.9));
            }
        }

        .dark {
            color-scheme: dark;
        }

        .dark body {
            background-color: #0f172a;
            color: #e2e8f0;
        }

        .dark .dark\:bg-gray-900 {
            background-color: #0f172a;
        }

        .dark .dark\:bg-gray-800 {
            background-color: #1e293b;
        }

        .dark .dark\:bg-gray-700 {
            background-color: #334155;
        }

        .dark .dark\:text-white {
            color: #f8fafc;
        }

        .dark .dark\:text-gray-300 {
            color: #cbd5e1;
        }

        .dark .dark\:text-gray-400 {
            color: #94a3b8;
        }

        .dark .dark\:border-gray-600 {
            border-color: #475569;
        }

        .dark .dark\:hover\:bg-gray-700:hover {
            background-color: #374151;
        }

        .dark .glass-effect {
            backdrop-filter: blur(10px);
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(148, 163, 184, 0.2);
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }

        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: modalFadeIn 0.3s ease-out;
        }

        .modal-content {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            max-width: 500px;
            width: 90%;
            max-height: 90%;
            overflow-y: auto;
            position: relative;
            transform: scale(0.7) translateY(-50px);
            animation: modalPopIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .dark .modal-content {
            background: #1e293b;
            color: #f8fafc;
            border: 1px solid #475569;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes modalPopIn {
            0% {
                transform: scale(0.7) translateY(-50px);
                opacity: 0;
            }

            50% {
                transform: scale(1.05) translateY(-10px);
                opacity: 0.8;
            }

            100% {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .modal.hide .modal-content {
            animation: modalPopOut 0.3s ease-in forwards;
        }

        @keyframes modalPopOut {
            0% {
                transform: scale(1) translateY(0);
                opacity: 1;
            }

            100% {
                transform: scale(0.7) translateY(-50px);
                opacity: 0;
            }
        }

        .contact-popup {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
        }

        .contact-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            animation: pulse 2s infinite;
        }

        .contact-menu {
            position: absolute;
            bottom: 70px;
            right: 0;
            background: white;
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            display: none;
            min-width: 200px;
        }

        .dark .contact-menu {
            background: #1f2937;
            color: #f8fafc;
            border: 1px solid #374151;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
        }

        .contact-menu.show {
            display: block;
            animation: slideInRight 0.3s ease-out;
        }

        .tab-content {
            display: none;
            opacity: 0;
            transform: translateX(100px) scale(0.95);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .tab-content.active {
            display: block;
            opacity: 1;
            transform: translateX(0) scale(1);
            animation: iPhoneSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .tab-content.slide-out {
            opacity: 0;
            transform: translateX(-100px) scale(0.95);
            transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
        }

        @keyframes iPhoneSlideIn {
            0% {
                opacity: 0;
                transform: translateX(100px) scale(0.95);
                filter: blur(2px);
            }

            60% {
                opacity: 0.8;
                transform: translateX(-10px) scale(1.02);
                filter: blur(0px);
            }

            100% {
                opacity: 1;
                transform: translateX(0) scale(1);
                filter: blur(0px);
            }
        }

        .tab-button {
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transform: scale(1);
            position: relative;
            overflow: hidden;
        }

        .tab-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .tab-button:hover::before {
            left: 100%;
        }

        .tab-button.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .tab-button:active {
            transform: scale(0.98);
            transition: all 0.1s ease;
        }

        .hero-animation {
            position: relative;
            width: 350px;
            height: 350px;
            margin: 0 auto;
        }

        .network-circle {
            position: absolute;
            border: 2px solid rgba(0, 255, 255, 0.4);
            border-radius: 50%;
            animation: cosmicOrbit 25s linear infinite;
            box-shadow:
                0 0 20px rgba(0, 255, 255, 0.3),
                inset 0 0 20px rgba(0, 255, 255, 0.1);
        }

        .network-circle:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 115px;
            left: 115px;
            border-color: rgba(0, 255, 255, 0.6);
            animation-duration: 20s;
        }

        .network-circle:nth-child(2) {
            width: 180px;
            height: 180px;
            top: 85px;
            left: 85px;
            border-color: rgba(138, 43, 226, 0.5);
            animation-duration: 30s;
            animation-direction: reverse;
            box-shadow:
                0 0 25px rgba(138, 43, 226, 0.4),
                inset 0 0 25px rgba(138, 43, 226, 0.1);
        }

        .network-circle:nth-child(3) {
            width: 240px;
            height: 240px;
            top: 55px;
            left: 55px;
            border-color: rgba(0, 191, 255, 0.4);
            animation-duration: 35s;
            box-shadow:
                0 0 30px rgba(0, 191, 255, 0.3),
                inset 0 0 30px rgba(0, 191, 255, 0.1);
        }

        .network-dot {
            position: absolute;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            animation: cosmicPulse 3s ease-in-out infinite;
        }

        .network-dot:nth-child(4) {
            top: 40px;
            left: 168px;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.9), rgba(0, 255, 255, 0.3));
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
            animation-delay: 0s;
        }

        .network-dot:nth-child(5) {
            top: 168px;
            left: 310px;
            background: radial-gradient(circle, rgba(138, 43, 226, 0.9), rgba(138, 43, 226, 0.3));
            box-shadow: 0 0 25px rgba(138, 43, 226, 0.8);
            animation-delay: 0.7s;
        }

        .network-dot:nth-child(6) {
            top: 296px;
            left: 168px;
            background: radial-gradient(circle, rgba(0, 191, 255, 0.9), rgba(0, 191, 255, 0.3));
            box-shadow: 0 0 25px rgba(0, 191, 255, 0.8);
            animation-delay: 1.4s;
        }

        .network-dot:nth-child(7) {
            top: 168px;
            left: 26px;
            background: radial-gradient(circle, rgba(255, 20, 147, 0.9), rgba(255, 20, 147, 0.3));
            box-shadow: 0 0 25px rgba(255, 20, 147, 0.8);
            animation-delay: 2.1s;
        }

        .center-router {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.9), rgba(138, 43, 226, 0.7), rgba(0, 191, 255, 0.5));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8));
            animation: cosmicRotate 8s ease-in-out infinite;
        }

        @keyframes cosmicOrbit {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes cosmicRotate {

            0%,
            100% {
                transform: translate(-50%, -50%) rotate(0deg) scale(1);
                filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8));
            }

            25% {
                transform: translate(-50%, -50%) rotate(90deg) scale(1.1);
                filter: drop-shadow(0 0 40px rgba(138, 43, 226, 0.8));
            }

            50% {
                transform: translate(-50%, -50%) rotate(180deg) scale(0.9);
                filter: drop-shadow(0 0 35px rgba(0, 191, 255, 0.8));
            }

            75% {
                transform: translate(-50%, -50%) rotate(270deg) scale(1.05);
                filter: drop-shadow(0 0 45px rgba(255, 20, 147, 0.8));
            }
        }

        .signal-wave {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            animation: cosmicWave 4s ease-out infinite;
        }

        .signal-wave:nth-child(8) {
            border: 2px solid rgba(0, 255, 255, 0.7);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
            animation-delay: 0s;
        }

        .signal-wave:nth-child(9) {
            border: 2px solid rgba(138, 43, 226, 0.6);
            box-shadow: 0 0 25px rgba(138, 43, 226, 0.4);
            animation-delay: 1.3s;
        }

        .signal-wave:nth-child(10) {
            border: 2px solid rgba(0, 191, 255, 0.5);
            box-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
            animation-delay: 2.6s;
        }

        @keyframes cosmicWave {
            0% {
                transform: translate(-50%, -50%) scale(0) rotate(0deg);
                opacity: 1;
            }

            50% {
                transform: translate(-50%, -50%) scale(2) rotate(180deg);
                opacity: 0.6;
            }

            100% {
                transform: translate(-50%, -50%) scale(5) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes spaceBackground {

            0%,
            100% {
                background-position: 0% 0%, 100% 100%, 50% 50%, 25% 75%, 0% 50%;
            }

            25% {
                background-position: 25% 25%, 75% 75%, 75% 25%, 50% 50%, 25% 75%;
            }

            50% {
                background-position: 50% 50%, 50% 50%, 25% 75%, 75% 25%, 50% 100%;
            }

            75% {
                background-position: 75% 75%, 25% 25%, 0% 100%, 100% 0%, 75% 25%;
            }
        }

        .space-stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .space-stars::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(2px 2px at 20px 30px, #eee, transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), transparent),
                radial-gradient(1px 1px at 90px 40px, #fff, transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.6), transparent),
                radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
            background-repeat: repeat;
            background-size: 200px 100px;
            animation: sparkle 20s linear infinite;
        }

        .space-stars::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(1px 1px at 50px 50px, rgba(255, 255, 255, 0.4), transparent),
                radial-gradient(1px 1px at 100px 100px, rgba(255, 255, 255, 0.3), transparent),
                radial-gradient(1px 1px at 150px 150px, rgba(255, 255, 255, 0.5), transparent);
            background-repeat: repeat;
            background-size: 300px 300px;
            animation: sparkle 30s linear infinite reverse;
        }

        @keyframes sparkle {
            0% {
                transform: translateY(0px);
            }

            100% {
                transform: translateY(-100px);
            }
        }
