﻿/* ===== Slide 1: 公告跑马灯（与 09-首页.html ticker 一致） ===== */
.ceo-s1-ticker {
  --ink:    var(--color-ink);
  --line-2: var(--color-line-2);
  --accent: var(--color-accent);
  --mono:var(--font-mono);

  max-width: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--color-section-bg);
  overflow: hidden;
}

.ceo-s1-ticker .ticker-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  padding: 10px 0;
  white-space: nowrap;
  overflow: hidden;
  margin-left: 190px;
}

.ceo-s1-ticker .ticker-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  margin-left: 0;
  border: 1px solid var(--ink);
  background: linear-gradient(0deg, rgba(var(--color-accent-rgb), 0.22), rgba(var(--color-accent-rgb), 0.06));
  /*font-family: var(--mono);*/
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.ceo-s1-ticker .ticker-track-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.ceo-s1-ticker .ticker-badge .dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--ink);
  background: var(--accent);
  box-shadow: 5px 0 0 var(--ink);
}

.ceo-s1-ticker .ticker-track {
  display: inline-flex;
  gap: 28px;
  /*font-family: var(--mono);*/
  letter-spacing: 0.08em;
  /*text-transform: uppercase;*/
  font-size: 12px;
  color: rgba(0, 0, 0, 0.78);
  animation: ceo-s1-marquee 18s linear infinite;
  padding-right: 28px;
}

.ceo-s1-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ceo-s1-ticker .ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ceo-s1-ticker .ticker-track span::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--line-2);
  background: var(--panel);
  display: inline-block;
}

@keyframes ceo-s1-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


@media (prefers-reduced-motion: reduce) {
  .ceo-s1-announce-track {
    animation: none;
  }
}

/* ===== Slide 2: 首屏 Hero 轮播（04-首页.html，作用域 .ceo-s2-section） ===== */
.ceo-s2-section {
  --s2-cyan: #00d7ff;
  --s2-line-strong: rgba(127, 151, 165, 0.42);
  --s2-text: #edf6fb;
  --s2-muted: #9eabb2;
  max-width: 1440px;
  margin: 20px auto 20px;
  padding: 0 20px;
  box-sizing: border-box;
  color: var(--s2-text);
}

.ceo-s2-section .ceo-s2-panel {
  position: relative;
  border: 1px solid var(--s2-line-strong);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.ceo-s2-section .ceo-s2-panel:before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 5px;
  pointer-events: none;
  z-index: 4;
}

.ceo-s2-section .ceo-s2-hero {
  padding: 0;
  min-height: 480px;
}

.ceo-s2-section .ceo-s2-hero-carousel {
  position: relative;
  min-height: 480px;
}

.ceo-s2-section .ceo-s2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ceo-s2-section .ceo-s2-hero-slide-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  background-image: var(--slide-image);
  background-size: cover;
  background-position: center;
  background-color: #06090b;
}

.ceo-s2-section .ceo-s2-hero-slide-bg.active {
  opacity: 1;
}

.ceo-s2-section .ceo-s2-hero-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
  min-height: 480px;
  padding: 44px 64px 88px;
}

.ceo-s2-section .ceo-s2-hero-content {
  max-width: 640px;
}

.ceo-s2-section .ceo-s2-eyebrow {
  margin: 0 0 16px;
  color: #7eeaff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ceo-s2-section .ceo-s2-hero h1 {
  font-size: 52px;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: 0.01em;
  text-shadow: 0 0 28px rgba(0, 215, 255, 0.2);
  color: var(--s2-text);
}

.ceo-s2-section .ceo-s2-hero-tags {
  margin: 0 0 26px;
  color: var(--s2-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ceo-s2-section .ceo-s2-resource-search {
  display: flex;
  max-width: 580px;
  height: 52px;
  border: 1px solid rgba(0, 215, 255, 0.35);
  background: rgba(7, 10, 13, 0.72);
  border-radius: 6px;
  box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.5), 0 0 18px rgba(0, 215, 255, 0.06);
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.ceo-s2-section .ceo-s2-resource-search label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 0 16px;
  color: #788792;
  margin: 0;
}

.ceo-s2-section .ceo-s2-resource-search svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.ceo-s2-section .ceo-s2-resource-search input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: #eaf7fb;
  font-size: 14px;
}

.ceo-s2-section .ceo-s2-resource-search button {
  width: 128px;
  background: linear-gradient(180deg, rgba(0, 215, 255, 0.32), rgba(0, 109, 141, 0.35));
  border: 0;
  border-left: 1px solid rgba(0, 215, 255, 0.42);
  color: #bdf5ff;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.ceo-s2-section .ceo-s2-resource-search button:hover {
  box-shadow: inset 0 0 22px rgba(0, 215, 255, 0.3);
}

.ceo-s2-section .ceo-s2-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.ceo-s2-section .ceo-s2-hero-btn {
  height: 44px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
  text-decoration: none;
}

