/* Reset / base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: color(display-p3 0.1609 0.0666 0.1555);
  color: color(display-p3 0.9311 0.4964 0.7487);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Layout */
.container {
  width: 100%;
  max-width: 420px;
  padding: 2rem 1.5rem;
  text-align: center;
}

/* Profile */
.profile-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

h1 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.5rem;
}

.bio {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: color(display-p3 0.6942 0.5315 0.5889);
}

/* Links */
.links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.links a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  background: color(display-p3 0.9474 0.8488 0.9053);
  color: color(display-p3 0.1421 0.0113 0.0986);
  border: 2px solid color(display-p3 0.5995 0.1673 0.4599);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.phone {
  color: color(display-p3 0.9119 0.6184 0.7926);
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #888;
}

/* Age gate overlay */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-gate.hidden {
  display: none;
}

.age-gate-content {
  background: #ffffff;
  color: #1a1a1a;
  max-width: 420px;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.age-gate-content h2 {
  margin-top: 0;
}

.age-gate-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.age-gate-buttons button {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: #1a1a1a;
  color: white;
}

.age-gate-buttons button:hover {
  opacity: 0.9;
}

.leave-site {
  font-size: 0.9rem;
  color: #666;
  text-decoration: underline;
}
