/* ============================================
   Page: WORKS / 作品展示
   6 个章节 · 复刻 trionn 风格
   ============================================ */

.page-works {
  background: var(--c-bg-light);
  color: var(--c-ink-dark);
  padding: 100px 0 0;
  min-height: 100vh;
}

/* === Works Header === */
.works-header {
  max-width: var(--max-width);
  margin: 0 auto 60px;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}

/* Works header — tablet/mobile collapses to single column */
@media (max-width: 1024px) {
  .works-header {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .works-header {
    margin-bottom: 40px;
  }
}

.big-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--c-ink-dark);
  margin: 0;
}

.big-title .t-line {
  display: block;
  overflow: hidden;
}

.big-title .t-line > span {
  display: block;
  transform: translateY(0);
}

.big-title .muted {
  font-size: 0.5em;
  color: var(--c-ink-muted-dark);
  letter-spacing: 0.02em;
}

.works-header__meta .lead {
  font-size: 15px;
  margin-bottom: 18px;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  padding: 8px 16px;
  border: 1px solid rgba(10,20,36,0.15);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(10,20,36,0.6);
  transition: all .3s var(--ease-soft);
}

.pill:hover {
  color: var(--c-ink-dark);
  border-color: rgba(10,20,36,0.4);
}

.pill.active {
  background: var(--c-ink-dark);
  color: #fff;
  border-color: var(--c-ink-dark);
}

/* === Chapter common === */
.works-chapter {
  position: relative;
  padding: 80px 0;
}

.works-chapter__head {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.works-chapter__head--up {
  margin-top: -10%;
  margin-bottom: 24px;
}

.works-chapter__sticky {
  position: sticky;
  top: 100px;
  max-width: var(--max-width);
  margin: 0 auto 60px;
  padding: 0 var(--pad-x);
  z-index: 5;
  pointer-events: none;
}

.chapter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-ink-muted-dark);
  margin-bottom: 12px;
}

.chapter-tag span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--c-ink-dark);
  color: #fff;
  border-radius: 4px;
  font-size: 10px;
}

.chapter-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-ink-dark);
  text-transform: uppercase;
  margin: 0;
}

.chapter-title.big-line {
  display: flex;
  flex-direction: column;
}

.chapter-title .muted { color: var(--c-ink-muted-dark); }

.chapter-desc {
  margin-top: 8px;
  font-size: 14px;
  color: var(--c-ink-muted-dark);
  max-width: 460px;
}

/* ============================================
   Chapter 1: HERO 2-column big
   ============================================ */
.works-chapter__grid--two {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.proj--big {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(10,20,36,0.06);
  transition: transform .6s var(--ease-out), box-shadow .6s var(--ease-out);
  will-change: transform;
}

.proj--big:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.proj__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1a1a;
}

.proj__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out), filter .6s var(--ease-out);
  will-change: transform;
}

.proj--big:hover .proj__media img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.proj__info {
  padding: 20px 22px 24px;
}

.proj__info h4 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--c-ink-dark);
  letter-spacing: -0.01em;
}

.proj__info p {
  font-size: 13px;
  color: rgba(10,20,36,0.6);
  margin-bottom: 16px;
  line-height: 1.6;
}

.proj__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-ink-dark);
  border-top: 1px solid rgba(10,20,36,0.15);
  padding-top: 12px;
  width: 100%;
  justify-content: space-between;
  transition: color .3s var(--ease-soft);
}

.proj__link:hover { color: var(--c-accent); }

/* ============================================
   Chapter 2: FLOAT GALLERY (3D)
   ============================================ */
.works-chapter--float {
  background-color: #00942e;
  background-image:
    linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  padding: 0;
  min-height: 130vh;
  perspective: 1800px;
  perspective-origin: 50% 50%;
}

.works-chapter__sticky--float {
  position: relative;
  top: 0;
  margin: 0;
  padding: 80px var(--pad-x) 0;
  max-width: var(--max-width);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  pointer-events: auto;
}

.float-scene {
  position: relative;
  width: 100%;
  height: 90vh;
  margin: 0 auto;
  max-width: var(--max-width);
  transform-style: preserve-3d;
}

.float-card {
  position: absolute;
  width: 320px;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04);
  will-change: transform;
  transform-style: preserve-3d;
  transition: box-shadow .4s var(--ease-soft);
}

.float-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.float-card:nth-child(1) { top: 10%; left: 8%;  transform: rotate(-8deg) translateZ(40px); }
.float-card:nth-child(2) { top: 5%;  left: 35%; transform: rotate(3deg)  translateZ(120px); width: 380px; height: 260px;}
.float-card:nth-child(3) { top: 18%; right: 8%; transform: rotate(7deg)  translateZ(60px); }
.float-card:nth-child(4) { top: 45%; left: 20%; transform: rotate(-3deg) translateZ(80px); width: 280px; height: 200px;}
.float-card:nth-child(5) { top: 50%; right: 18%; transform: rotate(10deg) translateZ(20px); width: 360px; height: 240px;}
.float-card:nth-child(6) { top: 65%; left: 50%; transform: translateX(-50%) rotate(-5deg) translateZ(100px); width: 420px; height: 280px;}

.float-caption {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-ink-muted-dark);
  text-transform: uppercase;
}

/* ============================================
   Chapter 3: GALLERY 3x2
   ============================================ */
.works-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.g-item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(10,20,36,0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), opacity .4s var(--ease-out);
}

.g-item.is-hidden {
  display: none;
}

.g-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.g-item__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
}

.g-item__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.g-item:hover .g-item__media img { transform: scale(1.06); }

.g-item__meta {
  padding: 14px 16px 18px;
  position: relative;
}

.g-item__meta .num {
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: rgba(10,20,36,0.4);
}

.g-item__meta h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--c-ink-dark);
  letter-spacing: 0.02em;
}

.g-item__meta small {
  font-size: 11px;
  color: rgba(10,20,36,0.5);
  letter-spacing: 0.05em;
}

/* ============================================
   Chapter 4: BANNER (参考图6)
   ============================================ */
.works-chapter--banner {
  background: var(--c-bg-light-2);
}

.banner-card {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(120deg, #3034e0 0%, #1a1cc7 100%);
  color: #fff;
  padding: 80px 80px 60px;
  isolation: isolate;
}

.banner-card__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255, 200, 100, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 90%, rgba(255, 100, 200, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.banner-card__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
}

.banner-card__content > h3,
.banner-card__content > p,
.banner-card__content > .btn-light,
.banner-card__content > .banner-tag {
  grid-column: 1;
}

.banner-tag {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  justify-self: end;
  grid-column: 2 !important;
  grid-row: 1;
}

.banner-card__content h3 {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  grid-row: 2;
}

.banner-card__content p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  max-width: 520px;
  grid-row: 3;
}

.btn-light { grid-row: 4; }

.banner-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  grid-column: 2;
  grid-row: 2 / span 3;
  align-self: end;
  justify-self: end;
}

.blogo {
  width: 110px; height: 110px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--c-ink-dark);
  text-align: center;
  padding: 8px;
}