.ceo-s2-section .ceo-s2-hero-btn.primary {
  color: #041015;
  border: 1px solid rgba(0, 215, 255, 0.75);
  background: linear-gradient(180deg, #8cf3ff, #18ceff);
  box-shadow: 0 0 20px rgba(0, 215, 255, 0.28);
}

.ceo-s2-section .ceo-s2-hero-btn.primary:hover {
  box-shadow: 0 0 28px rgba(0, 215, 255, 0.42);
  transform: translateY(-1px);
}

.ceo-s2-section .ceo-s2-hero-btn.ghost {
  color: #dce8ee;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.ceo-s2-section .ceo-s2-hero-btn.ghost:hover {
  border-color: rgba(0, 215, 255, 0.45);
  color: #eaf7fb;
}

.ceo-s2-section .ceo-s2-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(5, 8, 10, 0.55);
  color: #dce8ee;
  display: grid;
  place-items: center;
  transition: opacity 0.2s ease, visibility 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ceo-s2-section .ceo-s2-hero-carousel:hover .ceo-s2-hero-arrow {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ceo-s2-section .ceo-s2-hero-arrow:hover {
  border-color: rgba(0, 215, 255, 0.55);
  color: #7cecff;
  box-shadow: 0 0 16px rgba(0, 215, 255, 0.2);
}

.ceo-s2-section .ceo-s2-hero-arrow.prev { left: 18px; }
.ceo-s2-section .ceo-s2-hero-arrow.next { right: 18px; }

.ceo-s2-section .ceo-s2-hero-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.ceo-s2-section .ceo-s2-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.ceo-s2-section .ceo-s2-hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: 0.2s;
}

.ceo-s2-section .ceo-s2-hero-dots button.active {
  background: var(--s2-cyan);
  border-color: var(--s2-cyan);
  box-shadow: 0 0 12px var(--s2-cyan);
}

.ceo-s2-section .ceo-s2-hero-thumbs {
  position: absolute;
  right: 28px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.ceo-s2-section .ceo-s2-hero-thumb {
  --s2-thumb-border: #3a464d;
  --s2-thumb-border-active: #00d7ff;
  width: 118px;
  height: 68px;
  border: 2px solid var(--s2-thumb-border);
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background-color: #0d2030;
  background-image: var(--thumb-image);
  background-size: cover;
  background-position: center;
  background-origin: border-box;
  background-clip: padding-box;
  position: relative;
  transition: border-color 0.2s ease;
  box-shadow: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.ceo-s2-section .ceo-s2-hero-thumb:not(.active)::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.45);
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.ceo-s2-section .ceo-s2-hero-thumb.active {
  border-color: var(--s2-thumb-border-active);
  box-shadow: none;
}

.ceo-s2-section .ceo-s2-hero-thumb.active::after {
  display: none;
}

.ceo-s2-section .ceo-s2-hero-thumb:hover:not(.active) {
  border-color: #5c7a86;
}

@media (max-width: 1180px) {
  .ceo-s2-section .ceo-s2-hero-overlay {
    grid-template-columns: 1fr;
    padding: 36px 48px 96px;
  }

  .ceo-s2-section .ceo-s2-hero h1 {
    font-size: 40px;
  }

  .ceo-s2-section .ceo-s2-hero-thumbs {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 768px) {
  .ceo-s2-section {
    padding: 0 12px 16px;
  }

  .ceo-s2-section .ceo-s2-hero-overlay {
    padding: 28px 20px 110px;
  }

  .ceo-s2-section .ceo-s2-hero h1 {
    font-size: 32px;
  }

  .ceo-s2-section .ceo-s2-resource-search {
    flex-direction: column;
    height: auto;
  }

  .ceo-s2-section .ceo-s2-resource-search label {
    min-height: 48px;
  }

  .ceo-s2-section .ceo-s2-resource-search button {
    width: 100%;
    height: 46px;
    border-left: 0;
    border-top: 1px solid rgba(0, 215, 255, 0.42);
  }

  .ceo-s2-section .ceo-s2-hero-thumbs {
    left: 20px;
    right: 20px;
    justify-content: center;
  }

  .ceo-s2-section .ceo-s2-hero-thumb {
    width: 92px;
    height: 56px;
  }
}

/* ===== Slide 3: 最新发布 / template-parts/slide/3.php ===== */
.ceo-s3-section {
  --s3-cyan: #00d7ff;
  --s3-muted: #8d9ca4;
  max-width: 1440px;
  margin: 20px auto 20px;
  padding: 15px 20px 0;
  box-sizing: border-box;
  color: #edf6fb;
  background: transparent;
}

.ceo-s3-section.ceo-s3-mod-2 {
  border: 0;
  box-shadow: none;
  border-radius: 10px;
  background: transparent;
}

.ceo-s3-section .s3-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.ceo-s3-section .s3-panel-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #eaf7fb;
}

.ceo-s3-section .s3-blue-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--s3-cyan);
  box-shadow: 0 0 14px var(--s3-cyan);
  border: 2px solid #0b161d;
  flex-shrink: 0;
}

.ceo-s3-section .s3-subtitle {
  color: #75848c;
  font-size: 14px;
  margin-left: 4px;
  font-weight: 500;
}

.ceo-s3-section .ceo-s3-catnav {
  position: relative;
  z-index: 1;
  background: none;
}

.ceo-s3-section .ceo-s3-catnav .cn2-card-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 0;
  gap: 24px;
}

.ceo-s3-section .ceo-s3-placeholder {
  margin: 14px 0 0;
  color: var(--s3-muted);
  font-size: 14px;
}

@media (max-width: 1180px) {
  .ceo-s3-section .ceo-s3-catnav .cn2-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .ceo-s3-section .ceo-s3-catnav .cn2-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ceo-s3-section {
    padding: 12px 16px 0;
  }

  .ceo-s3-section .s3-subtitle {
    margin-left: 20px;
  }

  .ceo-s3-section .ceo-s3-catnav .cn2-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== Slide 4: 排行 + 蓝光双栏 / template-parts/slide/4.php ===== */
.ceo-s4-wrap {
  --s4-cyan: #00d7ff;
  --s4-line-strong: rgba(127, 151, 165, 0.42);
  --s4-text: #edf6fb;
  --s4-muted: #8e9ca4;
  --s4-row-h: 72px;
  --s4-row-gap: 8px;
  --s4-body-h: calc(4 * var(--s4-row-h) + 3 * var(--s4-row-gap));
  --s4-thumb-w: 96px;
  max-width: 1440px;
  margin: 20px auto 0;
  padding: 0 20px 20px;
  box-sizing: border-box;
  color: var(--s4-text);
  background: transparent;
}

.ceo-s4-content-split {
  display: grid;
  grid-template-columns: 1fr 1.32fr;
  gap: 16px;
  align-items: stretch;
}

.ceo-s4-panel.ceo-s4-mod-2 {
  border: 0;
  box-shadow: none;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(14, 20, 26, 0.82), rgba(9, 12, 16, 0.78));
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  height: auto;
}

.ceo-s4-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.ceo-s4-panel-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #eaf7fb;
}

