<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="description" content="Learn what a pending purge domain is, why it’s a critical stage for domain investors, and how to monitor and catch domains before they’re deleted.">
  <meta name="keywords" content="domain purge catch drop dropcatch">
  <meta name="author" content="Jessica Bushell">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  
  <!-- Insert all your CSS directly here -->
  <style>
    /* Reset basic styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;

}



/* Core grid layout */
.main {
  display: grid;
  grid-template-areas:
    "nav nav"
    "header header"
    "title title"
    "contact contact"
    "au-domain-title au-domain-title"
    "domain-section domain-section"
	 "warning warning"
    "footer footer";
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
background: #190033;
background: linear-gradient(180deg,rgba(243, 112, 255, 1) 0%, rgba(133, 0, 156, 1) 27%, rgba(25, 0, 51, 1) 100%);
}

/* Navbar */
.main > div.nav {
    grid-area: nav;
    background-color: #f4f6f8;
    overflow: hidden;
  }
  
  .main > div.nav a {
    float: left;
    display: block;
    color: #333;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .main > div.nav a:hover {
    background-color: #e5a3d2;
    color: black;
  }
  
  .main > div.nav a.active {
    background-color: #333;
    color: white;
  }
  
  .main > div.nav .icon {
    display: none;
  }
  
  /* Responsive nav menu */
  @media (max-width: 600px) {
    .main > div.nav a:not(:first-child) {
      display: none;
    }
    .main > div.nav a.icon {
      float: left;
      display: block;
    }
    .main > div.nav.responsive {
      position: relative;
    }
    .main > div.nav.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }
    .main > div.nav.responsive a {
      float: none;
      display: block;
      text-align: left;
    }
  
    .main > div.header h1 {
      font-size: 44px;
      padding: 10px;
    }
  }
  
  /* Sections */
  .main > div.header {
    position: relative;
    overflow: hidden;
    grid-area: header;
    background: #360761;
    color: white;
    height: 20rem;
    padding-top: 7em;
  }

  .header h3 {
    margin: 0;
    text-align: center;
    z-index: 1000;
    font-family: "Cinzel Decorative", serif;
    font-style: normal;
    font-size: 2em;
  }
  
  .header h1 {
    margin: 0;
    text-align: center;
    z-index: 1000;
    font-family: "Cinzel Decorative", serif;
    font-style: normal;
    font-size: 4em;
  }
  
  .wave {
    position: relative; /* Positioning for the glow effect */
    filter: drop-shadow(0px 10px 20px rgba(255, 9, 214, 0.8)); /* Purple glow effect */
  }

.title p {
	padding: 50px;
}

  .main > div.title {
    overflow: hidden;
    grid-area: title;
    text-align: center;
    padding-bottom: 5em;
    color: whitesmoke;
  }

  .main > div.contact {
    overflow: hidden;
    grid-area: contact;
    display: flex;
    justify-content: center;
    align-items: center;
	 /* background-color: #b18dcc; */
  }

.main > div.warning{
	overflow: hidden;
	grid-area: warning;
	padding: 5em;
	color: whitesmoke;
}
  
  .main > div.footer {
    overflow: hidden;
    grid-area: footer;
    background-color: #111;
    color: whitesmoke;
    height: 200px;
    padding: 5em;
  }

  .main > div.au-domain-title {
    grid-area: au-domain-title;
    width: 100%; 
    text-align: center; 
    line-height: 0.5em; 
    padding-top: 3em;
    padding-bottom: 1em;
  }

  .main > div.au-domain-title span {
    display: inline-block;
    position: relative;
  }

  .line:before,
.line:after {
  content: "";
  position: absolute;
  height: 5px;
  border-bottom: 1px solid white;
  border-top: 1px solid white;
  top: 0;
  width: 600px;
}
.line:before {
  right: 100%;
  margin-right: 15px;
}
.line:after {
  left: 100%;
  margin-left: 15px;
}

 .main > div.domain-section {
   grid-area: domain-section;
  }

.info{
  text-align: center;
}

.auDA-link {
  color: white;
  text-decoration: none;
}

  /* Card styles */
