/* TheMeetyTalk — Katıl popup */
.join-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.join-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.join-modal {
  position: relative;
  width: min(100%, 480px);
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px 32px;
  box-shadow: 0 24px 80px rgba(37, 99, 235, 0.22);
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
  overflow: hidden;
}

.join-modal--in {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.join-modal__glow {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 70%);
  pointer-events: none;
}

.join-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f3f4f6;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
  transition: background 0.2s ease, color 0.2s ease;
}

.join-modal__close:hover {
  background: #e5e7eb;
  color: #111827;
}

.join-modal__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border-radius: 16px;
  margin-bottom: 16px;
  animation: joinIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

@keyframes joinIconPop {
  from { transform: scale(0.5) rotate(-8deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}

.join-modal__eyebrow {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}

.join-modal__title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 4vw, 1.65rem);
  line-height: 1.25;
  color: #111827;
}

.join-modal__event {
  margin: 0 0 16px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #4b5563;
}

.join-modal__desc {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #6b7280;
}

.join-modal__steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.join-modal__steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: #374151;
}

.join-modal__steps li span {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.join-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.join-modal__actions .btn {
  width: 100%;
  justify-content: center;
}

.join-modal__status {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
}

.join-modal__status--pending {
  background: #fef3c7;
  color: #92400e;
}

.join-modal__status--approved {
  background: #d1fae5;
  color: #065f46;
}

.reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.reg-badge--pending {
  background: #fef3c7;
  color: #92400e;
}

.reg-badge--approved {
  background: #d1fae5;
  color: #065f46;
}

.reg-badge--rejected {
  background: #fee2e2;
  color: #991b1b;
}

@media (max-width: 480px) {
  .join-modal {
    padding: 28px 20px 24px;
    border-radius: 20px;
  }
}
