<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>tamilcloud.com - Coming Soon</title>

    <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            min-height: 100vh;
            font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: #0f172a;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .page {
            max-width: 540px;
            text-align: center;
        }

        .logo {
            font-size: clamp(30px, 7vw, 42px);
            font-weight: 800;
            letter-spacing: -1.2px;
            margin-bottom: 18px;
            word-break: break-word;
        }

        .logo span {
            color: #38bdf8;
        }

        .badge {
            display: inline-block;
            background: rgba(56, 189, 248, 0.12);
            color: #7dd3fc;
            border: 1px solid rgba(125, 211, 252, 0.25);
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        h1 {
            font-size: clamp(34px, 7vw, 56px);
            line-height: 1.05;
            letter-spacing: -2px;
            margin-bottom: 18px;
        }

        p {
            color: #cbd5e1;
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            background: #ffffff;
            color: #0f172a;
            font-weight: 700;
            padding: 13px 22px;
            border-radius: 999px;
            transition: transform 0.2s ease, opacity 0.2s ease;
        }

        .button:hover {
            transform: translateY(-2px);
            opacity: 0.92;
        }

        .footer {
            margin-top: 42px;
            color: #64748b;
            font-size: 13px;
        }
    </style>

    <!-- Google tag (gtag.js) -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=G-FNMF5Y16L2"></script>
    <script>
        window.dataLayer = window.dataLayer || [];

        function gtag() {
            dataLayer.push(arguments);
        }

        gtag('js', new Date());
        gtag('config', 'G-FNMF5Y16L2');
    </script>
</head>
<body>
    <main class="page">
        <div class="logo">
            tamilcloud<span>.com</span>
        </div>

        <div class="badge">Coming soon</div>

        <p>
            Tamilcloud is getting an improved version.
            We will be back soon with a cleaner experience, better content, and useful updates.
        </p>

        <a class="button" href="https://www.instagram.com/divineguidecom/" target="_blank" rel="noopener">
            Follow us on Instagram
        </a>

        <div class="footer">
            © tamilcloud.com. All rights reserved.
        </div>
    </main>
</body>
</html>