        @font-face {
  font-family: 'segoeu';
  src: url('../fonts/segoeuithibd.ttf') format('opentype');
  font-style: normal;
}
 /* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* BACKGROUND SECTION */
.age-bg {
  width: 100%;
  height: 100vh;
  position: relative;

  background: url('../images/image (7).png') no-repeat center/cover;
}

/* MOBILE BACKGROUND */
@media (max-width: 768px) {
  .age-bg {
    background: url('../images/image (6).png') no-repeat center/cover;
  }
}

/* OVERLAY */
.age-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

/* AGE GATE BOX */
.age-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 90%;
  max-width: 32rem;
  padding: 2rem;

    background: rgb(6 6 6 / 48%);


  border-radius: 1rem;
  text-align: center;
  color: #fff;
}

/* HEADING */
.age-box h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* TEXT */
.age-box p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* BUTTON GROUP */
.btn-group {
  display: flex;
  gap: 2%;
  justify-content: center;
}

/* BUTTONS */
.btn {
  flex: 1;
  padding: 1rem;
  font-size: 1.25rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.3s;
}

/* YES BUTTON */
.btn-yes {
  background: #000;
  color: #fff;
}



/* NO BUTTON */
.btn-no {
  background: #000;
  color: #fff;
}

/* MOBILE TWEAK */
@media (max-width: 480px) {
  .age-box h1 {
    font-size: 1.5rem;
  }

  .age-box p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.8rem;
    font-size: 1.1rem;
  }
}