<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>cipherlk - We're Upgrading!</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #0f0f23;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        /* Animated background particles */
        .particle {
            position: absolute;
            background: rgba(0, 255, 255, 0.6);
            border-radius: 50%;
            animation: float-particle 15s infinite ease-in-out;
        }

        .particle:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
            background: rgba(255, 0, 255, 0.4);
        }

        .particle:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 70%;
            left: 80%;
            animation-delay: 2s;
            background: rgba(0, 255, 255, 0.4);
        }

        .particle:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 50%;
            left: 5%;
            animation-delay: 4s;
            background: rgba(255, 255, 0, 0.3);
        }

        .particle:nth-child(4) {
            width: 70px;
            height: 70px;
            top: 20%;
            left: 85%;
            animation-delay: 1s;
            background: rgba(0, 255, 128, 0.4);
        }

        .particle:nth-child(5) {
            width: 90px;
            height: 90px;
            top: 80%;
            left: 20%;
            animation-delay: 3s;
            background: rgba(255, 128, 0, 0.4);
        }

        @keyframes float-particle {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }
            25% {
                transform: translate(50px, -50px) scale(1.2);
                opacity: 0.8;
            }
            50% {
                transform: translate(-30px, 30px) scale(0.9);
                opacity: 0.5;
            }
            75% {
                transform: translate(40px, 60px) scale(1.1);
                opacity: 0.7;
            }
        }

        .container {
            background: rgba(20, 20, 40, 0.9);
            border: 2px solid rgba(0, 255, 255, 0.3);
            border-radius: 30px;
            box-shadow: 0 0 60px rgba(0, 255, 255, 0.3), 0 0 100px rgba(255, 0, 255, 0.2);
            padding: 60px 40px;
            max-width: 800px;
            width: 100%;
            text-align: center;
            position: relative;
            z-index: 1;
            backdrop-filter: blur(20px);
        }

        .logo {
            font-size: 56px;
            font-weight: 900;
            color: #00ffff;
            margin-bottom: 10px;
            letter-spacing: 4px;
            text-shadow: 0 0 20px rgba(0, 255, 255, 0.8),
                         0 0 40px rgba(0, 255, 255, 0.5);
            animation: glow-pulse 2s ease-in-out infinite;
        }

        @keyframes glow-pulse {
            0%, 100% {
                text-shadow: 0 0 20px rgba(0, 255, 255, 0.8),
                             0 0 40px rgba(0, 255, 255, 0.5);
            }
            50% {
                text-shadow: 0 0 30px rgba(0, 255, 255, 1),
                             0 0 60px rgba(0, 255, 255, 0.7),
                             0 0 80px rgba(0, 255, 255, 0.4);
            }
        }

        .tagline {
            color: #ff00ff;
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 40px;
            text-transform: uppercase;
            font-weight: 600;
        }

        .rocket-container {
            margin: 40px 0;
            position: relative;
            height: 150px;
        }

        .rocket {
            font-size: 80px;
            display: inline-block;
            animation: rocket-fly 3s ease-in-out infinite;
            filter: drop-shadow(0 0 20px rgba(255, 100, 0, 0.8));
        }

        @keyframes rocket-fly {
            0%, 100% {
                transform: translateY(0) rotate(-45deg);
            }
            50% {
                transform: translateY(-30px) rotate(-35deg);
            }
        }

        .stars {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .star {
            position: absolute;
            color: #ffff00;
            animation: twinkle 1.5s ease-in-out infinite;
        }

        .star:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; font-size: 20px; }
        .star:nth-child(2) { top: 40%; left: 70%; animation-delay: 0.3s; font-size: 16px; }
        .star:nth-child(3) { top: 60%; left: 30%; animation-delay: 0.6s; font-size: 24px; }
        .star:nth-child(4) { top: 30%; left: 80%; animation-delay: 0.9s; font-size: 18px; }
        .star:nth-child(5) { top: 70%; left: 60%; animation-delay: 1.2s; font-size: 22px; }

        @keyframes twinkle {
            0%, 100% {
                opacity: 0.3;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.3);
            }
        }

        h1 {
            color: #ffffff;
            font-size: 42px;
            margin-bottom: 20px;
            font-weight: 800;
            line-height: 1.2;
        }

        .highlight {
            background: linear-gradient(90deg, #00ffff, #ff00ff, #ffff00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradient-shift 3s ease infinite;
            background-size: 200% auto;
        }

        @keyframes gradient-shift {
            0%, 100% {
                background-position: 0% center;
            }
            50% {
                background-position: 100% center;
            }
        }

        .message {
            color: #b0b0b0;
            font-size: 20px;
            line-height: 1.8;
            margin: 30px 0;
        }

        .emoji-line {
            font-size: 40px;
            margin: 30px 0;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        .loading-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 40px 0;
        }

        .dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            animation: dot-bounce 1.4s ease-in-out infinite;
        }

        .dot:nth-child(1) {
            background: #00ffff;
            animation-delay: 0s;
        }

        .dot:nth-child(2) {
            background: #ff00ff;
            animation-delay: 0.2s;
        }

        .dot:nth-child(3) {
            background: #ffff00;
            animation-delay: 0.4s;
        }

        @keyframes dot-bounce {
            0%, 80%, 100% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            40% {
                transform: scale(1.3);
                opacity: 1;
            }
        }

        .footer {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer p {
            color: #808080;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }

        .social-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            background: rgba(0, 255, 255, 0.3);
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 5px 20px rgba(0, 255, 255, 0.5);
        }

        @media (max-width: 600px) {
            .container {
                padding: 40px 25px;
            }

            .logo {
                font-size: 40px;
            }

            h1 {
                font-size: 32px;
            }

            .message {
                font-size: 18px;
            }

            .rocket {
                font-size: 60px;
            }

            .emoji-line {
                font-size: 30px;
            }
        }
    </style>
</head>
<body>
    <div class="particle"></div>
    <div class="particle"></div>
    <div class="particle"></div>
    <div class="particle"></div>
    <div class="particle"></div>

    <div class="container">
        <div class="logo">cipherlk</div>
        <div class="tagline">Secure • Innovative • Encrypted</div>

        <div class="rocket-container">
            <div class="stars">
                <span class="star">✨</span>
                <span class="star">✨</span>
                <span class="star">✨</span>
                <span class="star">✨</span>
                <span class="star">✨</span>
            </div>
            <div class="rocket">🚀</div>
        </div>

        <h1>
            We're <span class="highlight">Upgrading!</span>
        </h1>

        <p class="message">
            Our digital fortress is getting a major upgrade!<br>
            Hang tight while we level up our systems.
        </p>

        <div class="emoji-line">
            🔧 💻 ⚡ 🎨 🔒
        </div>

        <div class="loading-dots">
            <div class="dot"></div>
            <div class="dot"></div>
            <div class="dot"></div>
        </div>

        <div class="footer">
            <p>Something urgent? Drop us a line!</p>
            <p style="color: #00ffff; font-weight: 600;">hello@cipherlk.com</p>
            
            <div class="social-icons">
                <div class="social-icon">🐦</div>
                <div class="social-icon">💼</div>
                <div class="social-icon">📧</div>
            </div>
        </div>
    </div>
</body>
</html>