.card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 0;
  }
  
  .card .box {
    position: relative;
    width: 420px;
    height: 500px;
    margin: 90px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: consolas;
    font-size: 1.5em;
    transition: 0.5s;
  }
  
  .card .box::before,
  .card .box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 90px;
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    transform: skewX(15deg);
    transition: 0.5s;
  }
  
  .card .box::after {
    filter: blur(30px);
  }
  
  .card .box:hover::before,
  .card .box:hover::after {
    transform: skewX(0deg);
    left: 20px;
    width: calc(100% - 90px);
  }
  
  .card .box:nth-child(1)::before,
  .card .box:nth-child(1)::after {
    background: linear-gradient(315deg, #4dff03, #00d0ff);
  }
  
  .card .box span {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 5;
    pointer-events: none;
  }
  
  .card .box span::before,
  .card .box span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: 0.5s;
    animation: animate 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  }
  
  .card .box:hover span::before {
    top: -50px;
    left: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
  }
  
  .card .box:hover span::after {
    bottom: -50px;
    right: 50px;
    width: 100px;
    height: 100px;
    opacity: 1;
  }
  
  @keyframes animate {
    0%, 100% { transform: translateY(10px); }
    50% { transform: translateY(-10px); }
  }
  
  .card .box .content {
    position: relative;
    left: 0;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: black;
    z-index: 10000;
  }
  
  .card .box:hover .content {
    left: -25px;
    padding: 40px 30px;
  }
  
  .card .box .content h2 {
    font-size: 2em;
    margin-bottom: 10px;
  }
  
  .card .box .content p {
    font-size: 1em;
    margin-bottom: 10px;
    line-height: 1.4em;
  }
  
  .card .box .content a {
    display: inline-block;
    font-size: 1em;
    color: #111;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 5px;
  }
  
  .card .box .content a:hover {
    background: #ffcf4d;
    border: 1px solid rgba(255, 0, 88, 0.4);
    box-shadow: 0 1px 15px rgba(1, 1, 1, 0.2);
  }

  
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #4B0082;
    color: white;
  }

  .spacer {
    height: 100vh;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .domain-section {
    position: sticky;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    z-index: 10;
    transition: all 0.4s ease;
  }

  .au {
    width: 220px;
    height: 120px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }

  .au::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 15px rgba(255,255,255,0.1);
    pointer-events: none;
  }

  .info {
    position: absolute;
    bottom: -150px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.15);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .au.info-open {
    z-index: 11;
  }

  .au.info-open .info {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .auDA-link {
    background-color: #4dff03;
    border: none;
    border-radius: 10px;
    color: black;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
  }

   /* Mobile Styles */
   @media (max-width: 768px) {
    .domain-section, .domain-section.nav-mode {
      flex-direction: column;
      align-items: center;
      position: static;
    }

    .au {
      width: 90%;
      height: auto;
      transform: none !important;
    }

    .info {
      position: static;
      opacity: 1;
      transform: none;
      padding-top: 10px;
    }
}
  </style>
  
  <link rel="preconnect" href="https://googleapis.com">
  <link rel="preconnect" href="https://gstatic.com" crossorigin>
  <link href="https://googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap" rel="stylesheet">
  <link href="https://googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap" rel="stylesheet">
  <script src="https://google.com"></script>
</head>

<body>
  <div class="main">
    <div class="nav">
      <a href="index.html" class="active">Home</a>
      <a href="pending-purge-domain.html">Domain Purging</a>
      <a href="https://conetix.com.au/domain-registrations/">Domain Registration</a>
		<a href="#">auDA Complaint</a>
		<a href="#">auDA Explained</a>
    </div>

    <div class="header">
      <h1>This Is a Domain</h1>
		<h3>Learn About Domains<h3>
      <div class="bar"><br></div>
    </div>

    <div class="title">
      <svg class="wave" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320">
        <path fill="#360761" fill-opacity="1" d="M0,192L80,176C160,160,320,128,480,122.7C640,117,800,139,960,170.7C1120,203,1280,245,1360,266.7L1440,288L1440,0L1360,0C1280,0,1120,0,960,0C800,0,640,0,480,0C320,0,160,0,80,0L0,0Z"></path>
      </svg>
      <h1>Domain Drop Watch</h1>
      <br>
      <h2>Watch your domain and get notified when it expires and when it's pending purge.</h2>
      <br><br>
      <p>This is not a domain catcher, and we do not register domains, this is a free service to watch your chosen domain. This system checks domains once per day, unlike drop catchers who use bots to run a domain lookup every few seconds.</p>
    </div>

    <div class="contact">
      <div class="card">
        <div class="box">
          <span></span>
          <div class="content">
            <form id="domainForm" method="post">
              <p>Under Construction</p>
              <!--
				<table>
                <tr>
                  <td><label for="domain">Domain:</label></td>
                  <td><input type="text" name="domain" id="domain" placeholder="example.com" required></td>
                </tr>
                <tr>
                  <td><label for="email">Your Email:</label></td>
                  <td><input type="email" name="email" id="email" placeholder="you@example.com" required></td>
                </tr>
              </table>

              <br><br>
              <input type="hidden" name="g-recaptcha-response" id="recaptchaToken">
              <button type="submit">Start Monitoring</button>
-->
            </form>
            <div id="form-message"></div>
          </div>
        </div>
      </div>
    </div>

	  
	  <div class="warning">
		  <p>The domain watcher tool is a free tool that's designed to help people monitor domains they wish to purchase without the use of a drop catcher. However, if the domain is in high demand, or has a high value it is recommended you invest in a drop catcher.</p>
        <br>
        <p>see more on domain drop catching</p>
	  </div>


    <div class="au-domain-title">
      <h2><span class="line">AU DOMAINS</span></h2><br><br><br>
      <p>Most countries have special requirements for their specific domains. Check out information on what the different types of .au domains are for.</p>
    </div>

    <div class="domain-section" id="domainSection">
      <div class="au">.com.au
        <div class="info">
          Commercial Australian websites.<br>
          <a href="https://www.auda.org.au/au-domain-names/the-different-au-domain-names/com-au-domain-names/" target="_blank" class="auDA-link"><strong>Learn more about .com.au domains</strong></a>
        </div>
      </div>

      <div class="au">.org.au
        <div class="info">Nonprofit organizations in Australia.<br>
          <a href="https://www.auda.org.au/au-domain-names/the-different-au-domain-names/org-au-domain-names/" target="_blank" class="auDA-link"><strong>Learn more about .org.au domains</strong></a>
        </div>
      </div>

      <div class="au">.net.au
        <div class="info">Network service providers in Australia.<br>
          <a href="https://www.auda.org.au/au-domain-names/the-different-au-domain-names/net-au-domain-names/" target="_blank" class="auDA-link"><strong>Learn more about .net.au domains</strong></a>
        </div>
      </div>

      <div class="au">.au
        <div class="info">Direct registration under .au for general use.<br>
          <a href="https://www.auda.org.au/au-domain-names/the-different-au-domain-names/au-direct-domain-names/" target="_blank" class="auDA-link"><strong>Learn more about .au domains</strong></a>
        </div>
      </div>

      <div class="au">.id.au
        <div class="info">Personal websites for individual Australians.<br>
          <a href="https://www.auda.org.au/au-domain-names/the-different-au-domain-names/id-au-domain-names/" target="_blank" class="auDA-link"><strong>Learn more about .id.au domains</strong></a>
        </div>
      </div>

      <div class="au">.asn.au
        <div class="info">Registered Australian associations.<br>
          <a href="https://www.auda.org.au/au-domain-names/the-different-au-domain-names/asn-au-domain-names/" target="_blank" class="auDA-link"><strong>Learn more about .asn.au domains</strong></a>
        </div>
      </div>
    </div>

    <div class="footer">
      <p>footer goes here</p>
    </div>
  </div>

  <!-- ✅ JavaScript to handle reCAPTCHA v3 and form -->
  <script>
    document.getElementById('domainForm').addEventListener('submit', function(e) {
      e.preventDefault();
      const form = e.target;
      const formData = new FormData(form);

      grecaptcha.ready(function() {
        grecaptcha.execute('6LfhGj0rAAAAAI6s0anG5Z4sgs2IWBmp1AQxrPDE', { action: 'submit' }).then(async function(token) {
          formData.append('g-recaptcha-response', token);

          try {
            const response = await fetch('contact_form.php', {
              method: 'POST',
              body: formData
            });

            const text = await response.text();
            document.getElementById('form-message').innerHTML = text;
            form.reset();
          } catch (error) {
            document.getElementById('form-message').innerHTML = '<p style="color:red;">An error occurred. Please try again.</p>';
          }
        });
      });
    });

    // Toggle info drop
    const boxes = document.querySelectorAll('.au');
    boxes.forEach(au => {
      au.addEventListener('click', () => {
        au.classList.toggle('info-open');
      });
    });
  </script>
</body>
</html>
