/* 观看历史：1440px Figma 桌面画板，沿用个人中心公共页头与页签。 */
.history-page [hidden] { display: none !important; }

.history-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: min(calc(100% - 48px), var(--page-width));
  margin-inline: auto;
  padding: 24px 0 40px;
}

.history-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
}

.history-filters {
  display: flex;
  align-items: center;
  gap: 10px;
}

.history-filter,
.history-clear,
.history-item__resume {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
}

.history-filter {
  padding-inline: 16px;
}

.history-filter.is-active {
  border-color: rgba(236, 35, 127, .3);
  background: rgba(236, 35, 127, .1);
  color: var(--accent-hot);
}

.history-clear {
  gap: 6px;
  padding-inline: 12px;
  border-color: rgba(255, 255, 255, .24);
  color: var(--text);
}

.history-clear__mobile { display: none; }

.history-clear svg,
.history-clear img,
.history-item__resume svg,
.history-item__resume img,
.history-item__remove svg,
.history-item__remove img {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.history-filter:hover,
.history-clear:hover,
.history-item__resume:hover,
.history-item__remove:hover {
  border-color: rgba(255, 255, 255, .36);
  color: var(--text);
}

.history-filter:focus-visible,
.history-clear:focus-visible,
.history-item__resume:focus-visible,
.history-item__remove:focus-visible {
  outline: 2px solid var(--accent-hot);
  outline-offset: 3px;
}

.history-group {
  min-width: 0;
}

.history-group__title {
  margin: 0;
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}

.history-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 120px 106px 16px;
  align-items: center;
  gap: 16px;
  min-width: 0;
  min-height: 104px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line-soft);
}

.history-item__cover {
  display: block;
  width: 56px;
  height: 75px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-panel);
}

.history-item__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-item__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}

.history-item__title {
  display: block;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-item__title a {
  color: inherit;
  text-decoration: none;
}

.history-item__title a:hover {
  color: var(--accent-hot);
}

.history-item__details {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  overflow: hidden;
  color: #a1a1aa;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  white-space: nowrap;
}

.history-item__episodes,
.history-item__genre {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.history-item__episodes {
  flex: 0 0 auto;
}

.history-item__progress {
  display: block;
  width: 240px;
  max-width: 100%;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.history-item__progress-fill {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff4a7b 0%, #ec237f 52%, #93226f 100%);
}

.history-item__time {
  color: var(--text-dim);
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.history-item__mobile-time,
.history-item__resume-mobile {
  display: none;
}

.history-item__resume {
  gap: 8px;
  width: 106px;
  padding-inline: 12px;
  border-color: rgba(255, 255, 255, .24);
  color: var(--text);
  text-decoration: none;
}

.history-item__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
}

.history-group + .history-group {
  margin-top: 0;
}

.history-main.is-empty {
  gap: 24px;
  padding: 24px 0 40px;
}

.history-main.is-empty .account-empty {
  padding-block: 72px;
}
