:root {
  --nuke-orange: #f6a526;
  --nuke-hover: #ffd36d;
  --bg-dark: #090a0d;
  --panel-bg: rgba(18, 20, 24, 0.74);
  --panel-solid: #15171c;
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text-main: #f3f4f6;
  --text-muted: #a0a7b4;
  --text-soft: #747d8d;
  --blue: #2f9fe8;
  --green: #34c759;
  --purple: #af52de;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif;
  background-color: var(--bg-dark);
  background-image: linear-gradient(rgba(9, 10, 13, 0.9), rgba(9, 10, 13, 0.98)), url("/download/bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  color: var(--text-main);
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 16px;
}

nav {
  height: 70px;
  background: rgba(9, 10, 13, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

.logo img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.logo span {
  color: var(--nuke-orange);
}

.nav-center {
  display: flex;
  gap: 28px;
}

.nav-center a,
.mobile-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 650;
  transition: color 0.2s, border-color 0.2s;
  border-bottom: 2px solid transparent;
}

.nav-center a {
  padding-bottom: 23px;
  padding-top: 25px;
}

.nav-center a:hover,
.mobile-nav a:hover,
.nav-center a.active,
.mobile-nav a.active {
  color: var(--nuke-orange);
}

.nav-center a.active,
.mobile-nav a.active {
  border-bottom-color: var(--nuke-orange);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  min-height: 36px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px 10px 4px 14px;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.search-box:focus-within {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(246, 165, 38, 0.55);
  box-shadow: 0 0 0 3px rgba(246, 165, 38, 0.12);
}

.search-input {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  outline: none;
  width: 150px;
  transition: width 0.25s;
}

.search-input::placeholder {
  color: #737b88;
}

.search-input:focus {
  width: 220px;
}

.search-btn {
  background: transparent;
  border: none;
  color: #a8afba;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}

.search-btn:hover {
  color: var(--nuke-orange);
  transform: scale(1.08);
}

.mobile-menu-btn,
.mobile-nav {
  display: none;
}

.floating-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 19, 23, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-soft);
  border-right: none;
  border-radius: 8px 0 0 8px;
  display: flex;
  flex-direction: column;
  z-index: 99;
  box-shadow: -10px 0 24px rgba(0, 0, 0, 0.36);
}

.sidebar-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  color: #9ba3af;
  text-decoration: none;
  font-size: 11px;
  font-weight: 650;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.sidebar-item:last-child {
  border-bottom: none;
}

.sidebar-item:hover {
  color: var(--nuke-orange);
  background: rgba(246, 165, 38, 0.07);
}

.sidebar-item svg {
  width: 22px;
  height: 22px;
  margin-bottom: 5px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.taobao-mark {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px;
  line-height: 22px;
  font-family: "Microsoft YaHei", sans-serif;
}

.social-popup {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(20, 22, 26, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5);
}

.social-popup.text-only {
  padding: 10px 14px;
}

.sidebar-item:hover .social-popup {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

.social-popup img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid #444;
  background: #fff;
  padding: 2px;
  box-sizing: border-box;
}

.social-popup img.qq-popup-img {
  width: 180px;
  height: auto;
  max-height: 230px;
  background: #101115;
  object-fit: contain;
}

.social-popup span {
  color: #eee;
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
}

.social-popup b {
  color: var(--nuke-orange);
}

.hero {
  padding: 108px 6% 84px;
  text-align: center;
}

.hero-kicker,
.page-kicker {
  color: var(--nuke-orange);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0;
  margin: 0 0 12px;
}

.page-kicker.blue {
  color: var(--blue);
}

.page-kicker.green {
  color: var(--green);
}

.page-kicker.purple {
  color: var(--purple);
}

.hero h1 {
  font-size: 58px;
  line-height: 1.08;
  max-width: 920px;
  margin: 0 auto 20px;
  font-weight: 900;
  color: #fff;
}

.hero p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 760px;
  margin: 0 auto 34px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

.section-block {
  margin-top: 18px;
}

.section-title {
  text-align: center;
  margin: 70px 0 34px;
}

.section-title p {
  color: var(--nuke-orange);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0;
  margin: 0 0 10px;
}

.section-title p.blue {
  color: var(--blue);
}

.section-title p.green {
  color: var(--green);
}

.section-title h2 {
  font-size: 36px;
  margin: 0;
  color: #fff;
  font-weight: 850;
}

.ecosystem {
  margin-top: 96px;
}

.page-head {
  padding: 68px 6% 48px;
  text-align: center;
  background: rgba(255, 255, 255, 0.018);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 44px;
}

.page-head h1 {
  font-size: 42px;
  margin: 0 0 12px;
  color: #fff;
}

.page-head p {
  color: var(--text-muted);
  font-size: 16px;
  margin: 0 auto;
  line-height: 1.7;
  max-width: 760px;
}

.blue-copy {
  color: var(--blue) !important;
  font-weight: 650;
}

.green-copy {
  color: var(--green) !important;
  font-weight: 650;
}

.purple-copy {
  color: var(--purple) !important;
  font-weight: 650;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 24px;
  padding: 0 6%;
  margin: 0 auto;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  max-width: 1180px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  max-width: 1380px;
}

.single-column {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.card,
.empty-state,
.info-panel {
  background: var(--panel-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.card {
  padding: 28px;
  transition: transform 0.22s, border-color 0.22s, background 0.22s, box-shadow 0.22s;
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  min-height: 230px;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  background: rgba(24, 27, 33, 0.88);
}

.plugin-card:hover {
  border-color: rgba(246, 165, 38, 0.48);
}

.knowledge-card:hover,
.tutorial-card:hover {
  border-color: rgba(47, 159, 232, 0.42);
}

.plugin-topic-card:hover {
  border-color: rgba(35, 207, 117, 0.42);
}

.ecosystem-card,
.asset-card {
  padding: 0;
  overflow: hidden;
}

.ecosystem-card {
  min-height: 430px;
}

.asset-card:hover {
  border-color: rgba(52, 199, 89, 0.42);
}

.ecosystem-cover {
  min-height: 170px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}

.ecosystem-cover::before,
.ecosystem-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ecosystem-cover::before {
  opacity: 0.72;
}

.ecosystem-cover::after {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 72%, transparent);
}

.ecosystem-cover span,
.ecosystem-cover strong {
  position: relative;
  z-index: 1;
}

.ecosystem-cover span {
  font-size: 12px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.58);
}

.ecosystem-cover strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 28px;
  line-height: 1;
}

.tutorial-cover {
  background:
    radial-gradient(circle at 28% 28%, rgba(47, 159, 232, 0.36), transparent 34%),
    linear-gradient(135deg, rgba(19, 42, 65, 0.96), rgba(16, 18, 24, 0.96));
}

.tutorial-cover::before {
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(47, 159, 232, 0.2) 45%, transparent 47%),
    linear-gradient(45deg, transparent 0 62%, rgba(255, 255, 255, 0.08) 63%, transparent 65%);
}

.plugin-cover {
  background:
    radial-gradient(circle at 72% 34%, rgba(142, 96, 255, 0.34), transparent 34%),
    radial-gradient(circle at 28% 72%, rgba(35, 181, 255, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(28, 21, 62, 0.96), rgba(16, 18, 28, 0.96));
}

.plugin-cover::before {
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.14) 0 4px, transparent 5px),
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.12) 0 4px, transparent 5px),
    radial-gradient(circle at 70% 54%, rgba(255, 255, 255, 0.12) 0 4px, transparent 5px),
    linear-gradient(25deg, transparent 0 37%, rgba(142, 96, 255, 0.34) 38%, transparent 40%),
    linear-gradient(155deg, transparent 0 48%, rgba(35, 181, 255, 0.2) 49%, transparent 51%);
}

.asset-cover {
  background: linear-gradient(135deg, #13201b, #202320);
  color: rgba(255, 255, 255, 0.56);
  font-size: 30px;
  font-weight: 900;
}

.asset-detail-hero {
  max-width: 1180px;
  margin: 64px auto 0;
  padding: 0 6%;
}

.asset-detail-hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
}

.asset-detail-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.asset-delivery {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.asset-delivery div {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.035);
  border-radius: 8px;
  padding: 16px;
}

.asset-delivery strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

.asset-delivery span {
  color: var(--text-soft);
  font-size: 13px;
}

.asset-library {
  margin-top: 18px;
}

.asset-resource-grid {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 6%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

.asset-resource-card {
  --asset-accent: #34c759;
  --asset-accent-rgb: 52, 199, 89;
  border: 1px solid rgba(var(--asset-accent-rgb), 0.2);
  background: linear-gradient(180deg, rgba(13, 16, 24, 0.98), rgba(8, 11, 18, 0.96));
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.22s, border-color 0.22s, background 0.22s, box-shadow 0.22s;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.asset-resource-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--asset-accent-rgb), 0.52);
  background: linear-gradient(180deg, rgba(14, 18, 27, 1), rgba(9, 12, 20, 0.98));
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(var(--asset-accent-rgb), 0.08) inset,
    0 0 32px rgba(var(--asset-accent-rgb), 0.12);
}

.resource-cover {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--asset-accent-rgb), 0.22), transparent 32%),
    linear-gradient(145deg, rgba(11, 14, 22, 0.98), rgba(18, 22, 30, 0.98));
}

.resource-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.94;
  transform: scale(1.01);
  filter: saturate(1.08) contrast(1.04);
}

.resource-cover-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.12) 0%, rgba(6, 8, 12, 0.52) 58%, rgba(5, 7, 12, 0.86) 100%),
    radial-gradient(circle at 18% 18%, rgba(var(--asset-accent-rgb), 0.26), transparent 34%),
    linear-gradient(135deg, rgba(var(--asset-accent-rgb), 0.14), transparent 48%);
  z-index: 1;
}

.resource-cover.is-placeholder .resource-cover-shade {
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.18), rgba(7, 9, 14, 0.88)),
    radial-gradient(circle at 18% 18%, rgba(var(--asset-accent-rgb), 0.28), transparent 36%),
    linear-gradient(135deg, rgba(var(--asset-accent-rgb), 0.16), rgba(10, 12, 18, 0.12));
}

.resource-cover-content {
  position: relative;
  z-index: 2;
  padding: 20px 22px;
  width: 100%;
}

.resource-cover-chip {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(var(--asset-accent-rgb), 0.32);
  background: rgba(var(--asset-accent-rgb), 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.resource-cover strong {
  display: block;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.94;
  letter-spacing: 0.04em;
  font-weight: 900;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.42);
}

.resource-body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.resource-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.resource-access,
.resource-price {
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
}

.resource-access.free {
  color: #33d17a;
  background: rgba(52, 199, 89, 0.12);
}

.resource-access.paid {
  color: var(--nuke-orange);
  background: rgba(246, 165, 38, 0.12);
}

.resource-price {
  color: #d9dde4;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-soft);
}

.asset-resource-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 21px;
}

.resource-category {
  color: var(--asset-accent) !important;
  margin-bottom: 12px !important;
  font-size: 13px !important;
  font-weight: 800;
}

.asset-resource-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.asset-resource-card .tag.asset-tag {
  background: rgba(var(--asset-accent-rgb), 0.12);
  color: var(--asset-accent);
}

.asset-resource-card .action {
  color: var(--asset-accent);
}

.resource-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.asset-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #09110d;
  background: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.asset-download.disabled {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-soft);
}

.pan-code {
  color: #cfd5df;
  font-size: 13px;
}

.asset-item-hero {
  max-width: 1480px;
  margin: 64px auto 0;
  padding: 0 6%;
}

.asset-item-hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
}

.asset-item-hero p {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 18px;
}

.asset-hero-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 28px;
  align-items: end;
}

.asset-hero-copy {
  min-width: 0;
}

.asset-hero-copy .card-tags {
  margin-top: 18px;
}

.asset-top-cta {
  border: 1px solid rgba(246, 165, 38, 0.26);
  background:
    radial-gradient(circle at 82% 18%, rgba(246, 165, 38, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(18, 20, 24, 0.9), rgba(12, 13, 16, 0.82));
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28), 0 0 34px rgba(246, 165, 38, 0.07);
}

.asset-top-cta-copy strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.asset-top-cta-copy span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.asset-buy-btn-inline {
  width: 100%;
  margin-top: 18px;
  color: #14100a;
  background: var(--nuke-orange);
  box-shadow: 0 12px 28px rgba(246, 165, 38, 0.26);
  white-space: nowrap;
}

.asset-buy-btn-inline:hover {
  background: var(--nuke-hover);
  box-shadow: 0 16px 34px rgba(246, 165, 38, 0.34);
}


.asset-theme-shell {
  --asset-accent: #34c759;
  --asset-accent-rgb: 52, 199, 89;
}

.asset-theme-kicker {
  color: var(--asset-accent) !important;
}

.asset-theme-shell .back-link:hover {
  color: var(--asset-accent);
}

.asset-theme-shell .tag.asset-tag {
  background: rgba(var(--asset-accent-rgb), 0.12);
  color: var(--asset-accent);
}

.asset-theme-shell .info-panel {
  border-color: rgba(var(--asset-accent-rgb), 0.14);
}

.asset-theme-shell .asset-top-cta {
  border-color: rgba(var(--asset-accent-rgb), 0.24);
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--asset-accent-rgb), 0.18), transparent 36%),
    linear-gradient(145deg, rgba(18, 20, 24, 0.92), rgba(12, 13, 16, 0.86));
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(var(--asset-accent-rgb), 0.08);
}

.asset-theme-shell .asset-media-badge {
  background: var(--asset-accent);
  color: #0d1015;
  box-shadow: 0 10px 22px rgba(var(--asset-accent-rgb), 0.18);
}

.asset-theme-shell .asset-preview-head h3,
.asset-theme-shell .info-panel h3 {
  color: #fff;
}

.asset-intro-section {
  max-width: 1480px;
  margin: 42px auto 0;
  padding: 0 6%;
}

