/* 二创页面容器 */
.fanart-wrap {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  position: relative;
}

/* 左侧导航栏 */
.fanart-left-nav {
  min-width: 180px;
  position: sticky;
  top: 92px;
  align-self: flex-start;
}

.fanart-left-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fanart-nav-item {
  padding: 12px 16px;
  border-radius: 6px;
  cursor: pointer;
  color: #b8b8d0;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.fanart-nav-item:hover {
  background-color: rgba(124, 110, 222, 0.15);
  color: #d8d8f0;
  border-color: rgba(124, 110, 222, 0.3);
}

.fanart-nav-item.active {
  background-color: rgba(124, 110, 222, 0.22);
  color: #c8bfff;
  border-color: rgba(145, 130, 240, 0.5);
}

/* 右侧内容区域 */
.fanart-content {
  flex: 1;
  color: #e2e2f0;
  min-height: 500px;
}

.fanart-panel {
  width: 100%;
  text-align: center;
}

/* ========== 二创单品 顶部二级导航 ========== */
.single-top-nav {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(130, 115, 230, 0.2);
  justify-content: center;
  /* 新增：水平居中 */
}

.single-nav-btn {
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  color: #b8b8d0;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.single-nav-btn:hover {
  background-color: rgba(124, 110, 222, 0.15);
  color: #d8d8f0;
  border-color: rgba(124, 110, 222, 0.3);
}

.single-nav-btn.active {
  background-color: rgba(124, 110, 222, 0.22);
  color: #c8bfff;
  border-color: rgba(145, 130, 240, 0.5);
}

.single-sub-panel {
  width: 100%;
}