.blogo:nth-child(1) { background: #c8e64a; font-family: 'Inter'; }
.blogo:nth-child(2) { background: #cfa87a; font-family: 'Georgia'; }
.blogo:nth-child(3) { background: #f5d23b; font-family: 'Brush Script MT'; font-style: italic; font-weight: 700; }
.blogo:nth-child(4) { background: #5a1a1a; color: #fff; font-family: 'Inter'; }

/* ============================================
   Chapter 5: REVIEWS (参考图7)
   ============================================ */
.works-chapter--reviews {
  background-color: #00942e;
  background-image:
    linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  padding-top: 20px;
  padding-bottom: 133px;
  min-height: 1020px;
}

.reviews-stage {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px var(--pad-x);
  height: 520px;
  perspective: 1600px;
}

.rv-card {
  position: absolute;
  width: 280px;
  background: #d8d4cc;
  border-radius: 8px;
  padding: 24px 22px;
  color: var(--c-ink-dark);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  transition: transform .6s var(--ease-out);
  will-change: transform;
}

.rv-card:nth-child(odd) { background: #fff; }
.rv-card:nth-child(even) { background: #aaa49a; color: #fff; }
.rv-card:nth-child(even) h6, .rv-card:nth-child(even) strong { color: #fff; }
.rv-card:nth-child(even) small { color: rgba(255,255,255,0.7); }
.rv-card:nth-child(even) .rv-stars { color: #f5d23b; }

.rv-card--1 { top: 30px;  left: 8%;   transform: rotate(-6deg); }
.rv-card--2 { top: 0;     left: 30%;  transform: rotate(3deg); z-index: 3; background: #fff !important; color: var(--c-ink-dark);}
.rv-card--3 { top: 50px;  left: 52%;  transform: rotate(-2deg); z-index: 2;}
.rv-card--4 { top: 20px;  right: 6%;  transform: rotate(5deg); z-index: 4;}

.rv-card-2--1 { top: 30px;  left: 8%;   transform: rotate(-6deg); }
.rv-card-2--2 { top: 0;     left: 30%;  transform: rotate(3deg); z-index: 3; background: #fff !important; color: var(--c-ink-dark);}
.rv-card-2--3 { top: 50px;  left: 52%;  transform: rotate(-2deg); z-index: 2;}
.rv-card-2--4 { top: 20px;  right: 6%;  transform: rotate(5deg); z-index: 4;}

/* === IP 板块漂浮柠檬(2 片) === */
.ip-lemon {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
  z-index: 1;
}
.ip-lemon img { width: 100%; height: auto; display: block; }
.ip-lemon--1 { top: 4%;  left: 3%;  width: 120px; animation: ipLemonFloat1 6s ease-in-out infinite; }
.ip-lemon--2 { top: 60%; right: 3%; width: 140px; animation: ipLemonFloat2 6.5s ease-in-out infinite; }
@keyframes ipLemonFloat1 {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50%      { transform: translateY(-12px) rotate(-3deg); }
}
@keyframes ipLemonFloat2 {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50%      { transform: translateY(-14px) rotate(10deg); }
}

/* === AI 鸭（YSX-IPAI延展 标题下方左对齐） === */
.ai-duck {
  display: block;
  width: 560px;
  height: auto;
  margin: 0;
  align-self: center;
  transform: rotate(-3deg);
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.42));
  animation: aiDuckFloat 5.5s ease-in-out infinite;
  will-change: transform;
}
@keyframes aiDuckFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-18px) rotate(0deg); }
}

/* === YSX-IPAI 延展：左 AI 鸭 + 右 6 张圆角漂浮卡片 === */
.aiext-stage {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  justify-items: end;
  margin-top: -80px;
}

.aiext-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: 100%;
  max-width: 640px;
}

.aiext-card {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  will-change: transform;
  animation: aiextFloat 6s ease-in-out infinite;
}
.aiext-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
}

/* 错峰浮动 + 不同倾斜角度 */
.aiext-card--1 { animation-duration: 6.0s; animation-delay: 0.0s;  transform: rotate(-3deg); }
.aiext-card--2 { animation-duration: 6.4s; animation-delay: -1.0s; transform: rotate( 2deg); }
.aiext-card--3 { animation-duration: 5.8s; animation-delay: -2.0s; transform: rotate(-2deg); }
.aiext-card--4 { animation-duration: 6.2s; animation-delay: -0.6s; transform: rotate( 3deg); }
.aiext-card--5 { animation-duration: 5.6s; animation-delay: -1.6s; transform: rotate(-4deg); }
.aiext-card--6 { animation-duration: 6.5s; animation-delay: -2.4s; transform: rotate( 2deg); }

@keyframes aiextFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}

/* hover 时停浮动、更亮 */
.aiext-card:hover {
  animation-play-state: paused;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
  z-index: 2;
}

@media (max-width: 960px) {
  .aiext-stage {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 32px;
  }
  .aiext-grid { max-width: 520px; }
  .ai-duck { width: 360px; }
}

/* === 04b 板块：左下角柠檬浮片 === */
.aiext-lemon {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32)) brightness(1.05);
}
.aiext-lemon img {
  width: 100%;
  height: auto;
  display: block;
  transform: scaleX(-1);
}
.aiext-lemon--1 {
  top: 4%;
  right: 2%;
  width: 130px;
  animation: aiextLemonFloat1 6s ease-in-out infinite;
}
.aiext-lemon--2 {
  bottom: 1%;
  left: 1%;
  width: 170px;
  animation: aiextLemonFloat2 6.5s ease-in-out infinite;
}
@keyframes aiextLemonFloat1 {
  0%, 100% { transform: translateY(0) scaleX(-1) rotate(8deg); }
  50%      { transform: translateY(-14px) scaleX(-1) rotate(3deg); }
}
@keyframes aiextLemonFloat2 {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-14px) rotate(-10deg); }
}

/* === 04b 两屏之间的分隔(YSX-公园前装置 标题 + 3 张图) === */
.aiext-divider {
  width: 100%;
  min-height: 60vh;
  background-color: #00942e;
  background-image:
    linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  padding: 0 0 40px;
}
.aiext-divider__title {
  max-width: var(--max-width);
  margin: 0 auto 48px;
  padding: 0 var(--pad-x);
  text-align: left;
}

/* 公园前装置:3 张横图(圆角,自适应当前板块宽度) */
.gyq-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  perspective: 1400px;
}
.gyq-card {
  margin: 0;
  border-radius: 18px;
  overflow: visible;
  background: transparent;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.38);
  transform-style: preserve-3d;
  will-change: transform;
  animation: gyqFabricFloat 7s ease-in-out infinite;
}
.gyq-card:nth-child(1) { animation-duration: 6.8s; animation-delay:  0.0s; }
.gyq-card:nth-child(2) { animation-duration: 7.4s; animation-delay: -1.6s; }
.gyq-card:nth-child(3) { animation-duration: 7.0s; animation-delay: -3.2s; }
.gyq-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 18px;
  transform: translateZ(0);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.32));
  transition: filter .35s ease;
}
.gyq-card:hover { animation-play-state: paused; }
.gyq-card:hover img { filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.5)); }

/* === 布飘:轻微 3D 倾斜 + 多轴位移(像被风吹着摆动) === */
@keyframes gyqFabricFloat {
  0%   { transform: translate3d(  0px,   0px, 0) rotate( 0deg)  rotateX( 0deg) rotateY(  0deg) skewX( 0deg); }
  20%  { transform: translate3d(  3px,  -6px, 0) rotate( 1.2deg) rotateX( 1.5deg) rotateY( -2deg) skewX( 0.6deg); }
  40%  { transform: translate3d( -2px,  -3px, 0) rotate( 0.6deg) rotateX(-1deg)   rotateY(  2deg) skewX(-0.4deg); }
  60%  { transform: translate3d(  2px,  -8px, 0) rotate(-1deg)   rotateX( 2deg)   rotateY(  1deg) skewX( 0.8deg); }
  80%  { transform: translate3d( -3px,  -2px, 0) rotate(-0.6deg) rotateX(-1.5deg) rotateY( -1deg) skewX(-0.6deg); }
  100% { transform: translate3d(  0px,   0px, 0) rotate( 0deg)  rotateX( 0deg) rotateY(  0deg) skewX( 0deg); }
}

@media (max-width: 960px) {
  .gyq-grid { grid-template-columns: 1fr; }
}

/* === YSX-公园前装置 下方满屏海报 === */
.gyq-banner {
  width: 100vw;
  height: 100vh;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  background: #000;
}
.gyq-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* === CNY 毛绒公仔:左右 2 张漂浮 GIF(无卡片载体,图本身飘) === */
.cny-doll {
  position: absolute;
  margin: 0;
  background: transparent;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.22));
  will-change: transform;
}
.cny-doll img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}
.cny-doll--1 {
  top: 8%;
  left: -7%;
  transform: translateY(0) rotate(-3deg);
  animation: cnyDollFloat1 6s ease-in-out infinite;
}
.cny-doll--2 {
  top: 56%;
  right: 8%;
  transform: translateY(-50%) rotate(2deg);
  animation: cnyDollFloat2 6.5s ease-in-out infinite;
}
.cny-doll--1 img { width: 680px; }
.cny-doll--2 img { width: 680px; }
@keyframes cnyDollFloat1 {
  0%, 100% { transform: translateY(-50%) rotate(-3deg); }
  50%      { transform: translateY(-54%) rotate(0deg); }
}
@keyframes cnyDollFloat2 {
  0%, 100% { transform: translateY(-50%) rotate(2deg); }
  50%      { transform: translateY(-46%) rotate(4deg); }
}
.cny-doll:hover {
  animation-play-state: paused;
  z-index: 2;
}

/* === CNY-Q3包装设计:左 2 竖图 + 右 2 横图,纯 GIF 漂浮 === */
.q3-pack {
  position: absolute;
  margin: 0;
  background: transparent;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.22));
  will-change: transform;
}
.q3-pack img {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}
.q3-pack--1 { /* 左上:原味竖图,顶面 */
  top: 6%;
  left: 6%;
  transform: rotate(-3deg);
  animation: q3Float1 6.0s ease-in-out infinite;
  z-index: 2;
}
.q3-pack--2 { /* 巧克力竖图,只跟原味一点点重叠 */
  top: 10%;
  left: 28%;
  transform: rotate(2deg);
  animation: q3Float2 6.4s ease-in-out infinite;
  z-index: 1;
}
.q3-pack--3 { /* 右上:组-84 横图,跟 --4 对齐 + 靠头 + 靠右 */
  top: 14%;
  right: -2%;
  transform: rotate(1.5deg);
  animation: q3Float3 5.8s ease-in-out infinite;
}
.q3-pack--4 { /* 右下:组-85 横图,跟 --3 对齐 + 上下分开 */
  top: 48%;
  right: -2%;
  transform: rotate(-2deg);
  animation: q3Float4 6.6s ease-in-out infinite;
}
.q3-pack--1 img { width: 280px; }
.q3-pack--2 img { width: 280px; }
.q3-pack--3 img { width: 640px; }
.q3-pack--4 img { width: 640px; }
@keyframes q3Float1 {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50%      { transform: translateY(-12px) rotate(-1deg); }
}
@keyframes q3Float2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%      { transform: translateY(-10px) rotate(4deg); }
}
@keyframes q3Float3 {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50%      { transform: translateY(-10px) rotate(-0.5deg); }
}
@keyframes q3Float4 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-12px) rotate(1deg); }
}
.q3-pack:hover {
  animation-play-state: paused;
  z-index: 2;
}

