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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #0a0a0f;
            color: white;
            overflow-x: hidden;
        }

        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a0f 0%, #1a0b2e 25%, #16003e 50%, #1a0b2e 75%, #0a0a0f 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            z-index: -2;
        }

        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        .header {
            text-align: center;
            padding: 60px 20px 40px;
            position: relative;
        }

        .logo-container {
            margin-bottom: 30px;
            animation: float 3s ease-in-out infinite;
        }

        .logo {
            width: 150px;
            height: 150px;
            object-fit: contain;
            filter: drop-shadow(0 0 30px rgba(147, 51, 234, 0.6));
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.1);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .title {
            font-size: 56px;
            font-weight: 900;
            background: linear-gradient(135deg, #fff 0%, #a78bfa 50%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            letter-spacing: -1px;
        }

        .tagline {
            font-size: 20px;
            color: #a78bfa;
            margin-bottom: 15px;
            font-weight: 300;
        }

        .description {
            font-size: 16px;
            color: #cbd5e1;
            max-width: 600px;
            margin: 0 auto;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #a78bfa, transparent);
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .video-wrapper {
            position: relative;
            border-radius: 16px;
            box-shadow: 0 0 40px rgba(147, 51, 234, 0.3);
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(167, 139, 250, 0.2);
            overflow: hidden;
        }

        .video-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 60px rgba(147, 51, 234, 0.6);
            border-color: rgba(167, 139, 250, 0.5);
        }

        .video-js {
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 16px;
        }

        .video-js .vjs-big-play-button {
            border-radius: 50%;
            width: 80px;
            height: 80px;
            line-height: 80px;
            border: 3px solid #a78bfa;
            background: rgba(147, 51, 234, 0.8);
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            margin: 0;
        }

        .video-js:hover .vjs-big-play-button {
            background: rgba(147, 51, 234, 1);
            border-color: #ec4899;
        }

        .cta-section {
            text-align: center;
            padding: 60px 20px;
        }

        .cta-button {
            display: inline-block;
            padding: 20px 50px;
            font-size: 24px;
            font-weight: 700;
            text-decoration: none;
            color: white;
            background: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(147, 51, 234, 0.4);
            letter-spacing: 1px;
        }

        .cta-button::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.5s ease;
        }

        .cta-button:hover {
            transform: scale(1.05) translateY(-5px);
            box-shadow: 0 15px 50px rgba(147, 51, 234, 0.6);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:active {
            transform: scale(1.02);
        }

        .footer {
            text-align: center;
            padding: 40px 20px;
            color: #64748b;
            font-size: 14px;
            border-top: 1px solid rgba(167, 139, 250, 0.1);
        }

        @media (max-width: 768px) {
            .title {
                font-size: 36px;
            }

            .logo {
                width: 100px;
                height: 100px;
            }

            .video-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .cta-button {
                font-size: 18px;
                padding: 16px 36px;
            }

            .section-title {
                font-size: 24px;
            }
        }

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

        .header, .video-grid, .cta-section {
            animation: fadeIn 1s ease-out;
        }