   .containers {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
        }

        .icon {
            font-size: 80px;
            margin-bottom: -10px;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0px;
            animation: fadeInDown 1s ease;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .subtitle {
            font-size: 1.3rem;
            margin-bottom: -40px;
            opacity: 0.9;
            animation: fadeIn 1.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .video-container {
            width: 50%;
            max-width: 600px;
            margin: 20px 0;
            animation: fadeIn 2s ease;
        }

        .video-container video {
            width: 100%;
            height: auto;
            display: block;
        }

        .message {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0px 0;
            line-height: 1.6;
            opacity: 0.9;
        }

        .progress-bar {
            width: 300px;
            height: 6px;
            background: rgba(102, 126, 234, 0.2);
            border-radius: 10px;
            overflow: hidden;
            margin: 20px 0;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            animation: progress 2s ease-in-out infinite;
        }

        @keyframes progress {
            0% { width: 0%; }
            50% { width: 100%; }
            100% { width: 0%; }
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .social-links a {
            color: #667eea;
            text-decoration: none;
            font-size: 1.1rem;
            padding: 12px 25px;
            border: 2px solid #667eea;
            border-radius: 30px;
            transition: all 0.3s ease;
            background: white;
        }

        .social-links a:hover {
            background: #667eea;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            .subtitle {
                font-size: 1.1rem;
            }
            .message {
                font-size: 1rem;
            }
            .video-container {
                width: 80%;
            }
            .social-links {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .video-container {
                width: 100%;
            }
            h1 {
                font-size: 2rem;
            }
            .icon {
                font-size: 60px;
            }
        }