/* === Q4-新品KV:3 张同位置手动切换 + 漂浮 + 圆角卡片 === */
.kv-carousel {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 7% auto 0;
  aspect-ratio: 16 / 9;
}
.kv-card {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  opacity: 0;
  scale: 0.96;
  z-index: 1;
  transition: opacity 0.55s ease, scale 0.55s ease;
  animation: kvFloat 6s ease-in-out infinite;
}
.kv-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.kv-card--active {
  opacity: 1;
  scale: 1;
  z-index: 3;
}
.kv-card--1 { animation-delay: 0s; }
.kv-card--2 { animation-delay: -2s; }
.kv-card--3 { animation-delay: -4s; }
@keyframes kvFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}
/* 左右切换按钮 */
.kv-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-ink-dark, #1a1a1a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  z-index: 4;
  transition: background 0.2s ease, transform 0.2s ease;
}
.kv-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}
.kv-btn--prev { left: 14px; }
.kv-btn--next { right: 14px; }
/* 底部指示点 */
.kv-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  z-index: 4;
}
.kv-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease, width 0.25s ease;
}
.kv-dot--active {
  background: #ffffff;
  width: 22px;
  border-radius: 4px;
}
.kv-dot:hover { background: rgba(255, 255, 255, 0.85); }

/* === 满屏海报 === */
.works-chapter--banner {
  padding: 0;
}
.full-banner {
  width: 100vw;
  height: 100vh;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  overflow: hidden;
  background: #000;
}
.full-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* === 04b 第 2 屏(无 6 张图):AI 鸭单独居中 === */
.aiext-stage--solo {
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: 40vh;
  padding: 60px 24px 60px;
}

/* === YSX-POPUP 板块:4 张错落漂浮圆角卡片(2×2) === */
.popup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.popup-card {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  will-change: transform;
  animation: popupFloat 6s ease-in-out infinite;
}
.popup-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

/* 左边两列(1/3):白底卡片 + 图片居中 */
.popup-card--left {
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.popup-card--left img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* 错峰浮动 + 不同倾斜角度 */
.popup-card--1 { animation-duration: 6.0s; animation-delay:  0.0s; transform: rotate(-3deg); }
.popup-card--2 { animation-duration: 6.4s; animation-delay: -1.0s; transform: rotate( 2deg); }
.popup-card--3 { animation-duration: 5.8s; animation-delay: -2.0s; transform: rotate(-2deg); }
.popup-card--4 { animation-duration: 6.5s; animation-delay: -1.4s; transform: rotate( 3deg); }

@keyframes popupFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}

/* hover 时停浮动、更亮 */
.popup-card:hover {
  animation-play-state: paused;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.42);
  z-index: 2;
}

@media (max-width: 960px) {
  .popup-grid { grid-template-columns: 1fr; max-width: 520px; }
}

/* === IP 选择器(3 只鸭) === */
.ip-selector {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 24px auto 32px;
  flex-wrap: wrap;
  max-width: 1100px;
}
.ip-card {
  background: transparent;
  border: 3px solid transparent;
  border-radius: 18px;
  padding: 14px 14px 16px;
  cursor: pointer;
  transition: transform .3s var(--ease-out), border-color .25s, background .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font: inherit;
  color: inherit;
  position: relative;
}
.ip-card__num {
  position: absolute;
  top: 8px; left: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}
.ip-card img {
  width: 280px;
  height: 280px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}
.ip-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.ip-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.06);
}
.ip-card.is-active {
  border-color: #f5d23b;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.ip-card.is-active .ip-card__name {
  color: #f5d23b;
}
.ip-card.is-active .ip-card__num {
  color: #f5d23b;
}

.ip-current {
  text-align: center;
  margin: 0 auto 24px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.ip-current__label {
  margin-right: 8px;
}
.ip-current__name {
  color: #f5d23b;
  font-weight: 700;
  font-size: 20px;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}

.ip-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.ip-gallery__item {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease-out);
  aspect-ratio: 1 / 1;
}
.ip-gallery__item:hover {
  transform: translateY(-4px) scale(1.02);
}
.ip-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.rv-card h6 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  color: rgba(10,20,36,0.6);
}

.rv-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}

.rv-card p {
  font-size: 12.5px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.rv-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 12px;
}

.rv-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #888, #555);
  border-radius: 50%;
  flex-shrink: 0;
}

.rv-author strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.rv-author small {
  font-size: 10px;
  color: rgba(10,20,36,0.5);
}

/* ============================================
   Chapter 6: TEAM (参考图8)
   ============================================ */
.works-chapter--team {
  background: var(--c-bg-light-2);
  padding: 100px 0 120px;
}

/* === Chapter 6 MINIKING 故宫联名礼盒(独立深红底) === */
.works-chapter--miniking {
  background-color: #841d0a;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  padding: 100px 0 120px;
}

/* 06 板块标题反白 */
.works-chapter--miniking .chapter-title,
.works-chapter--miniking .chapter-tag,
.works-chapter--miniking .chapter-tag span {
  color: #ffffff;
}

/* 06 MINIKING 内部 team-stage 拉宽(给左右两张大卡片留位置) */
.works-chapter--miniking .team-stage {
  max-width: 1440px;
}

/* 08 美心-美心卷KV(深灰底 #282828 + 网格 + 反白,覆盖 miniking 的红色) */
.works-chapter--mx {
  background-color: #282828;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
}
.works-chapter--mx .chapter-title,
.works-chapter--mx .chapter-tag,
.works-chapter--mx .chapter-tag span {
  color: #ffffff;
}

/* 09 UR-天猫二楼(宝蓝底 #002fa8 + 网格 + 反白) */
.works-chapter--ur {
  background-color: #002fa8;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
}
.works-chapter--ur .chapter-title,
.works-chapter--ur .chapter-tag,
.works-chapter--ur .chapter-tag span {
  color: #ffffff;
}

/* 10 罗曼诺-KV&周边&快闪(墨绿底 #065729 + 网格 + 反白) */
.works-chapter--romano {
  background-color: #065729;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
}
.works-chapter--romano .chapter-title,
.works-chapter--romano .chapter-tag,
.works-chapter--romano .chapter-tag span {
  color: #ffffff;
}

/* 11 可比克-CNY礼盒提案(深酒红底 #831111 + 网格 + 反白) */
.works-chapter--copico {
  background-color: #831111;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
}
.works-chapter--copico .chapter-title,
.works-chapter--copico .chapter-tag,
.works-chapter--copico .chapter-tag span {
  color: #ffffff;
}

/* 13 琪朗-详情页设计(深蓝黑底 #030a1f + 网格 + 反白) */
.works-chapter--kinglong {
  background-color: #030a1f;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
}
.works-chapter--kinglong .chapter-title,
.works-chapter--kinglong .chapter-tag,
.works-chapter--kinglong .chapter-tag span {
  color: #ffffff;
}

/* === 13 琪朗-详情页设计 切换器(3 张 16:9 详情页 + 底部按钮) === */
.kinglong-tabs {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.kinglong-tabs__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #0a1530;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.kinglong-tabs__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.kinglong-tabs__slide.is-active {
  opacity: 1;
  visibility: visible;
}
.kinglong-tabs__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.kinglong-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.kinglong-tabs__btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.kinglong-tabs__btn:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-1px);
}
.kinglong-tabs__btn.is-active {
  background: #ffffff;
  color: #030a1f;
  border-color: #ffffff;
}

/* 14 琪朗-详情页海报:卡片形式,靠左,海报比例 1:1.78 */
.kinglong-posters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 28px;
  padding: 0 24px;
}
.kinglong-tabs--poster {
  width: 380px;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.kinglong-tabs--poster .kinglong-tabs__stage {
  aspect-ratio: 1 / 1.78;
  border-radius: 18px;
  background: #0a1530;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.kinglong-tabs--poster .kinglong-tabs__slide {
  border-radius: 18px;
  overflow: hidden;
}
.kinglong-tabs--poster .kinglong-tabs__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* 第 3 组 12 张琪朗海报:跟 1-2 组同宽,左右箭头按钮 */
.kinglong-tabs--poster-12 {
  width: 380px;
  max-width: 100%;
}
.kinglong-tabs__nav--arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}
.kinglong-tabs__btn--prev,
.kinglong-tabs__btn--next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.kinglong-tabs__btn--prev:hover,
.kinglong-tabs__btn--next:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(0);
}
.kinglong-tabs__btn--prev svg,
.kinglong-tabs__btn--next svg {
  display: block;
}
.kinglong-tabs__count {
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  min-width: 70px;
  text-align: center;
}
.kinglong-tabs__cur {
  color: #ffffff;
  font-size: 15px;
}

