        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a2a6c, #2c3e50);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
            color: white;
        }
        
        .media__container {
            width: 100%;
            max-width: 1200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
            padding: 30px;
            background: rgba(15, 23, 42, 0.85);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }
        
        .video-container1 {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.1);
        }
        
        .media__content {
            position: relative;
            width: 100%;
            padding-top: 56.25%; /* 16:9 Aspect Ratio */
            overflow: hidden;
        }
        
        .media__content video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .overlay-content1 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2;
            transform: translateZ(0);
            transition: opacity 0.5s ease;
        }
        .overlay-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            text-align: center;
            color: white;
            /* background: rgba(0, 0, 0, 0.4); */
            z-index: 2;
        }

        

        
        .loading-text {
            color: white;
            font-size: 18px;
            font-weight: 500;
            margin-top: 15px;
            text-align: center;
        }
        
        .progress-container {
            width: 80%;
            max-width: 400px;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            margin-top: 20px;
            overflow: hidden;
        }
        
        .progress-bar {
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, #4f46e5, #10b981);
            border-radius: 4px;
            transition: width 0.3s ease;
        }
        
        .callout-text {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            background: rgba(79, 70, 229, 0.7);
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            animation: pulse 2s infinite;
            z-index: 3;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .arrow-container {
            position: absolute;
            bottom: -40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 3;
        }
        
        .arrow-container i {
            font-size: 30px;
            color: #4f46e5;
            animation: bounce 2s infinite;
        }
        
        .arrow-container p {
            margin-top: 10px;
            font-size: 16px;
            font-weight: 500;
            color: #cbd5e1;
        }
        
        .mainmedia__copyright {
            width: 100%;
            text-align: center;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(15, 23, 42, 0.7);
            border-radius: 0 0 15px 15px;
            margin-top: 20px;
        }
        
        .additional-text {
            font-size: 16px;
            color: #cbd5e1;
            letter-spacing: 0.5px;
        }
        
        .info-cards {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            width: 100%;
        }
        
        .card {
            flex: 1;
            background: rgba(30, 41, 59, 0.7);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        
        .card i {
            font-size: 40px;
            margin-bottom: 15px;
            color: #4f46e5;
        }
        
        .card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #e2e8f0;
        }
        
        .card p {
            font-size: 16px;
            color: #94a3b8;
            line-height: 1.6;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(79, 70, 229, 0); }
            100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-20px); }
            60% { transform: translateY(-10px); }
        }
        
        @media (max-width: 768px) {
            .media__container {
                padding: 15px;
            }
            
            .info-cards {
                flex-direction: column;
            }
            
            .callout-text {
                font-size: 16px;
                padding: 12px 20px;
                bottom: 20px;
            }
            
        }

    @media (max-width: 480px) {
    .media__container {
        padding: 10px;
        gap: 20px;
        border-radius: 12px;
    }

    .video-container1 {
        border-radius: 10px;
    }

    .overlay-content1 {
        padding: 10px;
    }

    .loading-text {
        font-size: 16px;
    }

    .progress-container {
        width: 100%;
        height: 6px;
    }

    .callout-text {
        font-size: 14px;
        padding: 10px 15px;
        bottom: 15px;
        border-radius: 30px;
    }

    .arrow-container i {
        font-size: 24px;
    }

    .arrow-container p {
        font-size: 14px;
    }

    .card {
        padding: 15px;
    }

    .card i {
        font-size: 32px;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 14px;
    }

    .additional-text {
        font-size: 14px;
    }

    .mainmedia__copyright {
        font-size: 13px;
        padding: 15px;
    }
}
