/* =============================================
   PULSEROOM — COMPONENT STYLES
   ============================================= */

/* Header for inner screens */
.inner-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 70px 20px 0;
  margin-bottom: 24px;
}

.back-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  flex-shrink: 0;
}

.inner-title {
  font-size: 26px;
  font-weight: 800;
  color: white;
  flex: 1;
}

.inner-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* Horizontal scroll wrapper */
.h-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 4px 0 8px;
}

.h-scroll::-webkit-scrollbar { display: none; }

/* Join badge */
.join-badge {
  height: 32px;
  padding: 0 14px;
  border-radius: 50px;
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

/* Pulse action animation */
.pulse-action {
  animation: bounceScale 0.4s ease both;
}

/* Success overlay */
.success-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease both;
  backdrop-filter: blur(10px);
}

.success-card {
  background: rgba(15,17,25,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  animation: fadeInUp 0.4s ease both;
}

.success-emoji {
  font-size: 48px;
  margin-bottom: 12px;
}

.success-title {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.success-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* Sparkle */
.sparkle {
  position: absolute;
  pointer-events: none;
  animation: sparkle 0.6s ease both;
}
