        /* 
            Mobile Featured Video Section - Mercedes CLA 250 Project
            Author: Mazin Omron
            Website: mazinomron.com
            Copyright © 2025 Mazin Omron All rights reserved.
        */
        
        /* Basic body styling */
        body {
            margin: 0;
            padding: 20px;
            font-family: 'Arial', sans-serif;
            background: #f0f0f0;
        }

        /* Mobile Featured Video Section - Only visible on mobile */
        .mobile-featured-video {
            display: none; /* Hidden by default */
            padding: 40px 20px;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
            position: relative;
        }

        /* Only show on mobile devices */
        @media (max-width: 768px) {
            .mobile-featured-video {
                display: block;
            }
        }

        .mobile-video-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .mobile-video-title {
            font-family: 'Urbanist', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .mobile-video-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #7e998a, #576d5a);
            border-radius: 2px;
        }

        .mobile-video-subtitle {
            color: #666;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            margin-top: 15px;
        }

        .mobile-video-container {
            position: relative;
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            background: #000;
        }

        .mobile-video-player {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            background: #000;
        }

        .mobile-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: none;
            outline: none;
        }

        /* Custom Video Controls */
        .mobile-video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            padding: 20px 15px 15px;
            transform: translateY(0);
            transition: transform 0.3s ease;
            z-index: 10;
        }

        .mobile-video-controls.hidden {
            transform: translateY(100%);
        }

        .mobile-controls-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
        }

        .mobile-control-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            font-size: 16px;
        }

        .mobile-control-btn:hover,
        .mobile-control-btn:active {
            background: rgba(255, 255, 255, 0.2);
            transform: scale(1.05);
        }

        .mobile-control-btn.play-pause {
            width: 52px;
            height: 52px;
            font-size: 18px;
            background: rgba(126, 153, 138, 0.9);
            border-color: rgba(126, 153, 138, 1);
        }

        .mobile-progress-container {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 5px;
        }

        .mobile-time-display {
            color: white;
            font-size: 12px;
            font-weight: 500;
            min-width: 35px;
            text-align: center;
        }

        .mobile-progress-bar {
            flex: 1;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .mobile-progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #7e998a, #576d5a);
            border-radius: 2px;
            width: 0%;
            transition: width 0.1s ease;
            position: relative;
        }

        .mobile-progress-fill::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .mobile-progress-bar:hover .mobile-progress-fill::after {
            opacity: 1;
        }

        /* Fullscreen styles */
        .mobile-video-container.fullscreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            max-width: none;
            border-radius: 0;
            z-index: 9999;
        }

        .mobile-video-container.fullscreen .mobile-video-player {
            padding-bottom: 0;
            height: 100%;
        }

        .mobile-video-container.fullscreen .mobile-video-controls {
            padding: 30px 20px 20px;
        }

        /* Video info */
        .mobile-video-info {
            text-align: center;
            margin-top: 20px;
            padding: 0 10px;
        }

        .mobile-video-info h3 {
            font-family: 'Urbanist', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .mobile-video-info p {
            color: #666;
            font-size: 13px;
            line-height: 1.4;
        }

        /* Loading state - Similar to your site's loader */
        .mobile-video-loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 15;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
        }

        .mobile-loader-content {
            width: 40px;
            height: 40px;
            position: relative;
        }

        .mobile-cube1,
        .mobile-cube2 {
            width: 8px;
            height: 8px;
            position: absolute;
            top: 0;
            left: 0;
            background: #7e998a;
            animation: mobileCubeMove 1.8s infinite ease-in-out;
        }

        .mobile-cube2 {
            animation-delay: -0.9s;
        }

        @keyframes mobileCubeMove {
            25% {
                transform: translateX(34px) rotate(-90deg) scale(0.5);
            }
            50% {
                transform: translateX(34px) translateY(34px) rotate(-179deg);
            }
            50.1% {
                transform: translateX(34px) translateY(34px) rotate(-180deg);
            }
            75% {
                transform: translateX(0px) translateY(34px) rotate(-270deg) scale(0.5);
            }
            100% {
                transform: rotate(-360deg);
            }
        }

        .mobile-loading-text {
            color: white;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
        }

        /* Video ready state */
        .mobile-video.ready {
            opacity: 1;
        }

        .mobile-video {
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        /* Preload overlay */
        .mobile-video-preload-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 20;
            transition: opacity 0.5s ease;
        }

        .mobile-video-preload-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        /* Tap to show controls */
        .mobile-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 8;
            cursor: pointer;
        }

        /* Responsive adjustments for smaller mobile devices */
        @media (max-width: 480px) {
            .mobile-featured-video {
                padding: 30px 15px;
            }
            
            .mobile-video-title {
                font-size: 28px;
            }
            
            .mobile-video-container {
                max-width: 350px;
            }
            
            .mobile-control-btn {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }
            
            .mobile-control-btn.play-pause {
                width: 48px;
                height: 48px;
                font-size: 16px;
            }
        }

        /* Desktop message */
        .desktop-message {
            display: block;
            text-align: center;
            padding: 40px;
            color: #666;
        }

        @media (max-width: 768px) {
            .desktop-message {
                display: none;
            }
        }