.ceo-s4-blue-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--s4-cyan);
  box-shadow: 0 0 14px var(--s4-cyan);
  border: 2px solid #0b161d;
  flex-shrink: 0;
}

.ceo-s4-subtitle {
  color: #75848c;
  font-size: 14px;
  margin-left: 4px;
  font-weight: 500;
}

.ceo-s4-placeholder {
  margin: 0;
  color: var(--s4-muted);
  font-size: 14px;
}

/* 左侧排行 */
.ceo-s4-ranking-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s4-row-gap);
  height: var(--s4-body-h);
  flex: 0 0 auto;
}

.ceo-s4-rank-item {
  min-height: var(--s4-row-h);
  height: var(--s4-row-h);
  display: grid;
  grid-template-columns: 34px var(--s4-thumb-w) 1fr 86px;
  gap: 12px;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--s4-line-strong);
  background: rgba(255, 255, 255, 0.04);
  padding: 0 10px;
  transition: 0.2s;
}

.ceo-s4-rank-item:hover {
  background: rgba(0, 215, 255, 0.07);
  border-color: rgba(127, 151, 165, 0.65);
}

.ceo-s4-num {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 0;
  display: grid;
  place-items: center;
  color: #dfe8ec;
  font-weight: 900;
  font-size: 13px;
}

.ceo-s4-rank-item:nth-child(-n+3) .ceo-s4-num {
  background: rgba(245, 182, 66, 0.15);
  color: #ffd986;
}

.ceo-s4-mini-cover {
  display: block;
  width: var(--s4-thumb-w);
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: calc(var(--s4-row-h) - 12px);
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

.ceo-s4-mini-cover:not(.has-cover)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 49.5%, rgba(255, 255, 255, 0.06) 50%, transparent 50.5%);
}

.ceo-s4-rank-body {
  min-width: 0;
}

.ceo-s4-rank-name {
  display: block;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: inherit;
  text-decoration: none;
}

.ceo-s4-rank-name:hover {
  color: #7cecff;
}

.ceo-s4-rank-meta {
  color: var(--s4-muted);
  font-size: 12px;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ceo-s4-rank-download {
  height: 35px;
  font-size: 13px;
  border: 0;
  border-radius: 6px;
  color: #dce8ee;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ceo-s4-rank-download:hover {
  background: rgba(0, 215, 255, 0.12);
  color: #7cecff;
}

/* 右侧蓝光卡片 */
.ceo-s4-bluray-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: var(--s4-body-h);
  align-items: stretch;
  flex: 0 0 auto;
}

.ceo-s4-blur-card {
  border-radius: 8px;
  border: 1px solid var(--s4-line-strong);
  background: rgba(255, 255, 255, 0.04);
  padding: 10px;
  transition: 0.2s;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto auto;
  gap: 0;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.ceo-s4-blur-card:hover {
  background: rgba(0, 215, 255, 0.07);
  border-color: rgba(127, 151, 165, 0.65);
}

.ceo-s4-stage-img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  aspect-ratio: 16 / 9;
  justify-self: center;
  align-self: center;
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  background: #061018;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
}

.ceo-s4-stage-img:not(.has-cover)::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 100%, var(--s4-tone, rgba(0, 160, 255, 0.62)), transparent 56%),
    linear-gradient(180deg, rgba(14, 63, 90, 0.9), rgba(2, 4, 7, 0.9));
}

.ceo-s4-stage-img:not(.has-cover)::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 62px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88)),
    repeating-radial-gradient(circle at 20px 20px, rgba(0, 110, 170, 0.44) 0 2px, transparent 3px 30px);
  opacity: 0.7;
}

.ceo-s4-blur-card:nth-child(1) .ceo-s4-stage-img:not(.has-cover) { --s4-tone: rgba(0, 170, 255, 0.58); }
.ceo-s4-blur-card:nth-child(2) .ceo-s4-stage-img:not(.has-cover) { --s4-tone: rgba(255, 0, 200, 0.48); }
.ceo-s4-blur-card:nth-child(3) .ceo-s4-stage-img:not(.has-cover) { --s4-tone: rgba(255, 182, 66, 0.5); }

.ceo-s4-beam {
  position: absolute;
  top: -20px;
  width: 22%;
  height: 190px;
  background: linear-gradient(180deg, rgba(120, 202, 255, 0.55), transparent);
  clip-path: polygon(47% 0, 54% 0, 100% 100%, 0 100%);
  filter: blur(1px);
  opacity: 0.58;
  transform-origin: top center;
}

.ceo-s4-beam.b1 { left: 14%; transform: rotate(11deg); }
.ceo-s4-beam.b2 { left: 34%; transform: rotate(-8deg); }
.ceo-s4-beam.b3 { left: 58%; transform: rotate(8deg); }
.ceo-s4-beam.b4 { left: 74%; transform: rotate(-8deg); }

.ceo-s4-ratio {
  position: absolute;
  right: 8px;
  top: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.45);
  border-radius: 3px;
  font-size: 12px;
  padding: 2px 5px;
  color: #dce9ee;
  z-index: 1;
}

.ceo-s4-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.28);
  z-index: 2;
  pointer-events: none;
}

.ceo-s4-play::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 15px;
  border-left: 17px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.ceo-s4-play-sm {
  width: 28px;
  height: 28px;
  border-width: 1px;
}

.ceo-s4-play-sm::after {
  left: 11px;
  top: 8px;
  border-left-width: 9px;
  border-top-width: 6px;
  border-bottom-width: 6px;
}

.ceo-s4-stage-img .ceo-s4-play {
  width: 34px;
  height: 34px;
  border-width: 1px;
}

.ceo-s4-stage-img .ceo-s4-play::after {
  left: 13px;
  top: 9px;
  border-left-width: 10px;
  border-top-width: 7px;
  border-bottom-width: 7px;
}

.ceo-s4-blur-card h3 {
  font-size: 14px;
  line-height: 1.35;
  margin: 8px 0 6px;
  min-height: 0;
  color: var(--s4-text);
}