/* === 14 板块 顺丰插画 10 张 卡片式 左右切换 === */
.kinglong-tabs--sf {
  width: 450px;
  max-width: 100%;
  margin: 0;
}
.kinglong-tabs--sf .kinglong-tabs__stage {
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  background: #0a1530;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  overflow: hidden;
  position: relative;
}
.kinglong-tabs--sf .kinglong-tabs__slide {
  border-radius: 22px;
  overflow: hidden;
}
.kinglong-tabs--sf .kinglong-tabs__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.kinglong-tabs--sf .kinglong-tabs__nav--arrows {
  margin-top: 28px;
  gap: 24px;
}
.kinglong-tabs__middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 110px;
}
.kinglong-tabs__label {
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffff;
}
.kinglong-tabs--sf .kinglong-tabs__count {
  min-width: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.kinglong-tabs--newworld {
  margin-top: 0;
  width: calc(100% - 60px);  /* 比同列卡片小 60px */
  margin-left: auto;
  margin-right: auto;
  transform: translateX(-17%);  /* 整体左移 17% (自身宽度) */
}
.kinglong-tabs--newworld .kinglong-tabs__stage {
  aspect-ratio: 887 / 1920;  /* 源图比例,比 9:16 更细长 */
}

/* 14 板块 任鸟飞插画 4:5 比例 */
.kinglong-tabs--bird {
  margin-top: 0;
  width: calc(100% + 110px);  /* 比同列卡片大 110px */
  max-width: none;
  margin-left: -110px;  /* 多出的 110px 吃进左边,不切右边 */
}
.kinglong-tabs--bird .kinglong-tabs__stage {
  aspect-ratio: 3 / 4;  /* 鸟百科卡 4:5,实际略偏 3:4 */
}

/* 14 板块 顺丰 + 新世界 + 任鸟飞 三组插画并排 */
.kinglong-illust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  padding-left: var(--pad-x);
  max-width: calc(100vw - var(--pad-x));
  box-sizing: border-box;
}
.kinglong-illust-row > .kinglong-tabs {
  min-width: 0;
}

/* === 14 板块 响应式 === */

/* 1024 - 1280 桌面:缩小鸟卡溢出 */
@media (max-width: 1280px) {
  .kinglong-tabs--bird {
    width: calc(100% + 60px);
    margin-left: -60px;
  }
  .kinglong-tabs--newworld {
    width: calc(100% - 30px);
    transform: translateX(-10%);
  }
  .kinglong-illust-row {
    gap: 20px;
  }
}

/* 768 - 1024 平板:3 列 → 2 列,鸟卡与 NW 偏移归零 */
@media (max-width: 1024px) {
  .kinglong-illust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .kinglong-tabs--bird,
  .kinglong-tabs--sf {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .kinglong-tabs--newworld {
    width: 100%;
    max-width: 100%;
    margin: 0;
    transform: none;
  }
}

/* < 768 手机:2 列 → 1 列 */
@media (max-width: 768px) {
  .kinglong-illust-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .kinglong-tabs--bird,
  .kinglong-tabs--sf,
  .kinglong-tabs--newworld {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    transform: none;
  }
}

/* === 14 板块上方满屏插画 banner(独立 section,无 chapter 底色) === */
.kinglong-illust-banner {
  position: relative;
  width: 100vw;
  height: 100vh;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  background: #ffd93d;  /* 黄色背景兜底,跟插画主色调一致 */
}
.kinglong-illust-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}
/* Purcotton banner:蓝色天空兜底 */
.kinglong-illust-banner--purcotton {
  background: #8dd0e8;
}

/* === 13 琪朗-详情页草图 18 张图瀑布流(无卡片,直接展示) === */
.kinglong-masonry {
  column-count: 4;
  column-gap: 16px;
  padding: 0 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.kinglong-masonry__item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  margin: 0 0 16px;
  overflow: hidden;
}
.kinglong-masonry__item img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
/* 整屏/超细草图(11, 15-18 整屏 + 12-14 超细)按 max-height 自动缩小,不再超长 */
.kinglong-masonry__item--wide,
.kinglong-masonry__item--narrow {
  max-height: 720px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.kinglong-masonry__item--wide img,
.kinglong-masonry__item--narrow img {
  width: auto;
  max-width: 100%;
  max-height: 720px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .kinglong-masonry { column-count: 3; column-gap: 12px; }
}
@media (max-width: 768px) {
  .kinglong-masonry { column-count: 2; padding: 0 var(--pad-x); }
}
@media (max-width: 480px) {
  .kinglong-masonry { column-count: 1; }
}
/* 11 可比克板块 team-stage 撑高(给右边两张 3:2 上下排版留位置) */
.works-chapter--copico .team-stage {
  min-height: 610px;
}

/* 12 复方阿胶浆-地铁包站(在 copico 深酒红基础上再覆一层 #e5423d 红底) */
.works-chapter--ejiao {
  background-color: #e5423d;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
}
.works-chapter--ejiao .chapter-title,
.works-chapter--ejiao .chapter-tag,
.works-chapter--ejiao .chapter-tag span {
  color: #ffffff;
}

/* 08 美心卷 KV 卡片(横+竖 2 张,圆角,浮动) */
.mx-kv {
  position: absolute;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
  transform-origin: center center;
}
.mx-kv img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.mx-kv--1 {
  top: 14%;
  left: 4%;
  width: 960px;
  aspect-ratio: 16 / 9;
  z-index: 1;
  transform: rotate(-2deg);
  animation: mxKvFloat1 6.2s ease-in-out infinite;
}
.mx-kv--2 {
  top: 8%;
  right: 1%;
  width: 360px;
  aspect-ratio: 9 / 16;
  z-index: 2;
  transform: rotate(2deg);
  animation: mxKvFloat2 6.6s ease-in-out infinite;
}
@keyframes mxKvFloat1 {
  0%, 100% { transform: translateY(0)    rotate(-2deg); }
  50%      { transform: translateY(-16px) rotate(-0.8deg); }
}
@keyframes mxKvFloat2 {
  0%, 100% { transform: translateY(0)    rotate(2deg); }
  50%      { transform: translateY(-20px) rotate(0.8deg); }
}

/* 08b 美心卷-包店&装置 2 张 GIF 卡片(左右,圆角,浮动) */
.bd-card {
  position: absolute;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
  transform-origin: center center;
}
.bd-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.bd-card--bd {
  top: 14%;
  left: -1%;
  width: 820px;
  aspect-ratio: 16 / 9;
  z-index: 1;
  transform: rotate(-2deg);
  animation: bdFloat1 6.2s ease-in-out infinite;
}
.bd-card--zz {
  top: 18%;
  right: -1%;
  width: 570px;
  z-index: 2;
  transform: rotate(2deg);
  animation: bdFloat2 6.6s ease-in-out infinite;
  background: #ffffff;
  height: auto;
}
.bd-card--zz img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 22px;
}
@keyframes bdFloat1 {
  0%, 100% { transform: translateY(0)    rotate(-2deg); }
  50%      { transform: translateY(-16px) rotate(-0.8deg); }
}
@keyframes bdFloat2 {
  0%, 100% { transform: translateY(0)    rotate(2deg); }
  50%      { transform: translateY(-20px) rotate(0.8deg); }
}

/* 09 UR-天猫二楼 2 张竖图卡片(并排左边,圆角,浮动) */
.urtm-card {
  position: absolute;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.36);
  transform-origin: center center;
}
.urtm-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.urtm-card--1 {
  top: 8%;
  left: 2%;
  width: 320px;
  aspect-ratio: 9 / 16;
  z-index: 1;
  transform: rotate(-3deg);
  animation: urtmFloat1 6.2s ease-in-out infinite;
}
.urtm-card--2 {
  top: 12%;
  left: 25%;
  width: 320px;
  aspect-ratio: 9 / 16;
  z-index: 2;
  transform: rotate(2deg);
  animation: urtmFloat2 6.6s ease-in-out infinite;
}
.urtm-card--3 {
  top: 4%;
  left: 60%;
  width: 300px;
  aspect-ratio: 887 / 1920;
  z-index: 3;
  transform: translateX(-50%) rotate(0deg);
  animation: urtmFloat3 5.6s ease-in-out infinite;
}
@keyframes urtmFloat1 {
  0%, 100% { transform: translateY(0)    rotate(-3deg); }
  50%      { transform: translateY(-18px) rotate(-1.4deg); }
}
@keyframes urtmFloat2 {
  0%, 100% { transform: translateY(0)    rotate(2deg); }
  50%      { transform: translateY(-22px) rotate(0.8deg); }
}
@keyframes urtmFloat3 {
  0%, 100% { transform: translateX(-50%) translateY(0)    rotate(0deg); }
  50%      { transform: translateX(-50%) translateY(-24px) rotate(0deg); }
}

/* 09 右上+右下 4 张(2×2 网格,圆角,上下浮动) */
.urgq-card {
  position: absolute;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  transform-origin: center center;
}
.urgq-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.urgq-card--1 { top: 0%;  right: 17%; width: 140px; aspect-ratio: 9 / 19.5; z-index: 1; transform: rotate(-2.5deg); animation: urgqFloat1 5.8s ease-in-out infinite; }
.urgq-card--2 { top: 4%; right: 4%;  width: 140px; aspect-ratio: 9 / 19.5; z-index: 2; transform: rotate( 1.8deg); animation: urgqFloat2 6.2s ease-in-out infinite; }
.urgq-card--3 { top: 52%; right: 17%; width: 140px; aspect-ratio: 9 / 19.5; z-index: 1; transform: rotate( 1.5deg); animation: urgqFloat3 6.4s ease-in-out infinite; }
.urgq-card--4 { top: 56%; right: 4%;  width: 140px; aspect-ratio: 9 / 19.5; z-index: 2; transform: rotate(-2deg);  animation: urgqFloat4 5.9s ease-in-out infinite; }

