:root {
            --cosmic-black: #0a0a0f;
            --deep-space: #121218;
            --nebula-purple: #6b4de6;
            --stellar-blue: #00d4ff;
            --aurora-cyan: #00fff5;
            --star-white: #ffffff;
            --dim-white: #b8b8c8;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Exo 2', sans-serif;
            background: var(--cosmic-black);
            color: var(--star-white);
            overflow-x: hidden;
        }

        .stars-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .stars {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, white, transparent),
                radial-gradient(2px 2px at 60px 70px, white, transparent),
                radial-gradient(1px 1px at 50px 50px, white, transparent),
                radial-gradient(1px 1px at 130px 80px, white, transparent),
                radial-gradient(2px 2px at 90px 10px, white, transparent);
            background-repeat: repeat;
            background-size: 200px 200px;
            animation: twinkle 3s infinite;
            opacity: 0.3;
        }

        .stars.layer2 {
            background-size: 300px 300px;
            animation: twinkle 4s infinite reverse;
            opacity: 0.2;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .nebula {
            position: fixed;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.15;
            pointer-events: none;
            z-index: 0;
        }

        .nebula1 {
            background: radial-gradient(circle, var(--nebula-purple), transparent);
            top: -200px;
            right: -300px;
            animation: float 20s infinite ease-in-out;
        }

        .nebula2 {
            background: radial-gradient(circle, var(--stellar-blue), transparent);
            bottom: -300px;
            left: -200px;
            animation: float 25s infinite ease-in-out reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(100px, 50px) scale(1.1); }
        }

        .content {
            position: relative;
            z-index: 1;
        }

        header {
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(180deg, rgba(18, 18, 24, 0.9) 0%, transparent 100%);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 212, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 3px;
            background: linear-gradient(135deg, var(--aurora-cyan), var(--stellar-blue), var(--nebula-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            text-decoration: none;
            animation: glow 3s infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 5px var(--aurora-cyan)); }
            to { filter: drop-shadow(0 0 20px var(--stellar-blue)); }
        }

        nav {
            display: flex;
            gap: 3rem;
        }

        nav a {
            color: var(--dim-white);
            text-decoration: none;
            font-weight: 400;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--stellar-blue), var(--aurora-cyan));
            transition: width 0.3s;
        }

        nav a:hover {
            color: var(--aurora-cyan);
        }

        nav a:hover::after {
            width: 100%;
        }

        .page-header {
            text-align: center;
            padding: 6rem 2rem 4rem;
        }

        .page-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 4rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--aurora-cyan), var(--stellar-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 1rem;
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: var(--dim-white);
            font-weight: 300;
        }

        .product-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .product-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .product-image-wrapper {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            border: 2px solid rgba(0, 212, 255, 0.3);
            background: linear-gradient(135deg, rgba(18, 18, 24, 0.8), rgba(107, 77, 230, 0.1));
            backdrop-filter: blur(10px);
            box-shadow: 0 30px 80px rgba(0, 212, 255, 0.2);
            transition: all 0.4s;
        }

        .product-image-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 100px rgba(0, 212, 255, 0.4);
            border-color: var(--aurora-cyan);
        }

        .product-image-wrapper img {
            width: 100%;
            height: auto;
            max-width: 100%;
            display: block;
            object-fit: contain;
        }

        .product-image {
            width: 100%;
            height: 600px;
            background: linear-gradient(135deg, var(--deep-space), rgba(107, 77, 230, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            position: relative;
        }

        .product-image::before {
            content: 'SWIFT GEAR';
            position: absolute;
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            opacity: 0.1;
            letter-spacing: 5px;
        }

        .video-demo-section {
            max-width: 1400px;
            margin: 6rem auto 0;
            padding: 0 2rem 4rem;
        }

        .video-demo-title {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5rem;
            text-align: center;
            background: linear-gradient(135deg, var(--aurora-cyan), var(--stellar-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            border-radius: 20px;
            border: 2px solid rgba(0, 212, 255, 0.3);
            background: var(--cosmic-black);
            box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
            transition: all 0.4s;
        }

        .video-wrapper:hover {
            border-color: var(--aurora-cyan);
            box-shadow: 0 30px 80px rgba(0, 212, 255, 0.5);
            transform: scale(1.02);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .product-details {
            padding: 2rem;
        }

        .product-name {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--star-white), var(--aurora-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .product-tagline {
            font-size: 1.3rem;
            color: var(--stellar-blue);
            margin-bottom: 2rem;
            font-weight: 300;
            font-style: italic;
        }

        .product-price {
            font-family: 'Orbitron', sans-serif;
            font-size: 3rem;
            color: var(--aurora-cyan);
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .product-description {
            color: var(--dim-white);
            line-height: 1.9;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .product-features {
            margin-bottom: 3rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(0, 212, 255, 0.05);
            border-radius: 10px;
            border-left: 3px solid var(--stellar-blue);
            transition: all 0.3s;
        }

        .feature-item:hover {
            background: rgba(0, 212, 255, 0.1);
            transform: translateX(10px);
        }

        .feature-icon {
            font-size: 1.5rem;
        }

        .feature-text {
            color: var(--dim-white);
            font-size: 1rem;
        }

        .buy-button {
            padding: 1.5rem 4rem;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--cosmic-black);
            background: linear-gradient(135deg, var(--aurora-cyan), var(--stellar-blue));
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Orbitron', sans-serif;
            transition: all 0.3s;
            box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .buy-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .buy-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .buy-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 60px rgba(0, 212, 255, 1);
        }

        footer {
            background: linear-gradient(180deg, transparent, rgba(18, 18, 24, 0.9));
            border-top: 1px solid rgba(0, 212, 255, 0.1);
            padding: 3rem 4rem;
            text-align: center;
            margin-top: 8rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-brand {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--aurora-cyan), var(--stellar-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-text {
            color: var(--dim-white);
            margin-bottom: 2rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .social-links a {
            color: var(--dim-white);
            font-size: 1.5rem;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-links a:hover {
            color: var(--aurora-cyan);
            transform: translateY(-5px);
            filter: drop-shadow(0 0 10px var(--aurora-cyan));
        }

        .copyright {
            color: rgba(184, 184, 200, 0.5);
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(0, 212, 255, 0.1);
        }

        @media (max-width: 968px) {
            .product-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            header {
                padding: 1.5rem 2rem;
                flex-direction: column;
                gap: 1rem;
            }

            nav {
                gap: 1.5rem;
                flex-wrap: wrap;
                justify-content: center;
            }

            .page-title {
                font-size: 2.5rem;
            }

            .product-name {
                font-size: 2rem;
            }

            .product-image {
                height: 400px;
            }
        }