.back-link {
  display: inline-flex;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 24px;
}

.back-link:hover {
  color: var(--green);
}

.asset-item-layout {
  max-width: 1480px;
  margin: 42px auto 0;
  padding: 0 6%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.asset-item-main {
  display: grid;
  gap: 22px;
}

.asset-item-side {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line-soft);
  background: var(--panel-bg);
  border-radius: 8px;
  padding: 24px;
}

.asset-item-side h3 {
  color: #fff;
  margin: 0 0 12px;
}

.asset-item-side p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 18px;
}

.asset-buy-btn {
  width: 100%;
  color: #07110b;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(52, 199, 89, 0.22);
}

.asset-buy-btn:hover {
  background: #47e184;
  box-shadow: 0 14px 30px rgba(52, 199, 89, 0.3);
}

.asset-media-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  counter-reset: assetPreview;
}

.asset-media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(249, 168, 37, 0.08), transparent 50%),
    #050608;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.asset-media-frame::before {
  counter-increment: assetPreview;
  content: counter(assetPreview, decimal-leading-zero);
  position: absolute;
  left: 8px;
  top: 8px;
  z-index: 2;
  padding: 3px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.58);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.asset-media-frame:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 168, 37, 0.42);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.34), 0 0 18px rgba(249, 168, 37, 0.08);
}

.asset-media-frame:hover::before {
  opacity: 1;
}

.asset-media-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.asset-media-empty {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  text-align: center;
}

.asset-media-empty strong {
  color: #fff;
}


/* VFX asset detail gallery: marketplace-style large preview cards */
.asset-preview-section {
  max-width: 1480px;
  margin: 28px auto 0;
  padding: 0 6%;
}

.asset-preview-panel {
  padding: 34px;
  overflow: hidden;
}

.asset-preview-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.asset-preview-head h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.asset-preview-head p {
  max-width: 760px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.asset-media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 30px 28px;
  counter-reset: none;
}

.asset-media-card {
  min-width: 0;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 12px;
  outline: none;
}

.asset-media-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(249, 168, 37, 0.36);
}

.asset-media-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 15%, rgba(249, 168, 37, 0.18), transparent 34%),
    radial-gradient(circle at 70% 80%, rgba(52, 199, 89, 0.10), transparent 35%),
    #030405;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
}

.asset-media-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.38));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.asset-media-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #000;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.asset-media-badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #07110b;
  background: rgba(246, 165, 38, 0.94);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.asset-media-meta {
  min-width: 0;
  padding: 0 2px 2px;
}

.asset-media-meta h4 {
  margin: 0 0 8px;
  color: #f2f4f8;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 850;
  transition: color 0.2s ease;
}

.asset-media-meta p {
  display: flex;
  gap: 12px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.asset-media-meta p span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.asset-media-card:hover .asset-media-thumb::before {
  opacity: 1;
}

.asset-media-card:hover .asset-media-thumb img {
  transform: scale(1.015);
}

.asset-media-card:hover .asset-media-meta h4 {
  color: var(--nuke-orange);
}

.asset-media-card.is-missing .asset-media-thumb img {
  opacity: 0;
}

.asset-media-card.is-missing .asset-media-thumb::after {
  content: "预览文件未上传";
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.18);
}

.knowledge-hero,
.article-hero {
  max-width: 1180px;
  margin: 72px auto 0;
  padding: 0 6%;
}

.knowledge-hero h1,
.article-hero h1 {
  color: #fff;
  font-size: 52px;
  line-height: 1.12;
  margin: 0 0 18px;
}

.knowledge-hero p,
.article-hero > p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.75;
  max-width: 860px;
  margin: 0 0 30px;
}

.knowledge-lanes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.knowledge-lanes div {
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(47, 159, 232, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(47, 159, 232, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.025);
}

.knowledge-lanes strong {
  display: block;
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.knowledge-lanes span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.knowledge-library {
  margin-top: 72px;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  padding: 0 6%;
  max-width: 1380px;
  margin: 0 auto;
}

.knowledge-article-card {
  display: flex;
  flex-direction: column;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(17, 19, 24, 0.78);
  text-decoration: none;
  transition: transform 0.22s, border-color 0.22s, background 0.22s, box-shadow 0.22s;
}

.knowledge-article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 159, 232, 0.46);
  background: rgba(22, 25, 32, 0.9);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.knowledge-cover {
  position: relative;
  min-height: 172px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 72% 28%, rgba(246, 165, 38, 0.18), transparent 28%),
    radial-gradient(circle at 30% 64%, rgba(47, 159, 232, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(18, 38, 58, 0.96), rgba(16, 18, 26, 0.96));
}

.knowledge-cover::before,
.knowledge-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.knowledge-cover::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 76%, transparent);
}

.knowledge-cover::after {
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(47, 159, 232, 0.24) 45%, transparent 47%),
    linear-gradient(45deg, transparent 0 58%, rgba(246, 165, 38, 0.13) 59%, transparent 61%);
}

.knowledge-cover span,
.knowledge-cover strong {
  position: relative;
  z-index: 1;
}

.knowledge-cover span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.knowledge-cover strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.knowledge-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.knowledge-card-body h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.35;
}

.knowledge-card-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.article-meta {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.article-meta-line {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid rgba(47, 159, 232, 0.22);
  border-radius: 6px;
  background: rgba(47, 159, 232, 0.06);
  color: #b9dfff;
  font-size: 13px;
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  max-width: 1180px;
  margin: 44px auto 0;
  padding: 0 6%;
  align-items: start;
}

.article-body,
.article-side {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(17, 19, 24, 0.78);
}

.article-body {
  padding: 34px;
}

.article-body h2 {
  color: #fff;
  font-size: 24px;
  line-height: 1.35;
  margin: 0 0 16px;
}

.article-body h2:not(:first-child) {
  margin-top: 34px;
}

.article-body p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.9;
  margin: 0 0 18px;
}

.article-side {
  position: sticky;
  top: 104px;
  padding: 24px;
}

.article-side h3 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 18px;
}

.article-side p,
.article-side li {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.article-side ul {
  margin: 0;
  padding-left: 18px;
}

.article-side li + li {
  margin-top: 10px;
}

.article-source-btn {
  width: 100%;
  margin-top: 22px;
  box-sizing: border-box;
}

.ecosystem-card .content,
.asset-card .content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: #fff;
  line-height: 1.35;
}

.card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 22px;
  flex-grow: 1;
}

.card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tag {
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 760;
}

.tag.lang {
  background: rgba(47, 159, 232, 0.1);
  color: #65b9f0;
}

.tag.sys {
  background: rgba(246, 165, 38, 0.1);
  color: var(--nuke-orange);
}

.tag.asset-tag {
  background: rgba(52, 199, 89, 0.1);
  color: var(--green);
}

.tag.knowledge-tag {
  background: rgba(47, 159, 232, 0.1);
  color: var(--blue);
}

.wechat-tag {
  background: rgba(7, 193, 96, 0.1);
  color: #23cf75;
}

.tool-tag {
  background: rgba(142, 96, 255, 0.13);
  color: #b79aff;
}

.ai-tag {
  background: rgba(175, 82, 222, 0.12);
  color: var(--purple);
}

.card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.card-meta span {
  color: #d9dde4;
  font-size: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 4px 9px;
}

.action {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  color: var(--nuke-orange);
}

.action::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.2s;
}

.card:hover .action::after {
  transform: translateX(4px);
}

.blue-action {
  color: var(--blue) !important;
}

.green-action {
  color: var(--green) !important;
}

.wechat-action {
  color: #23cf75 !important;
}

.tool-action {
  color: #b79aff !important;
}

.plugin-topic-card:hover {
  border-color: rgba(142, 96, 255, 0.46);
  box-shadow: 0 18px 36px rgba(36, 24, 74, 0.42);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nuke-orange);
  color: #111;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(246, 165, 38, 0.22);
}

.btn:hover {
  background: var(--nuke-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(246, 165, 38, 0.34);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--nuke-orange);
  color: var(--nuke-orange);
  background: rgba(246, 165, 38, 0.06);
}

.ai-entry-btn {
  position: relative;
  overflow: hidden;
  min-width: 230px;
  min-height: 58px;
  color: #f7f5ff;
  border: 1px solid rgba(111, 137, 255, 0.52);
  background:
    radial-gradient(circle at 24% 38%, rgba(48, 142, 255, 0.3), transparent 30%),
    radial-gradient(circle at 76% 42%, rgba(143, 99, 255, 0.42), transparent 36%),
    radial-gradient(circle at 50% 108%, rgba(255, 146, 61, 0.14), transparent 42%),
    linear-gradient(135deg, rgba(9, 19, 42, 0.98), rgba(20, 14, 48, 0.98));
  box-shadow:
    0 14px 34px rgba(42, 54, 140, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 26px rgba(111, 137, 255, 0.18);
  isolation: isolate;
}

.ai-entry-btn::before {
  content: "";
  position: absolute;
  inset: -55%;
  z-index: 0;
  pointer-events: none;
  background:
    conic-gradient(from 210deg, transparent 0 20%, rgba(106, 196, 255, 0.38) 26%, transparent 34% 54%, rgba(147, 101, 255, 0.42) 64%, transparent 75% 90%, rgba(255, 145, 54, 0.32) 96%, transparent);
  opacity: 0.2;
  transform: rotate(-18deg) scale(0.88);
  transition: opacity 0.24s ease, transform 0.7s ease;
}

.ai-entry-btn::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  pointer-events: none;
  border-radius: 7px;
  background:
    linear-gradient(120deg, transparent 0 34%, rgba(139, 103, 255, 0.22) 38%, transparent 43% 100%),
    repeating-linear-gradient(90deg, rgba(116, 196, 255, 0.055) 0 1px, transparent 1px 18px);
  background-size: 180% 100%, 24px 100%;
  opacity: 0.38;
  transform: translateX(-10%);
  transition: opacity 0.28s ease;
}

.ai-electric-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
}

.ai-electric-field svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ai-arc {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  stroke-dasharray: 18 138;
  stroke-dashoffset: 138;
  opacity: 0;
  filter: drop-shadow(0 0 4px currentColor);
}

.arc-a {
  color: #7bd7ff;
  stroke: currentColor;
}

.arc-b {
  color: #b695ff;
  stroke: currentColor;
  stroke-width: 1.2;
}

.arc-c {
  color: #ff9a3d;
  stroke: currentColor;
  stroke-width: 1.1;
}

.ai-btn-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow:
    0 0 12px rgba(150, 126, 255, 0.54),
    0 0 20px rgba(86, 176, 255, 0.22);
}

.ai-btn-label::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8fdcff;
  box-shadow:
    0 0 10px rgba(124, 215, 255, 0.88),
    0 0 18px rgba(146, 111, 255, 0.64),
    0 0 26px rgba(255, 154, 61, 0.24);
  transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.ai-entry-btn:hover::before {
  opacity: 0.68;
  transform: rotate(120deg) scale(1.06);
}

.ai-entry-btn:hover::after {
  opacity: 0.5;
  transform: translateX(0);
  animation: aiEnergyPlane 1.2s ease-in-out infinite alternate;
}

.ai-entry-btn:hover {
  color: #fff;
  border-color: rgba(165, 137, 255, 0.78);
  background:
    radial-gradient(circle at 22% 38%, rgba(66, 159, 255, 0.4), transparent 31%),
    radial-gradient(circle at 76% 42%, rgba(151, 104, 255, 0.58), transparent 37%),
    radial-gradient(circle at 52% 108%, rgba(255, 146, 61, 0.2), transparent 42%),
    linear-gradient(135deg, rgba(8, 20, 44, 0.99), rgba(24, 15, 58, 0.99));
  box-shadow:
    0 18px 42px rgba(48, 54, 150, 0.38),
    0 0 28px rgba(139, 103, 255, 0.3),
    0 0 18px rgba(255, 146, 61, 0.16);
  transform: translateY(-2px) scale(1.015);
}

.ai-entry-btn:hover .ai-electric-field {
  opacity: 1;
}

.ai-entry-btn:hover .ai-arc {
  animation:
    aiArcTravel 0.78s linear infinite,
    aiArcFlicker 0.19s steps(2, end) infinite;
}

.ai-entry-btn:hover .arc-b {
  animation-delay: 0.08s, 0.04s;
}

.ai-entry-btn:hover .arc-c {
  animation-delay: 0.17s, 0.02s;
}

.ai-entry-btn:hover .ai-btn-label::before {
  background: #ff9a3d;
  box-shadow:
    0 0 10px rgba(255, 154, 61, 0.9),
    0 0 18px rgba(124, 215, 255, 0.68),
    0 0 28px rgba(146, 111, 255, 0.5);
  transform: scale(1.15);
}

@keyframes aiArcTravel {
  to {
    stroke-dashoffset: -38;
  }
}

@keyframes aiArcFlicker {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.96;
  }
}

@keyframes aiEnergyPlane {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 70% 0, 18px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-entry-btn::before,
  .ai-entry-btn::after,
  .ai-entry-btn:hover .ai-arc {
    animation: none;
    transition: none;
  }
}

.compact {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 14px;
}

.center-more {
  text-align: center;
  margin: 36px 0 72px;
}

.catalog-tools {
  max-width: 1380px;
  margin: -18px auto 26px;
  padding: 0 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.catalog-tools strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.catalog-tools span {
  color: var(--text-muted);
  font-size: 14px;
}

.search-page-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 680px;
  margin: 26px auto 0;
}

.search-page-form input {
  flex: 1;
  min-width: 0;
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 14px;
  outline: none;
}

.search-page-form input:focus {
  border-color: rgba(246, 165, 38, 0.58);
  box-shadow: 0 0 0 3px rgba(246, 165, 38, 0.12);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 42px 28px;
  text-align: center;
}

.empty-state h3 {
  margin: 0 0 8px;
  color: #fff;
}

