body {
            font-family: 'Inter', sans-serif;
            background-color: #0A0A0A;
            color: #E2E8F0;
        }
        .gradient-text {
            background: linear-gradient(90deg, #4F46E5, #A78BFA);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-glow {
            box-shadow: 0 0 80px 20px rgba(79, 70, 229, 0.4);
        }
        .video-aspect {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
        }
        .video-aspect iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .focusable:focus-visible {
            outline: 2px solid #A78BFA;
            outline-offset: 4px;
        }