/* ========================================
   PAGE: 探索 - 视频流首页
   ======================================== */
.page-explore .explore-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4);
  padding-top: calc(var(--space-4) + env(safe-area-inset-top, 20px));
}

.page-explore .explore-header h1 {
  font-size: 24px;
  font-weight: 700;
}

.user-bar-inline {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.user-bar-inline .user-name {
  font-size: 13px;
  color: var(--color-text-muted);
}

.user-bar-inline .user-credits {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-fading);
}

.explore-content {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  padding-top: 0;
}

/* 视频卡片 */
.video-card {
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.video-card:active {
  transform: scale(0.98);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--color-surface);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 左下角角色小图 */
.video-character-badge {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.video-character-badge:hover {
  transform: scale(1.1);
  border-color: rgba(255,255,255,0.6);
}

.video-character-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-character-badge .status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
}

/* 右下角接力信息 */
.video-relay-info {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-2);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 12px;
  color: var(--color-text-primary);
}

.relay-count {
  font-weight: 600;
}

.relay-time {
  color: var(--color-text-muted);
}
