/**
 * Age Gate Styles — macksc.com
 * Managed by Ansible. Do not edit on server.
 */
#age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate-box {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  padding: 40px;
  border-radius: 12px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.age-gate-box h2 {
  margin: 0 0 16px;
  font-size: 24px;
  color: #c9a96e;
}

.age-gate-box p {
  margin: 0 0 24px;
  font-size: 15px;
  color: #aaa;
  line-height: 1.5;
}

#age-gate-confirm {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: #c9a96e;
  color: #0f0f0f;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin-bottom: 12px;
  transition: background 0.15s ease;
}

#age-gate-confirm:hover {
  background: #dbb978;
}

#age-gate-deny {
  display: block;
  color: #666;
  font-size: 14px;
  text-decoration: none;
}

#age-gate-deny:hover {
  color: #c9a96e;
}
