
        /* Root Variables */
        :root {
            --primary-color: #8e44ad;
            --secondary-color: #f39c12;
            --dark-color: #2c3e50;
            --light-color: #ecf0f1;
            --success-color: #27ae60;
            --warning-color: #e74c3c;
            --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --transition: all 0.3s ease;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-primary);
            line-height: 1.6;
            color: #333;
            background-color: var(--light-color);
        }
  #loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #f5f5f5;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-in-out;
        }

        .loading-container {
            position: relative;
            width: 150px;
            height: 150px;
        }

        .logo2 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            background-color: white;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .logo2 img {
            max-width: 60px;
            max-height: 60px;
        }

        .spinner {
            position: absolute;
            width: 150px;
            height: 150px;
            border: 4px solid transparent;
            border-top: 4px solid #3498db;
            border-radius: 50%;
            animation: spin 1.5s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        #website-content {
            padding: 20px;
            text-align: center;
        }

        .hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        /* For demonstration purposes */
        #demo-controls {
            position: fixed;
            top: 20px;
            right: 20px;
            background: white;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            z-index: 100;
        }
        a {
            text-decoration: none;
            color: var(--primary-color);
            transition: var(--transition);
        }

        a:hover {
            color: var(--secondary-color);
        }

        img {
            max-width: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
         .container-hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .btn:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .btn-secondary {
            background: var(--secondary-color);
        }

        .btn-secondary:hover {
            background: var(--primary-color);
        }

        .section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--dark-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary-color);
        }

        /* Header */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            z-index: 100;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-color);
             position: absolute;
            top: 10px;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            background-color: white;
            border-radius: 50%;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .logo span {
            color: var(--secondary-color);
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-menu li {
            margin-left: 30px;
        }

        .nav-menu a {
            color: var(--dark-color);
            font-weight: 600;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: var(--transition);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/Teenage-Talent-Hunt.webp') center/cover no-repeat;
            color: white;
            display: flex;
            align-items: center;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        /* About Section */
        .about {
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .about-text p {
            margin-bottom: 15px;
        }

         /* Program Details */
    .program {
        background: #f5f5f5;
        padding: 60px 0;
    }
    
    .timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 0;
    }
    
    /* The animated timeline line */
    .timeline-line {
        content: '';
        position: absolute;
        width: 6px; /* Bold line */
        background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -3px;
        border-radius: 8px; /* Curved edges */
        transform-origin: top;
        transform: scaleY(0);
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
    
    .timeline-item {
        position: relative;
        width: 50%;
        padding: 20px 40px;
        box-sizing: border-box;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }
    
    .timeline-item.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 50%;
    }
    
    /* Circle markers */
    .timeline-item::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background: var(--primary-color);
        border-radius: 50%;
        top: 30px;
        z-index: 1;
        box-shadow: 0 0 5px rgba(0,0,0,0.3);
        transition: all 0.3s ease;
    }
    
    .timeline-item:nth-child(odd)::after {
        right: -10px;
    }
    
    .timeline-item:nth-child(even)::after {
        left: -10px;
    }
    
    .timeline-item.visible::after {
        transform: scale(1.2);
        background: var(--secondary-color);
    }
    
    .timeline-content {
        background: white;
        padding: 20px;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        position: relative;
        transition: all 0.3s ease;
    }
    
    .timeline-item.visible .timeline-content {
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .timeline-date {
        display: inline-block;
        background: var(--secondary-color);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        margin-bottom: 10px;
        font-weight: bold;
    }
    
    .timeline-item h3 {
        margin-bottom: 10px;
        color: var(--primary-color);
    }

        /* Prizes Section */
        .prizes {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }

        .prize-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .prize-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: var(--transition);
        }

        .prize-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .prize-card i {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .prize-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .prize-amount {
            font-size: 2rem;
            font-weight: bold;
            margin: 10px 0;
        }

        /* Application Section */
        .application {
            background: white;
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 5px rgba(142, 68, 173, 0.3);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* Contact */
        .contact {
            background: #f5f5f5;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .contact-item {
            background: white;
            padding: 30px;
            border-radius: 5px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .contact-item i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .contact-item h3 {
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: #f5f5f5;
            padding: 60px 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--secondary-color);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #ddd;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .timeline::after {
                left: 40px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 80px;
                padding-right: 0;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
  .container-hero {
            max-width: 400px;
         
        }
        .hero {
            padding-top:2rem;
            height: 120vh;
           
        }
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                background: white;
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 40px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                transition: var(--transition);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-menu li {
                margin: 15px 0;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-btns {
                flex-direction: column;
                gap: 15px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
            .hero-content {
            max-width: 400px;
            margin: 0 auto;
        }

        }

        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        /* Countdown Timer Styles */
        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            min-width: 100px;
        }

        .countdown-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--secondary-color);
        }

        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Testimonials */
        .testimonials {
            background: #f9f9f9;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .testimonial-slide {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            display: none;
        }

        .testimonial-slide.active {
            display: block;
            animation: fadeIn 0.5s ease forwards;
        }

        .testimonial-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 5px solid var(--primary-color);
        }

        .testimonial-content p {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: bold;
            color: var(--primary-color);
        }

        .testimonial-role {
            font-size: 0.9rem;
            color: #777;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .testimonial-btn {
            background: var(--primary-color);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .testimonial-btn:hover {
            background: var(--secondary-color);
        }

        /* Sponsors */
        .sponsors {
            background: white;
        }

        .sponsor-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
        }

        .sponsor-logo {
            max-width: 150px;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: var(--transition);
        }

        .sponsor-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }

        /* Gallery */
        .gallery {
            background: #f5f5f5;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }

        .gallery-item img {
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: white;
            font-size: 2rem;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: white;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            padding: 30px;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-modal:hover {
            color: var(--warning-color);
        }

        .modal h2 {
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        /* Alert Styles */
        .alert {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            display: none;
        }

        .alert-success {
            background: rgba(39, 174, 96, 0.2);
            color: var(--success-color);
            border: 1px solid var(--success-color);
        }

        .alert-error {
            background: rgba(231, 76, 60, 0.2);
            color: var(--warning-color);
            border: 1px solid var(--warning-color);
        }
        
    /* Additional Footer Styles */
    .footer-sponsors {
        margin-bottom: 20px;
    }
    
    .footer-sponsors p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .sponsor-logos-mini {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .sponsor-logos-mini img {
        height: 30px;
        filter: brightness(0.8);
    }
    
    .payment-info {
        margin-bottom: 20px;
        padding: 15px;
        background: rgba(255,255,255,0.05);
        border-radius: 5px;
    }
    
    .bank-details {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }
    
    .bank-details span {
        font-size: 0.9rem;
    }
    
    .copyright {
        margin-bottom: 15px;
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        gap: 20px;
        font-size: 0.8rem;
    }
    
    .footer-links a {
        color: #ddd;
    }
    
    .subscribe {
        margin-top: 15px;
    }
    
    .subscribe h5 {
        margin-bottom: 10px;
        font-size: 1rem;
    }
    
    .subscribe-form {
        display: flex;
        gap: 5px;
    }
    
    .subscribe-form input {
        flex: 1;
        padding: 8px 12px;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.05);
        border-radius: 4px;
        color: white;
    }
    
    .subscribe-form input::placeholder {
        color: rgba(255,255,255,0.6);
    }
    
    .subscribe-form input:focus {
        outline: none;
        border-color: var(--secondary-color);
    }
    
    .btn-sm {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .footer-col ul li i {
        margin-right: 10px;
        color: var(--secondary-color);
    }
    .about-image{
        display:flex;
        justify-content:center;
        align-items:center;
    }
    /* Responsive Footer */
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
        }
        .countdown {
           flex-direction:column;
        }
        
        .bank-details {
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }
        
        .footer-links {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
    }
    
    @media (max-width: 576px) {
        .footer-container {
            grid-template-columns: 1fr;
        }
        
        .sponsor-logos-mini {
            flex-wrap: wrap;
        }
    }
    /* Video Showcase Section */
    .video-showcase {
        background: #f9f9f9;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }
    
    /* Zigzag line */
    .zigzag-line {
        position: absolute;
        height: 100%;
        width: 100px;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        stroke-dasharray: 2000;
        stroke-dashoffset: 2000;
        filter: drop-shadow(0 0 8px rgba(0,0,0,0.2));
    }
    
    .video-container {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        z-index: 2;
    }
    
    .video-item {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.4s ease;
        margin-bottom: 60px;
        opacity: 0;
        transform: translateY(40px);
        position: relative;
    }
    
    .video-item:hover {
        box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        transform: translateY(-8px) scale(1.02);
    }
    
    /* Different video sizes */
    .video-large {
        width: 70%;
    }
    
    .video-medium {
        width: 60%;
    }
    
    .video-small {
        width: 45%;
    }
    
    /* Position left and right */
    .video-item.left {
        margin-right: auto;
        margin-left: 5%;
    }
    
    .video-item.right {
        margin-left: auto;
        margin-right: 5%;
    }
    
    /* Connector dots */
    .video-item::before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background: var(--primary-color);
        border-radius: 50%;
        top: 30px;
        z-index: 5;
        box-shadow: 0 0 0 5px rgba(var(--primary-color-rgb), 0.2);
        transition: all 0.3s ease;
    }
    
    .video-item.left::before {
        right: -35px;
    }
    
    .video-item.right::before {
        left: -35px;
    }
    
    .video-item.visible::before {
        transform: scale(1.2);
        background: var(--secondary-color);
    }
    
    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
    }
    
    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .video-item h3 {
        padding: 15px 20px 5px;
        margin: 0;
        color: var(--primary-color);
        font-size: 1.2rem;
    }
    
    .video-item p {
        padding: 0 20px 20px;
        margin: 0;
        color: #666;
        font-size: 0.9rem;
    }
    
    .video-item.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    .video-more-container {
        text-align: center;
        margin-top: 20px;
        position: relative;
        z-index: 2;
    }
    
    .video-more-btn {
        display: inline-flex;
        align-items: center;
        padding: 14px 30px;
        font-size: 1.1rem;
        font-weight: bold;
        border-radius: 30px;
        transition: all 0.3s ease;
        overflow: hidden;
        position: relative;
    }
    
    .video-more-btn svg {
        margin-left: 10px;
    }
    
    .video-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    
    .video-more-btn::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 150%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.6s ease-out;
    }
    
    .video-more-btn:hover::after {
        transform: translate(-50%, -50%) scale(1);
    }
    
    /* Responsive design */
    @media (max-width: 992px) {
        .video-large, .video-medium, .video-small {
            width: 85%;
        }
    }
    
    @media (max-width: 768px) {
        .video-large, .video-medium, .video-small {
            width: 90%;
            margin-left: auto !important;
            margin-right: auto !important;
        }
        
        .zigzag-line {
            left: 30px;
            transform: none;
        }
        
        .video-item.left::before,
        .video-item.right::before {
            left: -25px;
            right: auto;
        }
    }