.empty-state p {
  margin: 0;
  color: var(--text-muted);
}

.not-found {
  text-align: center;
  min-height: 45vh;
  padding: 100px 6%;
}

.plugin-hero {
  max-width: 1240px;
  margin: 56px auto 0;
  padding: 0 6%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: end;
}

.breadcrumb {
  display: inline-flex;
  color: var(--theme-color);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 16px;
}

.plugin-tags {
  margin-bottom: 18px;
}

.plugin-hero h1 {
  font-size: 44px;
  line-height: 1.16;
  margin: 0 0 14px;
  color: #fff;
}

.plugin-hero p {
  margin: 0;
  max-width: 680px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

.quick-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-facts div {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 14px;
}

.quick-facts span {
  display: block;
  color: var(--text-soft);
  font-size: 12px;
  margin-bottom: 4px;
}

.quick-facts strong {
  color: #fff;
  font-size: 14px;
}

.plugin-layout {
  max-width: 1240px;
  margin: 42px auto 0;
  padding: 0 6%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: flex-start;
}

.plugin-main {
  min-width: 0;
}

.info-panel {
  padding: 26px;
  margin-bottom: 18px;
}

.info-panel h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 18px;
}

.detail-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list {
  display: grid;
  gap: 10px;
}

.feature-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.028);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #c4cad5;
  line-height: 1.7;
  font-size: 14px;
}

.feature-highlight {
  color: #fff;
  font-weight: 850;
}

.feature-icon {
  padding: 5px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.version-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.version-row span {
  color: var(--text-soft);
}

.version-row strong {
  color: #fff;
}

.info-panel p {
  color: var(--text-muted);
  margin: 0;
}

.release-notes {
  line-height: 1.75;
}

.media-frame {
  background: #000;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.media-frame:last-child {
  margin-bottom: 0;
}

.media-frame img {
  width: 100%;
  display: block;
}

.media-empty,
.empty-inline {
  padding: 38px 20px;
  text-align: center;
  color: var(--text-soft);
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  color: #fff;
  font-weight: 760;
  padding: 14px 16px;
}

.faq-item p {
  color: var(--text-muted);
  padding: 0 16px 16px;
  margin: 0;
}

.purchase-panel {
  background: rgba(18, 20, 24, 0.84);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.46);
  position: sticky;
  top: 92px;
}

.price-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 16px;
}

.price-head h2 {
  font-size: 36px;
  line-height: 1;
  color: var(--theme-color);
  margin: 0;
  font-weight: 900;
}

.price-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.price-badge {
  display: inline-block;
  background: rgba(246, 165, 38, 0.1);
  color: var(--theme-color);
  border: 1px solid rgba(246, 165, 38, 0.24);
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 850;
  white-space: nowrap;
}

.trade-badge {
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid rgba(255, 80, 0, 0.3);
  color: #ff7a1a;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 80, 0, 0.05);
}

.plugin-download,
.buy-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 0.2s, border-color 0.2s, color 0.2s, background 0.2s, filter 0.2s;
}

.plugin-download {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 13px;
  font-size: 13px;
  margin-bottom: 12px;
}

.plugin-download:hover {
  background: rgba(246, 165, 38, 0.07);
  border-color: var(--theme-color);
  color: var(--theme-color);
  transform: translateY(-2px);
}

.buy-btn {
  background: var(--theme-color);
  color: #090a0d;
  padding: 15px;
  font-size: 14px;
}

.buy-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.process-box {
  text-align: left;
  background: rgba(0, 0, 0, 0.26);
  padding: 18px;
  border-radius: 8px;
  font-size: 12px;
  color: #a3aab6;
  border: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.7;
  width: 100%;
  margin-top: 18px;
}

.process-title {
  color: #fff;
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 13px;
}

.process-box ol {
  margin: 0;
  padding-left: 18px;
}

.large-card {
  padding: 36px;
}

.large-card h3 {
  font-size: 26px;
}

.large-card p {
  font-size: 15px;
  margin-bottom: 28px;
}

.wechat-card {
  border-color: rgba(7, 193, 96, 0.2);
}

.ai-card {
  border-style: dashed;
  border-color: rgba(175, 82, 222, 0.4);
  text-align: center;
  padding: 54px;
}

.ai-card h3 {
  font-size: 28px;
}

.ai-card p {
  max-width: 680px;
  margin: 0 auto 32px;
  font-size: 16px;
  color: #aaa;
  line-height: 1.8;
}

.center-tags {
  justify-content: center;
}

.coming-soon {
  display: inline-flex;
  padding: 11px 20px;
  border: 1px solid #444;
  border-radius: 8px;
  color: #a0a7b4;
  font-size: 14px;
  font-weight: 760;
  background: rgba(0, 0, 0, 0.34);
}

.purple-action {
  color: #b79aff !important;
}

.ai-lab-hero {
  max-width: 1240px;
  margin: 72px auto 0;
  padding: 0 6%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: end;
}

.ai-hero-copy h1 {
  color: #fff;
  font-size: 56px;
  line-height: 1.08;
  margin: 0 0 18px;
}

.ai-hero-copy p:last-child {
  max-width: 820px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.85;
  margin: 0;
}

.ai-hero-console {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(151, 104, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 28% 20%, rgba(47, 159, 232, 0.18), transparent 34%),
    radial-gradient(circle at 80% 86%, rgba(175, 82, 222, 0.22), transparent 36%),
    rgba(16, 18, 25, 0.78);
  background-size: 28px 28px, 28px 28px, auto, auto, auto;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.ai-hero-console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 180, 80, 0.11), transparent);
  transform: translateX(-72%);
  animation: aiConsoleScan 5.6s ease-in-out infinite;
  pointer-events: none;
}

.ai-hero-console div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-hero-console div:last-child {
  border-bottom: none;
}

.ai-hero-console span {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
}

.ai-hero-console strong {
  color: #fff;
  font-size: 16px;
}

.ai-focus-lanes {
  max-width: 1240px;
  margin: 42px auto 0;
  padding: 0 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ai-focus-lanes div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(111, 137, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 18%, rgba(47, 159, 232, 0.12), transparent 34%),
    radial-gradient(circle at 90% 86%, rgba(175, 82, 222, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.026);
}

.ai-focus-lanes strong {
  display: block;
  color: #fff;
  font-size: 16px;
  margin-bottom: 7px;
}

.ai-focus-lanes span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.ai-featured-section {
  max-width: 1240px;
  margin: 46px auto 0;
  padding: 0 6%;
}

.ai-featured-story {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 330px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(151, 104, 255, 0.26);
  border-radius: 8px;
  background: rgba(17, 19, 25, 0.76);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  transition: transform 0.22s, border-color 0.22s, background 0.22s;
}

.ai-featured-story:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 154, 255, 0.52);
  background: rgba(22, 24, 33, 0.9);
}

.ai-featured-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 36%, rgba(47, 159, 232, 0.3), transparent 34%),
    radial-gradient(circle at 76% 60%, rgba(175, 82, 222, 0.34), transparent 38%),
    linear-gradient(135deg, rgba(11, 26, 50, 0.98), rgba(22, 15, 48, 0.98));
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-featured-visual::before,
.ai-featured-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ai-featured-visual::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 78%, transparent);
}

.ai-featured-visual::after {
  background:
    linear-gradient(35deg, transparent 0 42%, rgba(255, 172, 73, 0.2) 43%, transparent 45%),
    linear-gradient(145deg, transparent 0 54%, rgba(108, 194, 255, 0.24) 55%, transparent 57%);
}

.ai-featured-visual span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.ai-featured-copy {
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.ai-eyebrow,
.ai-feed-meta {
  margin: 0 0 10px;
  color: #b79aff;
  font-size: 12px;
  font-weight: 900;
}

.ai-featured-copy h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
}

.ai-featured-copy p:not(.ai-eyebrow) {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.ai-section-title {
  margin-top: 78px;
}

.ai-feed-section {
  margin-top: 4px;
}

.ai-feed-list {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 6%;
  display: grid;
  gap: 14px;
}

.ai-feed-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 180px;
  gap: 22px;
  align-items: center;
  min-height: 154px;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(17, 19, 24, 0.7);
  padding: 20px;
  transition: transform 0.22s, border-color 0.22s, background 0.22s;
}

.ai-feed-row:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 154, 255, 0.38);
  background: rgba(23, 25, 34, 0.9);
}

.ai-feed-index {
  color: rgba(183, 154, 255, 0.72);
  font-size: 26px;
  font-weight: 900;
}

.ai-feed-main h3 {
  color: #fff;
  font-size: 22px;
  line-height: 1.32;
  margin: 0 0 8px;
}

.ai-feed-main p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 0 0 15px;
}

.ai-feed-mark {
  min-height: 112px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 70% 28%, rgba(47, 159, 232, 0.16), transparent 36%),
    radial-gradient(circle at 24% 76%, rgba(255, 172, 73, 0.1), transparent 34%);
}

.ai-feed-mark span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  font-weight: 900;
}

.ai-feed-mark strong {
  color: var(--text-soft);
  font-size: 12px;
}

.ai-article-hero {
  max-width: 1180px;
  margin: 64px auto 0;
  padding: 0 6%;
}

.ai-article-hero h1 {
  color: #fff;
  font-size: 52px;
  line-height: 1.12;
  margin: 0 0 16px;
}

.ai-article-hero p {
  max-width: 840px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.ai-back-link:hover {
  color: #b79aff;
}

.ai-article-layout {
  max-width: 1180px;
  margin: 42px auto 0;
  padding: 0 6%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.ai-article-body {
  min-width: 0;
}

.ai-article-section {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(17, 19, 24, 0.72);
  padding: 28px;
  margin-bottom: 18px;
}

.ai-article-section h2 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 16px;
}

.ai-article-section p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 14px;
}

.ai-article-section p:last-child {
  margin-bottom: 0;
}

.ai-takeaways {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.ai-takeaways li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.ai-takeaways span {
  color: #ffb457;
  font-weight: 900;
}

.ai-takeaways p {
  margin: 0;
}

.ai-side-panel {
  position: sticky;
  top: 96px;
  border: 1px solid rgba(151, 104, 255, 0.24);
  border-radius: 8px;
  background: rgba(17, 19, 24, 0.82);
  padding: 22px;
}

.ai-side-cover {
  min-height: 138px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 30px;
  font-weight: 900;
  border-radius: 8px;
  margin-bottom: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 24% 24%, rgba(47, 159, 232, 0.24), transparent 34%),
    radial-gradient(circle at 78% 80%, rgba(175, 82, 222, 0.3), transparent 34%),
    rgba(13, 16, 26, 0.96);
  background-size: 30px 30px, 30px 30px, auto, auto, auto;
}

.ai-side-panel dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.ai-side-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ai-side-panel dl div:last-child {
  border-bottom: none;
}

.ai-side-panel dt {
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
}

.ai-side-panel dd {
  color: #fff;
  margin: 0;
  text-align: right;
  font-size: 13px;
}

.ai-side-panel .btn {
  width: 100%;
  margin-top: 18px;
}

@keyframes aiConsoleScan {
  0%,
  42% {
    transform: translateX(-72%);
  }
  70%,
  100% {
    transform: translateX(72%);
  }
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 96;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--line-soft);
  background: rgba(18, 20, 24, 0.88);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  transform: translateY(-2px);
  color: var(--nuke-orange);
}

.ai-portal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(4, 5, 10, 0.94), rgba(15, 11, 28, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 46px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.ai-portal-overlay.active {
  opacity: 1;
}

.ai-portal {
  position: relative;
  width: min(520px, 74vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #fff;
  transform: scale(0.88);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ai-portal-overlay.active .ai-portal {
  transform: scale(1);
}

.ai-portal::before,
.ai-portal::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  pointer-events: none;
}

.ai-portal::before {
  border: 1px solid rgba(183, 154, 255, 0.38);
  background:
    conic-gradient(from 30deg, transparent 0 12%, rgba(183, 154, 255, 0.82) 18%, transparent 24% 42%, rgba(246, 165, 38, 0.82) 48%, transparent 54% 74%, rgba(47, 159, 232, 0.72) 82%, transparent 90%);
  -webkit-mask: radial-gradient(circle, transparent 0 54%, black 55% 63%, transparent 64%);
  mask: radial-gradient(circle, transparent 0 54%, black 55% 63%, transparent 64%);
  animation: aiPortalSpin 1.2s linear infinite;
}

.ai-portal::after {
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    repeating-linear-gradient(135deg, transparent 0 13px, rgba(255, 255, 255, 0.08) 14px, transparent 16px);
  -webkit-mask: radial-gradient(circle, black 0 60%, transparent 61%);
  mask: radial-gradient(circle, black 0 60%, transparent 61%);
  animation: aiPortalPulse 0.9s ease-in-out infinite alternate;
}

.ai-portal-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.ai-portal-text span {
  color: #b79aff;
  font-size: 12px;
  font-weight: 900;
}

.ai-portal-text strong {
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1;
}

body.ai-transitioning {
  overflow: hidden;
}

@keyframes aiPortalSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes aiPortalPulse {
  from {
    opacity: 0.42;
    transform: scale(0.94);
  }
  to {
    opacity: 0.82;
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-portal-overlay,
  .ai-portal,
  .ai-portal::before,
  .ai-portal::after {
    animation: none;
    transition: none;
  }
}

.ai-wave-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.16s ease;
}

.ai-wave-overlay.active {
  opacity: 1;
}

.ai-wave-overlay::before,
.ai-wave-overlay::after {
  content: "";
  position: absolute;
  left: var(--wave-x);
  top: var(--wave-y);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
}

.ai-wave-overlay::before {
  width: 42vmax;
  height: 42vmax;
  background:
    radial-gradient(circle, rgba(255, 210, 122, 0.58) 0 5%, rgba(183, 154, 255, 0.58) 12%, rgba(47, 159, 232, 0.34) 23%, rgba(15, 11, 28, 0.98) 46%, rgba(8, 9, 14, 1) 72%);
  box-shadow:
    0 0 70px rgba(183, 154, 255, 0.32),
    0 0 110px rgba(246, 165, 38, 0.2);
}

.ai-wave-overlay::after {
  width: 22vmax;
  height: 22vmax;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background:
    repeating-radial-gradient(circle, transparent 0 18px, rgba(255, 255, 255, 0.14) 19px, transparent 21px),
    conic-gradient(from 20deg, transparent, rgba(183, 154, 255, 0.58), transparent, rgba(246, 165, 38, 0.5), transparent);
  mix-blend-mode: screen;
}

.ai-wave-overlay.active::before {
  animation: aiWaveExpand 0.72s cubic-bezier(0.12, 0.82, 0.2, 1) forwards;
}

.ai-wave-overlay.active::after {
  animation: aiWaveRing 0.72s cubic-bezier(0.12, 0.82, 0.2, 1) forwards;
}

.ai-wave-label {
  position: absolute;
  left: var(--wave-x);
  top: var(--wave-y);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  color: #fff;
  text-align: center;
  transform: translate(-50%, -50%) scale(0.92);
  opacity: 0;
}

.ai-wave-overlay.active .ai-wave-label {
  animation: aiWaveLabel 0.62s ease forwards;
}

.ai-wave-label span {
  color: #ffd27a;
  font-size: 12px;
  font-weight: 900;
}

.ai-wave-label strong {
  font-size: clamp(18px, 3.8vw, 42px);
  line-height: 1.1;
  white-space: nowrap;
}

body.ai-arrive main {
  animation: aiArrive 0.72s ease both;
}

@keyframes aiWaveExpand {
  0% {
    transform: translate(-50%, -50%) scale(0);
    filter: blur(0);
  }
  72% {
    transform: translate(-50%, -50%) scale(4.8);
    filter: blur(1px);
  }
  100% {
    transform: translate(-50%, -50%) scale(5.4);
    filter: blur(0);
  }
}

@keyframes aiWaveRing {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }
  35% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5.8);
  }
}