.ceo-s4-blur-card h3 a {
  color: var(--s4-text);
  text-decoration: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.ceo-s4-blur-card h3 a:hover {
  color: #7cecff;
}

.ceo-s4-blur-meta {
  color: var(--s4-muted);
  font-size: 12px;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 0;
}

.ceo-s4-card-actions {
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 8px;
  margin-top: 6px;
}

.ceo-s4-btn-detail,
.ceo-s4-btn-down {
  height: 31px;
  font-size: 12px;
  border: 0;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
}

.ceo-s4-btn-detail {
  color: #7cecff;
  background: rgba(0, 215, 255, 0.12);
}

.ceo-s4-wrap .ceo-s4-btn-detail:hover,
.ceo-s4-wrap .ceo-s4-btn-detail:focus {
  color: #7cecff;
  background: rgba(0, 215, 255, 0.2);
}

.ceo-s4-btn-down {
  color: #d6e4e9;
  background: rgba(255, 255, 255, 0.06);
}

.ceo-s4-btn-down:hover {
  background: rgba(0, 215, 255, 0.12);
  color: #7cecff;
}

@media (max-width: 1100px) {
  .ceo-s4-content-split {
    grid-template-columns: 1fr;
  }

  .ceo-s4-ranking-list,
  .ceo-s4-bluray-grid {
    height: auto;
    min-height: 0;
  }

  .ceo-s4-blur-card {
    grid-template-rows: auto auto auto auto;
  }

  .ceo-s4-stage-img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .ceo-s4-rank-item {
    height: auto;
    min-height: var(--s4-row-h);
  }
}

@media (max-width: 768px) {
  .ceo-s4-wrap {
    padding: 0 16px 20px;
  }

  .ceo-s4-panel.ceo-s4-mod-2 {
    padding: 18px 16px 20px;
  }

  .ceo-s4-bluray-grid {
    grid-template-columns: 1fr;
  }

  .ceo-s4-rank-item {
    grid-template-columns: 28px var(--s4-thumb-w) 1fr 72px;
    gap: 10px;
  }

  .ceo-s4-rank-download {
    font-size: 12px;
    padding: 0 8px;
  }
}

@media (max-width: 500px) {
  .ceo-s4-rank-item {
    grid-template-columns: 28px 48px 1fr;
    grid-template-rows: auto auto;
    height: auto;
    padding: 10px;
  }

  .ceo-s4-rank-download {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* ===== Slide 5: 优惠活动（与 09-首页.html promo 一致） ===== */
.ceo-s5-section {
  --pad: 24px;
  --mono:var(--font-mono);

  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
  padding: 0;
  box-sizing: border-box;
}

.ceo-s5-section .promo {
  margin-top: 16px;
  height: 150px;
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px var(--pad);
  overflow: hidden;
  position: relative;
}

.ceo-s5-section .promo::before {
  content: "";
  position: absolute;
  inset: -40px -60px;
  background:
    radial-gradient(600px 220px at 20% 40%, rgba(var(--color-accent-rgb), 0.22), transparent 60%),
    radial-gradient(520px 220px at 80% 70%, rgba(0, 212, 255, 0.16), transparent 62%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 14px);
  opacity: 0.85;
  transform: rotate(2deg);
  pointer-events: none;
}

.ceo-s5-section .promo .ceo-s5-promo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.ceo-s5-section .promo .left {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.ceo-s5-section .promo .k {
  margin: 0;
  /*font-family: var(--mono);*/
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.9;
}

.ceo-s5-section .promo .v {
  margin: 6px 0 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.ceo-s5-section .promo .m {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  max-width: 860px;
}

.ceo-s5-section .promo .right {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ceo-s5-section .btn.dark {
  background: var(--panel);
  color: var(--ink);
  border: 1px solid #fff;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s ease;
}

.ceo-s5-section .btn.dark:hover {
  background: rgba(255, 255, 255, 0.92);
}

.ceo-s5-section .btn.outline-light {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.12s ease;
}

.ceo-s5-section .btn.outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== Slide 6: 专辑区域样式2（与 09-首页.html 专辑 Grid-5 / card2 一致） ===== */
.ceo-s6-section {
  --ink:    var(--color-ink);
  --muted:  var(--color-muted);
  --line-2: var(--color-line-2);
  --accent: var(--color-accent);
  --pad: 24px;
  --shadow: var(--color-shadow);
  --mono:var(--font-mono);

  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  padding: 0;
  box-sizing: border-box;
  background: var(--color-section-bg);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* .ceo-s6-section.section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 50px;
  background:
    linear-gradient(135deg, transparent 0 18px, rgba(var(--color-accent-rgb), 0.18) 18px 19px, transparent 19px 100%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  opacity: 0.9;
  pointer-events: none;
} */

.ceo-s6-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--pad) 12px;
  border-bottom: 1px solid var(--line-2);
}

.ceo-s6-section .section-header .title {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.ceo-s6-section .section-header .title .bar {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border: 1px solid var(--ink);
  box-shadow: 4px 0 0 var(--ink);
}

.ceo-s6-section .section-header .hint {
  color: var(--muted);
  font-size: 12px;
  /*font-family: var(--mono);*/
  letter-spacing: 0.06em;
  text-align: right;
  margin: 0;
}

.ceo-s6-section .section-header a.hint {
  text-decoration: none;
}

.ceo-s6-section .section-header a.hint:hover {
  color: var(--ink);
}

.ceo-s6-section .albums2 {
  padding: 14px var(--pad) 18px;
}

.ceo-s6-section .album-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.ceo-s6-section .album-grid-5--scroll {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
  gap: 14px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: auto;
  scrollbar-color: #bfc5d0 transparent;
}

.ceo-s6-section .album-grid-5--scroll::-webkit-scrollbar {
  height: 8px;
}

.ceo-s6-section .album-grid-5--scroll::-webkit-scrollbar-track {
  background: transparent;
}

.ceo-s6-section .album-grid-5--scroll::-webkit-scrollbar-thumb {
  background: #bfc5d0;
  border-radius: 3px;
}

.ceo-s6-section .album-grid-5--scroll .card2 {
  flex: 0 0 239px;
  width: 200px;
  min-width: 0;
}

.ceo-s6-section .card2 {
  border: 1px solid var(--line-2);
  background: var(--panel);
  overflow: hidden;
  transition: transform 0.12s ease, border-color 0.12s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ceo-s6-section .card2:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.ceo-s6-section .card2 .cover {
  position: relative;
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid var(--line-2);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0) 55%),
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.07) 0 2px, transparent 2px 12px),
    #fff;
  overflow: hidden;
}

.ceo-s6-section .card2 .cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ceo-s6-section .card2 .cover .cover-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  text-decoration: none;
}

.ceo-s6-section .card2 .cover .placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  /*font-family: var(--mono);*/
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.55);
  text-transform: uppercase;
  user-select: none;
  font-size: 12px;
}


