:root {
  --flamingo-primary: #bb1e46;
  --flamingo-primary-dark: #8e1636;
  --flamingo-secondary: #f5a8c1;
  --flamingo-ink: #12060b;
  --flamingo-panel: rgba(255, 255, 255, 0.16);
  --flamingo-panel-strong: rgba(255, 255, 255, 0.24);
  --flamingo-border: rgba(255, 255, 255, 0.18);
  --flamingo-shadow: 0 24px 60px rgba(72, 6, 25, 0.22);
  --flamingo-bg: radial-gradient(circle at top left, rgba(245, 168, 193, 0.42), transparent 34%),
    radial-gradient(circle at top right, rgba(187, 30, 70, 0.35), transparent 30%),
    linear-gradient(180deg, #2a0914 0%, #14050b 45%, #090205 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: #fff5f8;
  background: var(--flamingo-bg);
}

a {
  color: inherit;
}

.app-navbar {
  background: rgba(12, 3, 7, 0.62);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.navbar-brand span {
  font-size: 1rem;
  background: linear-gradient(135deg, var(--flamingo-primary), var(--flamingo-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.navbar-toggler {
  border-color: rgba(245, 168, 193, 0.38);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 168, 193, 0.2);
}

.navbar-toggler-icon {
  background-image:
    linear-gradient(90deg, var(--flamingo-primary), var(--flamingo-secondary)),
    linear-gradient(90deg, var(--flamingo-primary), var(--flamingo-secondary)),
    linear-gradient(90deg, var(--flamingo-primary), var(--flamingo-secondary));
  background-position: center 8px, center center, center 22px;
  background-repeat: no-repeat;
  background-size: 28px 2px;
}

.app-shell {
  padding: 3rem 0;
}

.glass-card {
  background: var(--flamingo-panel);
  border: 1px solid var(--flamingo-border);
  border-radius: 24px;
  box-shadow: var(--flamingo-shadow);
  backdrop-filter: blur(18px);
}

.auth-card {
  max-width: 520px;
  margin: 3rem auto;
  padding: 2rem;
}

.hero-panel {
  padding: 5rem 0 2rem;
}

.hero-copy h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  line-height: 0.95;
}

.hero-copy p {
  max-width: 38rem;
  color: rgba(255, 245, 248, 0.78);
  font-size: 1.05rem;
}

.app-btn {
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--flamingo-primary), var(--flamingo-secondary));
  box-shadow: 0 14px 24px rgba(187, 30, 70, 0.28);
}

.app-btn:hover,
.app-btn:focus {
  background: linear-gradient(135deg, var(--flamingo-primary-dark), var(--flamingo-secondary));
}

.btn-outline-light {
  border-radius: 999px;
}

.form-control,
.form-select,
.form-control:focus,
.form-select:focus {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form-label,
.form-text,
.nav-link,
.text-muted {
  color: rgba(255, 245, 248, 0.78) !important;
}

.swipe-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 28px;
}

.swipe-profile-link,
.swipe-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.swipe-profile-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.swipe-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.stat-chip,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.match-list,
.chat-thread,
.admin-table {
  padding: 1.5rem;
}

.message-bubble {
  max-width: 78%;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  margin-bottom: 0.75rem;
}

.message-own {
  background: linear-gradient(135deg, var(--flamingo-primary), #db5c82);
  margin-left: auto;
}

.message-other {
  background: rgba(255, 255, 255, 0.13);
}

.page-section {
  padding: 2rem 0;
}

.table {
  --bs-table-bg: transparent;
  --bs-table-color: #fff5f8;
  --bs-table-border-color: rgba(255, 255, 255, 0.08);
}

.toast-container {
  z-index: 1056;
}

@media (max-width: 767.98px) {
  .auth-card {
    margin: 1rem auto;
    padding: 1.4rem;
  }

  .swipe-card,
  .swipe-profile-link,
.swipe-card img {
    min-height: 510px;
    height: 510px;
  }
}

.profile-inline-link {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.profile-inline-link:hover,
.profile-inline-link:focus {
  color: var(--flamingo-secondary);
  text-decoration: underline;
}

.swipe-overlay {
  cursor: pointer;
}

.profile-photo-card {
  overflow: hidden;
}

.profile-hero-photo {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.profile-title {
  color: var(--flamingo-secondary);
  font-weight: 700;
}

.profile-bio {
  color: rgba(255, 245, 248, 0.84);
  font-size: 1.05rem;
  line-height: 1.7;
}
.waitlist-page .auth-card {
  margin: 0 auto;
}
.waitlist-meter {
  padding: 1.15rem;
  margin-bottom: 1.5rem;
}

.waitlist-meter strong {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.waitlist-progress {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.waitlist-progress span {
  display: block;
  height: 100%;
  min-width: 6px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--flamingo-primary), var(--flamingo-secondary));
}
.waitlist-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.waitlist-hero-row {
  min-height: calc(100vh - 6rem);
}

.waitlist-visual-column {
  max-width: 520px;
}

.waitlist-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 430px);
  aspect-ratio: 1;
  margin-inline: auto;
  padding: clamp(1.2rem, 3vw, 2rem);
  overflow: hidden;
}

.waitlist-logo-mark {
  display: block;
  width: min(70%, 300px);
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(187, 30, 70, 0.24));
  animation: flamingo-float 5.5s ease-in-out infinite, flamingo-pulse 3.8s ease-in-out infinite;
  transform-origin: 50% 65%;
}

@keyframes flamingo-float {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@keyframes flamingo-pulse {
  0%, 100% {
    filter: drop-shadow(0 18px 26px rgba(187, 30, 70, 0.2));
  }

  50% {
    filter: drop-shadow(0 24px 34px rgba(245, 168, 193, 0.34));
  }
}

@media (prefers-reduced-motion: reduce) {
  .waitlist-logo-mark {
    animation: none;
  }
}

@media (max-width: 991.98px) {
  .waitlist-hero {
    min-height: auto;
    padding: 2rem 0 1.4rem;
  }

  .waitlist-hero-row {
    min-height: auto;
  }

  .waitlist-page .hero-copy {
    text-align: center;
  }

  .waitlist-page .hero-copy p {
    margin-inline: auto;
  }

  .waitlist-actions {
    justify-content: center;
  }

  .waitlist-visual-column {
    max-width: 100%;
  }

  .waitlist-meter {
    max-width: 480px;
    margin-inline: auto;
  }

  .waitlist-logo-card {
    width: min(76vw, 260px);
    margin-top: 1rem !important;
    padding: 1.15rem;
    border-radius: 20px;
  }

  .waitlist-logo-mark {
    width: 74%;
    max-height: 180px;
  }
}

@media (max-width: 575.98px) {
  body.waitlist-page {
    background: radial-gradient(circle at top, rgba(245, 168, 193, 0.32), transparent 30%),
      linear-gradient(180deg, #2a0914 0%, #14050b 48%, #090205 100%);
  }

  .waitlist-hero {
    padding: 1.25rem 0 1rem;
  }

  .waitlist-page .hero-copy h1 {
    font-size: clamp(2.25rem, 13vw, 3.3rem);
    line-height: 1;
  }

  .waitlist-page .hero-copy p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .waitlist-page .pill {
    font-size: 0.92rem;
  }

  .waitlist-actions {
    align-items: stretch !important;
  }

  .waitlist-actions .app-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .waitlist-actions .text-muted {
    width: 100%;
    text-align: center;
  }

  .waitlist-meter {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 18px;
  }

  .waitlist-meter strong {
    font-size: 1.65rem;
  }

  .waitlist-logo-card {
    width: min(64vw, 210px);
    padding: 0.95rem;
  }

  .waitlist-logo-mark {
    max-height: 145px;
  }
}
.site-footer {
  padding: 2rem 0 2.5rem;
  color: rgba(255, 245, 248, 0.78);
  text-align: center;
}

.site-footer .container {
  max-width: 720px;
}

.site-footer-quote {
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0;
  color: #fff5f8;
}

.site-footer-brand {
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--flamingo-primary), var(--flamingo-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 575.98px) {
  .site-footer {
    padding: 1.25rem 1rem 1.75rem;
  }
}

.waitlist-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

