.video-hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            object-fit: cover;
            pointer-events: none;
        }

        /* REMOVED the dark overlay completely for transparent text effect */

        .content-wrapper {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1200px;
            padding: 0 20px;
            text-align: center;
            margin-top: 435px;
        }

        .max-w-screen-2xl {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-title {
            font-size: 45px;
            font-weight: 700; /* Increased weight for better visibility */
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.5px;
            color: #ffffff;
            /* Stronger text shadow for better contrast */
            text-shadow: 
                0 2px 10px rgba(0, 0, 0, 0.8),
                0 4px 20px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(0, 0, 0, 0.4);
            animation: fadeInUp 1s ease-out 0.2s both;
            /* Optional: Add a subtle text outline */
            -webkit-text-stroke: 1px rgba(0, 0, 0, 0.3);
            text-stroke: 1px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.6;
            font-weight: 600; /* Increased weight for better visibility */
            color: #ffffff;
            /* Stronger text shadow */
            text-shadow: 
                0 1px 8px rgba(0, 0, 0, 0.8),
                0 2px 15px rgba(0, 0, 0, 0.6);
            animation: fadeInUp 1s ease-out 0.4s both;
            /* Optional semi-transparent background for subtitle only */
            /* Uncomment the line below if you want a subtle background for the subtitle */
            /* background: rgba(0, 0, 0, 0.2); */
            /* padding: 10px 20px; */
            /* border-radius: 10px; */
            /* display: inline-block; */
        }

        /* Optional: Add a transparent background container for all text */
        .text-container {
            /* Uncomment the block below if you want a subtle transparent background for all text */
            /* 
            background: rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(5px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            */
        }

        .hero-cta {
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
            color: white;
            border: none;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 
                0 8px 25px rgba(79, 70, 229, 0.4),
                0 2px 10px rgba(0, 0, 0, 0.3); /* Added black shadow for contrast */
            animation: fadeInUp 1s ease-out 0.6s both;
            position: relative;
            z-index: 4;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 12px 30px rgba(79, 70, 229, 0.6),
                0 4px 15px rgba(0, 0, 0, 0.4);
            background: linear-gradient(135deg, #5b55e8, #8b5cf6);
        }

        .hero-cta:active {
            transform: translateY(-1px);
        }

        .sound-toggle {
            position: absolute;
            bottom: 30px;
            right: 30px;
            z-index: 4;
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .sound-toggle:hover {
            background: rgba(0, 0, 0, 0.7);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .loading-indicator {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #000;
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 5px solid rgba(255, 255, 255, 0.1);
            border-top: 5px solid #7c3aed;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

        .loading-text {
            font-size: 1.2rem;
            color: #aaa;
        }

        .video-credit {
            position: absolute;
            bottom: 30px;
            left: 30px;
            z-index: 4;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
            background: rgba(0, 0, 0, 0.5);
            padding: 5px 10px;
            border-radius: 4px;
        }

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

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

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.8rem;
                text-shadow: 
                    0 2px 8px rgba(0, 0, 0, 0.8),
                    0 4px 15px rgba(0, 0, 0, 0.6);
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                padding: 0 10px;
                text-shadow: 
                    0 1px 6px rgba(0, 0, 0, 0.8),
                    0 2px 10px rgba(0, 0, 0, 0.6);
            }
            
            .sound-toggle {
                bottom: 20px;
                right: 20px;
                width: 45px;
                height: 45px;
            }
            
            .video-credit {
                bottom: 20px;
                left: 20px;
                font-size: 0.7rem;
            }
            
            .hero-cta {
                padding: 14px 32px;
                font-size: 1rem;
            }
            
            .content-wrapper {
              position: relative;
              z-index: 1;
              width: 100%;
              max-width: 1200px;
              padding: 0 20px;
              text-align: center;
              margin-top: 435px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2.2rem;
                text-shadow: 
                    0 2px 6px rgba(0, 0, 0, 0.8),
                    0 4px 12px rgba(0, 0, 0, 0.6);
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .sound-toggle {
                bottom: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
            }
            
            .video-credit {
                bottom: 15px;
                left: 15px;
            }
            
            .content-wrapper {
              position: relative;
              z-index: 1;
              width: 100%;
              max-width: 1200px;
              padding: 0 20px;
              text-align: center;
              margin-top: 250px;
            }
        }

        /* Fallback for when video fails to load */
        .video-fallback {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1e1b4b, #0f172a);
            z-index: 1;
            display: none;
        }

        /* Subtle vignette effect to improve text readability without overlay */
        .vignette {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
            background: radial-gradient(circle at center, transparent 30%, rgba(0,0,0,0.1) 70%);
        }
        
        @media only screen and (max-width: 600px) {
            .video-hero-section {
              position: relative;
              width: 100%;
              height: 70vh;
              min-height: 600px;
              overflow: hidden;
              display: flex;
              align-items: center;
              justify-content: center;
            }
        }