<!DOCTYPE html>
<html lang="it">
<head>
    <meta charset="UTF-8">
    <title>Ci siamo trasferiti</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <style>
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
                         Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
        }

        body {
            min-height: 100vh;
            background: radial-gradient(circle at top, #1e1e2f, #0b0b12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
        }

        .container {
            max-width: 720px;
            padding: 60px 40px;
            text-align: center;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
        }

        h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        p {
            font-size: 18px;
            line-height: 1.6;
            opacity: 0.9;
            margin-bottom: 40px;
        }

        a.button {
            display: inline-block;
            padding: 16px 36px;
            font-size: 18px;
            font-weight: 600;
            color: #0b0b12;
            background: linear-gradient(135deg, #ffd36a, #f7b500);
            border-radius: 999px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 15px 40px rgba(247, 181, 0, 0.4);
        }

        a.button:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 50px rgba(247, 181, 0, 0.6);
        }

        .link {
            margin-top: 24px;
            font-size: 14px;
            opacity: 0.6;
            word-break: break-all;
        }
    </style>
</head>
<body>

    <div class="container">
        <h1>Ci siamo trasferiti 🚀</h1>
        <p>
            Il progetto è stato spostato su un nuovo indirizzo.<br>
            Clicca qui sotto per continuare.
        </p>

        <a class="button" href="https://iappweb.dev/" target="_blank">
            Vai su iappweb.dev
        </a>

        <div class="link">
            https://iappweb.dev/
        </div>
    </div>

</body>
</html>