@keyframes urgqFloat1 { 0%, 100% { transform: translateY(0)    rotate(-2.5deg); } 50% { transform: translateY(-10px) rotate(-1.0deg); } }
@keyframes urgqFloat2 { 0%, 100% { transform: translateY(0)    rotate( 1.8deg); } 50% { transform: translateY(-12px) rotate( 0.6deg); } }
@keyframes urgqFloat3 { 0%, 100% { transform: translateY(0)    rotate( 1.5deg); } 50% { transform: translateY(-11px) rotate( 0.4deg); } }
@keyframes urgqFloat4 { 0%, 100% { transform: translateY(0)    rotate(-2deg);  } 50% { transform: translateY(-13px) rotate(-0.8deg); } }

/* 09b UR-天猫礼盒 5 张横图(上 3 + 下 2,居中布局,圆角,浮动) */
.urlh-card {
  position: absolute;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.30);
  transform-origin: center center;
}
.urlh-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.urlh-card--1 { top: 8%;  left: 2%;  width: 440px; aspect-ratio: 16 / 9; z-index: 1; transform: rotate(0deg); animation: urlhFloat1 5.8s ease-in-out infinite; }
.urlh-card--2 { top: 8%;  left: 33%; width: 440px; aspect-ratio: 16 / 9; z-index: 2; transform: rotate(0deg); animation: urlhFloat2 6.2s ease-in-out infinite; }
.urlh-card--3 { top: 8%;  left: 64%; width: 440px; aspect-ratio: 16 / 9; z-index: 1; transform: rotate(0deg); animation: urlhFloat3 6.4s ease-in-out infinite; }
/* 下 2 张: card--4 对齐 card--1, card--5 对齐 card--2, card--6 对齐 card--3 */
.urlh-card--4 { top: 51%; left: 2%;  width: 440px; aspect-ratio: 16 / 9; z-index: 1; transform: rotate(0deg); animation: urlhFloat4 5.9s ease-in-out infinite; }
.urlh-card--5 { top: 51%; left: 33%; width: 440px; aspect-ratio: 16 / 9; z-index: 2; transform: rotate(0deg); animation: urlhFloat5 6.1s ease-in-out infinite; }
.urlh-card--6 { top: 51%; left: 64%; width: 440px; aspect-ratio: 5 / 4;  z-index: 1; transform: rotate(0deg); animation: urlhFloat6 6.3s ease-in-out infinite; }

@keyframes urlhFloat1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes urlhFloat2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes urlhFloat3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }
@keyframes urlhFloat4 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes urlhFloat5 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes urlhFloat6 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* 10 罗曼诺 KV 2 张横图(平排,卡片,圆角,无动效) */
.rom-card {
  position: absolute;
  top: -2%;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
  transform: rotate(0deg);
}
.rom-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}
.rom-card--1 {
  left: 4%;
  width: 740px;
}
.rom-card--2 {
  right: 1%;
  width: 620px;
}

/* 10 罗曼诺长条横幅(跟 rom-card 同样 figure 包裹 + 同样的 4%/1% 边距,左右完美对齐) */
.romano-banner {
  position: absolute;
  top: 65%;
  left: 4%;
  right: 1%;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}
.romano-banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

/* 11 可比克-礼盒提案轮播(6 张,左边,按钮切换,圆角卡片,上下漂浮) */
.copico-carousel {
  position: absolute;
  top: 8%;
  left: 4%;
  width: 960px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
  z-index: 1;
  animation: copicoCarouselFloat 6.2s ease-in-out infinite;
}
.copico-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.copico-card {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  opacity: 0;
  scale: 0.97;
  z-index: 1;
  transition: opacity 0.55s ease, scale 0.55s ease;
}
.copico-card--active {
  opacity: 1;
  scale: 1;
  z-index: 2;
}
.copico-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.copico-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #831111;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  transition: transform .25s ease, background .25s ease;
}
.copico-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}
.copico-btn--prev { left: 12px; }
.copico-btn--next { right: 12px; }
.copico-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.copico-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, width .25s ease;
}
.copico-dot--active {
  background: #ffffff;
  width: 22px;
  border-radius: 4px;
}
@keyframes copicoCarouselFloat {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(0.4deg); }
}

/* 11 可比克-右边两张陈列场景图(上下排版,卡片,错峰上下浮动) */
.copico-side-card {
  position: absolute;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}
.copico-side-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.copico-side-card--1 {
  top: 8%;
  right: 1%;
  width: 380px;
  aspect-ratio: 3 / 2;
  z-index: 1;
  transform: rotate(0deg);
  animation: copicoSideFloat1 6.2s ease-in-out infinite;
}
.copico-side-card--2 {
  top: 55%;
  right: 1%;
  width: 380px;
  aspect-ratio: 3 / 2;
  z-index: 2;
  transform: rotate(0deg);
  animation: copicoSideFloat2 5.8s ease-in-out infinite;
}
@keyframes copicoSideFloat1 {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(0.4deg); }
}
@keyframes copicoSideFloat2 {
  0%, 100% { transform: translateY(0)    rotate(-0.4deg); }
  50%      { transform: translateY(-10px) rotate(0.3deg); }
}

/* 12 复方阿胶浆-地铁包站(2×2 网格 4 张,圆角卡片,错峰浮动) */
.ejiao-grid {
  position: absolute;
  top: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(2, 720px);
  grid-template-rows: repeat(2, 405px);
  gap: 22px 22px;
  z-index: 1;
}
.ejiao-card {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}
.ejiao-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.ejiao-card--1 { animation: ejiaoFloat1 5.8s ease-in-out infinite; }
.ejiao-card--2 { animation: ejiaoFloat2 6.2s ease-in-out infinite; }
.ejiao-card--3 { animation: ejiaoFloat3 6.4s ease-in-out infinite; }
.ejiao-card--4 { animation: ejiaoFloat4 5.9s ease-in-out infinite; }

/* 12 复方阿胶浆-地铁包站 长条横图(卡皮巴拉 7 格,圆角,浮动) */
.ejiao-strip {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1410px;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
  z-index: 2;
}
.ejiao-strip img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
}
.ejiao-strip--1 { animation: ejiaoStripFloat 6.1s ease-in-out infinite; }
@keyframes ejiaoStripFloat {
  0%, 100% { transform: translateX(-50%) translateY(0)    rotate(0.2deg); }
  50%      { transform: translateX(-50%) translateY(-10px) rotate(-0.3deg); }
}

/* 12 复方阿胶浆-地铁包站 三张现场实景(并排,圆角,错峰浮动) */
.ejiao-trio {
  position: absolute;
  top: 340px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  z-index: 2;
}
.ejiao-trio__card {
  position: relative;
  margin: 0;
  width: 460px;
  height: 308px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}
.ejiao-trio__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.ejiao-trio__card--1 { animation: ejiaoFloat1 5.7s ease-in-out infinite; }
.ejiao-trio__card--2 { animation: ejiaoFloat2 6.3s ease-in-out infinite; }
.ejiao-trio__card--3 { animation: ejiaoFloat3 6.0s ease-in-out infinite; }

