

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  }

  body {
    height: 100vh;
    width: 100%;
  }

  /* BACKGROUND */
  .age-gate-page {
    height: 100vh;
    width: 100%;
    background: url('../images/bad_desk.png') no-repeat center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  
    .age-gate-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* adjust opacity here */
    z-index: 1;
  }

  /* MOBILE BACKGROUND */
  @media (max-width: 768px) {
    .age-gate-page {
      background: url('../images/bed_mob.jpg') no-repeat center/cover;
    }
  }

  /* OVERLAY BOX */
  .age-box {
width: 30vw;
    max-width: 400px;
    min-width: 280px;
        height: 40vh;
    padding: 2.5rem 2rem;
    background: #0000006e;
    border-radius: 1.5rem;
    text-align: center;
    color: #fff;
    z-index: 100;
       display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    
  }

  /* HEADING */
  .age-box h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .age-box p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
  }

  /* BUTTON WRAPPER */
  .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }

  /* BUTTONS */
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.3rem;
    border: none;
    border-radius: 2rem;
    cursor: pointer;
    width: 40%;
    transition: 0.3s;
  }

  .yes {
    background: #000;
    color: #fff;
    width: 10vw;
  }

  .no {
     background: #000;
    color: #fff;
    width: 10vw;
  }

  .btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }
  
  footer{
width:100%;
text-align:center;
padding:2vh 0;
font-size:0.9rem;
background: #000

}

footer a{
text-decoration:none;
color: #fff;
font-weight:500;
}

  /* MOBILE STYLING */
  @media (max-width: 768px) {
    .age-box {
              width: 95%;
        padding: 1rem;
        justify-content: center;
        align-items: center;
    }

    .age-box h1 {
      font-size: 1.7rem;
    }

    .btn {
              width: 25vw;
        font-size: 1.2rem;
        padding: .7rem .2rem;
    }
    }
  }