<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
  <meta name="robots" content="noindex, follow">
  <title>Domain on auction | Contact directly</title>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: linear-gradient(145deg, #0b1120 0%, #0f172a 100%);
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
      color: #e2e8f0;
    }

    .card {
      max-width: 800px;
      width: 100%;
      background: rgba(15, 23, 42, 0.75);
      backdrop-filter: blur(10px);
      border-radius: 3rem;
      border: 1px solid rgba(56, 189, 248, 0.2);
      box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(56, 189, 248, 0.1) inset;
      overflow: hidden;
    }

    .badge {
      background: #f97316;
      color: #0f172a;
      font-weight: 700;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 0.3rem 0.9rem;
      border-radius: 40px;
      display: inline-block;
      margin-bottom: 1rem;
    }

    .content {
      padding: 2.5rem;
    }

    h1 {
      font-size: 2.2rem;
      font-weight: 700;
      background: linear-gradient(135deg, #ffffff, #94a3b8);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 1.2rem;
      letter-spacing: -0.02em;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    h1 .emoji {
      font-size: 2rem;
      background: none;
      -webkit-background-clip: unset;
      color: #facc15;
    }

    p {
      line-height: 1.6;
      margin-bottom: 1.2rem;
      font-size: 1rem;
      font-weight: 400;
      color: #cbd5e1;
    }

    .highlight {
      background: linear-gradient(120deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.05));
      padding: 1.2rem;
      border-radius: 1.5rem;
      margin: 1.5rem 0;
      border-left: 3px solid #38bdf8;
    }

    .contacts {
      background: #0f172a;
      border-radius: 2rem;
      padding: 1.5rem;
      margin: 1.5rem 0;
      border: 1px solid #1e293b;
    }

    .contacts h3 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .contact-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 1.2rem;
      background: #0a0f1c;
      padding: 0.8rem 1rem;
      border-radius: 1.2rem;
    }

    .contact-icon {
      font-size: 1.4rem;
      min-width: 40px;
    }

    .contact-detail {
      flex: 1;
      font-family: monospace;
      font-size: 0.95rem;
      word-break: break-all;
    }

    .copy-btn {
      background: none;
      border: none;
      color: #38bdf8;
      cursor: pointer;
      font-size: 1.2rem;
      padding: 0.4rem 0.8rem;
      border-radius: 2rem;
      transition: 0.1s;
    }

    .copy-btn:hover {
      background: #1e293b;
    }

    .telegram-img {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 1.2rem;
    }

    .telegram-img .contact-icon {
      align-self: flex-start;
    }

    .telegram-img-wrapper {
      flex-shrink: 0;
      cursor: pointer;
      transition: 0.1s;
    }

    .telegram-img-wrapper img {
      width: 140px;
      height: auto;
      background: white;
      border-radius: 20px;
      padding: 8px;
      background: #fff;
      border: 1px solid #38bdf8;
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
      transition: transform 0.1s ease;
    }

    .telegram-img-wrapper img:hover {
      transform: scale(1.02);
    }

    .telegram-text {
      flex: 1;
      font-size: 0.9rem;
    }

    .telegram-text a {
      color: #38bdf8;
      text-decoration: none;
      border-bottom: 1px dashed;
    }

    .telegram-text a:hover {
      color: #7ac9ff;
    }

    .telegram-text small {
      font-size: 0.7rem;
      opacity: 0.7;
      display: block;
      margin-top: 4px;
    }

    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.9);
      backdrop-filter: blur(5px);
      justify-content: center;
      align-items: center;
      cursor: pointer;
    }

    .modal-content {
      max-width: 90%;
      max-height: 90%;
      border-radius: 24px;
      box-shadow: 0 0 30px rgba(56,189,248,0.5);
      border: 2px solid #38bdf8;
    }

    .close-modal {
      position: absolute;
      top: 20px;
      right: 30px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      background: rgba(0,0,0,0.6);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s;
    }

    .close-modal:hover {
      background: #f97316;
    }

    .shop-link {
      display: inline-block;
      margin-top: 0.5rem;
      font-weight: 500;
      color: #38bdf8;
      text-decoration: none;
      border-bottom: 1px dashed;
    }

    .footer-note {
      font-size: 0.75rem;
      color: #5b6e8c;
      text-align: center;
      margin-top: 2rem;
      border-top: 1px solid #1e293b;
      padding-top: 1.5rem;
    }

    @media (max-width: 600px) {
      .content {
        padding: 1.5rem;
      }
      h1 {
        font-size: 1.6rem;
      }
      .telegram-img-wrapper img {
        width: 100px;
      }
    }
  </style>
</head>
<body>
<div class="card">
  <div class="content">
    <div class="badge">🔔 auction in progress</div>
    <h1>
      <span class="emoji">🔒</span> This domain is on auction
    </h1>
    <p>There are already pre-orders for this domain — it may be sold soon, if the price reaches my acceptable reserve.</p>

    <!-- CONTACTS SECTION - PLACED HIGH FOR IMMEDIATE VISIBILITY -->
    <div class="contacts">
      <h3>📬 My contacts (bulk purchases, PBN networks, wholesale)</h3>

      <!-- Email -->
      <div class="contact-row">
        <div class="contact-icon">✉️</div>
        <div class="contact-detail" id="emailValue"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="d0b4bfbdb5bebeb1bdb5a3e190b7bdb1b9bcfeb3bfbd">[email&#160;protected]</a></div>
        <button class="copy-btn" data-clipboard="domennames1@gmail.com">📋 Copy</button>
      </div>

      <!-- Telegram with enlarged QR (clickable) + text fallback -->
      <div class="contact-row telegram-img">
        <div class="contact-icon">📩</div>
        <div class="telegram-img-wrapper" id="qrModalTrigger">
          <img src="1.jpg" alt="Telegram QR code" onerror="this.src='https://placehold.co/400x400?text=Telegram+QR+Not+Found';">
        </div>
        <div class="telegram-text">
          <strong>Telegram contact</strong><br>
          <a href="https://t.me/watcher_vz" target="_blank" rel="noopener noreferrer">@watcher_vz</a><br>
          Scan QR or click to enlarge, or click on username to start chat<br>
          <small>(image: 1.jpg in the same folder — replace with your QR code)</small>
        </div>
      </div>
    </div>

    <!-- REST OF THE CONTENT (goal, shop, etc.) -->
    <div class="highlight">
      <p style="margin-bottom: 0.5rem; font-weight: 600; color: #facc15;">🎯 But now I want to solve a different task.</p>
      <p>I professionally buy and sell domains. <strong>My goal is to find direct contacts of people with solid budgets who need quality domains for large PBN networks.</strong></p>
      <p>I really need to understand the real needs of such buyers: what domain parameters you are looking for, what volumes, for which tasks — so I can offer you ready-made solutions.</p>
    </div>

    <p>👉 <strong>If you are that kind of buyer — write to me directly.</strong> Let's discuss what you need, and I'll be able to pick domains according to your request.</p>

    <p>While the auction is ongoing, this domain shows a placeholder. But I have other domains — in my regular shop:</p>
    <div style="text-align: center; margin: 1rem 0 0.8rem;">
      <a href="https://www.gname.com/shop/89465" target="_blank" rel="noopener noreferrer" class="shop-link" style="font-size: 1.1rem;">🛒 Visit my domain shop →</a>
    </div>

    <div class="footer-note">
      ⏳ After the auction ends, the site will be restored (if the domain is not sold).
    </div>
  </div>
</div>

<!-- Modal for fullscreen QR -->
<div id="qrModal" class="modal">
  <span class="close-modal">&times;</span>
  <img class="modal-content" id="qrFullImg" src="1.jpg" alt="Telegram QR large">
</div>

<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script><script>
  // Copy email
  document.querySelectorAll('.copy-btn').forEach(btn => {
    btn.addEventListener('click', function() {
      const textToCopy = this.getAttribute('data-clipboard');
      if (textToCopy) {
        navigator.clipboard.writeText(textToCopy).then(() => {
          const originalText = this.innerText;
          this.innerText = '✓ Copied!';
          setTimeout(() => {
            this.innerText = originalText;
          }, 1500);
        }).catch(() => {
          alert('Press Ctrl+C to copy: ' + textToCopy);
        });
      }
    });
  });

  // QR modal logic
  const modal = document.getElementById('qrModal');
  const trigger = document.getElementById('qrModalTrigger');
  const closeBtn = document.querySelector('.close-modal');
  const modalImg = document.getElementById('qrFullImg');

  function openModal() {
    modal.style.display = 'flex';
  }
  function closeModal() {
    modal.style.display = 'none';
  }

  trigger.addEventListener('click', openModal);
  closeBtn.addEventListener('click', closeModal);
  modal.addEventListener('click', function(e) {
    if (e.target === modal) closeModal();
  });
</script>
</body>
</html>