<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #d10000 0%, #8b0000 100%);
            color: white;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
		
        
        .container {
            text-align: center;
            max-width: 600px;
            padding: 40px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            animation: fadeIn 1s ease-out;
            position: relative;
            z-index: 1;
        }
        
        .logo-container {
            margin-bottom: 30px;
        }
        
        .logo {
            width: 180px;
            height: 180px;
            background: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 25px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            animation: pulse 2s infinite;
        }
        
        .logo-text {
            font-size: 42px;
            font-weight: 800;
            color: #d10000;
            letter-spacing: 2px;
        }
        
        h1 {
            font-size: 32px;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        p {
            font-size: 18px;
            margin-bottom: 25px;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .countdown {
            font-size: 22px;
            font-weight: 700;
            margin: 20px 0;
            color: #ffcc00;
        }
        
        .btn {
            display: inline-block;
            padding: 14px 35px;
            background: white;
            color: #d10000;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            margin-top: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            background: #ffcc00;
            color: #8b0000;
        }
        
        .loading-bar {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            margin: 30px 0;
            overflow: hidden;
        }
        
        .loading-progress {
            height: 100%;
            width: 0%;
            background: #ffcc00;
            border-radius: 10px;
            animation: loading 3s linear forwards;
        }
        
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
		.floating-element1{
			width: 80px; height: 80px; top: 10%; left: 10%; animation-delay: 0s;
		}
		.floating-element2{
			width: 60px; height: 60px; top: 70%; left: 80%; animation-delay: 2s;
		}
		.floating-element3{
			width: 100px; height: 100px; top: 40%; left: 85%; animation-delay: 4s;
		}
		.floating-element4{
			width: 50px; height: 50px; top: 80%; left: 20%; animation-delay: 6s;
		}
		.floating-element5{
			width: 70px; height: 70px; top: 20%; left: 70%; animation-delay: 8s;
		}
		
        
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes loading {
            0% { width: 0%; }
            100% { width: 100%; }
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-1000px) rotate(720deg); }
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 30px 20px;
                margin: 20px;
            }
            
            .logo {
                width: 140px;
                height: 140px;
            }
            
            .logo-text {
                font-size: 32px;
            }
            
            h1 {
                font-size: 26px;
            }
            
            p {
                font-size: 16px;
            }
        }
    </style>