

        .home-video-section {
            padding: 0;
            background: #000;
            position: relative;
        }

        .course-video-section {
            position: relative;
            width: 100%;
        }

        .video-content-wrapper {
            position: relative;
            width: 100%;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            background: #000;
            overflow: hidden;
            cursor: none;
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            pointer-events: none;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 50;
            cursor: none;
        }

        #video-progress-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            z-index: 60;
        }

        #video-progress-bar {
            height: 100%;
            background: linear-gradient(180deg, #ff6600 0%, #ff5204 0%, #ff270d 100%);
            transition: width 0.3s ease;
            width: 0%;
        }

        .tab-content {
            background: #f8f9fa;
            padding: 60px 0;
        }

        .video-text {
            text-align: center;
            padding: 0 20px;
        }

        .video-text h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 16px;
        }

        .video-text p {
            font-size: 1.125rem;
            color: #4a5568;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        #custom-cursor {
            position: absolute;
            width: 90px;
            height: 90px;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 100;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        #custom-cursor.active {
            display: flex;
        }

        .pause-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(180deg, #ff6600 0%, #ff5204 0%, #ff270d 100%);
            border-radius: 50%;
            display: flex;
            gap: 8px;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(255, 98, 0, 0.4);
            position: relative;
        }

        .pause-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.3);
            box-sizing: border-box;
        }

        .pause-icon span {
            width: 5px;
            height: 28px;
            background-color: #fff;
            border-radius: 2px;
            position: relative;
            z-index: 1;
        }

        .play-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #ffd700, #ff9500);
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
            position: relative;
        }

        .play-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.3);
            box-sizing: border-box;
        }

        .play-icon::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 22px solid #fff;
            border-top: 14px solid transparent;
            border-bottom: 14px solid transparent;
            margin-left: 6px;
            position: relative;
            z-index: 1;
        }

        .cursor-text {
            font-size: 10px;
            font-weight: 700;
            color: #00d4ff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 8px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        #custom-cursor.paused .pause-icon {
            display: none;
        }

        #custom-cursor.paused .play-icon {
            display: flex;
        }

        @media (max-width: 768px) {
            .video-text h2 {
                font-size: 2rem;
            }

            .video-text p {
                font-size: 1rem;
            }

            .tab-content {
                padding: 40px 0;
            }

            #custom-cursor {
                display: none !important;
            }

            .video-wrapper {
                cursor: pointer;
            }

            .video-overlay {
                cursor: pointer;
            }
        }