/* drama_script.css - 故事剧本工件预览卡片样式（蓝色主题） */

/* ── 详细版本预览卡片 ──────────────────────────────────────────────────────────── */

.drama-script-card {
  background: linear-gradient(135deg, rgba(108, 133, 255, 0.08), rgba(0, 0, 0, 0.4));
  border: 1px solid rgba(108, 133, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  margin: 12px 0;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.drama-script-card:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 133, 255, 0.4);
  box-shadow: 0 8px 24px rgba(108, 133, 255, 0.15);
}

/* 头部区域 */
.drama-script-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.drama-script-header:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.drama-script-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(108, 133, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #6c85ff;
}

.drama-script-title-section {
  flex: 1;
  min-width: 0;
}

.drama-script-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 6px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.drama-script-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.drama-script-episode {
  color: #6c85ff;
}

.drama-script-sep {
  color: #4b5563;
}

.drama-script-duration {
  color: #9ca3af;
}

.drama-script-scene-count {
  color: #9ca3af;
}

.drama-script-badge {
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(108, 133, 255, 0.15);
  color: #6c85ff;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* 场景预览列表 */
.drama-script-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drama-script-scene-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 13px;
}

.drama-script-scene-num {
  color: #6c85ff;
  font-weight: 500;
  flex-shrink: 0;
  font-size: 12px;
}

.drama-script-scene-name {
  color: #d1d5db;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.drama-script-scene-dur {
  color: #6b7280;
  font-size: 12px;
  flex-shrink: 0;
}

.drama-script-more {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  padding: 4px 0;
}

/* ── 详情面板中的场景样式 ──────────────────────────────────────────────── */

/* 段落（△ 前缀） */
.script-paragraph {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.script-paragraph-marker {
  color: #999;
  font-size: 14px;
  line-height: 24px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.script-paragraph-text {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  color: #999;
  line-height: 24px;
}

/* 分割线 */
.script-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  width: 100%;
}

/* 场景图标 */
.script-scene-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(108, 133, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #6c85ff;
}

/* 响应式 */
@media (max-width: 640px) {
  .drama-script-card {
    padding: 16px;
  }

  .drama-script-header {
    gap: 12px;
  }

  .drama-script-icon {
    width: 40px;
    height: 40px;
  }

  .drama-script-title {
    font-size: 15px;
  }
}