@keyframes aiWaveLabel {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
  }
  38% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@keyframes aiArrive {
  from {
    opacity: 0.2;
    transform: translateY(10px) scale(0.992);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-wave-overlay,
  .ai-wave-overlay::before,
  .ai-wave-overlay::after,
  .ai-wave-label,
  body.ai-arrive main {
    animation: none;
    transition: none;
  }
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.contact-modal[aria-hidden="false"] {
  display: flex;
}

.contact-modal-panel {
  position: relative;
  width: min(780px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 24px;
  align-items: center;
  background: rgba(18, 20, 24, 0.96);
  border: 1px solid rgba(35, 207, 117, 0.34);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.58);
}

.contact-modal[data-theme="tools"] .contact-modal-panel {
  border-color: rgba(142, 96, 255, 0.5);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.58),
    0 0 70px rgba(72, 44, 150, 0.2);
}

.contact-modal[data-theme="tools"] .modal-kicker {
  color: #b79aff;
}

.contact-modal[data-theme="tools"] .contact-modal-close:hover {
  color: #b79aff;
  border-color: rgba(142, 96, 255, 0.5);
}

.contact-modal[data-theme="tools"] .modal-tags span {
  color: #b79aff;
  background: rgba(142, 96, 255, 0.13);
  border-color: rgba(142, 96, 255, 0.26);
}

.contact-modal[data-theme="tools"] .qr-card {
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(183, 154, 255, 0.16);
}

.contact-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal-close:hover {
  color: #23cf75;
  border-color: rgba(35, 207, 117, 0.35);
}

.modal-kicker {
  color: #23cf75;
  font-size: 12px;
  font-weight: 850;
  margin: 0 0 10px;
}

.contact-modal-copy h2 {
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.contact-modal-copy p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.modal-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.modal-tags span {
  color: #23cf75;
  background: rgba(7, 193, 96, 0.1);
  border: 1px solid rgba(7, 193, 96, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 760;
}

.qr-card {
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
}

.qr-card img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

.qr-card span {
  display: block;
  margin-top: 8px;
  color: #111;
  font-size: 13px;
  font-weight: 850;
}

footer {
  text-align: center;
  padding: 40px 6%;
  color: #5f6674;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.site-disclaimer {
  color: #6f7784;
  font-size: 12px;
}

.footer-brand a,
.footer-links a {
  color: #6c7480;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a {
  margin-left: 20px;
}

.footer-brand a:hover,
.footer-links a:hover {
  color: #d6dbe4;
}

@media (max-width: 1020px) {
  .nav-center {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
  }

  .mobile-menu-btn span {
    width: 18px;
    height: 2px;
    background: #ddd;
    border-radius: 99px;
  }

  .mobile-nav {
    display: none;
    position: sticky;
    top: 70px;
    z-index: 98;
    background: rgba(9, 10, 13, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-soft);
    padding: 14px 6%;
    gap: 14px;
    flex-wrap: wrap;
  }

  body.nav-open .mobile-nav {
    display: flex;
  }

  .floating-sidebar {
    display: none;
  }

  .plugin-hero,
  .plugin-layout,
  .asset-item-layout,
  .asset-hero-row,
  .article-layout,
  .ai-lab-hero,
  .ai-featured-story,
  .ai-article-layout {
    grid-template-columns: 1fr;
  }

  .purchase-panel {
    position: static;
  }

  .asset-item-side {
    position: static;
  }

  .asset-top-cta {
    align-self: stretch;
  }

  .article-side {
    position: static;
  }

  .ai-side-panel {
    position: static;
  }

  .asset-delivery,
  .knowledge-lanes,
  .ai-focus-lanes {
    grid-template-columns: repeat(2, 1fr);
  }

  .asset-media-gallery {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
  }
}


@media (max-width: 760px) {
  nav {
    padding: 0 4%;
  }

  .nav-right {
    display: none;
  }

  .hero {
    padding: 72px 6% 56px;
  }

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

  .hero p {
    font-size: 16px;
  }

  .quick-facts,
  .asset-delivery,
  .knowledge-lanes,
  .ai-focus-lanes {
    grid-template-columns: 1fr;
  }

  .page-head h1 {
    font-size: 32px;
  }

  .grid-2,
  .grid-3,
  .asset-detail-hero,
  .asset-item-hero,
  .asset-preview-section,
  .asset-intro-section,
  .knowledge-hero,
  .article-hero,
  .asset-resource-grid,
  .asset-item-layout,
  .knowledge-grid,
    .article-layout,
    .plugin-hero,
    .plugin-layout,
    .ai-lab-hero,
    .ai-focus-lanes,
    .ai-featured-section,
    .ai-feed-list,
    .ai-article-hero,
    .ai-article-layout {
    padding-left: 4%;
    padding-right: 4%;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .asset-media-gallery {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .asset-preview-panel {
    padding: 22px;
  }

  .asset-top-cta {
    padding: 18px;
  }

  .asset-buy-btn-inline {
    white-space: normal;
  }

  .asset-preview-head h3 {
    font-size: 21px;
  }

  .asset-media-meta h4 {
    font-size: 16px;
  }

  .catalog-tools {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 4%;
    padding-right: 4%;
  }

  .search-page-form {
    flex-direction: column;
  }

  .plugin-hero h1 {
    font-size: 34px;
  }

  .knowledge-hero h1,
  .article-hero h1,
  .ai-hero-copy h1,
  .ai-article-hero h1 {
    font-size: 34px;
  }

  .knowledge-hero p,
  .article-hero > p,
  .ai-hero-copy p:last-child,
  .ai-article-hero p {
    font-size: 15px;
  }

  .ai-feed-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ai-feed-index {
    font-size: 18px;
  }

  .ai-feed-mark {
    min-height: 82px;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ai-featured-copy,
  .ai-article-section {
    padding: 22px;
  }

  .article-body,
  .article-side {
    padding: 22px;
  }

  .price-head {
    flex-direction: column;
  }

  .price-badges {
    align-items: flex-start;
  }

  footer {
    flex-direction: column;
    gap: 15px;
  }

  .footer-links a {
    margin: 0 8px;
  }

  .contact-modal-panel {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .qr-card {
    max-width: 210px;
    margin: 0 auto;
  }
}

/* Plugin detail first-screen redesign: 2026-05-20 */
.plugin-hero-redesign {
  max-width: 1320px;
  margin-top: 46px;
  grid-template-columns: minmax(0, 0.96fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: 46px;
  position: relative;
}

.plugin-hero-redesign::before {
  content: "";
  position: absolute;
  inset: -18px 4% auto 4%;
  height: 420px;
  pointer-events: none;
  background: radial-gradient(circle at 74% 35%, color-mix(in srgb, var(--theme-color) 26%, transparent), transparent 42%);
  opacity: 0.38;
  filter: blur(24px);
  z-index: -1;
}

.plugin-hero-copy {
  min-width: 0;
}

.plugin-hero-redesign .plugin-tags {
  margin-bottom: 16px;
}

.plugin-hero-redesign h1 {
  max-width: 800px;
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: 1.04;
  margin-bottom: 18px;
}

.plugin-hero-redesign p {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 880;
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.hero-action-primary {
  color: #061015;
  background: linear-gradient(135deg, var(--theme-color), #f9a825);
  box-shadow: 0 16px 36px color-mix(in srgb, var(--theme-color) 22%, transparent);
}

.hero-action-secondary {
  color: #e9eef6;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.035);
}

.hero-action:hover {
  transform: translateY(-2px);
}

.hero-action-primary:hover {
  box-shadow: 0 20px 46px color-mix(in srgb, var(--theme-color) 34%, transparent);
}

.hero-action-secondary:hover {
  color: var(--theme-color);
  border-color: color-mix(in srgb, var(--theme-color) 55%, transparent);
  background: color-mix(in srgb, var(--theme-color) 10%, transparent);
}

.plugin-fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
}

.plugin-fact-strip div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border-radius: 8px;
  padding: 12px 14px;
}

.plugin-fact-strip span {
  display: block;
  color: var(--text-soft);
  font-size: 11px;
  margin-bottom: 5px;
}

.plugin-fact-strip strong {
  display: block;
  color: #fff;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plugin-showcase {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--theme-color) 34%, rgba(255, 255, 255, 0.08));
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--theme-color) 13%, transparent), rgba(255, 255, 255, 0.025)),
    rgba(12, 14, 18, 0.82);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  overflow: hidden;
}

.plugin-showcase::before {
  content: "";
  position: absolute;
  inset: -28% auto auto -16%;
  width: 56%;
  height: 70%;
  background: radial-gradient(circle, color-mix(in srgb, var(--theme-color) 38%, transparent), transparent 66%);
  filter: blur(30px);
  opacity: 0.55;
  pointer-events: none;
}

.plugin-window {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #030406;
}

.plugin-window-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.plugin-window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.plugin-window-bar span:first-child {
  background: #ff7a59;
}

.plugin-window-bar span:nth-child(2) {
  background: #f9c74f;
}

.plugin-window-bar span:nth-child(3) {
  background: #3ddc84;
}

.plugin-window-bar em {
  margin-left: auto;
  color: var(--text-soft);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0;
}

.plugin-window img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  background: #000;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.plugin-showcase:hover .plugin-window img {
  transform: scale(1.018);
  filter: saturate(1.05) contrast(1.03);
}

.plugin-preview-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.plugin-preview-thumb {
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #030406;
  aspect-ratio: 16 / 9;
}

.plugin-preview-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.76;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.plugin-preview-thumb:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.plugin-preview-fallback {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 28px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    radial-gradient(circle at 68% 28%, color-mix(in srgb, var(--theme-color) 30%, transparent), transparent 36%),
    #06080c;
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.plugin-preview-fallback span {
  color: var(--theme-color);
  font-weight: 900;
  font-size: 12px;
}

.plugin-preview-fallback strong {
  color: #fff;
  font-size: 34px;
  line-height: 1.08;
}

.plugin-preview-fallback p {
  color: var(--text-soft);
  margin: 0;
}

.plugin-layout {
  margin-top: 34px;
}

@media (max-width: 1020px) {
  .plugin-hero-redesign {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .plugin-fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 760px) {
  .plugin-hero-redesign {
    margin-top: 34px;
    gap: 26px;
  }

  .plugin-hero-redesign h1 {
    font-size: 38px;
  }

  .plugin-hero-redesign p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-action {
    width: 100%;
  }

  .plugin-fact-strip {
    grid-template-columns: 1fr;
  }

  .plugin-preview-thumbs {
    display: none;
  }
}

/* Plugin detail product-page polish: 2026-05-20 */
.plugin-hero-redesign {
  max-width: 1440px;
  margin-top: 44px;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 0.7fr);
  gap: 54px;
  align-items: center;
}

.plugin-hero-redesign h1 {
  font-size: clamp(44px, 4.6vw, 72px);
  letter-spacing: 0;
  line-height: 1.02;
}

.plugin-hero-redesign p {
  max-width: 780px;
  color: #aeb5c1;
}

.plugin-fact-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 4px;
}

.plugin-fact-strip div {
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.032);
}

.plugin-showcase {
  padding: 14px;
  transform: translateZ(0);
}

.plugin-window img {
  min-height: 270px;
  max-height: 380px;
  object-fit: contain;
}

.plugin-preview-thumb img {
  object-fit: cover;
}

.plugin-section-nav {
  max-width: 1240px;
  margin: 28px auto 0;
  padding: 0 6%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.plugin-section-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 8px;
  color: #c6ccd6;
  text-decoration: none;
  font-size: 13px;
  font-weight: 820;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.035);
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.plugin-section-nav a:hover {
  color: var(--theme-color);
  border-color: color-mix(in srgb, var(--theme-color) 42%, transparent);
  background: color-mix(in srgb, var(--theme-color) 10%, transparent);
  transform: translateY(-1px);
}

.plugin-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.plugin-media-card {
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.028);
  color: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.plugin-media-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--theme-color) 48%, transparent);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
}

