        :root {
            --gold-primary: #FFD700;
            --gold-secondary: #B8860B;
            --gold-tertiary: #DAA520;
            --quantum-blue: #0066FF;
            --quantum-purple: #8A2BE2;
            --quantum-cyan: #00FFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
            color: #ffffff;
            overflow-x: hidden;
        }

        .orbitron {
            font-family: 'Orbitron', monospace;
        }

        .quantum-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .quantum-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--gold-primary);
            border-radius: 50%;
            opacity: 0.6;
            animation: quantumFloat 6s infinite ease-in-out;
        }

        @keyframes quantumFloat {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.6;
            }

            50% {
                transform: translateY(-30px) rotate(180deg);
                opacity: 1;
            }
        }

        .glass-morphism {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
        }

        .gold-gradient {
            background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 50%, var(--gold-tertiary) 100%);
        }

        .quantum-glow {
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }

        .tech-card {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 100%);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .tech-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
            border-color: var(--gold-primary);
        }

        .tech-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .tech-card:hover::before {
            left: 100%;
        }

        .quantum-circuit {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
            opacity: 0.5;
            animation: quantumPulse 4s infinite ease-in-out;
        }

        @keyframes quantumPulse {

            0%,
            100% {
                opacity: 0.5;
            }

            50% {
                opacity: 0.8;
            }
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .typing-effect {
            overflow: hidden;
            border-right: 3px solid var(--gold-primary);
            white-space: nowrap;
            margin: 0 auto;
            letter-spacing: 0.15em;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }

        @keyframes typing {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        @keyframes blink-caret {

            from,
            to {
                border-color: transparent;
            }

            50% {
                border-color: var(--gold-primary);
            }
        }

        .quantum-network {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .network-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
            animation: networkPulse 3s infinite ease-in-out;
        }

        @keyframes networkPulse {

            0%,
            100% {
                opacity: 0.3;
            }

            50% {
                opacity: 1;
            }
        }

        .holographic-text {
            background: linear-gradient(45deg, #FFD700, #00FFFF, #FF00FF, #FFD700);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: holographicShift 3s ease-in-out infinite;
        }

        @keyframes holographicShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .progress-bar {
            height: 4px;
            background: rgba(255, 215, 0, 0.2);
            border-radius: 2px;
            overflow: hidden;
            margin: 1rem 0;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
            border-radius: 2px;
            transition: width 2s ease;
        }

        .quantum-button {
            background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
            color: #000;
            border: none;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .quantum-button:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        }

        .roadmap-item {
            position: relative;
            padding: 2rem;
            background: rgba(255, 215, 0, 0.05);
            border-left: 4px solid var(--gold-primary);
            margin: 1rem 0;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .roadmap-item:hover {
            background: rgba(255, 215, 0, 0.1);
            transform: translateX(10px);
        }

        .partnership-logo {
            width: 150px;
            height: 80px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 1rem;
            transition: all 0.3s ease;
        }

        .partnership-logo:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: scale(1.05);
        }

        .metric-counter {
            font-size: 3rem;
            font-weight: 900;
            color: var(--gold-primary);
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
        }

        .quantum-visualization {
            width: 200px;
            height: 200px;
            position: relative;
            margin: 2rem auto;
        }

        .quantum-orbit {
            position: absolute;
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 50%;
            animation: quantumSpin 4s linear infinite;
        }

        @keyframes quantumSpin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .quantum-core {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: var(--gold-primary);
            border-radius: 50%;
            box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
            animation: quantumPulse 2s infinite ease-in-out;
        }