Landing 2

CLASSIC SPORTSBOOK — CASHIER BUTTON

Classic sportsbook landing. Logo auto-loads from site domain, Cashier button opens the partner cashier via API lookup, Login posts directly to the book.

EMBED CODE

Do not replace your existing index.html. Add this block right before the closing </body> tag in your current file.

Replace YOUR-SITE-DOMAIN-HERE with your domain (e.g. pph.ag). Your original site stays intact as a fallback — if our landing server is unreachable, visitors will see your original site instead of a blank page.

<!-- VRB LANDING EMBED START -->
<style>
  #vrb-landing-wrapper {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    background: #050810;
  }
  #vrb-landing-wrapper iframe {
    width: 100vw;
    height: 100vh;
    border: 0;
    display: block;
  }
  #ccs-embed {
    width: 100vw;
    height: 100vh;
    display: block;
  }
  #vrb-landing-loader {
    position: fixed;
    inset: 0;
    z-index: 999998;
    background: #050810;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    font-size: 16px;
  }
</style>

<div id="vrb-landing-loader">Loading...</div>
<div id="vrb-landing-wrapper">
  <div id="ccs-embed"></div>
</div>

<script>
  window.VRB_LANDING_READY = false;

  function vrbShowOriginalSite() {
    document.getElementById('vrb-landing-wrapper').style.display = 'none';
    document.getElementById('vrb-landing-loader').style.display = 'none';
    document.documentElement.style.overflow = 'auto';
    document.body.style.overflow = 'auto';
  }

  window.vrbLandingLoaded = function () {
    if (window.VRB_LANDING_READY) return;
    window.VRB_LANDING_READY = true;
    document.getElementById('vrb-landing-loader').style.display = 'none';
    document.documentElement.style.overflow = 'hidden';
    document.body.style.overflow = 'hidden';
  };

  setTimeout(function () {
    if (!window.VRB_LANDING_READY) vrbShowOriginalSite();
  }, 8000);
</script>

<script
  src="https://landing.vrbmarketing.com/embed.js"
  data-landing="2"
  data-site="YOUR-SITE-DOMAIN-HERE"
  data-height="100vh"
  async
  onerror="vrbShowOriginalSite();">
</script>
<!-- VRB LANDING EMBED END -->