.plugin-media-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background: #020304;
  overflow: hidden;
}

.plugin-media-thumb::after {
  content: "查看大图";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #061015;
  font-size: 11px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--theme-color), #f9a825);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.plugin-media-card:hover .plugin-media-thumb::after {
  opacity: 1;
  transform: translateY(0);
}

.plugin-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.plugin-media-card:hover .plugin-media-thumb img {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.04);
}

.plugin-media-meta {
  display: block;
  padding: 13px 14px 14px;
}

.plugin-media-meta strong,
.plugin-media-meta em {
  display: block;
}

.plugin-media-meta strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.plugin-media-meta em {
  margin-top: 4px;
  color: var(--text-soft);
  font-style: normal;
  font-size: 12px;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(3, 5, 9, 0.86);
  backdrop-filter: blur(12px);
}

.media-lightbox.is-open {
  display: flex;
}

.media-lightbox-dialog {
  width: min(1120px, 94vw);
  max-height: 92vh;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #07090d;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

.media-lightbox-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding: 0 14px 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.media-lightbox-close {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.media-lightbox-close:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
}

.media-lightbox-body {
  max-height: calc(92vh - 48px);
  overflow: auto;
  background: #000;
}

.media-lightbox-body img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1020px) {
  .plugin-hero-redesign {
    grid-template-columns: 1fr;
  }

  .plugin-window img {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .plugin-section-nav {
    padding-left: 4%;
    padding-right: 4%;
  }

  .plugin-media-grid {
    grid-template-columns: 1fr;
  }

  .media-lightbox {
    padding: 14px;
  }
}

/* Plugin detail v3 refinements: 2026-05-20 */
.plugin-hero-redesign {
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 0.74fr);
}

.plugin-hero-redesign h1 {
  font-size: clamp(38px, 3.55vw, 58px);
  line-height: 1.08;
  overflow-wrap: anywhere;
  max-width: 760px;
}

.plugin-section-nav {
  height: auto;
  min-height: 0;
  position: static;
  top: auto;
  z-index: auto;
  background: transparent;
  backdrop-filter: none;
  border: 0;
  box-shadow: none;
  justify-content: flex-start;
  align-items: center;
}

@media (min-width: 1320px) {
  .plugin-hero-redesign h1 {
    overflow-wrap: normal;
  }
}

@media (max-width: 760px) {
  .plugin-hero-redesign h1 {
    font-size: 36px;
  }
}

/* Plugin detail v4 airier top: 2026-05-20 */
.plugin-hero-redesign {
  max-width: 1320px;
  margin-top: 62px;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 0.78fr);
  gap: 72px;
  align-items: center;
}

.plugin-hero-redesign::before {
  inset: -56px 8% auto 8%;
  height: 520px;
  opacity: 0.28;
}

.plugin-hero-copy {
  padding: 18px 0 26px;
}

.plugin-hero-redesign .breadcrumb {
  margin-bottom: 22px;
}

.plugin-hero-redesign .plugin-tags {
  margin-bottom: 22px;
}

.plugin-hero-redesign h1 {
  max-width: 820px;
  font-size: clamp(42px, 3.6vw, 60px);
  line-height: 1.08;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}

.plugin-hero-redesign p {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  margin-top: 34px;
  margin-bottom: 0;
}

.hero-action {
  min-height: 48px;
  padding: 0 22px;
}

.plugin-showcase {
  padding: 14px;
  border-radius: 12px;
}

.plugin-window img {
  min-height: 300px;
  max-height: 410px;
}

.plugin-quickbar {
  max-width: 1320px;
  margin: 30px auto 0;
  padding: 0 6%;
}

.plugin-quickbar .plugin-fact-strip {
  max-width: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.plugin-quickbar .plugin-fact-strip div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.026);
  border-color: rgba(255, 255, 255, 0.07);
}

.plugin-quickbar .plugin-fact-strip span {
  font-size: 11px;
  color: #828b9a;
}

.plugin-quickbar .plugin-fact-strip strong {
  font-size: 13px;
}

.plugin-quickbar .plugin-section-nav {
  height: auto;
  min-height: 0;
  max-width: none;
  margin: 18px 0 0;
  padding: 14px 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: none;
  backdrop-filter: none;
}

.plugin-quickbar .plugin-section-nav a {
  min-height: 28px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #939ca9;
  font-size: 12px;
  font-weight: 820;
}

.plugin-quickbar .plugin-section-nav a:hover {
  color: var(--theme-color);
  border-bottom-color: var(--theme-color);
  background: transparent;
  transform: none;
}

.plugin-layout {
  margin-top: 34px;
}

@media (min-width: 1320px) {
  .plugin-hero-redesign h1 {
    overflow-wrap: normal;
  }
}