/* 12b 复方阿胶浆-病毒视频(竖屏,无卡片,直接放,左边) */
.ejiao-video {
  position: absolute;
  top: 0px;
  left: 4%;
  width: 560px;
  height: auto;
  display: block;
  z-index: 2;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.ejiao-video--1 { animation: ejiaoFloat1 6.0s ease-in-out infinite; }

/* 12b 病毒视频分镜(3 行 × 5 列,右边,圆角,错峰浮动) */
.ejiao-frames {
  position: absolute;
  top: 20px;
  right: 0%;
  display: grid;
  grid-template-columns: repeat(5, 150px);
  grid-template-rows: repeat(3, 225px);
  gap: 12px 12px;
  z-index: 2;
}
.ejiao-frame {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}
.ejiao-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.ejiao-frame--1  { animation: ejiaoFloat1 5.6s ease-in-out infinite; }
.ejiao-frame--2  { animation: ejiaoFloat2 6.0s ease-in-out infinite; }
.ejiao-frame--3  { animation: ejiaoFloat3 6.4s ease-in-out infinite; }
.ejiao-frame--4  { animation: ejiaoFloat1 5.9s ease-in-out infinite; }
.ejiao-frame--5  { animation: ejiaoFloat2 6.3s ease-in-out infinite; }
.ejiao-frame--6  { animation: ejiaoFloat3 5.8s ease-in-out infinite; }
.ejiao-frame--7  { animation: ejiaoFloat1 6.5s ease-in-out infinite; }
.ejiao-frame--8  { animation: ejiaoFloat2 5.7s ease-in-out infinite; }
.ejiao-frame--9  { animation: ejiaoFloat3 6.1s ease-in-out infinite; }
.ejiao-frame--10 { animation: ejiaoFloat1 6.2s ease-in-out infinite; }
.ejiao-frame--11 { animation: ejiaoFloat2 5.9s ease-in-out infinite; }
.ejiao-frame--12 { animation: ejiaoFloat3 6.3s ease-in-out infinite; }
.ejiao-frame--13 { animation: ejiaoFloat1 5.8s ease-in-out infinite; }
.ejiao-frame--14 { animation: ejiaoFloat2 6.4s ease-in-out infinite; }
.ejiao-frame--15 { animation: ejiaoFloat3 6.0s ease-in-out infinite; }
@keyframes ejiaoFloat1 {
  0%, 100% { transform: translateY(0)    rotate(0.3deg); }
  50%      { transform: translateY(-12px) rotate(-0.4deg); }
}
@keyframes ejiaoFloat2 {
  0%, 100% { transform: translateY(0)    rotate(-0.4deg); }
  50%      { transform: translateY(-10px) rotate(0.5deg); }
}
@keyframes ejiaoFloat3 {
  0%, 100% { transform: translateY(0)    rotate(0.4deg); }
  50%      { transform: translateY(-14px) rotate(-0.3deg); }
}
@keyframes ejiaoFloat4 {
  0%, 100% { transform: translateY(0)    rotate(-0.3deg); }
  50%      { transform: translateY(-9px)  rotate(0.4deg); }
}

/* 07 冰魔粒倒计时海报(竖图卡片,左,圆角,浮动) */
.dj-card {
  position: absolute;
  top: 8%;
  left: 6%;
  z-index: 2;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
  transform: rotate(-3deg);
  animation: djCardFloat 6.2s ease-in-out infinite;
}
.dj-card img {
  display: block;
  height: 600px;
  width: auto;
  border-radius: 22px;
}
@keyframes djCardFloat {
  0%, 100% { transform: translateY(0)    rotate(-3deg); }
  50%      { transform: translateY(-18px) rotate(-1.5deg); }
}

/* 07 倒计时横板轮播(3 张,右,按钮切换,圆角,浮动) */
.dj-carousel {
  position: absolute;
  top: 18%;
  right: 4%;
  width: 920px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
  z-index: 1;
  animation: djCarouselFloat 6.4s ease-in-out infinite;
}
.dj-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.dj-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  opacity: 0;
  scale: 0.97;
  z-index: 1;
  transition: opacity 0.55s ease, scale 0.55s ease;
}
.dj-slide--active {
  opacity: 1;
  scale: 1;
  z-index: 2;
}
.dj-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.dj-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #841d0a;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  transition: transform .25s ease, background .25s ease;
}
.dj-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}
.dj-btn--prev { left: 12px; }
.dj-btn--next { right: 12px; }
.dj-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.dj-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, width .25s ease;
}
.dj-dot--active {
  background: #ffffff;
  width: 22px;
  border-radius: 4px;
}
@keyframes djCarouselFloat {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(0.4deg); }
}

/* 07b 冰魔粒-音乐节小程序 H5 卡片(竖图,左,圆角,浮动,600px 高) */
.h5-card {
  position: absolute;
  top: 6%;
  left: 6%;
  z-index: 2;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
  transform: rotate(-3deg);
  animation: h5CardFloat 6.2s ease-in-out infinite;
}
.h5-card img {
  display: block;
  height: 600px;
  width: auto;
  border-radius: 22px;
}
@keyframes h5CardFloat {
  0%, 100% { transform: translateY(0)    rotate(-3deg); }
  50%      { transform: translateY(-18px) rotate(-1.5deg); }
}

/* 07b H5 截图网格(10 张,右,2 行 5 列,圆角,每张错峰浮动 + 微旋转) */
.h5-grid {
  position: absolute;
  top: 6%;
  right: 3%;
  display: grid;
  grid-template-columns: repeat(5, 170px);
  grid-template-rows: repeat(2, auto);
  gap: 12px 12px;
  padding-right: 36px;
  z-index: 1;
}
.h5-tile {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  aspect-ratio: 9 / 16;
  transform-origin: center center;
}
.h5-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* 10 张卡片错峰浮动 + 不同旋转角度 */
.h5-tile--1  { animation: h5Float1 5.6s ease-in-out infinite;  transform: rotate(-2.5deg); }
.h5-tile--2  { animation: h5Float2 6.0s ease-in-out infinite;  transform: rotate( 1.8deg); }
.h5-tile--3  { animation: h5Float3 5.8s ease-in-out infinite;  transform: rotate(-1.2deg); }
.h5-tile--4  { animation: h5Float4 6.2s ease-in-out infinite;  transform: rotate( 2.4deg); }
.h5-tile--5  { animation: h5Float5 5.7s ease-in-out infinite;  transform: rotate(-2.0deg); }
.h5-tile--6  { animation: h5Float6 6.4s ease-in-out infinite;  transform: rotate( 1.5deg); }
.h5-tile--7  { animation: h5Float7 5.9s ease-in-out infinite;  transform: rotate(-2.8deg); }
.h5-tile--8  { animation: h5Float8 6.1s ease-in-out infinite;  transform: rotate( 1.0deg); }
.h5-tile--9  { animation: h5Float9 5.8s ease-in-out infinite;  transform: rotate(-1.6deg); }
.h5-tile--10 { animation: h5Float10 6.3s ease-in-out infinite; transform: rotate( 2.2deg); }

@keyframes h5Float1  { 0%, 100% { transform: translateY(0)    rotate(-2.5deg); } 50% { transform: translateY(-10px) rotate(-1.0deg); } }
@keyframes h5Float2  { 0%, 100% { transform: translateY(0)    rotate( 1.8deg); } 50% { transform: translateY(-12px) rotate( 0.8deg); } }
@keyframes h5Float3  { 0%, 100% { transform: translateY(0)    rotate(-1.2deg); } 50% { transform: translateY(-8px)  rotate(-0.4deg); } }
@keyframes h5Float4  { 0%, 100% { transform: translateY(0)    rotate( 2.4deg); } 50% { transform: translateY(-14px) rotate( 1.0deg); } }
@keyframes h5Float5  { 0%, 100% { transform: translateY(0)    rotate(-2.0deg); } 50% { transform: translateY(-10px) rotate(-0.8deg); } }
@keyframes h5Float6  { 0%, 100% { transform: translateY(0)    rotate( 1.5deg); } 50% { transform: translateY(-12px) rotate( 0.4deg); } }
@keyframes h5Float7  { 0%, 100% { transform: translateY(0)    rotate(-2.8deg); } 50% { transform: translateY(-9px)  rotate(-1.2deg); } }
@keyframes h5Float8  { 0%, 100% { transform: translateY(0)    rotate( 1.0deg); } 50% { transform: translateY(-13px) rotate( 0.2deg); } }
@keyframes h5Float9  { 0%, 100% { transform: translateY(0)    rotate(-1.6deg); } 50% { transform: translateY(-11px) rotate(-0.6deg); } }
@keyframes h5Float10 { 0%, 100% { transform: translateY(0)    rotate( 2.2deg); } 50% { transform: translateY(-10px) rotate( 1.0deg); } }

/* 07c 维他奶&粒上皇联名礼盒(8 张 GIF,2 行 4 列,无卡片,直接图悬浮) */
.lh-grid {
  position: absolute;
  top: 11%;
  left: 2%;
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(3, auto);
  gap: 18px 10px;
  z-index: 1;
  padding: 12px 24px;
}
.lh-tile {
  margin: 0;
  background: transparent;
  max-width: 180px;
  transform-origin: center center;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}
.lh-tile img {
  display: block;
  width: 100%;
  height: auto;
}

/* 8 张错峰浮动 + 不同旋转 */
.lh-tile--1 { animation: lhFloat1 5.6s ease-in-out infinite; transform: rotate(-2.5deg); }
.lh-tile--2 { animation: lhFloat2 6.0s ease-in-out infinite; transform: rotate( 1.8deg); }
.lh-tile--3 { animation: lhFloat3 5.8s ease-in-out infinite; transform: rotate(-1.2deg); }
.lh-tile--4 { animation: lhFloat4 6.2s ease-in-out infinite; transform: rotate( 2.4deg); }
.lh-tile--5 { animation: lhFloat5 5.7s ease-in-out infinite; transform: rotate(-2.0deg); }
.lh-tile--6 { animation: lhFloat6 6.4s ease-in-out infinite; transform: rotate( 1.5deg); }
.lh-tile--7 { animation: lhFloat7 5.9s ease-in-out infinite; transform: rotate(-2.8deg); }
.lh-tile--8 { animation: lhFloat8 6.1s ease-in-out infinite; transform: rotate( 1.0deg); max-width: 220px; }