.ceo-s6-section .card2 .cover .overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--color-ink-rgb), 0.55);
  opacity: 0;
  transition: opacity 0.18s ease;
  display: grid;
  place-items: center;
  z-index: 1;
  pointer-events: none;
}

.ceo-s6-section .card2:hover .cover .overlay {
  opacity: 1;
}

.ceo-s6-section .card2 .cover .overlay .play-fab {
  pointer-events: auto;
}

.ceo-s6-section .card2 .play-fab {
  width: 39px;
  height: 39px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
  position: relative;
}

.ceo-s6-section .card2 .play-fab:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.18);
}

.ceo-s6-section .card2 .play-fab svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.ceo-s6-section .card2 .play-fab span {
  position: absolute;
  transform: translateY(50px);
  font-size: 11px;
  letter-spacing: 0.1em;
  /*font-family: var(--mono);*/
  color: #fff;
  opacity: 0.9;
  text-transform: uppercase;
}

.ceo-s6-section .card2 .slant {
  position: absolute;
  right: -40px;
  top: 14px;
  width: 180px;
  height: 34px;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid var(--ink);
  transform: rotate(35deg);
  display: grid;
  place-items: center;
  /*font-family: var(--mono);*/
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  z-index: 3;
}

.ceo-s6-section .card2 .body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ceo-s6-section .ceo-s6-meta-top,
.ceo-s6-section .ceo-s6-meta-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.ceo-s6-section .ceo-s6-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 400;
  border: 1px solid transparent;
  line-height: 1.5;
  white-space: nowrap;
}

.ceo-s6-section .ceo-s6-chip--hires {
  background: var(--accent);
  border-color: #232323;
  color: #232323;
  font-weight: 700;
}

.ceo-s6-section .ceo-s6-chip--primary {
  background: #f5f6f8;
  border-color: #bfc5d0;
  color: #444;
}

.ceo-s6-section .card2 .name {
  font-weight: 700;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
  text-decoration: none;
  display: block;
  width: 100%;
  cursor: pointer;
}

.ceo-s6-section .card2 .dl,
.ceo-s6-section .card2 .btn.primary.dl {
  /*width: 100%;*/
  padding: 10px 12px;
  margin-top: auto;
  font-size: 13px;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  /* transition: background 0.12s ease, color 0.12s ease; */
}

.ceo-s6-section .card2 .dl:hover,
.ceo-s6-section .card2 .btn.primary.dl:hover {
  background: var(--ink);
  color: #fff;
}

.ceo-s6-section .ceo-s6-placeholder {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* ===== Slide 7: 演唱会视频（与 09-首页.html 1278-1351 一致，cgrid/citem） ===== */
.ceo-s7-section {
  --ink:    var(--color-ink);
  --muted:  var(--color-muted);
  --line-2: var(--color-line-2);
  --line:   var(--color-line);
  --pad: 24px;
  --shadow: var(--color-shadow);
  --mono:var(--font-mono);
  --ok: var(--color-ok);

  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  padding: 0;
  box-sizing: border-box;
  background: var(--color-section-bg);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* .ceo-s7-section.section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 50px;
  background:
    linear-gradient(135deg, transparent 0 18px, rgba(var(--color-accent-rgb), 0.18) 18px 19px, transparent 19px 100%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  opacity: 0.9;
  pointer-events: none;
} */

.ceo-s7-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--pad) 12px;
  border-bottom: 1px solid var(--line-2);
}

