<!DOCTYPE html>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Domain for sale page</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            background: linear-gradient(135deg, rgba(255, 0, 150, 0.3), rgba(0, 204, 255, 0.3)), url('https://picsum.photos/1920/1080?random=1') no-repeat center center/cover;
            backdrop-filter: blur(15px);
            text-align: center;
            padding: 20px;
            color: #333;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0;
        }
        .container {
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(15px);
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
            max-width: 90%;
            width: 480px;
        }
        h1 {
            color: #007BFF;
            font-size: 1.8em;
        }
        .domain-display {
            background: rgba(0, 123, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            margin: 15px 0;
            border: 2px dashed #007BFF;
            font-size: 1.2em;
            font-weight: bold;
        }
        .price {
            font-size: 1.5em;
            color: #e91e63;
            font-weight: bold;
            margin: 20px 0;
        }
        .contact {
            margin-top: 20px;
            font-size: 1em;
        }
        .contact p {
            margin: 12px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .contact p i {
            margin-right: 10px;
            color: #007BFF;
        }
        a {
            color: #007BFF;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        hr {
            border: none;
            height: 1px;
            background-color: #ccc;
            margin: 20px 0;
        }
        .info-badge {
            background: rgba(233, 30, 99, 0.1);
            color: #e91e63;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9em;
            margin: 10px 0;
            display: inline-block;
        }
    </style>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
    <div class="container">
        <div class="domain-display">
            <i class="fas fa-globe"></i> Current domain name:&nbsp;<span id="currentDomain">Retrieving...</span>
        </div>
        
        <div class="info-badge">
            <i class="fas fa-tag"></i> Domain name is being offered for sale
        </div>
        
        <h1><span id="domainName1"></span> Domain for Sale</h1>
        <p>This domain is for sale! If you're interested in purchasing it, please contact us.</p>
        
        <div class="price">Price: Online negotiation</div>
        
        <div class="contact">
            <p><i class="fab fa-qq"></i><strong>QQ:</strong>&nbsp;1143016716</p>
            <p><i class="fab fa-weixin"></i><strong>WeChat:</strong>&nbsp;junmoxiao29</p>
            <p><i class="fas fa-envelope"></i><strong>Email:</strong> <a href="/cdn-cgi/l/email-protection#74454540474445424345423405055a171b19">&nbsp;<span class="__cf_email__" data-cfemail="02333336313233343533344273732c616d6f">[email&#160;protected]</span></a></p>
        </div>
        
        <hr>
        
        <h1><span id="domainName2"></span> 域名出售</h1>
        <p>该域名正在出售！您若有意购买，请联系我们。</p>
        
        <div class="price">价格：在线协商</div>
        
        <div class="contact">
            <p><i class="fab fa-qq"></i><strong>QQ：</strong> 1143016716</p>
            <p><i class="fab fa-weixin"></i><strong>微信：</strong> junmoxiao29</p>
            <p><i class="fas fa-envelope"></i><strong>邮箱：</strong> <a href="/cdn-cgi/l/email-protection#0f3e3e3b3c3f3e39383e394f7e7e216c6062"><span class="__cf_email__" data-cfemail="96a7a7a2a5a6a7a0a1a7a0d6e7e7b8f5f9fb">[email&#160;protected]</span></a></p>
        </div>
    </div>

    <script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
        function getCurrentDomain() {
            const fullDomain = window.location.hostname;
            
            if (fullDomain === 'localhost' || fullDomain === '127.0.0.1') {
                return 'example.com'; 
            }
            
            return fullDomain;
        }
        
        function updateDomainDisplay() {
            const domain = getCurrentDomain();
            
            document.title = domain + ' Domain for sale';
            
            document.getElementById('currentDomain').textContent = domain;
            
            document.getElementById('domainName1').textContent = domain;
            document.getElementById('domainName2').textContent = domain;
            
            console.log('Current page domain:', domain);
        }
        
        document.addEventListener('DOMContentLoaded', function() {
            updateDomainDisplay();
            
            window.addEventListener('popstate', updateDomainDisplay);
        });
    </script>
</body>
</html>