<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>RT8 - Upgrades in Progress</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&display=swap" rel="stylesheet">
    <style>
        :root {
            --neon-pink: #ff00ff;
            --neon-blue: #00f2ff;
            --cyber-bg: #050505;
        }

        body {
            background-color: var(--cyber-bg);
            color: #fff;
            font-family: 'Share Tech Mono', monospace;
            overflow: hidden;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Scanline Overlay */
        .scanlines {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(
                rgba(18, 16, 16, 0) 50%,
                rgba(0, 0, 0, 0.25) 50%
            ), linear-gradient(
                90deg,
                rgba(255, 0, 0, 0.04),
                rgba(0, 255, 0, 0.01),
                rgba(0, 0, 255, 0.04)
            );
            background-size: 100% 4px, 3px 100%;
            pointer-events: none;
            z-index: 50;
        }

        /* Flicker Effect */
        @keyframes flicker {
            0% { opacity: 0.99; }
            5% { opacity: 0.95; }
            10% { opacity: 0.99; }
            100% { opacity: 1; }
        }

        .crt-content {
            animation: flicker 0.2s infinite;
            text-align: center;
            z-index: 10;
            width: 100%;
            max-width: 900px;
        }

        /* Logo Styling - Fixed Clipping */
        .logo-container {
            position: relative;
            width: 220px; /* Base width */
            aspect-ratio: 243 / 174; /* Matches original image aspect ratio */
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Ensures no cropping */
            display: block;
            filter: invert(1) brightness(1.2) contrast(1.1);
            animation: logo-glow 3s ease-in-out infinite alternate;
        }

        @keyframes logo-glow {
            from { filter: invert(1) brightness(1) drop-shadow(0 0 5px var(--neon-blue)); }
            to { filter: invert(1) brightness(1.3) drop-shadow(0 0 15px var(--neon-blue)); }
        }

        .glitch-text {
            font-family: 'Orbitron', sans-serif;
            text-transform: uppercase;
            font-weight: 900;
            letter-spacing: 4px;
            color: #fff;
            text-shadow:
                2px 2px var(--neon-pink),
                -2px -2px var(--neon-blue);
        }

        .cyber-button {
            background: transparent;
            border: 1px solid var(--neon-blue);
            color: var(--neon-blue);
            padding: 12px 24px;
            transition: all 0.3s;
            position: relative;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
        }

        .cyber-button:hover {
            background: var(--neon-blue);
            color: #000;
            box-shadow: 0 0 20px var(--neon-blue);
            transform: scale(1.05);
        }

        .grid-bg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 40%;
            background-image:
                linear-gradient(rgba(0, 242, 255, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 242, 255, 0.1) 1px, transparent 1px);
            background-size: 60px 60px;
            transform: perspective(500px) rotateX(65deg);
            transform-origin: center bottom;
            animation: grid-move 3s linear infinite;
        }

        @keyframes grid-move {
            0% { background-position: 0 0; }
            100% { background-position: 0 60px; }
        }

        .ambient-light {
            position: fixed;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 100vh;
            background: radial-gradient(circle, rgba(255,0,255,0.03) 0%, rgba(0,0,0,0) 70%);
            transform: translate(-50%, -50%);
            pointer-events: none;
        }
    </style>
</head>
<body>

    <div class="ambient-light"></div>
    <div class="scanlines"></div>
    <div class="grid-bg"></div>

    <div class="crt-content px-6">
        <!-- Logo Section -->
        <div class="logo-container">
            <img src="https://lh3.googleusercontent.com/p/AF1QipP5unKb--mXn2_wvJgnhPDmugYEAka3fNY2OMq1=w243-h304-n-k-no-nu"
                 alt="RT8 Rotate Group"
                 class="logo-img"
                 onerror="this.parentElement.innerHTML='<span class=\'text-4xl font-black italic tracking-tighter text-blue-400\'>RT8</span>'">
        </div>

        <!-- Main Message -->
        <h1 class="glitch-text text-3xl md:text-5xl lg:text-6xl mb-2">UPGRADES IN PROGRESS</h1>
        <p class="text-lg md:text-xl text-pink-500 mb-10 tracking-[0.5em] font-black uppercase">Hang Tight!</p>

        <!-- Contact Info Box -->
        <div class="max-w-xl mx-auto bg-black/80 border border-blue-500/20 p-8 backdrop-blur-md relative">
            <div class="absolute -top-1 -left-1 w-6 h-6 border-t-2 border-l-2 border-blue-500/50"></div>
            <div class="absolute -bottom-1 -right-1 w-6 h-6 border-b-2 border-r-2 border-blue-500/50"></div>
           
            <p class="text-blue-300/60 mb-8 uppercase tracking-[0.2em] text-xs font-bold">Contact HQ for priority assistance</p>
           
            <div class="flex flex-col sm:flex-row items-center justify-center gap-6">
                <a href="mailto:info@rt8.co.za" class="cyber-button text-xs flex items-center gap-3 w-full sm:w-auto justify-center">
                    <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"></path></svg>
                    info@rt8.co.za
                </a>
                <a href="https://wa.me/27847990432" target="_blank" class="cyber-button text-xs flex items-center gap-3 w-full sm:w-auto justify-center" style="border-color: var(--neon-pink); color: var(--neon-pink);">
                    <svg class="w-4 h-4" fill="currentColor" viewBox="0 0 24 24"><path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z"></path></svg>
                    WhatsApp Support
                </a>
            </div>
           
            <p class="mt-8 text-[9px] text-blue-300/40 uppercase tracking-[0.4em] font-bold">Encrypted Status: Online // Protocol 8-RT-01</p>
        </div>
    </div>

</body>
</html>