.age-modal {
  position: fixed;
  z-index: 9000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

.age-modal-content {
  background: #fff;
  padding: 30px;
  max-width: 500px;
  width: 90%;
  border-radius: 10px;
  text-align: center;
  font-family: sans-serif;
}

.age-icon {
  background: #e60023;
  color: #fff;
  font-size: 24px;
  padding: 8px 16px;
  display: inline-block;
  border-radius: 6px;
  margin-bottom: 20px;
  font-weight: bold;
}

.age-modal-content h2 {
  margin-bottom: 10px;
}

.age-modal-content ul {
  text-align: left;
  margin: 10px auto;
  padding-left: 20px;
}

.age-modal-content ul li {
  margin-bottom: 8px;
}

.age-buttons button {
  margin: 15px 10px 10px 10px;
  padding: 10px 25px;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.age-buttons button:first-child {
  background-color: #28a745;
  color: white;
}

.age-buttons button:last-child {
  background-color: #dc3545;
  color: white;
}

.age-warning {
  background-color: #f8d7da;
  color: #721c24;
  padding: 12px;
  margin-top: 20px;
  border-radius: 5px;
  font-size: 14px;
}
/**/
.popup-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.popup-modal .modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  margin: auto;
  color: #000;
  position: relative;
}

.popup-modal .close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.link-button {
  background: none;
  border: none;
  color: #0066cc;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}