@media (max-width: 1020px) {
  .plugin-hero-redesign {
    margin-top: 42px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .plugin-window img {
    min-height: 0;
    max-height: none;
  }

  .plugin-quickbar .plugin-fact-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .plugin-hero-redesign {
    margin-top: 32px;
  }

  .plugin-hero-redesign h1 {
    font-size: 36px;
  }

  .plugin-quickbar {
    padding-left: 4%;
    padding-right: 4%;
  }

  .plugin-quickbar .plugin-fact-strip {
    grid-template-columns: 1fr;
  }

  .plugin-quickbar .plugin-section-nav {
    gap: 16px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2px;
  }
}



/* Search and trust upgrade: 2026-05-20 */
.search-head .search-page-form { max-width: 780px; }
.search-summary-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.search-summary-pills span { border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.045); color: var(--text-muted); border-radius: 999px; padding: 7px 12px; font-size: 12px; font-weight: 800; }
.search-results-grid { width: min(1280px, calc(100% - 12vw)); margin: 0 auto 90px; display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 18px; }
.search-result-card { min-height: 220px; display: flex; flex-direction: column; padding: 24px; border: 1px solid rgba(255,255,255,0.08); background: rgba(16, 18, 23, 0.78); border-radius: 12px; text-decoration: none; color: #fff; transition: transform .22s ease, border-color .22s ease, background .22s ease; }
.search-result-card:hover { transform: translateY(-4px); background: rgba(22, 25, 31, 0.92); }
.search-plugin:hover { border-color: rgba(249, 168, 37, 0.45); }
.search-asset:hover { border-color: rgba(52, 199, 89, 0.45); }
.search-ai:hover { border-color: rgba(140, 116, 255, 0.48); }
.search-result-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 20px; }
.search-result-type, .search-result-meta { font-size: 12px; font-weight: 900; border-radius: 999px; padding: 5px 10px; white-space: nowrap; }
.search-result-type { background: rgba(47,159,232,0.12); color: #4db5ff; }
.search-result-meta { background: rgba(255,255,255,0.045); color: var(--text-muted); overflow: hidden; text-overflow: ellipsis; }
.search-result-card h3 { font-size: 23px; margin: 0 0 12px; line-height: 1.28; }
.search-result-card p { color: var(--text-muted); margin: 0 0 22px; line-height: 1.75; font-size: 14px; flex: 1; }
.wide-empty { grid-column: 1 / -1; }
.disclaimer-head { padding-bottom: 54px; }
.disclaimer-page { width: min(1120px, calc(100% - 12vw)); margin: 0 auto 90px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.disclaimer-panel { padding: 26px; border: 1px solid rgba(255,255,255,0.08); background: rgba(16, 18, 23, 0.76); border-radius: 12px; }
.disclaimer-panel.important { grid-column: 1 / -1; border-color: rgba(249, 168, 37, 0.24); background: linear-gradient(135deg, rgba(249,168,37,0.08), rgba(16,18,23,0.78)); }
.disclaimer-panel h2 { margin: 0 0 12px; font-size: 22px; }
.disclaimer-panel p { margin: 0; color: var(--text-muted); line-height: 1.85; font-size: 15px; }
@media (max-width: 820px) { .search-results-grid, .disclaimer-page { width: min(100% - 36px, 680px); grid-template-columns: 1fr; } }

/* Light public theme: 2026-05-24 */
.theme-light {
  --nuke-orange: #f59e0b;
  --nuke-hover: #fbbf24;
  --bg-dark: #f6f8fc;
  --panel-bg: rgba(255, 255, 255, 0.86);
  --panel-solid: #ffffff;
  --line-soft: rgba(15, 23, 42, 0.1);
  --line-strong: rgba(15, 23, 42, 0.16);
  --text-main: #111827;
  --text-muted: #5f6b7a;
  --text-soft: #8a94a6;
  --blue: #0ea5e9;
  --green: #16a34a;
  --purple: #7c3aed;
  background-color: var(--bg-dark);
  background-image:
    radial-gradient(circle at 16% 10%, rgba(14, 165, 233, 0.1), transparent 30%),
    radial-gradient(circle at 78% 8%, rgba(245, 158, 11, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 42%, #f3f6fb 100%);
  color: var(--text-main);
}

.theme-light nav {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.theme-light .logo,
.theme-light .nav-center a,
.theme-light .mobile-nav a {
  color: #111827;
}

.theme-light .logo span,
.theme-light .nav-center a:hover,
.theme-light .mobile-nav a:hover,
.theme-light .nav-center a.active,
.theme-light .mobile-nav a.active {
  color: var(--nuke-orange);
}

.theme-light .search-box {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.13);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.theme-light .search-box:focus-within {
  background: #fff;
  border-color: rgba(245, 158, 11, 0.62);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.14), 0 10px 24px rgba(15, 23, 42, 0.08);
}

.theme-light .search-input {
  color: #111827;
}

.theme-light .search-input::placeholder {
  color: #98a2b3;
}

.theme-light .search-btn {
  color: #667085;
}

.theme-light .floating-sidebar,
.theme-light .mobile-nav {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: -10px 0 26px rgba(15, 23, 42, 0.08);
}

.theme-light .sidebar-item {
  color: #667085;
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.theme-light .sidebar-item:hover {
  color: var(--nuke-orange);
  background: rgba(245, 158, 11, 0.08);
}

.theme-light .social-popup,
.theme-light .contact-modal-panel {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.theme-light .social-popup span,
.theme-light .contact-modal-copy h2,
.theme-light .contact-modal-copy p {
  color: #111827;
}

.theme-light .contact-modal {
  background: rgba(15, 23, 42, 0.36);
}

.theme-light footer {
  color: #667085;
  border-top-color: rgba(15, 23, 42, 0.09);
  background: rgba(255, 255, 255, 0.62);
}

.theme-light footer a,
.theme-light .footer-links a {
  color: #667085;
}

.theme-light footer a:hover,
.theme-light .footer-links a:hover {
  color: #111827;
}

.theme-light .hero,
.theme-light .page-head,
.theme-light .plugin-hero,
.theme-light .asset-detail-hero,
.theme-light .asset-item-hero,
.theme-light .ai-lab-hero,
.theme-light .ai-article-hero,
.theme-light .article-hero,
.theme-light .knowledge-hero {
  color: var(--text-main);
}

.theme-light .hero h1,
.theme-light .page-head h1,
.theme-light .section-title h2,
.theme-light .plugin-hero h1,
.theme-light .asset-detail-hero h1,
.theme-light .asset-item-hero h1,
.theme-light .ai-hero-copy h1,
.theme-light .ai-article-hero h1,
.theme-light .article-hero h1,
.theme-light .knowledge-hero h1,
.theme-light .not-found h1 {
  color: #0f172a !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

.theme-light .hero p,
.theme-light .page-head p,
.theme-light .plugin-hero p,
.theme-light .asset-hero-copy p,
.theme-light .ai-hero-copy p,
.theme-light .ai-article-hero p,
.theme-light .article-hero p,
.theme-light .section-title p,
.theme-light .subhead {
  color: var(--text-muted) !important;
}

.theme-light .card,
.theme-light .plugin-card,
.theme-light .ecosystem-card,
.theme-light .asset-card,
.theme-light .tutorial-card,
.theme-light .knowledge-card,
.theme-light .knowledge-article-card,
.theme-light .search-result-card,
.theme-light .disclaimer-panel,
.theme-light .info-panel,
.theme-light .purchase-panel,
.theme-light .process-box,
.theme-light .faq-item,
.theme-light .quick-facts div,
.theme-light .plugin-fact-strip div,
.theme-light .asset-resource-card,
.theme-light .asset-preview-panel,
.theme-light .asset-intro-section,
.theme-light .asset-delivery,
.theme-light .asset-top-cta,
.theme-light .asset-download,
.theme-light .resource-body,
.theme-light .article-body,
.theme-light .article-side,
.theme-light .ai-featured-story,
.theme-light .ai-feed-row,
.theme-light .ai-article-section,
.theme-light .ai-side-panel,
.theme-light .ai-focus-lanes div,
.theme-light .wechat-card,
.theme-light .ai-card,
.theme-light .empty-state {
  background: rgba(255, 255, 255, 0.88) !important;
  border-color: rgba(15, 23, 42, 0.11) !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08) !important;
  color: var(--text-main);
}

.theme-light .card:hover,
.theme-light .plugin-card:hover,
.theme-light .ecosystem-card:hover,
.theme-light .asset-card:hover,
.theme-light .search-result-card:hover,
.theme-light .ai-featured-story:hover,
.theme-light .ai-feed-row:hover {
  background: #fff !important;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.12) !important;
}

.theme-light .card h3,
.theme-light .card h4,
.theme-light .catalog-tools strong,
.theme-light .empty-state h3,
.theme-light .info-panel h3,
.theme-light .feature-highlight,
.theme-light .version-row strong,
.theme-light .faq-item summary,
.theme-light .quick-facts strong,
.theme-light .process-title,
.theme-light .ai-focus-lanes strong,
.theme-light .ai-featured-copy h2,
.theme-light .ai-feed-main h3,
.theme-light .ai-article-section h2,
.theme-light .ai-side-panel dd,
.theme-light .disclaimer-panel h2,
.theme-light .search-result-card h3,
.theme-light .resource-head h1,
.theme-light .asset-media-meta h4,
.theme-light .asset-preview-head h2 {
  color: #111827 !important;
}

.theme-light .card p,
.theme-light .catalog-tools span,
.theme-light .feature-row,
.theme-light .info-panel p,
.theme-light .release-notes,
.theme-light .process-box,
.theme-light .faq-item p,
.theme-light .quick-facts span,
.theme-light .version-row span,
.theme-light .search-result-card p,
.theme-light .disclaimer-panel p,
.theme-light .ai-featured-copy p:not(.ai-eyebrow),
.theme-light .ai-feed-main p,
.theme-light .ai-article-section p,
.theme-light .ai-focus-lanes span,
.theme-light .asset-resource-card p,
.theme-light .asset-intro-section p,
.theme-light .resource-body p,
.theme-light .article-body p,
.theme-light .article-side p,
.theme-light .asset-media-meta p,
.theme-light .empty-inline,
.theme-light .media-empty,
.theme-light .asset-media-empty {
  color: var(--text-muted) !important;
}

.theme-light .feature-row,
.theme-light .faq-item,
.theme-light .version-row,
.theme-light .release-notes,
.theme-light .process-box,
.theme-light .asset-media-card,
.theme-light .plugin-media-card,
.theme-light .plugin-preview-thumb,
.theme-light .resource-actions,
.theme-light .tool-action {
  background: #f8fafc !important;
  border-color: rgba(15, 23, 42, 0.1) !important;
}

.theme-light .btn,
.theme-light .hero-action-primary,
.theme-light .buy-btn,
.theme-light .asset-buy-btn,
.theme-light .asset-buy-btn-inline {
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.22);
}

.theme-light .btn:hover,
.theme-light .hero-action-primary:hover,
.theme-light .buy-btn:hover,
.theme-light .asset-buy-btn:hover,
.theme-light .asset-buy-btn-inline:hover {
  background: linear-gradient(135deg, #fcd34d, #f59e0b);
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.28);
}

.theme-light .btn-outline,
.theme-light .hero-action-secondary,
.theme-light .plugin-download {
  background: #fff !important;
  color: #111827 !important;
  border-color: rgba(15, 23, 42, 0.16) !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.theme-light .btn-outline:hover,
.theme-light .hero-action-secondary:hover,
.theme-light .plugin-download:hover {
  color: var(--theme-color, var(--nuke-orange)) !important;
  border-color: var(--theme-color, var(--nuke-orange)) !important;
  background: #fff7ed !important;
}

.theme-light .plugin-showcase,
.theme-light .plugin-window,
.theme-light .plugin-window-bar,
.theme-light .plugin-preview-fallback,
.theme-light .ai-hero-console {
  background: #ffffff !important;
  border-color: rgba(15, 23, 42, 0.13) !important;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12) !important;
}

.theme-light .plugin-window-bar span:nth-child(1) { background: #f87171; }
.theme-light .plugin-window-bar span:nth-child(2) { background: #fbbf24; }
.theme-light .plugin-window-bar span:nth-child(3) { background: #34d399; }
.theme-light .plugin-window-bar em,
.theme-light .ai-hero-console span,
.theme-light .ai-side-panel dt,
.theme-light .ai-feed-mark strong {
  color: var(--text-soft) !important;
}

.theme-light .plugin-window img,
.theme-light .media-frame,
.theme-light .asset-media-thumb,
.theme-light .asset-cover,
.theme-light .ecosystem-cover,
.theme-light .resource-cover-image,
.theme-light .ai-featured-visual,
.theme-light .ai-feed-mark,
.theme-light .ai-side-cover {
  background-color: #0b1020;
}

.theme-light .plugin-quickbar .plugin-fact-strip div,
.theme-light .plugin-quickbar .plugin-section-nav {
  background: transparent !important;
  box-shadow: none !important;
}

.theme-light .plugin-quickbar .plugin-section-nav {
  border-top-color: rgba(15, 23, 42, 0.1);
}

.theme-light .plugin-quickbar .plugin-section-nav a {
  color: #667085;
}

.theme-light .price-head {
  border-bottom-color: rgba(15, 23, 42, 0.1);
}

.theme-light .trade-badge {
  background: #fff7ed !important;
  border-color: rgba(249, 115, 22, 0.26) !important;
  color: #c2410c !important;
}

.theme-light .tag,
.theme-light .price-badge,
.theme-light .search-result-type,
.theme-light .search-result-meta,
.theme-light .modal-tags span,
.theme-light .ai-tag,
.theme-light .tool-tag {
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: none;
}

.theme-light .search-page-form input {
  background: #fff;
  color: #111827;
  border-color: rgba(15, 23, 42, 0.14);
}

.theme-light .search-summary-pills span {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.11);
  color: var(--text-muted);
}

.theme-light .asset-theme-shell,
.theme-light .resource-head,
.theme-light .ai-lab-hero,
.theme-light .asset-library,
.theme-light .knowledge-library,
.theme-light .ai-feed-section,
.theme-light .section-block {
  background: transparent !important;
}

.theme-light .asset-media-card {
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.09);
}

.theme-light .asset-media-badge {
  color: #0f172a;
  background: #e0f2fe;
}

.theme-light .media-empty,
.theme-light .asset-media-empty,
.theme-light .empty-inline {
  border-color: rgba(15, 23, 42, 0.16) !important;
  background: #f8fafc !important;
}

.theme-light .back-top {
  background: #fff;
  color: #111827;
  border-color: rgba(15, 23, 42, 0.13);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.theme-light .ai-entry-btn {
  border-color: rgba(79, 70, 229, 0.34);
  background:
    radial-gradient(circle at 22% 44%, rgba(255, 190, 92, 0.32), transparent 18%),
    radial-gradient(circle at 63% 18%, rgba(124, 58, 237, 0.25), transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.96));
  color: #172554;
  box-shadow: 0 18px 42px rgba(59, 130, 246, 0.16);
}

.theme-light .ai-entry-btn:hover {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.2), 0 0 0 4px rgba(59, 130, 246, 0.08);
}

.theme-light .ai-btn-dot,
.theme-light .ai-wave-label {
  color: #1d4ed8;
}

.theme-light .contact-modal-close {
  color: #111827;
  background: #fff;
  border-color: rgba(15, 23, 42, 0.15);
}

.theme-light .qr-card {
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.theme-light .qr-card span {
  color: #111827;
}

@media (max-width: 860px) {
  .theme-light .mobile-nav {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }
}

/* Light controls polish: 2026-05-24 */
.theme-light {
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.theme-light ::selection {
  color: #111827;
  background: rgba(251, 191, 36, 0.38);
}

.theme-light nav {
  min-height: 72px;
}

.theme-light .nav-center a {
  color: #667085;
  font-weight: 760;
}

.theme-light .nav-center a.active {
  color: #111827;
  border-bottom-color: var(--nuke-orange);
}

.theme-light .nav-center a:hover {
  color: #111827;
}

.theme-light .logo {
  color: #0f172a;
}

.theme-light .search-box {
  min-height: 40px;
  background: #fff;
}

.theme-light .search-input {
  font-weight: 650;
}

.theme-light .search-btn:hover {
  color: #0ea5e9;
}

.theme-light .page-kicker,
.theme-light .hero-kicker,
.theme-light .asset-theme-kicker,
.theme-light .ai-eyebrow,
.theme-light .breadcrumb {
  color: #0ea5e9 !important;
}

.theme-light .section-title p,
.theme-light .page-head .page-kicker {
  color: #0ea5e9 !important;
}

.theme-light .btn:not(.ai-entry-btn),
.theme-light .hero-action-primary,
.theme-light .buy-btn,
.theme-light .asset-buy-btn,
.theme-light .asset-buy-btn-inline,
.theme-light .tool-action.primary {
  color: #111827 !important;
  border: 1px solid rgba(217, 119, 6, 0.24) !important;
  background-image: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%) !important;
  background-color: #f59e0b !important;
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

.theme-light .btn:not(.ai-entry-btn):hover,
.theme-light .hero-action-primary:hover,
.theme-light .buy-btn:hover,
.theme-light .asset-buy-btn:hover,
.theme-light .asset-buy-btn-inline:hover,
.theme-light .tool-action.primary:hover {
  color: #111827 !important;
  background-image: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.42) !important;
}

.theme-light .hero-action-secondary,
.theme-light .plugin-download,
.theme-light .btn-outline,
.theme-light .resource-actions a,
.theme-light .tool-action {
  color: #0f172a !important;
  border: 1px solid rgba(15, 23, 42, 0.14) !important;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%) !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.72) !important;
}

.theme-light .hero-action-secondary:hover,
.theme-light .plugin-download:hover,
.theme-light .btn-outline:hover,
.theme-light .resource-actions a:hover,
.theme-light .tool-action:hover {
  color: #0369a1 !important;
  border-color: rgba(14, 165, 233, 0.42) !important;
  background: linear-gradient(180deg, #fff 0%, #eff6ff 100%) !important;
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}

.theme-light .ai-entry-btn {
  min-height: 58px;
  color: #172554 !important;
  border: 1px solid rgba(37, 99, 235, 0.28) !important;
  background:
    radial-gradient(circle at 24% 46%, rgba(251, 191, 36, 0.38), transparent 17%),
    radial-gradient(circle at 68% 20%, rgba(124, 58, 237, 0.2), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #eef6ff 100%) !important;
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.theme-light .ai-entry-btn:hover {
  border-color: rgba(37, 99, 235, 0.55) !important;
  box-shadow: 0 22px 52px rgba(37, 99, 235, 0.22), 0 0 0 5px rgba(59, 130, 246, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.theme-light .tag,
.theme-light .price-badge,
.theme-light .modal-tags span,
.theme-light .ai-tag {
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 850;
}

.theme-light .tag.lang,
.theme-light .search-result-type {
  color: #0369a1 !important;
  background: #e0f2fe !important;
  border-color: #bae6fd !important;
}

.theme-light .tag.sys {
  color: #b45309 !important;
  background: #fff7ed !important;
  border-color: #fed7aa !important;
}

.theme-light .tag.asset-tag,
.theme-light .green-action {
  color: #047857 !important;
}

.theme-light .tag.asset-tag {
  background: #ecfdf5 !important;
  border-color: #bbf7d0 !important;
}

.theme-light .tag.knowledge-tag {
  color: #1d4ed8 !important;
  background: #eff6ff !important;
  border-color: #bfdbfe !important;
}

.theme-light .tag.ai-tag,
.theme-light .purple-action,
.theme-light .ai-tag {
  color: #6d28d9 !important;
}

.theme-light .ai-tag,
.theme-light .tag.ai-tag {
  background: #f3e8ff !important;
  border-color: #ddd6fe !important;
}

.theme-light .card,
.theme-light .info-panel,
.theme-light .purchase-panel,
.theme-light .asset-resource-card,
.theme-light .search-result-card,
.theme-light .disclaimer-panel {
  border-radius: 14px !important;
}

.theme-light .card,
.theme-light .info-panel,
.theme-light .purchase-panel {
  backdrop-filter: blur(10px);
}

.theme-light .plugin-card,
.theme-light .ecosystem-card,
.theme-light .asset-card,
.theme-light .search-result-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.theme-light .plugin-card:hover,
.theme-light .ecosystem-card:hover,
.theme-light .asset-card:hover,
.theme-light .search-result-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 165, 233, 0.24) !important;
}

.theme-light .feature-row {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%) !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.theme-light .feature-icon {
  background: #e0f2fe !important;
  color: #0284c7;
}

.theme-light .feature-icon svg,
.theme-light .detail-title svg {
  stroke: #0ea5e9 !important;
}

.theme-light .purchase-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.92)) !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12) !important;
}

.theme-light .price-head h2 {
  color: var(--theme-color, #0ea5e9) !important;
  text-shadow: none !important;
}

.theme-light .price-badge {
  color: #0369a1 !important;
  background: #e0f2fe !important;
  border-color: #bae6fd !important;
}

.theme-light .price-badges .price-badge:nth-child(2) {
  color: #047857 !important;
  background: #ecfdf5 !important;
  border-color: #bbf7d0 !important;
}

.theme-light .trade-badge {
  background: #fff7ed !important;
  border-color: #fed7aa !important;
  color: #c2410c !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.theme-light .process-box {
  background: #f8fafc !important;
  border-color: rgba(15, 23, 42, 0.08) !important;
  color: #667085 !important;
}

.theme-light .process-title {
  color: #111827 !important;
}

.theme-light .plugin-download svg,
.theme-light .buy-btn svg,
.theme-light .hero-action svg,
.theme-light .asset-buy-btn svg {
  stroke: currentColor;
}

.theme-light .plugin-section-nav {
  border-top-color: rgba(15, 23, 42, 0.1) !important;
}

.theme-light .plugin-section-nav a {
  color: #667085 !important;
}

.theme-light .plugin-section-nav a:hover {
  color: var(--theme-color, #0ea5e9) !important;
  border-bottom-color: var(--theme-color, #0ea5e9) !important;
}

.theme-light .quick-facts div,
.theme-light .plugin-fact-strip div {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%) !important;
  border-color: rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05) !important;
}

.theme-light .quick-facts span,
.theme-light .plugin-fact-strip span {
  color: #98a2b3 !important;
}

.theme-light .quick-facts strong,
.theme-light .plugin-fact-strip strong {
  color: #111827 !important;
}

.theme-light .media-frame,
.theme-light .plugin-media-thumb,
.theme-light .asset-media-thumb,
.theme-light .resource-cover-image {
  border-color: rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08) !important;
}

.theme-light .plugin-media-meta,
.theme-light .asset-media-meta {
  background: #fff !important;
  color: #111827 !important;
}

.theme-light .plugin-media-meta p,
.theme-light .asset-media-meta p {
  color: #667085 !important;
}

.theme-light .faq-item {
  background: #fff !important;
}

.theme-light .faq-item summary {
  color: #111827 !important;
}

.theme-light .faq-item[open] {
  border-color: rgba(14, 165, 233, 0.22) !important;
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.08) !important;
}

.theme-light .floating-sidebar {
  border-radius: 12px 0 0 12px;
}

.theme-light .sidebar-item {
  font-weight: 760;
}

.theme-light .sidebar-item:hover {
  color: #0ea5e9;
  background: #eff6ff;
}

.theme-light .sidebar-item:nth-child(3):hover {
  color: #f59e0b;
  background: #fff7ed;
}

.theme-light .sidebar-item:nth-child(4):hover {
  color: #7c3aed;
  background: #f5f3ff;
}

.theme-light .contact-modal-panel {
  border-radius: 18px;
}

.theme-light .contact-modal-close {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.theme-light .back-top:hover {
  color: #0ea5e9;
  border-color: rgba(14, 165, 233, 0.35);
  background: #eff6ff;
}


/* Light VFX polish: 2026-05-24 */
.theme-light .asset-detail-hero {
  max-width: 1380px;
  margin: 68px auto 0;
  padding: 0 6% 24px;
  position: relative;
}

.theme-light .asset-detail-hero::before {
  content: "";
  position: absolute;
  inset: -46px 3% auto 3%;
  height: 370px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 26%, rgba(14, 165, 233, 0.2), transparent 34%),
    radial-gradient(circle at 74% 12%, rgba(245, 158, 11, 0.18), transparent 32%),
    linear-gradient(115deg, rgba(240, 249, 255, 0.86), rgba(255, 255, 255, 0.72) 48%, rgba(255, 247, 237, 0.68));
  filter: blur(2px);
}

.theme-light .asset-detail-hero .page-kicker,
.theme-light .asset-library .section-title p {
  color: #0284c7 !important;
  letter-spacing: 0.04em;
}

.theme-light .asset-detail-hero h1,
.theme-light .asset-library .section-title h2 {
  color: #0f172a !important;
  letter-spacing: 0;
  text-shadow: none !important;
}

.theme-light .asset-detail-hero > p {
  color: #475569 !important;
  max-width: 780px;
  font-size: 18px;
  line-height: 1.9;
}

.theme-light .asset-delivery {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.theme-light .asset-delivery div {
  position: relative;
  min-height: 132px;
  padding: 24px 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)) !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08) !important;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.theme-light .asset-delivery div:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.26) !important;
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12) !important;
}

