
.reply-host {
  position: relative;
  flex: 1;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.phone-scene {
  flex: 1;
  min-height: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  width: 100%;
  max-width: 280px;
}

.phone {
  position: relative;
  width: min(240px, 100%);
  height: 100%;
  max-height: min(480px, calc(100vh - var(--header-h) - 120px));
  min-height: 320px;
}

.phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #2a2a32 0%, #141418 40%, #0a0a0e 100%);
  border-radius: 36px;
  border: 3px solid #3a3a44;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 10px 8px 12px;
}

.phone-speaker {
  flex-shrink: 0;
  width: 28%;
  height: 5px;
  background: #0a0a0e;
  border-radius: 4px;
  margin: 4px auto 8px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8);
}

.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #111118;
  border-radius: 22px;
  overflow: hidden;
  min-height: 0;
  border: 1px solid #1e1e28;
}

.phone-home-bar {
  flex-shrink: 0;
  width: 32%;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  margin: 8px auto 2px;
}

.phone-btn {
  position: absolute;
  background: #2a2a32;
  border-radius: 2px;
}

.phone-btn--vol {
  left: -4px;
  top: 22%;
  width: 3px;
  height: 28px;
  box-shadow: 0 34px 0 #2a2a32;
}

.phone-btn--power {
  right: -4px;
  top: 28%;
  width: 3px;
  height: 40px;
}

.phone-header {
  flex-shrink: 0;
  padding: 10px 12px;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #1e1e28;
}

.phone-feed {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: none;
}

.phone-feed::-webkit-scrollbar { display: none; }

.comment {
  font-family: Inter, sans-serif;
  font-size: 11px;
  line-height: 1.4;
  animation: commentIn 0.35s ease;
}

.comment-row {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.comment-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.comment-main {
  flex: 1;
  min-width: 0;
}

@keyframes commentIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.comment-user {
  font-weight: 700;
  color: #1b8cff;
  margin-bottom: 2px;
}

.comment-text {
  color: #ccc;
}

.comment-reply {
  margin-top: 5px;
  padding: 5px 8px;
  background: rgba(91, 184, 255, 0.12);
  border-left: 2px solid #5bb8ff;
  border-radius: 0 6px 6px 0;
  color: #a8d4ff;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.comment-reply-avatar,
.comment-reply-avatar img,
.comment-reply-avatar.no-typer-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.comment-reply.typing {
  color: #666;
  font-style: italic;
  border-left-color: #444;
  background: rgba(255, 255, 255, 0.04);
}

.phone-status {
  flex-shrink: 0;
  padding: 8px 12px;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #5bb8ff;
  border-top: 1px solid #1e1e28;
  text-transform: none;
}

.reply-host .auto-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.06);
  color: #333;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  pointer-events: none;
  text-transform: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.reply-host .auto-badge span {
  color: #10b981;
}
