
          <!DOCTYPE html>
          <html>
          <head>
              <title>Just a moment...</title>
              <style>
                  body { text-align: center; font-family: -apple-system, system-ui, sans-serif; padding: 50px; background: #f4f4f4; color: #333; }
                  .box { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); display: inline-block; }
                  .spinner { border: 4px solid #f3f3f3; border-top: 4px solid #cc0000; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 20px auto; }
                  @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
              </style>
              <script>
                  (function(){
                      // Set cookie for 2 hours
                      document.cookie = "ncstate_uambv=true; path=/; max-age=7200; SameSite=Lax";
                      // Delay slightly to ensure cookie is written before reload
                      setTimeout(function(){ window.location.reload(); }, 2000);
                  })();
              </script>
          </head>
          <body>
              <div class="box">
                  <h1>Verifying your connection...</h1>
                  <p>Please wait a few seconds while we check your browser.</p>
                  <div class="spinner"></div>
                  <p style="color: #666; font-size: 0.8em;">NC State Web Publishing</p>
              </div>
          </body>
          </html>
        