.theme-light .asset-delivery div::before {
  content: "01";
  position: absolute;
  right: 18px;
  top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #0369a1;
  background: #e0f2fe;
  box-shadow: inset 0 0 0 1px #bae6fd;
  font-size: 13px;
  font-weight: 900;
}

.theme-light .asset-delivery div:nth-child(2)::before {
  content: "02";
  color: #6d28d9;
  background: #f5f3ff;
  box-shadow: inset 0 0 0 1px #ddd6fe;
}

.theme-light .asset-delivery div:nth-child(3)::before {
  content: "03";
  color: #c2410c;
  background: #fff7ed;
  box-shadow: inset 0 0 0 1px #fed7aa;
}

.theme-light .asset-delivery strong {
  display: block;
  color: #111827 !important;
  font-size: 18px;
  line-height: 1.25;
  margin: 0 58px 12px 0;
}

.theme-light .asset-delivery span {
  display: block;
  color: #64748b !important;
  font-size: 14px;
  line-height: 1.65;
  max-width: 86%;
}

.theme-light .asset-library {
  margin-top: 42px;
  padding-bottom: 32px;
}

.theme-light .asset-library .section-title {
  margin: 58px 0 34px;
}

.theme-light .asset-resource-grid {
  max-width: 1440px;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 28px;
}

.theme-light .asset-resource-card {
  min-height: 0;
  border-radius: 20px !important;
  overflow: hidden;
  background: #ffffff !important;
  border-color: rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1) !important;
}

.theme-light .asset-resource-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--asset-accent-rgb), 0.34) !important;
  box-shadow:
    0 26px 64px rgba(15, 23, 42, 0.15) !important,
    0 0 0 4px rgba(var(--asset-accent-rgb), 0.07) !important;
}

.theme-light .resource-cover {
  min-height: 235px;
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--asset-accent-rgb), 0.24), transparent 34%),
    linear-gradient(145deg, #0f172a, #020617) !important;
}

.theme-light .resource-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, rgba(var(--asset-accent-rgb), 0.42), transparent);
}

.theme-light .resource-cover-image {
  filter: saturate(1.1) contrast(1.04);
  transition: transform 0.32s ease, filter 0.32s ease;
}

.theme-light .asset-resource-card:hover .resource-cover-image {
  transform: scale(1.045);
  filter: saturate(1.18) contrast(1.08);
}

.theme-light .resource-cover-shade {
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0.08) 0%, rgba(2, 6, 23, 0.42) 54%, rgba(2, 6, 23, 0.88) 100%),
    radial-gradient(circle at 18% 18%, rgba(var(--asset-accent-rgb), 0.22), transparent 34%) !important;
}

.theme-light .resource-cover-content {
  padding: 24px;
}

.theme-light .resource-cover-chip {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.36) !important;
  background: rgba(15, 23, 42, 0.55) !important;
  box-shadow: 0 10px 22px rgba(2, 6, 23, 0.22);
}

.theme-light .resource-cover strong {
  color: #ffffff !important;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}

.theme-light .resource-body {
  padding: 26px 24px 24px;
  min-height: 258px;
  gap: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  box-shadow: none !important;
}

.theme-light .asset-resource-card h3 {
  color: #0f172a !important;
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.theme-light .resource-category {
  color: var(--asset-accent) !important;
  margin-bottom: 14px !important;
  font-size: 14px !important;
  letter-spacing: 0.01em;
}

.theme-light .asset-resource-card p:not(.resource-category) {
  color: #64748b !important;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
}

.theme-light .asset-resource-card .card-tags {
  margin-top: auto;
}

.theme-light .asset-resource-card .tag.asset-tag {
  background: rgba(var(--asset-accent-rgb), 0.1) !important;
  border-color: rgba(var(--asset-accent-rgb), 0.22) !important;
  color: var(--asset-accent) !important;
}

.theme-light .asset-resource-card .action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin-top: 22px;
  padding: 8px 0;
  color: var(--asset-accent) !important;
  font-weight: 900;
  opacity: 0.95;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.theme-light .asset-resource-card .action::after {
  color: currentColor;
}

.theme-light .asset-resource-card:hover .action {
  transform: translateX(4px);
  opacity: 1;
}

@media (max-width: 980px) {
  .theme-light .asset-delivery {
    grid-template-columns: 1fr;
  }

  .theme-light .asset-delivery span {
    max-width: none;
  }

  .theme-light .asset-resource-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}


/* Light VFX contrast refinements: 2026-05-24 */
.theme-light .asset-resource-card {
  --asset-readable: color-mix(in srgb, var(--asset-accent) 45%, #0f172a 55%);
  --asset-soft-bg: color-mix(in srgb, var(--asset-accent) 12%, #ffffff 88%);
  --asset-soft-border: color-mix(in srgb, var(--asset-accent) 32%, #cbd5e1 68%);
}

.theme-light .resource-category,
.theme-light .asset-resource-card .action {
  color: var(--asset-readable) !important;
}

.theme-light .asset-resource-card .tag.asset-tag {
  color: var(--asset-readable) !important;
  background: var(--asset-soft-bg) !important;
  border-color: var(--asset-soft-border) !important;
}

.theme-light .asset-resource-card:hover .tag.asset-tag {
  border-color: color-mix(in srgb, var(--asset-readable) 45%, #ffffff 55%) !important;
}

.theme-light .ai-hero-console {
  border-radius: 18px !important;
  border-color: rgba(79, 70, 229, 0.16) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)) !important;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.1) !important;
}

.theme-light .ai-hero-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 16%, rgba(14, 165, 233, 0.14), transparent 34%),
    radial-gradient(circle at 90% 82%, rgba(245, 158, 11, 0.13), transparent 32%);
}

.theme-light .ai-hero-console div {
  border-bottom-color: rgba(15, 23, 42, 0.08) !important;
}

.theme-light .ai-hero-console span {
  color: #64748b !important;
}

.theme-light .ai-hero-console strong {
  color: #0f172a !important;
}

/* VFX bundle offer: 2026-05-26 */
.asset-offer-band {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid rgba(246, 165, 38, 0.28);
  border-radius: 18px;
  padding: 22px;
  background:
    radial-gradient(circle at 84% 12%, rgba(246, 165, 38, 0.18), transparent 30%),
    radial-gradient(circle at 14% 90%, rgba(14, 165, 233, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(19, 23, 34, 0.96), rgba(9, 12, 20, 0.92));
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.asset-offer-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.asset-offer-eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, #fbbf24, #fde68a);
  font-size: 12px;
  font-weight: 900;
}

.asset-offer-main h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: 0;
}

.asset-offer-main p {
  max-width: 920px;
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 15px;
  line-height: 1.75;
}

.asset-offer-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.asset-offer-side div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.asset-offer-side span,
.asset-cta-offer span {
  display: block;
  margin-bottom: 5px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.asset-offer-side strong {
  display: block;
  color: #fbbf24;
  font-size: 30px;
  line-height: 1;
}

.asset-offer-side em {
  display: block;
  margin-top: 7px;
  color: rgba(226, 232, 240, 0.74);
  font-style: normal;
  font-size: 12px;
}

.asset-offer-side p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(254, 243, 199, 0.92);
  background: rgba(246, 165, 38, 0.12);
  border: 1px solid rgba(246, 165, 38, 0.18);
  font-size: 13px;
  line-height: 1.65;
}

.asset-cta-offer {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(var(--asset-accent-rgb), 0.24);
  border-radius: 12px;
  background: rgba(var(--asset-accent-rgb), 0.1);
}

.asset-cta-offer strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.asset-cta-offer em {
  display: block;
  color: var(--text-muted);
  font-style: normal;
  font-size: 13px;
  line-height: 1.55;
}

.asset-cta-note {
  margin: 12px 0 0;
  color: rgba(251, 191, 36, 0.95);
  font-size: 13px;
  line-height: 1.65;
}

.theme-light .asset-offer-band {
  border-color: rgba(245, 158, 11, 0.26);
  background:
    radial-gradient(circle at 88% 12%, rgba(245, 158, 11, 0.18), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(14, 165, 233, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 235, 0.92)) !important;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12) !important;
}

.theme-light .asset-offer-main h2,
.theme-light .asset-cta-offer strong {
  color: #0f172a !important;
}

.theme-light .asset-offer-main p,
.theme-light .asset-cta-offer em {
  color: #475569 !important;
}

.theme-light .asset-offer-side div {
  border-color: rgba(15, 23, 42, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.theme-light .asset-offer-side span,
.theme-light .asset-cta-offer span {
  color: #64748b !important;
}

.theme-light .asset-offer-side strong {
  color: #ea580c !important;
}

.theme-light .asset-offer-side em {
  color: #64748b !important;
}

.theme-light .asset-offer-side p {
  color: #92400e !important;
  background: #fffbeb;
  border-color: #fde68a;
}

.theme-light .asset-cta-offer {
  border-color: rgba(14, 165, 233, 0.18);
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.95), rgba(255, 251, 235, 0.82));
}

.theme-light .asset-cta-note {
  color: #9a3412;
}

@media (max-width: 1020px) {
  .asset-offer-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .asset-offer-band {
    margin-top: 18px;
    padding: 18px;
    border-radius: 16px;
  }

  .asset-offer-main h2 {
    font-size: 22px;
  }

  .asset-offer-side {
    grid-template-columns: 1fr;
  }
}

/* VFX offer redesign: 2026-05-26 */
.asset-offer-dock {
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(280px, 0.55fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(246, 165, 38, 0.24);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(8, 12, 20, 0.9)),
    radial-gradient(circle at 76% 16%, rgba(246, 165, 38, 0.18), transparent 34%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.asset-offer-dock-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.asset-offer-dock-copy strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.asset-offer-dock-copy span {
  display: block;
  margin-top: 4px;
  color: rgba(226, 232, 240, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.asset-offer-gift-card {
  display: block;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 14px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(14, 165, 233, 0.24);
  background: rgba(14, 165, 233, 0.1);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.asset-offer-gift-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.42);
  background: rgba(14, 165, 233, 0.16);
}

.asset-offer-gift-card span {
  display: block;
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 900;
}

.asset-offer-gift-card strong {
  display: block;
  margin-top: 2px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}

.asset-offer-gift-card em {
  display: block;
  margin-top: 4px;
  color: rgba(226, 232, 240, 0.68);
  font-size: 12px;
  font-style: normal;
}

.asset-offer-dock-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.asset-offer-dock-link:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 165, 38, 0.34);
  background: rgba(246, 165, 38, 0.14);
}

.asset-hero-row {
  align-items: center;
}

.asset-inline-offer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 860px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(246, 165, 38, 0.2);
  background: rgba(246, 165, 38, 0.08);
}

.asset-inline-offer span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #111827;
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  font-size: 12px;
  font-weight: 900;
}

.asset-inline-offer strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.25;
}

.asset-inline-offer em {
  color: rgba(226, 232, 240, 0.74);
  font-style: normal;
  font-size: 13px;
}

.asset-inline-offer a {
  margin-left: auto;
  color: #7dd3fc;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.asset-inline-offer a:hover {
  color: #38bdf8;
}

.asset-top-cta-deal {
  padding: 18px;
  border-radius: 18px;
}

.asset-deal-head {
  padding: 18px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 84% 12%, rgba(246, 165, 38, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(246, 165, 38, 0.14), rgba(255, 255, 255, 0.04));
}