.ceo-s7-section .section-header .title {
  display: flex;
  align-items: center;
  gap: 10px;
  /*font-family: var(--mono);*/
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.ceo-s7-section .section-header .title .bar {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border: 1px solid var(--ink);
  box-shadow: 4px 0 0 var(--ink);
}

.ceo-s7-section .section-header .hint {
  color: var(--muted);
  font-size: 12px;
  /*font-family: var(--mono);*/
  letter-spacing: 0.06em;
  margin: 0;
}

.ceo-s7-section .section-header a.hint {
  text-decoration: none;
}

.ceo-s7-section .section-header a.hint:hover {
  color: var(--ink);
}

.ceo-s7-section .concerts {
  padding: 14px var(--pad) 18px;
}

.ceo-s7-section .cgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ceo-s7-section .citem {
  border: 1px solid var(--line-2);
  background: var(--panel);
  padding: 12px 12px 14px;
  transition: transform 0.12s ease, border-color 0.12s ease;
  position: relative;
  overflow: hidden;
}

.ceo-s7-section .citem:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.ceo-s7-section .citem::before {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  transform: rotate(45deg);
  opacity: 0.55;
}

.ceo-s7-section .citem .t {
  margin: 0;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding-right: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
}

.ceo-s7-section .citem .meta {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 10px;
  /*font-family: var(--mono);*/
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

.ceo-s7-section .citem .meta span {
  border-left: 3px solid var(--line-2);
  padding-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ceo-s7-section .citem .meta b {
  color: var(--ink);
  font-weight: 700;
}

.ceo-s7-section .citem .act {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.ceo-s7-section .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid var(--line-2);
  background: var(--panel);
  /*font-family: var(--mono);*/
  font-size: 12px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: var(--muted);
}

.ceo-s7-section .pill .led {
  width: 10px;
  height: 10px;
  border: 1px solid var(--ink);
  background: var(--ok);
}

.ceo-s7-section .btn.primary {
  border-radius: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.08s ease, background 0.12s ease, color 0.12s ease;
}

.ceo-s7-section .btn.primary:hover {
  background: var(--panel);
  color: var(--ink);
}

.ceo-s7-section .ceo-s7-placeholder {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* ===== Slide 8: 三图海报（与 09-首页.html 1263-1276 一致，tri/tri-grid/tri-card） ===== */
.ceo-s8-section {
  --ink:    var(--color-ink);
  --muted:  var(--color-muted);
  /*--line-2: var(--color-line-2);*/
  --pad: 24px;
  --shadow: var(--color-shadow);
  --mono:var(--font-mono);

  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  padding: 0;
  box-sizing: border-box;
  /*background: var(--panel);*/
  /*border: 1px solid var(--line-2);*/
  /*box-shadow: var(--shadow);*/
  position: relative;
  overflow: hidden;
  
}

/*.ceo-s8-section.section::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  left: 0;*/
/*  top: 0;*/
/*  width: 160px;*/
/*  height: 50px;*/
/*  background:*/
/*    linear-gradient(135deg, transparent 0 18px, rgba(var(--color-accent-rgb), 0.18) 18px 19px, transparent 19px 100%),*/
/*    linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));*/
/*  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);*/
/*  opacity: 0.9;*/
/*  pointer-events: none;*/
/*}*/

.ceo-s8-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--pad) 12px;
  border-bottom: 1px solid var(--line-2);
}

.ceo-s8-section .section-header .title {
  display: flex;
  align-items: center;
  gap: 10px;
  /*font-family: var(--mono);*/
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.ceo-s8-section .section-header .title .bar {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border: 1px solid var(--ink);
  box-shadow: 4px 0 0 var(--ink);
}

.ceo-s8-section .section-header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ceo-s8-section .section-header .hint {
  color: var(--muted);
  font-size: 12px;
  /*font-family: var(--mono);*/
  letter-spacing: 0.06em;
  margin: 0;
}

.ceo-s8-section .ceo-s8-refresh {
  border-radius: 0;
  border: 1px solid var(--ink);
  padding: 6px 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  font-size: 12px;
  background: var(--panel);
  color: var(--ink);
  transition: background 0.12s ease, color 0.12s ease;
}

.ceo-s8-section .ceo-s8-refresh:hover {
  background: var(--ink);
  color: #fff;
}

.ceo-s8-section .ceo-s8-refresh:active {
  transform: translateY(1px);
}

.ceo-s8-section .tri {
  padding: 10px 0px 10px 0px;
}

.ceo-s8-section .tri-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ceo-s8-section .tri-card,
.ceo-s8-section .tri-card.ceo-s8-poster3 {
  height: 230px;
  border: 1px solid var(--line-2);
  background:
    radial-gradient(520px 160px at 30% 35%, rgba(var(--color-accent-rgb), 0.2), transparent 60%),
    repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0 2px, transparent 2px 12px),
    #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.12s ease, border-color 0.12s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.ceo-s8-section .tri-card:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.ceo-s8-section .tri-card .ceo-s8-poster-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  image-rendering: -webkit-optimize-contrast;
}

.ceo-s8-section .tri-card .label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.92);
  padding: 8px 10px;
  /*font-family: var(--mono);*/
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 悬停全屏遮罩层 */
.ceo-s8-section .tri-card .ceo-s8-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 1;
}

.ceo-s8-section .tri-card:hover .ceo-s8-overlay {
  opacity: 1;
}

/* 底部标题条 */
.ceo-s8-section .tri-card .ceo-s8-caption-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.72);
  padding: 10px 14px;
  transform: translateY(100%);
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.ceo-s8-section .tri-card:hover .ceo-s8-caption-bar {
  transform: translateY(0);
  opacity: 1;
}

.ceo-s8-section .tri-card .ceo-s8-caption-text {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Slide 9: 歌手区域（与 09-首页.html 1353-1373 一致，artist-row/artist/avatar） ===== */
.ceo-s9-section {
  --ink:    var(--color-ink);
  --muted:  var(--color-muted);
  --line-2: var(--color-line-2);
  --pad: 24px;
  --shadow: var(--color-shadow);
  --mono:var(--font-mono);

  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  padding: 0;
  box-sizing: border-box;
  background: var(--color-section-bg);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* .ceo-s9-section.section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 50px;
  background:
    linear-gradient(135deg, transparent 0 18px, rgba(var(--color-accent-rgb), 0.18) 18px 19px, transparent 19px 100%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  opacity: 0.9;
  pointer-events: none;
} */

.ceo-s9-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--pad) 12px;
  border-bottom: 1px solid var(--line-2);
}

