/* Guest “Coming Soon” modal — parity with Flutter guest profile overlay */

.profile-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}

.profile-overlay.is-open {
  display: flex;
}

.profile-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.profile-overlay__card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  padding: 28px 32px;
  background: #151515;
  border-radius: 20px;
  border: 1.5px solid rgba(197, 165, 114, 0.45);
  box-shadow: 0 0 32px 4px rgba(197, 165, 114, 0.15);
  text-align: center;
}

.profile-overlay__icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(197, 165, 114, 0.12);
  border: 1px solid rgba(197, 165, 114, 0.35);
  color: #C5A572;
}

.profile-overlay__title {
  margin: 0 0 12px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #C5A572;
}

.profile-overlay__body {
  margin: 0 0 24px;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #B0B0B0;
}

.profile-overlay__button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(197, 165, 114, 0.5);
  background: transparent;
  color: #FFFFFF;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.profile-overlay__button:hover {
  background: rgba(197, 165, 114, 0.08);
}

.profile-overlay__button:focus-visible {
  outline: 2px solid rgba(197, 165, 114, 0.55);
  outline-offset: 2px;
}

button.btn-auth {
  cursor: pointer;
}
