/* .winevn-agegate-hidden {
  display: none !important;
}

.wrapper_body {
  position: fixed;
  inset: 0;
  background: #0008;
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.age-modal {
  display: flex;
  background: #fff;
  width: 60%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.age-left {
  width: 45%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.age-left .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-left .logo img {
  max-width: 148px;
  height: auto;
}

.age-left .text-ask-age {
  margin: 0;
  font-size: 32px;
  font-family: "Merriweather", Times New Roman, serif;
  font-weight: 700;
  line-height: 48px;
  color: #111;
  text-align: center;
  margin-top: -15px;
}

.age-left p {
  margin: 0;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
  color: black;
}

.age-left ul {
  margin: 15px 0 0 30px;
  padding: 0;
}

.age-left ul li {
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}

.age-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.age-actions .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  height: 5px;
  font-size: 15px;
  border: none;
  line-height: 23px;
  width: 100%;
}

.age-actions .btn-primary {
  background: #b1131e;
  color: #fff;
  border: 1px solid #b1131e;
}

.age-actions .btn-primary:hover {
  background: #901018;
}

.age-actions .btn-ghost {
  background: #fff;
  color: #b1131e;
  border: 1px solid #b1131e;
}

.age-actions .btn-ghost:hover {
  background: #fafafa;
}

.age-left .copyright {
  font-size: 13px !important;
  font-weight: 500;
  margin-top: 17px;
}

.age-right {
  width: 55%;
  min-height: 100%;
}

.age-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.age-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(3px);
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.age-close:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}

.age-left .alert-ghost {
  display: none;
  font-weight: 600;
}

@media (max-width: 768px) {
  .age-modal {
    flex-direction: column;
    width: 80%;
  }

  .age-left {
    width: 100%;
  }

  .age-right {
    display: none;
  }

  .age-left .btn {
    font-size: 12px;
    padding: 15px 10px;
  }

  .age-left .copyright {
    font-size: 10px !important;
    font-weight: bold;
  }

  .age-close {
    color: black;
    font-size: 28px;
  }

  .age-left h2 {
    font-size: 20px;
    margin-top: -20px;
  }

  .age-left .logo img {
    max-width: 100px;
  }

  .age-left ul {
    margin: 0 0 0 22px;
  }

  .age-left p,
  .age-left ul li {
    font-size: 13px;
  }
} */



/* popup mới */
body.no-scroll {
  overflow: hidden;
}

.age-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

.age-popup-content {
  background: #fdf7ec;
  border-radius: 12px;
  width: 800px;
  padding: 40px 60px;
  position: relative;
  text-align: center;
}

.age-popup .logo img {
  width: 148px;
  height: 43px;
}

.age-popup p {
  font-size: 15px;
  margin: 20px 0;
  color: #000;
  line-height: 1.6;
  font-weight: 400;
}

.age-popup-content h2 {
  font-size: 25px;
  font-weight: bold;
  margin: 20px 0;
}

.age-popup-content form {
  margin-top: 15px;
}

.age-popup-content input[type="text"] {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
  margin-bottom: 10px;
  width: 486px;
}

.age-popup-content .dob {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  width: 60%;
  margin: 8px auto
}

.age-popup-content .dob input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

.age-popup .confirm-btn {
  background: #990D23;
  color: #fff;
  font-weight: bold;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  margin-top: 10px;
  width: 202px;
  height: 39px;
  line-height: 18px;
}

.age-popup .confirm-btn:hover {
  background: #990D23;
}

.age-popup .footer-note {
  margin-top: 15px;
  font-size: 15px;
  color: #000;
}



.age-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.age-actions .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  height: 5px;
  font-size: 15px;
  border: none;
  line-height: 23px;
  width: 180px;
  height: 39px;
}

.age-actions .btn-primary {
  background: #b1131e;
  color: #fff;
  border: 1px solid #b1131e;
}

.age-actions .btn-primary:hover {
  background: #901018;
}

.age-actions .btn-ghost {
  background: #fff;
  color: #b1131e;
  border: 1px solid #b1131e;
}

.age-actions .btn-ghost:hover {
  border: 1px solid #b1131e;
  color: #b1131e;
}

@media (max-width: 768px) {
  .age-popup-content {
    width: 90%;
    padding: 30px;
  }

  .age-popup-content .dob {
    width: 100%;
  }

  .age-popup p,
  .age-popup .footer-note {
    font-size: 13px;
  }

  .age-popup-content h2 {
    font-size: 20px;
  }

  .age-actions .btn {
    font-size: 13px;
    width: 150px;
  }
}