.ceo-s9-section .section-header .title {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.ceo-s9-section .section-header .title .bar {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border: 1px solid var(--ink);
  box-shadow: 4px 0 0 var(--ink);
}

.ceo-s9-section .section-header .hint {
  color: var(--muted);
  font-size: 12px;
  /*font-family: var(--mono);*/
  letter-spacing: 0.06em;
  margin: 0;
}

.ceo-s9-section .section-header a.hint {
  text-decoration: none;
}

.ceo-s9-section .section-header a.hint:hover {
  color: var(--ink);
}

.ceo-s9-section .artists {
  padding: 14px var(--pad) 18px;
}

.ceo-s9-section .artist-row {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.ceo-s9-section .artist {
  border: 1px solid var(--line-2);
  background: var(--panel);
  padding: 10px 10px 12px;
  text-align: center;
  transition: transform 0.12s ease, border-color 0.12s ease;
  text-decoration: none;
  color: inherit;
}

.ceo-s9-section .artist:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.ceo-s9-section .avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 10px;
  border-radius: 50%;
  /*border: 1px solid var(--ink);*/
  /*background:*/
  /*  radial-gradient(60px 60px at 35% 30%, rgba(var(--color-accent-rgb), 0.22), transparent 62%),*/
  /*  repeating-linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0 2px, transparent 2px 10px),*/
  /*  #fff;*/
  position: relative;
  overflow: hidden;
}



.ceo-s9-section .avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ceo-s9-section .artist .name {
  font-weight: 700;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #000;
}

.ceo-s9-section .artist .sub {
  margin-top: 6px;
  /*font-family: var(--mono);*/
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.ceo-s9-section .ceo-s9-placeholder {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* ===== Slide 10: 专题样式（与 09-首页.html 1375-1420 一致，topic-grid/topic） ===== */
.ceo-s10-section {
  --ink:    var(--color-ink);
  --muted:  var(--color-muted);
  --line-2: var(--color-line-2);
  --line:   var(--color-line);
  --pad: 24px;
  --shadow: var(--color-shadow);
  --mono:var(--font-mono);

  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  margin-bottom: 24px;
  padding: 0;
  box-sizing: border-box;
  background: var(--color-section-bg);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* .ceo-s10-section.section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 160px;
  height: 50px;
  background:
    linear-gradient(135deg, transparent 0 18px, rgba(var(--color-accent-rgb), 0.18) 18px 19px, transparent 19px 100%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  opacity: 0.9;
  pointer-events: none;
} */

.ceo-s10-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px var(--pad) 12px;
  border-bottom: 1px solid var(--line-2);
}

.ceo-s10-section .section-header .title {
  display: flex;
  align-items: center;
  gap: 10px;
  /*font-family: var(--mono);*/
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.ceo-s10-section .section-header .title .bar {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border: 1px solid var(--ink);
  box-shadow: 4px 0 0 var(--ink);
}

.ceo-s10-section .section-header .hint {
  color: var(--muted);
  font-size: 12px;
  /*font-family: var(--mono);*/
  letter-spacing: 0.06em;
  margin: 0;
}

.ceo-s10-section .topics {
  padding: 14px var(--pad) 18px;
}

.ceo-s10-section .topic-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 14px;
}

.ceo-s10-section .topic {
  border: 1px solid var(--line-2);
  background: var(--panel);
  overflow: hidden;
  transition: transform 0.12s ease, border-color 0.12s ease;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.ceo-s10-section .topic:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.ceo-s10-section .topic .head {
  padding: 12px 12px;
  border-bottom: 1px solid var(--line);
  /*font-family: var(--mono);*/
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.ceo-s10-section .topic .body {
  padding: 12px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  background:
    radial-gradient(520px 220px at 30% 30%, rgba(var(--color-accent-rgb), 0.14), transparent 60%),
    radial-gradient(520px 220px at 80% 80%, rgba(0, 212, 255, 0.08), transparent 62%);
}

.ceo-s10-section .topic .title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.ceo-s10-section .topic .desc {
  margin: 0;
  color: rgba(0, 0, 0, 0.75);
  font-size: 13px;
  line-height: 1.6;
}

.ceo-s10-section .topic .foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  /*font-family: var(--mono);*/
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 12px;
}

.ceo-s10-section .topic .go {
  border: 1px solid var(--ink);
  padding: 8px 10px;
  background: var(--panel);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.ceo-s10-section .topic .go:hover {
  background: var(--ink);
  color: #fff;
}

.ceo-s10-section .ceo-s10-placeholder {
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 1200px) {
  .ceo-s6-section .album-grid-5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ceo-s9-section .artist-row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

}

@media (max-width: 992px) {
  .ceo-s6-section .album-grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ceo-s10-section .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .ceo-s5-section .promo {
    height: auto;
    min-height: 140px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .ceo-s5-section .promo .v {
    font-size: 20px;
  }

  .ceo-s5-section .promo .right {
    justify-content: flex-start;
  }

  .ceo-s7-section .section-header,
  .ceo-s7-section .concerts {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ceo-s7-section .cgrid {
    grid-template-columns: 1fr;
  }

  .ceo-s7-section .citem .meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ceo-s8-section .section-header,
  .ceo-s8-section .tri {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ceo-s8-section .tri-grid {
    grid-template-columns: 1fr;
  }

  .ceo-s8-section .tri-card {
    height: 160px;
  }
}

/* ===== Slide 11: 快速分类入口 / template-parts/slide/11.php ===== */
.ceo-s11-section {
  --s11-cyan: #00d7ff;
  --s11-line-strong: rgba(127, 151, 165, 0.42);
  --s11-text: #edf6fb;
  --s11-muted: #8d9ca4;
  max-width: 1440px;
  margin: 20px auto 20px;
  padding: 15px 20px 0;
  box-sizing: border-box;
  color: var(--s11-text);
}

.ceo-s11-section.ceo-s11-mod-2 {
  border: 0;
  box-shadow: none;
  border-radius: 10px;
  background: transparent;
}

.ceo-s11-placeholder {
  margin: 14px 0 0;
  color: var(--s11-muted);
  font-size: 14px;
}

.ceo-s11-section .s11-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.ceo-s11-section .s11-panel-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #eaf7fb;
}

.ceo-s11-section .s11-blue-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--s11-cyan);
  box-shadow: 0 0 14px var(--s11-cyan);
  border: 2px solid #0b161d;
  flex-shrink: 0;
}

.ceo-s11-section .s11-subtitle {
  color: #75848c;
  font-size: 14px;
  margin-left: 4px;
  font-weight: 500;
}

.ceo-s11-section .s11-category-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ceo-s11-section .s11-cat-card {
  height: 84px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--s11-line-strong);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  transition: 0.2s;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.ceo-s11-section .s11-cat-card:hover {
  background: rgba(0, 215, 255, 0.08);
  transform: translateY(-1px);
  border-color: rgba(127, 151, 165, 0.65);
}

.ceo-s11-section .s11-cat-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #20d7ff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, rgba(0, 215, 255, 0.2), rgba(0, 215, 255, 0.06));
  box-shadow: 0 0 16px rgba(0, 215, 255, 0.1);
  overflow: hidden;
}

.ceo-s11-section .s11-cat-icon-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.ceo-s11-section .s11-cat-card h3 {
  margin: 0 0 5px;
  font-size: 15px;
  font-weight: 800;
  color: #edf6fb;
}

.ceo-s11-section .s11-cat-card p {
  margin: 0;
  color: var(--s11-muted);
  font-size: 12px;
}

@media (max-width: 1180px) {
  .ceo-s11-section .s11-category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 960px) {
  .ceo-s11-section .s11-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .ceo-s11-section {
    padding: 12px 16px 0;
  }

  .ceo-s11-section .s11-subtitle {
    margin-left: 20px;
  }

  .ceo-s11-section .s11-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== Slide 12: 图片海报轮播 / template-parts/slide/12.php ===== */
.ceo-s12-section {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  margin-bottom: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.ceo-s12-carousel {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

/* 轨道：所有 slide 叠放，通过 opacity + z-index 切换 */
.ceo-s12-track {
  position: relative;
  width: 100%;
}

.ceo-s12-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.ceo-s12-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.ceo-s12-link {
  display: block;
  line-height: 0;
}

.ceo-s12-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 左右箭头 */
.ceo-s12-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.15s ease, transform 0.15s ease;
}

.ceo-s12-arrow svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.ceo-s12-carousel:hover .ceo-s12-arrow {
  opacity: 1;
}

.ceo-s12-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: #fff;
}

.ceo-s12-arrow:active {
  transform: translateY(calc(-50% + 1px));
}

.ceo-s12-prev { left: 16px; }
.ceo-s12-next { right: 16px; }

/* 圆点指示器 */
.ceo-s12-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ceo-s12-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ceo-s12-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.ceo-s12-dot.is-active {
  background: var(--panel);
  transform: scale(1.25);
}

/* ===== Slide 13: 专题卡片 / template-parts/slide/13.php ===== */
.ceo-s13-section {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 18px;
  margin-bottom: 24px;
  background: var(--color-section-bg);
  border: 1px solid var(--color-line);
  box-shadow: var(--color-shadow, 0 6px 18px rgba(47, 34, 21, .06));
  overflow: hidden;
  position: relative;
}

.ceo-s13-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--color-line);
}

.ceo-s13-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ceo-s13-title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 23px;
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: .02em;
  line-height: 1.2;
}

.ceo-s13-bar {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background: var(--color-accent);
  border: 1px solid var(--color-ink);
  box-shadow: 4px 0 0 var(--color-ink);
}

.ceo-s13-sub {
  color: var(--color-muted);
  font-size: 13px;
  margin-top: 2px;
}

.ceo-s13-view-all {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .15s ease;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.ceo-s13-view-all:hover {
  color: var(--color-ink);
  border-bottom-color: var(--color-ink);
}

.ceo-s13-topic-row {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(var(--s13-cols, 6), minmax(0, 1fr));
  gap: 14px;
}

.ceo-s13-card {
  display: block;
  border: 1px solid var(--color-line);
  background: var(--color-panel);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.ceo-s13-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-line-2);
  box-shadow: 0 8px 24px rgba(47, 34, 21, .10);
}

.ceo-s13-cover {
  aspect-ratio: 1 / 1;
  background: var(--color-panel-2, #f7f2e9);
  overflow: hidden;
}

.ceo-s13-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .25s ease;
}

.ceo-s13-card:hover .ceo-s13-cover img {
  transform: scale(1.04);
}

.ceo-s13-info {
  padding: 12px;
  border-top: 1px solid var(--color-line);
}

.ceo-s13-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.35;
}

.ceo-s13-info span {
  display: block;
  color: var(--color-muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1200px) {
  .ceo-s13-topic-row {
    grid-template-columns: repeat(min(var(--s13-cols, 6), 4), minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .ceo-s13-header {
    padding: 14px 16px 10px;
  }
  .ceo-s13-topic-row {
    padding: 14px 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .ceo-s13-topic-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== Slide 14: 分类占位 / template-parts/slide/14.php ===== */
.ceo-s14-section {
  --ceo-s14-space: 14px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.ceo-s14-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ceo-s14-space);
}

.ceo-s14-item {
  padding: 12px 18px;
  background: var(--card, #fff);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
  text-decoration: none;
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ceo-s14-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.1);
}

.ceo-s14-placeholder {
  margin: 14px 0;
  color: #6b7280;
  font-size: 15px;
}

/* ===== Slide 15: 分类占位 / template-parts/slide/15.php ===== */
.ceo-s15-section {
  --ceo-s15-space: 14px;
  --ceo-s15-radius: 12px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}

.ceo-s15-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ceo-s15-space);
}

.ceo-s15-item {
  padding: 20px;
  background: var(--card, #fff);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: var(--ceo-s15-radius);
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
  text-decoration: none;
  color: inherit;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.ceo-s15-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(209, 213, 219, 0.95);
}

.ceo-s15-placeholder {
  margin: 14px 0;
  color: #6b7280;
  font-size: 15px;
}

/* ===== Shared Responsive Adjustments: Slide 6, 9, 10, 11-15 ===== */
@media (max-width: 960px) {
  .ceo-s9-section .section-header {
    flex-wrap: wrap;
  }

  .ceo-s15-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .ceo-s9-section .section-header,
  .ceo-s9-section .artists {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ceo-s9-section .artist-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ceo-s6-section .section-header,
  .ceo-s6-section .albums2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ceo-s6-section .album-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ceo-s10-section .section-header,
  .ceo-s10-section .topics {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ceo-s10-section .topic-grid {
    grid-template-columns: 1fr;
  }

  .ceo-s11-section,
  .ceo-s12-section,
  .ceo-s14-section,
  .ceo-s15-section {
    padding: 0 16px;
  }

  .ceo-s14-list {
    gap: 10px;
  }

  .ceo-s15-list {
    gap: 12px;
  }
}

@media (max-width: 400px) {
  .ceo-s6-section .album-grid-5 {
    grid-template-columns: 1fr;
  }

}