@keyframes lhFloat1 { 0%, 100% { transform: translateY(0)    rotate(-2.5deg); } 50% { transform: translateY(-10px) rotate(-1.0deg); } }
@keyframes lhFloat2 { 0%, 100% { transform: translateY(0)    rotate( 1.8deg); } 50% { transform: translateY(-12px) rotate( 0.8deg); } }
@keyframes lhFloat3 { 0%, 100% { transform: translateY(0)    rotate(-1.2deg); } 50% { transform: translateY(-8px)  rotate(-0.4deg); } }
@keyframes lhFloat4 { 0%, 100% { transform: translateY(0)    rotate( 2.4deg); } 50% { transform: translateY(-14px) rotate( 1.0deg); } }
@keyframes lhFloat5 { 0%, 100% { transform: translateY(0)    rotate(-2.0deg); } 50% { transform: translateY(-10px) rotate(-0.8deg); } }
@keyframes lhFloat6 { 0%, 100% { transform: translateY(0)    rotate( 1.5deg); } 50% { transform: translateY(-12px) rotate( 0.4deg); } }
@keyframes lhFloat7 { 0%, 100% { transform: translateY(0)    rotate(-2.8deg); } 50% { transform: translateY(-9px)  rotate(-1.2deg); } }
@keyframes lhFloat8 { 0%, 100% { transform: translateY(0)    rotate( 1.0deg); } 50% { transform: translateY(-13px) rotate( 0.2deg); } }

/* 07c 右边额外 4 张:2 行 2 列,无卡片,浮动 */
.lh-grid--right {
  left: auto;
  right: 2%;
  top: 18%;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  gap: 22px 18px;
  padding: 12px 24px;
}
.lh-grid--right .lh-tile {
  max-width: 240px;
}
.lh-tile--r1 { animation: lhRFloat1 5.8s ease-in-out infinite; transform: rotate(-2.2deg); }
.lh-tile--r2 { animation: lhRFloat2 6.2s ease-in-out infinite; transform: rotate( 1.6deg); }
.lh-tile--r3 { animation: lhRFloat3 5.9s ease-in-out infinite; transform: rotate(-1.4deg); }
.lh-tile--r4 { animation: lhRFloat4 6.4s ease-in-out infinite; transform: rotate( 2.6deg); }

@keyframes lhRFloat1 { 0%, 100% { transform: translateY(0)    rotate(-2.2deg); } 50% { transform: translateY(-11px) rotate(-0.8deg); } }
@keyframes lhRFloat2 { 0%, 100% { transform: translateY(0)    rotate( 1.6deg); } 50% { transform: translateY(-13px) rotate( 0.4deg); } }
@keyframes lhRFloat3 { 0%, 100% { transform: translateY(0)    rotate(-1.4deg); } 50% { transform: translateY(-9px)  rotate(-0.2deg); } }
@keyframes lhRFloat4 { 0%, 100% { transform: translateY(0)    rotate( 2.6deg); } 50% { transform: translateY(-14px) rotate( 1.2deg); } }

/* 06 MINIKING 礼盒1(左上,标题下方,别压标题,浮动) */
.cny-doll--lrhe1 {
  top: 6%;
  left: 4%;
  z-index: 2;
  transform: translateY(0) rotate(-3deg);
  animation: cnyDollFloat1 6s ease-in-out infinite;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.32));
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
}
.cny-doll--lrhe1 img {
  width: 640px;
  display: block;
  border-radius: 22px;
}
@keyframes cnyDollFloat1 {
  0%, 100% { transform: translateY(0)    rotate(-3deg); }
  50%      { transform: translateY(-18px) rotate(-1.5deg); }
}

/* 06 礼盒系列轮播(6 张,右下,按钮切换,圆角卡片) */
.lrhe-carousel {
  position: absolute;
  top: 18%;
  right: 2%;
  width: 720px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  z-index: 1;
  animation: lrheCarouselFloat 6.2s ease-in-out infinite;
}
.lrhe-track {
  position: relative;
  width: 100%;
  height: 100%;
}
.lrhe-card {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  opacity: 0;
  scale: 0.97;
  z-index: 1;
  transition: opacity 0.55s ease, scale 0.55s ease;
}
.lrhe-card--active {
  opacity: 1;
  scale: 1;
  z-index: 2;
}
.lrhe-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.lrhe-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: #841d0a;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
  transition: transform .25s ease, background .25s ease;
}
.lrhe-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}
.lrhe-btn--prev { left: 12px; }
.lrhe-btn--next { right: 12px; }
.lrhe-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.lrhe-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, width .25s ease;
}
.lrhe-dot--active {
  background: #ffffff;
  width: 22px;
  border-radius: 4px;
}

@keyframes lrheCarouselFloat {
  0%, 100% { transform: translateY(0)    rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(0.4deg); }
}

.team-stage {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 640px;
  overflow: visible;
}

/* === CNY-微信红包:5 横排卡片网格 + 漂浮(撑满红框) === */
.team-stage--grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-content: stretch;
  gap: 18px;
  align-items: end;
  padding: 16px var(--pad-x) 0;
  max-width: 100%;
}
.hongbao-card {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  will-change: transform;
  animation: hongbaoFloat 6s ease-in-out infinite;
}
.hongbao-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
}
.hongbao-card--1 { animation-duration: 6.0s; animation-delay:  0.0s; transform: rotate(-2deg); }
.hongbao-card--2 { animation-duration: 6.4s; animation-delay: -1.2s; transform: rotate( 1.5deg); }
.hongbao-card--3 { animation-duration: 5.8s; animation-delay: -2.4s; transform: rotate(-1deg); }
.hongbao-card--4 { animation-duration: 6.6s; animation-delay: -0.8s; transform: rotate( 2deg); }
.hongbao-card--5 { animation-duration: 6.2s; animation-delay: -1.6s; transform: rotate(-1.5deg); }
@keyframes hongbaoFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -10px; }
}
.hongbao-card:hover {
  animation-play-state: paused;
  z-index: 2;
}

.team-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(120px, 18vw, 280px);
  color: rgba(10,20,36,0.08);
  letter-spacing: -0.02em;
  line-height: 0.9;
  z-index: 1;
  user-select: none;
}

.team-photos {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.team-photo {
  position: absolute;
  width: 140px; height: 180px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #ff5a3c, #ff944c);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  will-change: transform;
  transition: box-shadow .4s var(--ease-soft);
}

.team-photo:nth-child(odd) { background: linear-gradient(135deg, #ff5a3c, #ff944c); }
.team-photo:nth-child(even) { background: linear-gradient(135deg, #ff7a4c, #ff4c4c); }

.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
  filter: contrast(1.05);
}

.team-photo:nth-child(1) { top: 30%;  left: 8%;   transform: rotate(-4deg); }
.team-photo:nth-child(2) { top: 10%;  left: 28%;  transform: rotate(3deg);  width: 160px; height: 200px; }
.team-photo:nth-child(3) { top: 50%;  left: 45%;  transform: rotate(-2deg); }
.team-photo:nth-child(4) { top: 8%;   left: 60%;  transform: rotate(5deg);  width: 160px; height: 200px; }
.team-photo:nth-child(5) { top: 55%;  left: 75%;  transform: rotate(-3deg); }
.team-photo:nth-child(6) { top: 25%;  right: 4%;  transform: rotate(4deg);  width: 150px; height: 190px; }
.team-photo:nth-child(7) { top: 60%;  right: 18%; transform: rotate(-5deg); }

/* === Works footer === */
.works-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--pad-x) 60px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-top: 1px solid rgba(10,20,36,0.08);
}

.counter-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--c-ink-dark);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.counter-num small {
  font-size: 0.4em;
  color: var(--c-ink-muted-dark);
  font-weight: 500;
}

.counter p {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-ink-muted-dark);
  margin-top: 8px;
  text-transform: uppercase;
}

/* === Responsive === */
@media (max-width: 1100px) {
  .works-chapter__grid--two { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-card__content { grid-template-columns: 1fr; }
  .banner-tag, .banner-logos { grid-column: 1 !important; justify-self: start; }
  .reviews-stage { height: auto; padding-bottom: 0; }
  .rv-card { position: relative; top: auto !important; left: auto !important; right: auto !important; transform: none !important; margin-bottom: 16px; width: 100%; }
}

@media (max-width: 700px) {
  .works-header { grid-template-columns: 1fr; gap: 24px; }
  .works-grid { grid-template-columns: 1fr; }
  .float-card { width: 200px !important; height: 130px !important; }
  .banner-card { padding: 40px 24px; }
  /* Chapter 2 标题在手机视图下下移一格 */
  .works-chapter__sticky--float { padding-top: 120px; }
}

/* ============================================
   FEATURED STACK — 维他VLT-Popup 叠图切换
   所有卡片堆叠在同一舞台,逐张切换时旧卡飞出,新卡叠上来
   ============================================ */

.works-chapter__grid--two { display: none; } /* hide old 2-col layout */

.featured-stack {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px);
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.featured-stack__stage {
  position: relative;
  width: 100%;
  height: 640px;
  perspective: 1800px;
  cursor: grab;
  touch-action: pan-y;
  overflow: hidden;
  border-radius: 16px;
}

.featured-stack__stage.is-dragging { cursor: grabbing; }

/* === 卡片基础状态:绝对定位占满 stage === */
.stack-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(10, 20, 36, 0.08);
  transform-origin: center top;
  transition:
    transform 0.7s cubic-bezier(0.5, 0.05, 0.2, 1),
    opacity 0.7s cubic-bezier(0.5, 0.05, 0.2, 1),
    box-shadow 0.7s cubic-bezier(0.5, 0.05, 0.2, 1);
  will-change: transform, opacity;
}

