@keyframes wemix-feed-card_borderPulse__1OhWv {
  0% {
    border-color: #ff5501;
  }
  50% {
    border-color: #ff7a3d;
  }
  100% {
    border-color: #ff5501;
  }
}

.wemix-feed-card_playingBorder__98X7j {
  animation: wemix-feed-card_borderPulse__1OhWv 1.5s ease-in-out infinite;
}

@keyframes wemix-feed-card_fadeInUp__qfw6i {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.wemix-feed-card_fadeInUp__qfw6i {
  animation: wemix-feed-card_fadeInUp__qfw6i 0.2s ease-out;
}

.session_videoBackground__ld3LJ {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.session_video__tZhfu {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.session_overlay__J56mx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px); /* Heavier blur for dreamier vibe */
}

/* Grain texture overlay */
.session_grainOverlay__RArGV {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Glassmorphic bubble style */
.session_glassBubble__kTq2m {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px; /* Rounder, bubble-like */
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy transition */
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.1);
}

.session_glassBubble__kTq2m:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.1);
}

/* Typography */
.session_serifTitle__UGJLV {
  font-family: var(--font-cormorant), Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.session_sansText__bQw3Y {
  font-family: var(--font-poppins), sans-serif;
  letter-spacing: -0.01em;
}

/* Face Pile */
.session_facePileContainer__wb_8K {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  position: relative;
  margin-bottom: 0.5rem;
}

.session_facePileItem___gy2N {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-left: -16px; /* Tighter overlap */
  position: relative;
}

.session_facePileItem___gy2N:first-child {
  margin-left: 0;
  z-index: 5;
}

.session_facePileItem___gy2N:hover {
  transform: translateY(-8px) scale(1.2) rotate(-5deg); /* Playful hover */
  z-index: 20;
  border-color: rgba(255, 255, 255, 0.9);
}

/* Timeline Thread Line */
.session_timelineContainer__z5mHT {
  position: relative;
  /* padding-left: 1rem; Remove padding, center aligned */
}

.session_timelineThread__nfyz_ {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 2rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.3) 10%,
    rgba(255, 255, 255, 0.3) 90%,
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-50%);
  z-index: 0;
}

/* Aura Glows */
.session_auraGlow__aswa4 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.3) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: -1;
  animation: session_float__k85J9 10s infinite ease-in-out;
}

@keyframes session_float__k85J9 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

/* Flash highlight for scroll-to attribution */
@keyframes session_flashHighlight__T8atm {
  0% {
    background-color: rgba(255, 255, 255, 0.5);
  }
  100% {
    background-color: transparent;
  }
}

.session_flashHighlight__T8atm {
  animation: session_flashHighlight__T8atm 500ms ease-out;
  border-radius: 16px;
}

/* Animation styles for new comments - slides from left */
@keyframes session_slideInPop__z1III {
  0% {
    opacity: 0;
    transform: translateX(-20px) scale(0.95);
  }
  50% {
    transform: translateX(5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.session_slideInPop__z1III {
  animation: session_slideInPop__z1III 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Animation for own messages - slides from right */
@keyframes session_slideInPopRight__2mU_0 {
  0% {
    opacity: 0;
    transform: translateX(20px) scale(0.95);
  }
  50% {
    transform: translateX(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.session_slideInPopRight__2mU_0 {
  animation: session_slideInPopRight__2mU_0 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Hide scrollbar utility */
.session_hideScrollbar__5CE05::-webkit-scrollbar {
  display: none;
}

.session_hideScrollbar__5CE05 {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Shimmer animation for loading */
@keyframes session_shimmer__xtvSU {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.session_shimmer__xtvSU {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  background-size: 200% 100%;
  animation: session_shimmer__xtvSU 1.5s ease-in-out infinite;
}

/* Animated waveform bars for now playing indicator */
@keyframes session_waveBar___S5ZG {
  0%, 100% {
    transform: scaleY(0.4);
  }
  50% {
    transform: scaleY(1);
  }
}


/*# sourceMappingURL=e0e8233d0227cff0.css.map*/