.age-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-sizing: border-box;
  background: linear-gradient(135deg, rgba(7, 154, 116, .65), rgba(254, 165, 22, .65));
  backdrop-filter: blur(6px);
  font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
  z-index: 9999;
  text-align: center;
}

.age-modal {
  background: #ffffff;
  color: #00383b;
  max-width: 500px;
  width: 100%;
  padding: 42px 36px 38px;
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
  animation: fadeInUp .45s ease-out;
}

.age-modal h2 {
  font-size: 30px;
  margin: 0 0 24px;
  color: #fea516;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.info-text,
.confirm-text {
  color: #079a74;
  font-weight: 600;
  margin-bottom: 18px;
}

.confirm-text {
  color: #00383b;
  font-weight: 700;
}

.confirmation-list {
  list-style: none;
  padding: 0 0 0 22px;
  margin: 0 0 30px;
  text-align: left;
  color: #00484d;
}

.confirmation-list li {
  position: relative;
  margin-bottom: 14px;
  font-weight: 600;
}

.confirmation-list li::before {
  content: "✔";
  position: absolute;
  left: -22px;
  top: 0;
  color: #fea516;
  font-size: 18px;
  font-weight: 800;
}

.confirmation-list a {
  color: #079a74;
  text-decoration: underline;
  transition: color .3s;
}

.confirmation-list a:hover {
  color: #fea516;
}

.btn-group {
  display: flex;
  justify-content: center;
}

.age-btn-yes {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  background: linear-gradient(135deg, #079a74 0%, #05b58f 100%);
  color: #fff;
  box-shadow: 0 8px 22px rgba(7, 154, 116, .4);
  transition: background .3s, transform .2s;
}

.age-btn-yes:hover {
  background: linear-gradient(135deg, #05b58f 0%, #079a74 100%);
  transform: translateY(-2px);
}

.responsible-gamble-text {
  font-size: 16px;
  color: #d64f07;
  font-weight: 700;
  margin-top: 30px;
  letter-spacing: .03em;
}

/* animação */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.age-lock {
  overflow: hidden;
}

/* -------------------------------------------------------------------- */