.asset-deal-head span,
.asset-deal-gift span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 900;
}

.asset-deal-head strong {
  display: block;
  margin: 6px 0;
  color: #f59e0b;
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
}

.asset-deal-head em,
.asset-deal-gift em {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.55;
}

.asset-deal-gift {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(14, 165, 233, 0.24);
  background: rgba(14, 165, 233, 0.08);
}

.asset-deal-gift a {
  display: inline-flex;
  margin: 4px 0 6px;
  color: #7dd3fc;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.asset-deal-gift a:hover {
  color: #38bdf8;
}

.asset-deal-points {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.asset-deal-points li {
  position: relative;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.55;
}

.asset-deal-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f59e0b;
}

.asset-deal-actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.asset-deal-actions .asset-buy-btn-inline {
  margin-top: 0;
}

.asset-plugin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 12px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(14, 165, 233, 0.28);
  background: rgba(14, 165, 233, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.asset-plugin-link:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 165, 233, 0.45);
  background: rgba(14, 165, 233, 0.2);
}

.theme-light .asset-offer-dock {
  border-color: rgba(245, 158, 11, 0.18);
  background:
    radial-gradient(circle at 74% 16%, rgba(245, 158, 11, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 249, 255, 0.86)) !important;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1) !important;
}

.theme-light .asset-offer-dock-copy strong,
.theme-light .asset-offer-gift-card strong,
.theme-light .asset-inline-offer strong {
  color: #0f172a !important;
}

.theme-light .asset-offer-dock-copy span,
.theme-light .asset-offer-gift-card em,
.theme-light .asset-inline-offer em {
  color: #64748b !important;
}

.theme-light .asset-offer-gift-card {
  border-color: rgba(14, 165, 233, 0.18);
  background: rgba(240, 249, 255, 0.9);
}

.theme-light .asset-offer-gift-card span {
  color: #0284c7 !important;
}

.theme-light .asset-offer-dock-link {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.1);
  background: #fff;
}

.theme-light .asset-offer-dock-link:hover {
  border-color: rgba(245, 158, 11, 0.34);
  background: #fffbeb;
}

.theme-light .asset-item-hero {
  max-width: 1540px;
  margin-top: 48px;
  padding-bottom: 44px;
}

.theme-light .asset-inline-offer {
  border-color: rgba(245, 158, 11, 0.2);
  background: rgba(255, 251, 235, 0.86);
}

.theme-light .asset-inline-offer a {
  color: #0284c7;
}

.theme-light .asset-top-cta-deal {
  background:
    radial-gradient(circle at 86% 8%, rgba(245, 158, 11, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92)) !important;
}

.theme-light .asset-deal-head {
  background: linear-gradient(135deg, #fff7ed, #fffbeb);
}

.theme-light .asset-deal-head span,
.theme-light .asset-deal-head em,
.theme-light .asset-deal-gift span,
.theme-light .asset-deal-gift em,
.theme-light .asset-deal-points li {
  color: #64748b !important;
}

.theme-light .asset-deal-head strong {
  color: #ea580c !important;
}

.theme-light .asset-deal-gift {
  border-color: rgba(14, 165, 233, 0.18);
  background: linear-gradient(135deg, #f0f9ff, #ffffff);
}

.theme-light .asset-deal-gift a {
  color: #0369a1;
}

.theme-light .asset-plugin-link {
  color: #0369a1;
  background: #f0f9ff;
  border-color: #bae6fd;
}

.theme-light .asset-plugin-link:hover {
  background: #e0f2fe;
  border-color: #7dd3fc;
}

@media (max-width: 1120px) {
  .asset-offer-dock {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .asset-offer-gift-card,
  .asset-offer-dock-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .asset-offer-dock {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .asset-offer-dock-badge,
  .asset-offer-dock-link {
    width: 100%;
  }

  .asset-inline-offer {
    align-items: flex-start;
    flex-direction: column;
  }

  .asset-inline-offer a {
    margin-left: 0;
  }

  .asset-deal-head strong {
    font-size: 40px;
  }
}


/* VFX detail compact offer hero: 2026-05-26 */
.asset-item-hero.asset-item-hero-with-cta {
  margin-top: 28px;
  padding-bottom: 28px;
}

.theme-light .asset-item-hero.asset-item-hero-with-cta {
  margin-top: 28px;
  padding-bottom: 28px;
}

.asset-item-hero-with-cta .back-link {
  margin-bottom: 18px;
}

.asset-item-hero-with-cta .asset-hero-row {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 34px;
}

.asset-item-hero-with-cta .asset-hero-copy {
  padding-top: 4px;
}

.asset-item-hero-with-cta .asset-theme-kicker {
  margin-bottom: 12px;
}

.asset-item-hero-with-cta h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.04;
}

.asset-item-hero-with-cta .asset-hero-copy > p {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: 17px;
  line-height: 1.62;
}

.asset-item-hero-with-cta .asset-hero-copy .card-tags {
  margin-top: 14px;
}

.asset-item-hero-with-cta .asset-inline-offer {
  margin-top: 24px;
  max-width: 820px;
  padding: 10px 12px;
  border-radius: 14px;
}

.asset-item-hero-with-cta .asset-top-cta-deal {
  align-self: start;
  padding: 16px;
  border-radius: 18px;
}

.asset-top-cta-deal .asset-deal-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 12px;
  align-items: end;
  padding: 14px 16px;
}

.asset-top-cta-deal .asset-deal-head span {
  grid-column: 1;
}

.asset-top-cta-deal .asset-deal-head strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  margin: 0;
  font-size: 40px;
}

.asset-top-cta-deal .asset-deal-head em {
  grid-column: 1;
}

.asset-top-cta-deal .asset-deal-gift {
  margin-top: 10px;
  padding: 12px 14px;
}

.asset-top-cta-deal .asset-deal-gift a {
  margin: 3px 0 4px;
  font-size: 17px;
}

.asset-top-cta-deal .asset-deal-points {
  margin-top: 10px;
  gap: 6px;
}

.asset-top-cta-deal .asset-deal-points li {
  font-size: 12.5px;
  line-height: 1.45;
}

.asset-top-cta-deal .asset-deal-actions {
  margin-top: 12px;
  gap: 8px;
}

.asset-top-cta-deal .asset-buy-btn-inline {
  min-height: 46px;
  padding: 12px 18px;
}

.asset-top-cta-deal .asset-plugin-link {
  min-height: 42px;
}

.asset-intro-section {
  margin-top: 28px;
}

@media (max-width: 980px) {
  .asset-item-hero-with-cta .asset-hero-row {
    grid-template-columns: 1fr;
  }

  .asset-item-hero-with-cta h1 {
    font-size: clamp(38px, 8vw, 56px);
  }
}

@media (max-width: 620px) {
  .asset-top-cta-deal .asset-deal-head {
    grid-template-columns: 1fr;
  }

  .asset-top-cta-deal .asset-deal-head strong {
    grid-column: 1;
    grid-row: auto;
    margin: 6px 0;
    font-size: 38px;
  }
}

/* AI lab redesign: 2026-05-26 */
.ai-lab-hero-v2 {
  max-width: 1420px;
  margin-top: 46px;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: stretch;
}

.ai-dev-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
}

.ai-dev-status span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #0ea5e9);
  font-size: 12px;
  font-weight: 900;
}

.ai-dev-status strong {
  color: var(--text-main);
  font-size: 13px;
}

.ai-lab-hero-v2 .ai-hero-copy h1 {
  max-width: 900px;
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.ai-lab-hero-v2 .ai-hero-copy p:last-child {
  max-width: 920px;
  font-size: 17px;
  line-height: 1.78;
}

.ai-lab-status-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 82% 12%, rgba(14, 165, 233, 0.16), transparent 32%),
    radial-gradient(circle at 16% 90%, rgba(245, 158, 11, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.ai-lab-status-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}

.ai-status-head,
.ai-lab-status-panel dl,
.ai-lab-status-panel p,
.ai-status-meter {
  position: relative;
  z-index: 1;
}

.ai-status-head span {
  display: block;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}

.ai-status-head strong {
  color: #0f172a;
  font-size: 26px;
  line-height: 1.15;
}

.ai-status-meter {
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.ai-status-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #7c3aed, #0ea5e9, #f59e0b);
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.28);
}

.ai-lab-status-panel dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.ai-lab-status-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.ai-lab-status-panel dt {
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
}

.ai-lab-status-panel dd {
  margin: 0;
  color: #0f172a;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.ai-lab-status-panel p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
}

.ai-section-head {
  max-width: 1420px;
  margin: 0 auto 24px;
  padding: 0 6%;
}

.ai-section-head h2 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 36px;
  line-height: 1.16;
}

.ai-section-head span {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.ai-section-head.compact {
  margin-bottom: 18px;
  text-align: center;
}

.ai-section-head.compact.left {
  padding: 0;
  text-align: left;
}

.ai-research-map,
.ai-roadmap-section,
.ai-featured-section-v2,
.ai-feed-section-v2 {
  margin-top: 64px;
}

.ai-research-grid,
.ai-roadmap-grid,
.ai-featured-layout {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 6%;
}

.ai-research-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ai-research-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% 14%, rgba(14, 165, 233, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.86));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ai-research-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.12);
}

.ai-research-card span {
  display: inline-flex;
  color: #7c3aed;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.ai-research-card strong {
  display: block;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.22;
  margin-bottom: 12px;
}

.ai-research-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.72;
}

.ai-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ai-roadmap-step {
  position: relative;
  padding: 18px 18px 20px;
  border-top: 3px solid rgba(124, 58, 237, 0.28);
  border-radius: 0 0 14px 14px;
  background: rgba(255, 255, 255, 0.7);
}

.ai-roadmap-step span {
  display: inline-flex;
  color: #0ea5e9;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 14px;
}

.ai-roadmap-step strong {
  display: block;
  color: #0f172a;
  font-size: 18px;
  margin-bottom: 8px;
}

.ai-roadmap-step p {
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.7;
}

.ai-featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.ai-featured-section-v2 .ai-featured-story {
  margin-top: 0;
}

.ai-featured-story-v2 {
  min-height: 300px;
  border-radius: 16px;
}

.ai-source-panel {
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.ai-source-panel h3 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: 22px;
}

.ai-source-panel a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  color: #0369a1;
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.ai-source-panel a::after {
  content: "→";
  color: #f59e0b;
}

.ai-source-panel a:hover {
  color: #7c3aed;
}

.theme-light .ai-featured-story-v2 {
  background: rgba(255, 255, 255, 0.9) !important;
}

.theme-light .ai-featured-copy h2 {
  color: #0f172a !important;
}

.theme-light .ai-featured-copy p:not(.ai-eyebrow) {
  color: #64748b !important;
}

.theme-light .ai-feed-section-v2 .ai-feed-row {
  background: rgba(255, 255, 255, 0.86) !important;
}

@media (max-width: 1080px) {
  .ai-lab-hero-v2,
  .ai-featured-layout {
    grid-template-columns: 1fr;
  }

  .ai-research-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ai-research-grid,
  .ai-roadmap-grid {
    grid-template-columns: 1fr;
  }

  .ai-lab-hero-v2 .ai-hero-copy h1 {
    font-size: 40px;
  }

  .ai-dev-status {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 16px;
  }
}

/* 618 campaign */
.campaign-618-section {
  padding: 0 6% 34px;
}

.campaign-618-shell {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0c111a 0%, #111827 54%, #16110b 100%);
  border: 1px solid rgba(20, 184, 166, 0.22);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.campaign-618-shell::before {
  content: "";
  position: absolute;
  inset: -40% auto auto 48%;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(254, 215, 95, 0.22), transparent 62%);
  pointer-events: none;
}

.campaign-618-head {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.campaign-618-head p {
  margin: 0;
  color: #67e8f9;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.campaign-618-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
}

.campaign-618-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #d6dee9;
  font-weight: 700;
}

.campaign-618-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.campaign-618-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.campaign-618-card {
  min-height: 184px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.campaign-618-card:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 165, 38, 0.65);
  box-shadow: 0 22px 46px rgba(246, 165, 38, 0.2);
}

.campaign-618-card span {
  color: #7b8797;
  font-size: 13px;
  font-weight: 900;
}

.campaign-618-card strong {
  color: #0f172a;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.campaign-618-card del,
.product-card-618 del,
.campaign-price-head del {
  color: #8892a2;
  text-decoration-thickness: 2px;
}

.campaign-618-card em {
  display: block;
  margin-top: 4px;
  color: #dc2626;
  font-style: normal;
  font-size: 28px;
  font-weight: 950;
}

.product-card-618 {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0 20px;
  font-size: 12px;
  font-weight: 850;
}

.product-card-618 span,
.product-card-618 strong {
  padding: 4px 9px;
  border-radius: 999px;
}

.product-card-618 span {
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.product-card-618 strong {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.08);
}

.campaign-price-head {
  display: grid;
  gap: 6px;
}

.campaign-price-head > span {
  color: #dc2626;
  font-size: 13px;
  font-weight: 950;
}

.campaign-price-line {
  display: flex;
  gap: 10px;
  align-items: baseline;
  flex-wrap: wrap;
}

.campaign-price-head strong {
  color: #dc2626;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  font-weight: 950;
}

.campaign-price-head em {
  color: var(--text-soft);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

.asset-offer-dock .asset-offer-dock-badge,
.asset-inline-offer span,
.asset-deal-head span {
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  color: #fff;
  border-color: transparent;
}

.asset-deal-head strong {
  color: #dc2626;
}

@media (max-width: 1100px) {
  .campaign-618-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .campaign-618-section {
    padding: 0 18px 26px;
  }

  .campaign-618-shell {
    padding: 20px;
    border-radius: 18px;
  }

  .campaign-618-grid {
    grid-template-columns: 1fr;
  }

  .campaign-618-card {
    min-height: 150px;
  }
}

