.age-agree {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #000000a2;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
}

.age-agree-open {
  opacity: 1;
  visibility: visible;
}

.age-agree-content {
  max-width: 800px;
  width: 100%;
  height: fit-content;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.age-agree-content p {
  text-align: center;
  font-size: 24px;
  color: #333;
}

.argree-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.argree-btns button {
  padding: 10px 30px;
  border: none;
  background: #333;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}
