/* ==========================================================
   Phone Call — 详情展开样式（模块 4~7 合并版）
   ========================================================== */

/* 外层容器 */
.pcall-detail {
  background: #0a0a0c;
  border-bottom: 1px solid rgba(255,255,255,.06);
  animation: pcallDetailFadeIn .18s ease-out;
}
.pcall-detail-scroll {
  max-height: 200px;
  overflow-y: auto;
  padding: 12px 16px;
  scrollbar-width: thin;
}

/* 对白行 */
.pcall-line {
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 14px;
}
.pcall-line:last-child { margin-bottom: 0; }
.pcall-speaker {
  color: rgba(255,255,255,.5);
  font-weight: 600;
  margin-right: 6px;
}
.pcall-speaker-owner {
  color: rgba(10,132,255,.7);
}
.pcall-text {
  color: rgba(255,255,255,.85);
}

/* Loading */
.pcall-detail-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 0;
}
.pcall-detail-loading > span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  animation: pcallBlink 1.4s infinite both;
}
.pcall-detail-loading > span:nth-child(2) { animation-delay: .2s; }
.pcall-detail-loading > span:nth-child(3) { animation-delay: .4s; }
.pcall-detail-loading-text {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  margin-top: 6px;
}

/* 留言（未接听）*/
.pcall-voicemail { padding: 4px 0; }
.pcall-voicemail-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}
.pcall-voicemail-text {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
}
.pcall-voicemail-empty {
  color: rgba(255,255,255,.25);
  font-size: 13px;
  font-style: italic;
  text-align: center;
  padding: 8px 0;
}

/* 想法（不同字体）*/
.pcall-thoughts {
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(175,130,255,.04);
  font-family: Georgia, 'Times New Roman', 'Songti SC', 'STSong', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.65);
}

/* 补生成按钮 */
.pcall-detail-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}
.pcall-detail-error-text {
  color: rgba(255,255,255,.4);
  font-size: 13px;
  font-style: italic;
}
.pcall-detail-retry-btn {
  padding: 8px 20px;
  background: rgba(10,132,255,.2);
  color: rgba(10,132,255,.9);
  border: 1px solid rgba(10,132,255,.3);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .15s;
}
.pcall-detail-retry-btn:active {
  background: rgba(10,132,255,.3);
}

/* 动画 */
@keyframes pcallDetailFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pcallBlink {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}