
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Private Domain</title>
        <style>
            body {
                font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
                background-color: #0f172a;
                color: #f8fafc;
                display: flex;
                justify-content: center;
                align-items: center;
                height: 100vh;
                margin: 0;
                padding: 20px;
                box-sizing: border-box;
            }
            .container {
                text-align: center;
                background: #1e293b;
                padding: 50px 40px;
                border-radius: 16px;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
                max-width: 550px;
                width: 100%;
                border: 1px solid #334155;
            }
            h1 {
                color: #38bdf8;
                font-size: 28px;
                margin-top: 0;
                margin-bottom: 10px;
                font-weight: 700;
            }
            .main-text {
                font-size: 18px;
                line-height: 1.6;
                color: #e2e8f0;
                margin-bottom: 25px;
            }
            .divider {
                height: 1px;
                background-color: #334155;
                margin: 25px 0;
            }
            .sub-text {
                font-size: 14px;
                line-height: 1.5;
                color: #94a3b8;
            }
            .contact-section {
                margin-top: 30px;
                padding-top: 20px;
                border-top: 1px dashed #334155;
            }
            .contact-title {
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                color: #64748b;
                margin-bottom: 10px;
            }
            .links {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            a {
                color: #38bdf8;
                text-decoration: none;
                font-size: 14px;
                font-weight: 500;
                transition: color 0.2s ease;
            }
            a:hover {
                color: #7dd3fc;
                text-decoration: underline;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <h1>Welcome</h1>
            <p class="main-text">This is a private hobbyist domain only.</p>
            
            <div class="divider"></div>
            
            <p class="sub-text">
                RLK Income Tax Services has been closed since the COVID-19 pandemic.<br>
                This domain is strictly being reused for personal hobbyist development.
            </p>
            
            <div class="contact-section">
                <div class="contact-title">Administrative Contacts</div>
                <div class="links">
                    <a href="mailto:webadmin@rlkincometaxservices.ca">Webadmin</a>
                    <a href="mailto:noc@rlkincometaxservices.ca">Network Operations Center</a>
                    <a href="mailto:abuse@rlkincometaxservices.ca">Abuse</a>
                </div>
            </div>
        </div>
    </body>
    </html>
    