/*
<!-- ===============================
     UNDER CONSTRUCTION OVERLAY CSS
     👉 REMOVE THIS BLOCK TO DISABLE
================================ --> 
*/
  .under-construction-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.237);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    user-select: none;
  }

  .under-construction-text {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    transform: rotate(-25deg);
    text-align: center;
    line-height: 1.4;
  }

  @media (max-width: 768px) {
    .under-construction-text {
      font-size: 2rem;
    }
  }

/*  <!-- =============================== -->
*/