/* 默认:压到最底 — 但 inline style 优先级更高,这里只作为保险 */
.stack-card {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 220px, 0) scale(0.92);
  z-index: 0;
}
/* 让 inline style 完全覆盖 — 新版用 inline 控制的 stack */
.featured-stack .stack-card { /* 留出更高优先级给 inline */ }

/* 当前展示:在最上层,完整清晰,强投影 */
.stack-card.is-current {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  z-index: 50;
  box-shadow:
    0 30px 60px -10px rgba(0, 0, 0, 0.25),
    0 18px 30px -15px rgba(0, 0, 0, 0.18);
}

/* 错位指数级递增:前面的卡紧贴,后面的卡错得更开,只露顶部边 */
.stack-card.is-behind-1 {
  opacity: 0.95;
  transform: translate3d(0, 30px, 0) scale(0.99);
  z-index: 40;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.stack-card.is-behind-2 {
  opacity: 0.88;
  transform: translate3d(0, 70px, 0) scale(0.98);
  z-index: 30;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.11);
  pointer-events: none;
}

.stack-card.is-behind-3 {
  opacity: 0.8;
  transform: translate3d(0, 130px, 0) scale(0.97);
  z-index: 20;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.stack-card.is-behind-4 {
  opacity: 0.7;
  transform: translate3d(0, 220px, 0) scale(0.96);
  z-index: 10;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.09);
  pointer-events: none;
}

.stack-card.is-behind-5 {
  opacity: 0.6;
  transform: translate3d(0, 340px, 0) scale(0.95);
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

/* 切换中:旧卡向左滑出 + 缩小 + 旋转 */
.stack-card.is-leaving {
  opacity: 0;
  transform: translate3d(-70%, -10px, 0) scale(0.9) rotate(-5deg);
  z-index: 45;
  pointer-events: none;
}

/* 切换中:新卡从底部推上来 */
.stack-card.is-entering {
  opacity: 0;
  transform: translate3d(30%, 200px, 0) scale(0.9) rotate(4deg);
  z-index: 48;
  pointer-events: none;
}

/* === 卡片内部:媒体区 + 信息条(各自绝对定位,确保信息条不脱卡) === */
.stack-card__media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f3f3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stack-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.stack-card__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 24px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.85) 35%, #ffffff 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 2;
}

.stack-card__num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(10, 20, 36, 0.45);
  text-transform: uppercase;
}

.stack-card__info h4 {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
  color: var(--c-ink-dark);
}

.stack-card__info p {
  font-size: 13px;
  color: rgba(10, 20, 36, 0.7);
  margin: 0;
  line-height: 1.55;
}

.stack-card__info small {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(10, 20, 36, 0.45);
  margin-top: 4px;
}

/* === 左右按钮 === */
.stack-nav {
  position: absolute;
  top: calc((clamp(420px, 62vh, 720px)) / 2);
  transform: translateY(-50%);
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(10, 20, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-ink-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: background 0.3s var(--ease-soft), transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
  cursor: pointer;
}

.stack-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.stack-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.stack-nav--prev { left: 14px; }
.stack-nav--next { right: 14px; }

/* === 指示器 === */
.stack-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.stack-dot-btn {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(10, 20, 36, 0.18);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s var(--ease-soft);
}

.stack-dot-btn:hover {
  background: rgba(10, 20, 36, 0.4);
}

.stack-dot-btn.active {
  width: 28px;
  border-radius: 4px;
  background: var(--c-ink-dark);
}

/* === 拖拽提示 === */
.stack-hint {
  text-align: center;
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(10, 20, 36, 0.4);
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .featured-stack { padding: 0 12px; }
  .featured-stack__stage { height: clamp(360px, 70vh, 600px); }
  .stack-nav { width: 40px; height: 40px; }
  .stack-nav--prev { left: 4px; }
  .stack-nav--next { right: 4px; }
  .stack-card__info { padding: 14px 18px; }
  .stack-card__info h4 { font-size: 14px; }
  .stack-card__info p { font-size: 11px; }
  .stack-hint { display: none; }
}

/* ============================================
   V17: 6 张卡错位堆叠 + 循环轮播
   覆盖上面的 .stack-card 默认(隐藏)规则,
   让 inline 样式 + inline JS 完全接管渲染
   ============================================ */

.featured-stack {
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* 重置 .stack-card 默认隐藏状态:让 inline 样式生效 */
.featured-stack__stage .stack-card,
.featured-stack__stage .stack-card.is-current,
.featured-stack__stage .stack-card.is-behind-1,
.featured-stack__stage .stack-card.is-behind-2,
.featured-stack__stage .stack-card.is-behind-3,
.featured-stack__stage .stack-card.is-behind-4,
.featured-stack__stage .stack-card.is-behind-5,
.featured-stack__stage .stack-card.is-leaving,
.featured-stack__stage .stack-card.is-entering {
  /* 全部让位给 inline + JS */
}

/* 给所有 .stack-card 显式重置关键属性(避免被上面的默认规则覆盖) */
.featured-stack__stage .stack-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: 500px;
  opacity: 1;
  pointer-events: auto;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(10, 20, 36, 0.06);
  transform-origin: center top;
  will-change: transform, opacity, z-index;
  cursor: pointer;
}

/* 焦点卡片强投影(由 JS 加 is-focus class) */
.featured-stack__stage .stack-card.is-focus {
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22), 0 6px 14px rgba(0, 0, 0, 0.1);
}

/* 控制按钮 hover */
#stackPrev:hover {
  transform: scale(1.06);
  background: #f7f7f3;
}
#stackPrev:active {
  transform: scale(0.95);
}
#stackNext:hover {
  transform: scale(1.06);
  background: #1a2540;
}
#stackNext:active {
  transform: scale(0.95);
}

/* 圆点 hover */
#stackDots .stack-dot:hover {
  background: rgba(10, 20, 36, 0.4) !important;
}

/* 响应式 */
@media (max-width: 1100px) {
  .featured-stack__stage .stack-card { width: 280px; height: 400px; }
}
@media (max-width: 800px) {
  .featured-stack__stage .stack-card { width: 220px; height: 320px; }
}
@media (max-width: 600px) {
  .featured-stack__stage .stack-card { width: 180px; height: 260px; }
}

/* ============================================
   Global Fixed-Element Responsive Scaling
   缩放所有固定像素的浮动图 / 海报 / 卡片,
   让中屏(1024-1280)、平板(768-1024)、手机(<768)显示合理.
   ============================================ */

/* 1024 - 1280 桌面:浮动图 / 海报等比例缩小 */
@media (max-width: 1280px) {
  .cny-doll--1 img,
  .cny-doll--2 img { width: 540px; }
  .q3-pack--1 img,
  .q3-pack--2 img { width: 230px; }
  .q3-pack--3 img,
  .q3-pack--4 img { width: 520px; }
  .aiext-lemon--1 { width: 110px; }
  .aiext-lemon--2 { width: 140px; }
  .gyq-card img { max-height: 320px; }
}

/* 768 - 1024 平板:进一步缩小 */
@media (max-width: 1024px) {
  .cny-doll--1 img,
  .cny-doll--2 img { width: 420px; }
  .q3-pack--1,
  .q3-pack--2 { top: 4%; left: 2%; }
  .q3-pack--1 img,
  .q3-pack--2 img { width: 180px; }
  .q3-pack--3,
  .q3-pack--4 { right: -2%; }
  .q3-pack--3 img,
  .q3-pack--4 img { width: 400px; }
  .aiext-lemon--1 { width: 80px; }
  .aiext-lemon--2 { width: 100px; }
  .gyq-card img { max-height: 280px; }
  .kinglong-tabs--poster,
  .kinglong-tabs--poster-12 { width: 320px; }
  .works-chapter__sticky { top: 80px; }
  .works-chapter { padding: 60px 0; }
}

/* < 768 手机:全面收缩 */
@media (max-width: 768px) {
  .cny-doll--1,
  .cny-doll--2 { position: relative; top: auto; left: auto; right: auto; transform: none; margin: 24px auto; display: block; }
  .cny-doll--1 img,
  .cny-doll--2 img { width: 100%; max-width: 320px; }
  .q3-pack { position: relative; top: auto; left: auto; right: auto; transform: none; margin: 16px auto; }
  .q3-pack--1 img,
  .q3-pack--2 img,
  .q3-pack--3 img,
  .q3-pack--4 img { width: 100%; max-width: 320px; }
  .aiext-lemon { display: none; }  /* 手机不显示装饰浮片 */
  .gyq-card img { max-height: 220px; }
  .kinglong-tabs--poster,
  .kinglong-tabs--poster-12 { width: 100%; max-width: 360px; margin: 0 auto; }
  .works-chapter { padding: 48px 0; }
  .works-chapter__sticky { position: relative; top: 0; margin-bottom: 32px; }
  .float-card:nth-child(2),
  .float-card:nth-child(4) { width: 240px; height: 160px; }
  .float-card:nth-child(4) { width: 200px; height: 140px; }
  .featured-stack { padding: 0 var(--pad-x); }
}
