  .overlay-page { 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 1000;
    opacity: 100%;
    pointer-events: none;
  }

  .site-content {
    position: relative;
    z-index: 1;
  }

  /* Top Icon Container */
  .top-icon-container {
    position: relative;
    width: calc(100% - 10px);
    aspect-ratio: 16 / 17;
    background-color: #FFFFFF;
    overflow: hidden;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .top-icon-wrapper {
    width: 90%; /* inset space of top icon container */
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
  }
  
  .top-icon {
    width: 170px;
    height: 170px;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/f/fd/Arrows_down_animated.gif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* ---------- AGE CONFIRMATION ---------- */
  .age-container {
    width: 100%;
    max-width: 600px;
    padding: 10px;
    margin: 50px auto;
    text-align: center;
  }

  .age-confirmation {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .age-icon {
    width: 210px;
    height: 130px;
    display: block;
    margin: 0 auto 15px;
    pointer-events: auto;
  }

  .age-confirmation p {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .age-confirmation button {
    position: relative;
    padding: 15px;
    margin: 15px 0;
    font-size: 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    color: white;
    overflow: hidden;
    pointer-events: auto;
  }

  .yes-btn { background-color: #28a745; }
  .no-btn  { background-color: #dc3545; }

  .age-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #007BFF;
    transition: width 2s linear;
    z-index: 0;
  }

  .age-confirmation button span {
    position: relative;
    z-index: 2;
  }

  /* ---------- OPTIONS SECTION ---------- */
  .option-container {
    max-width: 500px;
    margin: 20px auto;
    padding: 10px;
    text-align: center;
    background: #ffffff;
    display: none;
  }

  .option-row {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 35px;
    pointer-events: auto;
  }

  .option-img {
    width: 120px;
    height: 120px;
    border-radius: 5%;
    object-fit: cover;
    border: 2px solid #007bff;
  }

  .option-btn {
    flex: 1;
    height: 120px;
    font-size: 17px;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .option-btn:hover {
    background-color: #0056b3;
  }

  .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #28a745;
    transform: translateX(-100%);
    transition: transform 2.5s linear;
    z-index: 0;
  }

  .option-btn span {
    position: relative;
    z-index: 1;
    font-weight: bold;
  }

  /* ---------- POPUP ---------- */
  #popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
  }

  .popup-container {
    background: white;
    padding: 25px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    pointer-events: auto;
  }

  .popup-container p {
    margin-bottom: 20px;
    font-size: 18px;
  }

  #popup-go-button {
    padding: 10px 20px;
    font-size: 16px;
    background: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }