.vw-session-panel {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 12px;
  background: rgba(79,140,255,.16);
  color: #dbeafe;
  font-weight: 800;
  text-decoration: none;
}

.vw-real-poster-host {
  position: relative;
  overflow: hidden;
}

.vw-real-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vw-timeline-open {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 90;
  display: none;
  min-height: 48px;
  padding: 11px 16px;
  border: 0;
  border-radius: 999px;
  background: #4f8cff;
  color: white;
  box-shadow: 0 18px 42px rgba(0,0,0,.38);
  cursor: pointer;
  font-weight: 850;
}

.vw-timeline-open.visible {
  display: block;
}

.vw-timeline {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(430px,100vw);
  height: 100vh;
  transform: translateX(105%);
  border-left: 1px solid rgba(148,163,184,.18);
  background: #08111f;
  color: #f8fafc;
  box-shadow: -20px 0 55px rgba(0,0,0,.45);
  transition: transform .22s ease;
}

.vw-timeline.open {
  transform: translateX(0);
}

.vw-timeline-header,
.vw-timeline-compose {
  padding: 16px;
  border-bottom: 1px solid rgba(148,163,184,.16);
}

.vw-timeline-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vw-timeline-header strong {
  flex: 1;
}

.vw-timeline-close {
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 1.3rem;
}

.vw-timeline-list {
  overflow: auto;
  padding: 14px;
}

.vw-timeline-item {
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid rgba(148,163,184,.15);
  border-radius: 13px;
  background: #111b2e;
}

.vw-timeline-item time {
  display: inline-flex;
  margin-bottom: 7px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(79,140,255,.16);
  color: #bfdbfe;
  font-size: .72rem;
  font-weight: 850;
}

.vw-timeline-item p {
  margin: 0;
}

.vw-timeline-item small {
  display: block;
  margin-top: 7px;
  color: #94a3b8;
}

.vw-timeline-form {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 8px;
}

.vw-timeline-form input,
.vw-timeline-form button {
  min-height: 42px;
  border-radius: 11px;
}

.vw-timeline-form input {
  min-width: 0;
  padding: 9px 11px;
  border: 1px solid rgba(148,163,184,.22);
  background: #0b1424;
  color: white;
}

.vw-timeline-form button {
  border: 0;
  padding: 9px 13px;
  background: #4f8cff;
  color: white;
  cursor: pointer;
  font-weight: 800;
}

@media (max-width:720px) {
  .vw-timeline-open {
    right: 14px;
    bottom: 82px;
  }

  .vw-timeline-form {
    grid-template-columns: 82px 1fr;
  }

  .vw-timeline-form button {
    grid-column: 1 / -1;
  }
}
