.yycey-hot-list {
  --yhl-border: #e5e7eb;
  --yhl-bg: #f9fafb;
  --yhl-text: #374151;
  --yhl-accent: #2563eb;
  font-size: 14px;
  line-height: 1.5;
  color: var(--yhl-text);
}

.yycey-hot-list-heading {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.yycey-hot-list-panels {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.yycey-hot-list-panel {
  border: 1px solid var(--yhl-border);
  border-radius: 8px;
  background: var(--yhl-bg);
  overflow: hidden;
}

.yycey-hot-list-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.yycey-hot-list-trigger:hover {
  background: #f3f4f6;
}

.yycey-hot-list-trigger[aria-expanded="true"] .yycey-hot-list-arrow {
  transform: rotate(90deg);
}

.yycey-hot-list-arrow {
  display: inline-block;
  font-weight: 700;
  transition: transform 0.2s ease;
  color: #6b7280;
}

.yycey-hot-list-index {
  font-weight: 600;
  color: #6b7280;
}

.yycey-hot-list-label {
  flex: 1;
  font-weight: 500;
}

.yycey-hot-list-status {
  font-size: 12px;
  color: #9ca3af;
}

.yycey-hot-list-body {
  border-top: 1px solid var(--yhl-border);
  background: #fff;
  padding: 8px 12px 12px;
}

.yycey-hot-list-items {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: yhl-rank;
}

.yycey-hot-list-items li {
  counter-increment: yhl-rank;
  padding: 8px 0;
  border-bottom: 1px dashed #f0f0f0;
}

.yycey-hot-list-items li:last-child {
  border-bottom: 0;
}

.yycey-hot-list-items a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.yycey-hot-list-items a:hover {
  color: var(--yhl-accent);
}

.yycey-hot-list-items a::before {
  content: counter(yhl-rank) ". ";
  color: #9ca3af;
  font-weight: 600;
}

.yycey-hot-list-meta {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #9ca3af;
}

.yycey-hot-list-loading,
.yycey-hot-list-error,
.yycey-hot-list-empty {
  padding: 10px 0;
  color: #6b7280;
  font-size: 13px;
}

.yycey-hot-list-error {
  color: #b91c1c;
}
