<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Domain For Sale - $200</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            text-align: center;
        }

        .container {
            background: rgba(0, 0, 0, 0.6);
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 0 30px rgba(0,0,0,0.5);
        }

        h1 {
            font-size: 48px;
            margin-bottom: 10px;
        }

        .price {
            font-size: 36px;
            color: #00ffcc;
            margin: 20px 0;
        }

        p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            font-size: 18px;
            color: white;
            background: #00c6ff;
            border-radius: 8px;
            text-decoration: none;
            transition: 0.3s;
        }

        .btn:hover {
            background: #0072ff;
        }

        footer {
            margin-top: 30px;
            font-size: 14px;
            opacity: 0.7;
        }
    </style>
</head>
<body>

    <div class="container">
        <h1>Sell This Domain</h1>
        <p>This premium domain is now available for acquisition.</p>
        <div class="price">$200 USD</div>

        <a class="btn" href="https://spaceship.com" target="_blank">
            Buy Now on Spaceship
        </a>

        <footer>
            Serious inquiries only. Secure transaction via Spaceship.
        </footer>
    </div>

</body>
</html>