@charset "utf-8";

/* CSS Document */

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

        body {
            font-family: 'Rajdhani', sans-serif;
            background: #050814;
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
            font-weight: 400;
        }

        /* Animated background with hexagon pattern */
        .xkhNyVaPa {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, transparent 2%, rgba(124, 60, 255, 0.03) 2%, rgba(124, 60, 255, 0.03) 3%, transparent 3%),
                radial-gradient(circle at 75% 75%, transparent 2%, rgba(0, 217, 255, 0.03) 2%, rgba(0, 217, 255, 0.03) 3%, transparent 3%);
            background-size: 80px 80px;
            animation: grid-move 30s linear infinite;
            z-index: -2;
        }

        /* Animated shapes */
        .Hg52voAvSj {
            position: fixed;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .A8VwvemPLYP {
            position: absolute;
            opacity: 0.1;
        }

        .hshbrkw7yMv {
            width: 300px;
            height: 300px;
            border: 2px solid #7C3CFF;
            border-radius: 50%;
            top: 10%;
            left: 10%;
            animation: float-rotate 20s ease-in-out infinite;
        }

        .g4c0hdoGDJ {
            width: 0;
            height: 0;
            border-left: 100px solid transparent;
            border-right: 100px solid transparent;
            border-bottom: 173px solid rgba(0, 217, 255, 0.2);
            top: 60%;
            right: 15%;
            animation: float-rotate 25s ease-in-out infinite reverse;
        }

        .e5HMBW {
            width: 150px;
            height: 150px;
            border: 2px solid #00D9FF;
            transform: rotate(45deg);
            bottom: 20%;
            left: 20%;
            animation: float-rotate 22s ease-in-out infinite;
        }

        @keyframes float-rotate {
            0%, 100% {
                transform: translateY(0) rotate(0deg) scale(1);
            }
            25% {
                transform: translateY(-30px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translateY(20px) rotate(180deg) scale(0.9);
            }
            75% {
                transform: translateY(-10px) rotate(270deg) scale(1.05);
            }
        }

        /* Gradient overlay */
        .ReLfygHOvkL {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(124, 60, 255, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
            z-index: -1;
            animation: gradient-shift 10s ease-in-out infinite;
        }

        @keyframes gradient-shift {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
        }

        @keyframes grid-move {
            0% { transform: translate(0, 0); }
            100% { transform: translate(80px, 80px); }
        }

        /* Floating particles */
        .particle {
            position: fixed;
            pointer-events: none;
            opacity: 0;
            z-index: 1;
        }

        .particle::before {
            content: '';
            position: absolute;
            width: 2px;
            height: 2px;
            background: #7C3CFF;
            box-shadow: 0 0 10px #7C3CFF, 0 0 20px #7C3CFF;
            animation: float-up 15s linear infinite;
        }

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

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(124, 60, 255, 0.1);
        }

        nav.scrolled {
            padding: 15px 50px;
            background: rgba(10, 10, 10, 0.95);
            box-shadow: 0 5px 30px rgba(124, 60, 255, 0.2);
        }

        .jE4v6bhwWJw {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dbYCzX {
            display: flex;
            align-items: center;
            text-decoration: none;
            gap: 10px;
        }

        .WIbtzoaF {
            width: 40px;
            height: 40px;
        }

        .zw6ICZ5I {
            font-family: 'Orbitron', monospace;
            font-size: 24px;
            font-weight: 900;
            background: linear-gradient(45deg, #7C3CFF, #00D9FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 2s ease-in-out infinite;
            text-shadow: 0 0 30px rgba(124, 60, 255, 0.5);
        }

        @keyframes glow {
            0%, 100% { 
                filter: brightness(1);
                text-shadow: 0 0 30px rgba(124, 60, 255, 0.5);
            }
            50% { 
                filter: brightness(1.5);
                text-shadow: 0 0 40px rgba(124, 60, 255, 0.8);
            }
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #ffffff;
            position: relative;
            transition: all 0.3s ease;
            padding: 8px 16px;
            font-family: 'Orbitron', monospace;
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.7;
        }

        .nav-links a.active {
            opacity: 1;
            color: #7C3CFF;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-links a:hover::before,
        .nav-links a.active::before {
            border-color: #7C3CFF;
            box-shadow: inset 0 0 10px rgba(124, 60, 255, 0.5);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #7C3CFF, #00D9FF);
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(124, 60, 255, 0.8);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        /* Mobile menu */
        .w1lafaO6R2z {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 4px;
        }

        .w1lafaO6R2z span {
            width: 25px;
            height: 2px;
            background: #7C3CFF;
            transition: all 0.3s ease;
        }

        .w1lafaO6R2z.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .w1lafaO6R2z.active span:nth-child(2) {
            opacity: 0;
        }

        .w1lafaO6R2z.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Hero Section */
        .L5pNVaxc {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 80px 20px 20px;
        }

        .Bg8vvQh {
            text-align: center;
            max-width: 1200px;
            animation: fade-in-up 1s ease-out;
            z-index: 10;
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Text Rotator Styles */
        .qIGOh0jo {
            position: relative;
            min-height: 100px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .text-set {
            position: absolute;
            width: 100%;
            opacity: 0;
            display: none;
        }

        .text-set.active {
            opacity: 1;
            display: block;
        }

        .glitch-text {
            font-family: 'Orbitron', monospace;
            font-size: clamp(0.98rem, 2.94vw, 2.4rem);
            font-weight: 900;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-shadow: 0 0 20px rgba(124, 60, 255, 0.5);
            overflow: hidden;
        }

        .char {
            display: inline-block;
            opacity: 0;
            transform: translateY(50px);
            animation: charFlyIn 0.5s ease-out forwards;
        }

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

        .char.out {
            animation: charFlyOut 0.3s ease-in forwards;
        }

        @keyframes charFlyOut {
            to {
                opacity: 0;
                transform: translateY(-30px) rotateX(90deg);
            }
        }

        .subtitle {
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 0;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        .subtitle.visible {
            animation: subtitleFade 0.8s ease-out 0.5s forwards;
        }

        @keyframes subtitleFade {
            to {
                opacity: 0.6;
            }
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .glitch-text {
            font-family: 'Orbitron', monospace;
            font-size: clamp(2.6rem, 10vw, 3.8rem);
            font-weight: 900;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            text-shadow: 0 0 20px rgba(124, 60, 255, 0.5);
        }

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

        .glitch-text::before {
            animation: glitch-1 0.5s infinite;
            color: #7C3CFF;
            z-index: -1;
            text-shadow: -2px 0 #7C3CFF;
        }

        .glitch-text::after {
            animation: glitch-2 0.5s infinite;
            color: #00D9FF;
            z-index: -1;
            text-shadow: 2px 0 #00D9FF;
        }

        @keyframes glitch-1 {
            0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
            20% { clip-path: inset(33% 0 33% 0); transform: translate(-2px); }
            40% { clip-path: inset(66% 0 0 0); transform: translate(2px); }
            60% { clip-path: inset(0 0 66% 0); transform: translate(1px); }
            80% { clip-path: inset(25% 0 50% 0); transform: translate(-1px); }
        }

        @keyframes glitch-2 {
            0%, 100% { clip-path: inset(0 0 0 0); transform: translate(0); }
            20% { clip-path: inset(50% 0 25% 0); transform: translate(2px); }
            40% { clip-path: inset(0 0 75% 0); transform: translate(-2px); }
            60% { clip-path: inset(75% 0 0 0); transform: translate(-1px); }
            80% { clip-path: inset(40% 0 40% 0); transform: translate(1px); }
        }

        .subtitle {
            font-size: 1.5rem;
            margin: 20px 0;
            opacity: 0.6;
            animation: fade-in 1s ease-out 0.5s both;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        @keyframes fade-in {
            from { opacity: 0; }
            to { opacity: 0.6; }
        }

        .gvTCVGASc {
            position: absolute;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            z-index: 100;
        }

        .mX7TLdy {
            padding: 12px 30px;
            border: none;
            font-size: 1rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-family: 'Orbitron', monospace;
            font-weight: 700;
        }

        .rvJ5ivq {
            background: linear-gradient(45deg, #7C3CFF, #00D9FF);
            color: white;
            animation: pulse 2s infinite;
            box-shadow: 0 0 30px rgba(124, 60, 255, 0.5);
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 0 30px rgba(124, 60, 255, 0.5);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(124, 60, 255, 0.8);
            }
        }

        .koLl4YUO8v {
            background: transparent;
            color: #7C3CFF;
            border: 2px solid #7C3CFF;
            box-shadow: inset 0 0 20px rgba(124, 60, 255, 0.1);
        }

        .mX7TLdy::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .mX7TLdy:hover::before {
            width: 300px;
            height: 300px;
        }

        .koLl4YUO8v:hover {
            background: rgba(124, 60, 255, 0.1);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 40px rgba(124, 60, 255, 0.4), inset 0 0 30px rgba(124, 60, 255, 0.2);
            border-color: #ffffff;
        }

        /* Features Section with Tabs */
        .ZvrcLzg {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .wm9R7gZXs7 {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(45deg, #7C3CFF, #00D9FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
        }

        .OwjdgFvUNoZ {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
            align-items: start;
        }

        .Xfoq10g {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(124, 60, 255, 0.2);
            border-radius: 10px;
            padding: 20px;
            backdrop-filter: blur(10px);
        }

        .tab-item {
            padding: 15px 20px;
            margin-bottom: 10px;
            cursor: pointer;
            border: 1px solid transparent;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.1rem;
        }

        .tab-item:hover {
            background: rgba(124, 60, 255, 0.1);
            border-color: rgba(124, 60, 255, 0.3);
        }

        .tab-item.active {
            background: linear-gradient(45deg, rgba(124, 60, 255, 0.2), rgba(0, 217, 255, 0.2));
            border-color: #7C3CFF;
            box-shadow: 0 0 20px rgba(124, 60, 255, 0.3);
        }

        .pCVGNzwWz {
            font-size: 1.5rem;
        }

        .uhFikT0pYx {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(124, 60, 255, 0.2);
            border-radius: 10px;
            padding: 40px;
            backdrop-filter: blur(10px);
            min-height: 400px;
        }

        .content-panel {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .content-panel.active {
            display: block;
        }

        .content-panel h3 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ffffff, #7C3CFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .content-panel p {
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .bboismdL {
            list-style: none;
            margin-top: 20px;
        }

        .bboismdL li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            opacity: 0.8;
        }

        .bboismdL li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #7C3CFF;
            font-size: 1.2rem;
        }

        /* About Section */
        .NEZ3KJ {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .HgubIpBB {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .vouiCb h2 {
            font-family: 'Orbitron', monospace;
            font-size: 2.5rem;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #7C3CFF, #00D9FF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .vouiCb p {
            line-height: 1.8;
            opacity: 0.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .HEUFGb1Z {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .o1Ju2SHP89 {
            width: 300px;
            height: 300px;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .o1Ju2SHP89::before,
        .o1Ju2SHP89::after {
            content: '';
            position: absolute;
            border: 2px solid #7C3CFF;
            border-radius: 10px;
            box-shadow: 0 0 30px rgba(124, 60, 255, 0.5);
        }

        .o1Ju2SHP89::before {
            width: 100%;
            height: 100%;
            animation: rotate 20s linear infinite;
        }

        .o1Ju2SHP89::after {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            border-color: #00D9FF;
            animation: rotate 15s linear infinite reverse;
            box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
        }

        /* Alternative graphic for second row */
        .cB1y7e3KvB {
            width: 300px;
            height: 300px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 6s ease-in-out infinite;
        }

        .OpQvZTFg2 {
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #7C3CFF, #00D9FF);
            opacity: 0.3;
            clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        }

        .OpQvZTFg2:nth-child(1) {
            width: 150px;
            height: 150px;
            animation: hexagon-rotate 8s linear infinite;
        }

        .OpQvZTFg2:nth-child(2) {
            width: 100px;
            height: 100px;
            animation: hexagon-rotate 12s linear infinite reverse;
            opacity: 0.5;
        }

        .OpQvZTFg2:nth-child(3) {
            width: 200px;
            height: 200px;
            animation: hexagon-rotate 15s linear infinite;
            opacity: 0.2;
        }

        @keyframes hexagon-rotate {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
            100% { transform: rotate(360deg) scale(1); }
        }

        /* Contact Section */
        .contact {
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .phAAZMp {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .QoAYPQWqV {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(124, 60, 255, 0.2);
            border-radius: 10px;
            padding: 40px;
            backdrop-filter: blur(10px);
        }

        .NdFM1nQOGp {
            margin-bottom: 25px;
        }

        .NdFM1nQOGp label {
            display: block;
            margin-bottom: 10px;
            color: #7C3CFF;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .NdFM1nQOGp input,
        .NdFM1nQOGp textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(124, 60, 255, 0.3);
            color: white;
            font-size: 1rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-family: 'Rajdhani', sans-serif;
        }

        .NdFM1nQOGp input:focus,
        .NdFM1nQOGp textarea:focus {
            outline: none;
            border-color: #7C3CFF;
            box-shadow: 0 0 20px rgba(124, 60, 255, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

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

        .PknWzEjq {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #7C3CFF, #00D9FF);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Orbitron', monospace;
        }

        .PknWzEjq:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(124, 60, 255, 0.5);
        }

        .Qto8Pxhhz5 {
            padding: 40px;
        }

        .Qto8Pxhhz5 h3 {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            margin-bottom: 30px;
            background: linear-gradient(45deg, #ffffff, #7C3CFF);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .Frfy95g {
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .LxNYPakpG {
            width: 50px;
            height: 50px;
            background: linear-gradient(45deg, #7C3CFF, #00D9FF);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .XfuxPS h4 {
            color: #7C3CFF;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .XfuxPS p {
            opacity: 0.8;
        }

        /* Map Section */
        .OyPIXh {
            margin-top: 40px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(124, 60, 255, 0.2);
            border-radius: 10px;
            padding: 20px;
            backdrop-filter: blur(10px);
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .yoDJTe8 {
            text-align: center;
            opacity: 0.6;
        }

        .QZkCsO7NqL {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(124, 60, 255, 0.1) 50%, transparent 60%);
            animation: scan 3s linear infinite;
        }

        @keyframes scan {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.8);
            border-top: 1px solid rgba(124, 60, 255, 0.2);
            padding: 40px 20px;
            text-align: center;
        }

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

        .NFoEIjfhXei {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }

        .NFoEIjfhXei a {
            color: #7C3CFF;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .NFoEIjfhXei a:hover {
            color: #00D9FF;
            text-shadow: 0 0 10px currentColor;
        }

        .uxIKPOMZ0 {
            opacity: 0.6;
            font-size: 0.9rem;
        }

        .uxIKPOMZ0 a {
            color: #7C3CFF;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .uxIKPOMZ0 a:hover {
            color: #00D9FF;
            text-shadow: 0 0 10px currentColor;
        }

        /* Scanlines effect */
        .vWuRoNrnW {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            background: linear-gradient(
                transparent 50%,
                rgba(124, 60, 255, 0.01) 50%
            );
            background-size: 100% 4px;
            animation: scanlines 8s linear infinite;
            z-index: 2;
            pointer-events: none;
        }

        @keyframes scanlines {
            0% { transform: translateY(0); }
            100% { transform: translateY(10px); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0);
                box-shadow: 0 0 30px rgba(124, 60, 255, 0.5);
            }
            50% { 
                transform: translateY(-10px);
                box-shadow: 0 10px 40px rgba(124, 60, 255, 0.7);
            }
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: rgba(10, 10, 10, 0.95);
                flex-direction: column;
                align-items: center;
                justify-content: start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .w1lafaO6R2z {
                display: flex;
            }

            .Bg8vvQh {
                padding: 0 20px;
            }

            .glitch-text {
                font-size: clamp(1.2rem, 4.9vw, 2.4rem);
            }

            .qIGOh0jo {
                min-height: 150px;
            }

            .subtitle {
                font-size: 1.2rem;
            }

            .gvTCVGASc {
                flex-direction: column;
                align-items: center;
            }

            .mX7TLdy {
                width: 100%;
                max-width: 300px;
            }

            .OwjdgFvUNoZ {
                grid-template-columns: 1fr;
            }

            .Xfoq10g {
                display: block;
                padding: 20px;
                max-width: 100%;
            }

            .tab-item {
                width: 100%;
                margin-bottom: 10px;
            }

            .HgubIpBB,
            .phAAZMp {
                grid-template-columns: 1fr;
            }

            .o1Ju2SHP89 {
                width: 200px;
                height: 200px;
            }

            .hshbrkw7yMv,
            .g4c0hdoGDJ,
            .e5HMBW {
                transform: scale(0.6);
            }
        }

/* QuarveLionix adaptation additions: preserves original component architecture */
:root{--ql-navy:#050814;--ql-graphite:#0d111c;--ql-blue:#1e6bff;--ql-cyan:#00d9ff;--ql-violet:#7c3cff;--ql-silver:#c7d3e6;}
body{background:var(--ql-navy);}
.zw6ICZ5I{font-size:22px;}
.nav-link[aria-current="page"]{color:var(--ql-cyan);}
.Uv2NhdEzM{min-height:58vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:140px 20px 80px;position:relative;}
.Uv2NhdEzM .subtitle{opacity:1;max-width:850px;margin:20px auto 0;}
.lk9KUB{font-family:'Orbitron',monospace;text-transform:uppercase;letter-spacing:3px;color:var(--ql-cyan);margin-bottom:14px;font-size:.95rem;}
.R1kRz4kBhcQ{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:35px;}
.d9SaXg6,.js3d8CqmJm6,.iXRgkbbVZz8,.Nlp8kI,.faq-item{background:rgba(255,255,255,.03);border:1px solid rgba(0,217,255,.18);border-radius:10px;padding:28px;backdrop-filter:blur(10px);transition:all .3s ease;}
.d9SaXg6:hover,.js3d8CqmJm6:hover,.iXRgkbbVZz8:hover{transform:translateY(-5px);border-color:var(--ql-violet);box-shadow:0 10px 30px rgba(124,60,255,.25);}
.d9SaXg6 h3,.js3d8CqmJm6 h3,.iXRgkbbVZz8 h3,.Nlp8kI h3{font-family:'Orbitron',monospace;margin-bottom:15px;background:linear-gradient(45deg,#fff,var(--ql-cyan));-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.d9SaXg6 p,.js3d8CqmJm6 p,.iXRgkbbVZz8 p,.Nlp8kI p,.Nlp8kI li,.DwCCAvvWwvh p{line-height:1.7;opacity:.82;font-size:1.05rem;}
.qjBVupCRGF{display:flex;flex-wrap:wrap;gap:10px;margin:15px 0;}
.qjBVupCRGF span{border:1px solid rgba(124,60,255,.35);border-radius:999px;padding:6px 12px;color:var(--ql-silver);background:rgba(124,60,255,.08);}
.AN47QR2{min-height:260px;border-radius:10px;border:1px solid rgba(0,217,255,.25);background-size:cover;background-position:center;position:relative;overflow:hidden;box-shadow:0 0 35px rgba(0,217,255,.12);}
.AN47QR2::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(5,8,20,.25),rgba(124,60,255,.25));}
.NT1A4R3juVd{max-width:900px;margin:0 auto;}
.faq-item{margin-bottom:16px;padding:0;overflow:hidden;}
.faq-question{width:100%;padding:22px 26px;background:transparent;border:0;color:#fff;text-align:left;font-family:'Orbitron',monospace;font-size:1rem;cursor:pointer;display:flex;justify-content:space-between;gap:20px;}
.faq-question::after{content:'+';color:var(--ql-cyan);font-size:1.5rem;}
.faq-item.active .faq-question::after{content:'–';}
.DwCCAvvWwvh{max-height:0;overflow:hidden;transition:max-height .3s ease;padding:0 26px;}
.faq-item.active .DwCCAvvWwvh{max-height:220px;padding:0 26px 22px;}
.BNymNmrcyVW{position:fixed;left:20px;right:20px;bottom:20px;z-index:2000;background:rgba(5,8,20,.96);border:1px solid rgba(0,217,255,.35);border-radius:10px;padding:20px;display:none;align-items:center;justify-content:space-between;gap:20px;box-shadow:0 10px 35px rgba(0,0,0,.45);}
.BNymNmrcyVW.active{display:flex;}
.BNymNmrcyVW p{line-height:1.5;opacity:.85;}
.CDANbAf{display:flex;gap:12px;flex-shrink:0;}
.uFE1DDbpC6P{padding:10px 18px;border-radius:6px;border:1px solid var(--ql-cyan);background:transparent;color:#fff;font-family:'Orbitron',monospace;cursor:pointer;text-decoration:none;}
.uFE1DDbpC6P.kYLFBj{background:linear-gradient(45deg,var(--ql-violet),var(--ql-cyan));border:0;}
.LQhIGl{max-width:1000px;margin:0 auto;padding:40px 20px 100px;}
.Nlp8kI{margin-bottom:24px;}
.Nlp8kI ul{margin-left:22px;}
.TLXxCF{max-width:760px;margin:0 auto 20px;opacity:.78;line-height:1.6;}
.p2KTVpMg9{margin-bottom:20px;opacity:.72;line-height:1.6;}
@media (max-width: 960px){.R1kRz4kBhcQ{grid-template-columns:repeat(2,1fr);}.zw6ICZ5I{font-size:18px;}}
@media (max-width: 768px){.R1kRz4kBhcQ{grid-template-columns:1fr;}.BNymNmrcyVW{flex-direction:column;align-items:flex-start}.NFoEIjfhXei{flex-wrap:wrap;gap:16px}.Uv2NhdEzM{min-height:50vh}.Qto8Pxhhz5{padding:20px 0;}}
