.age-verification {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-verification.is-hidden {
  display: none;
}

.age-verification-card {
  background: #111;
  border: 1px solid #f9671a;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  box-shadow: 0 8px 64px rgba(0, 0, 0, 0.7);
}

.age-verify-logo {
  height: 64px;
  width: auto;
  margin: 0 auto;
}

.age-verify-title {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.age-verify-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.age-verify-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  width: 100%;
  justify-content: center;
}

.age-verify-cb {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #f9671a;
  cursor: pointer;
}

.age-verify-checkbox-row label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  cursor: pointer;
}

.age-verify-error {
  display: none;
  color: #ed1c24;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  margin-top: -8px;
}

.age-verify-note {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.age-verify-btn {
  background: linear-gradient(29.81deg, #ed1c24 1.816%, #fcec21 106.59%);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 1000px;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
}

.age-verify-btn:hover {
  opacity: 0.9;
}

@media (max-width: 480px) {
  .age-verification-card {
    padding: 32px 24px;
    gap: 16px;
  }

  .age-verify-title {
    font-size: 22px;
  }

  .age-verify-btn {
    font-size: 16px;
    padding: 14px 32px;
  }
}
