*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --bg: #02060b;
  --bg-2: #07111b;
  --panel: rgba(8, 20, 32, .78);
  --panel-2: rgba(9, 25, 39, .86);
  --line: rgba(136, 181, 214, .28);
  --line-bright: rgba(48, 221, 255, .52);
  --text: #f4f8ff;
  --muted: #a9b7ca;
  --dim: #708094;
  --yellow: #ffe600;
  --yellow-2: #ffbf00;
  --cyan: #20e8ff;
  --cyan-2: #0a83ff;
  --pink: #ff5fa9;
  --green: #22e58c;
  --purple: #8b5cf6;
  --shadow: 0 24px 80px rgba(0, 0, 0, .48);
  --max: 1260px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 73% 16%, rgba(22, 159, 255, .26), transparent 30%),
    radial-gradient(circle at 23% 18%, rgba(255, 230, 0, .12), transparent 24%),
    linear-gradient(180deg, #010307 0%, #03101a 48%, #02070c 100%);
  font-family: "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .014) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.65), rgba(0,0,0,.25));
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.site-noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .24;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 2px, rgba(255,255,255,.018) 2px 3px);
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .34;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  gap: 18px;
  align-content: center;
  background: #02060b;
  transition: opacity .4s ease, visibility .4s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  color: var(--yellow);
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  letter-spacing: .18em;
}

.loader-bar {
  width: 180px;
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.12);
}

.loader-bar::after {
  content: "";
  display: block;
  width: 46%;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--cyan));
  animation: load-slide 1.1s ease-in-out infinite;
}

@keyframes load-slide {
  from { transform: translateX(-110%); }
  to { transform: translateX(235%); }
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(14px, 2.4vw, 40px);
  background: rgba(1, 5, 10, .84);
  border-bottom: 1px solid rgba(160, 190, 220, .2);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  flex: 0 0 auto;
  width: max-content;
  align-items: center;
  gap: 10px;
}

.brand-bolt {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--yellow);
  filter: drop-shadow(0 0 12px rgba(255, 230, 0, .46));
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.brand-text strong {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: .02em;
}

.brand-text em {
  color: #fff;
  font-family: "Orbitron", sans-serif;
  font-size: 12px;
  font-weight: 900;
  font-style: italic;
}

.nav-links {
  flex: 0 1 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
  height: 100%;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(244, 248, 255, .92);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(255, 230, 0, .55);
  transition: transform .22s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-social {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.nav-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.nav-social svg {
  width: 22px;
  height: 22px;
}

.social-telegram svg {
  color: #32c7ff;
}

.social-bilibili {
  color: var(--pink) !important;
}

.social-bilibili svg {
  color: var(--pink);
}

.home-page {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 86px));
  margin: 0 auto;
  padding: 58px 0 68px;
}

.hero-section {
  position: relative;
  min-height: 330px;
  display: block;
  padding: 32px 0 42px;
  overflow: hidden;
  isolation: isolate;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(2, 6, 11, .97) 0%, rgba(2, 6, 11, .85) 42%, rgba(2, 13, 24, .38) 72%, rgba(3, 10, 16, .92) 100%),
    radial-gradient(circle at 74% 48%, rgba(32, 232, 255, .28), transparent 25%),
    linear-gradient(180deg, #02060b 0%, #071420 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  bottom: 0;
  height: 130px;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent 0 7%, rgba(255, 210, 0, .33) 7.2% 7.5%, transparent 7.7% 100%),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 100% 100%, 84px 100%, 100% 24px;
  transform: perspective(520px) rotateX(64deg);
  transform-origin: bottom;
  opacity: .7;
}

.hero-bg-city {
  position: absolute;
  right: calc(50% - 50vw);
  bottom: 34px;
  width: 55vw;
  height: 240px;
  z-index: -1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 7px;
  opacity: .72;
  filter: drop-shadow(0 0 22px rgba(20, 157, 255, .42));
}

.hero-bg-city span {
  width: clamp(18px, 2vw, 36px);
  height: var(--h, 96px);
  background:
    linear-gradient(90deg, rgba(32,232,255,.18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(26, 163, 255, .38), rgba(5, 26, 41, .05));
  border-left: 1px solid rgba(32,232,255,.25);
  border-right: 1px solid rgba(32,232,255,.1);
}

.hero-bg-city span:nth-child(1) { --h: 84px; }
.hero-bg-city span:nth-child(2) { --h: 132px; }
.hero-bg-city span:nth-child(3) { --h: 104px; }
.hero-bg-city span:nth-child(4) { --h: 176px; }
.hero-bg-city span:nth-child(5) { --h: 142px; }
.hero-bg-city span:nth-child(6) { --h: 210px; }
.hero-bg-city span:nth-child(7) { --h: 120px; }
.hero-bg-city span:nth-child(8) { --h: 164px; }

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding-top: 6px;
}

.hero-copy h1 {
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 18px;
  line-height: .96;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-title-cn,
.hero-title-en {
  display: inline-block;
  font-family: "Orbitron", "Noto Sans SC", sans-serif;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  filter: drop-shadow(0 6px 0 rgba(0,0,0,.25));
}

.hero-title-cn {  color: #fff;  font-size: clamp(46px, 5vw, 66px);  letter-spacing: .08em;  background: linear-gradient(90deg, #20e8ff 0%, #fff 40%, #ffe600 70%, #20e8ff 100%);  background-size: 200% 100%;  -webkit-background-clip: text;  -webkit-text-fill-color: transparent;  background-clip: text;  text-shadow: none;  filter: drop-shadow(0 0 12px rgba(32,232,255,.5)) drop-shadow(0 0 40px rgba(32,232,255,.2));  animation: cyber-text-shift 4s ease-in-out infinite alternate, cyber-glitch 8s step-end infinite;  position: relative;}








.hero-title-en {
  color: var(--yellow);
  font-size: clamp(38px, 4.2vw, 56px);
  text-shadow:
    0 0 30px rgba(255, 230, 0, .36),
    8px 7px 0 rgba(0,0,0,.3);
}

.hero-title-en::after {
  content: "";
  display: inline-block;
  width: .28em;
  height: .84em;
  margin-left: .04em;
  vertical-align: -.08em;
  background: currentColor;
  clip-path: polygon(34% 0, 100% 0, 60% 45%, 100% 45%, 0 100%, 32% 54%, 0 54%);
}

.hero-kicker {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(24px, 2.7vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
}

.hero-desc {
  max-width: 620px;
  margin: 0;
  color: rgba(235, 242, 255, .78);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 26px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.btn-primary {
  color: #030303;
  background: linear-gradient(135deg, #fff100, #ffd000);
  box-shadow: 0 14px 38px rgba(255, 218, 0, .25);
}

.btn-secondary {
  color: #fff;
  border: 1px solid var(--cyan);
  background: rgba(3, 17, 27, .82);
  box-shadow: inset 0 0 0 1px rgba(32, 232, 255, .1);
}

.btn-secondary:hover {
  box-shadow: 0 14px 38px rgba(32, 232, 255, .18), inset 0 0 0 1px rgba(32, 232, 255, .18);
}

.btn-icon {
  width: 26px;
  display: inline-flex;
  justify-content: center;
  color: currentColor;
  font-size: 27px;
  line-height: 1;
}

.cart-icon svg {
  width: 27px;
  height: 27px;
  color: var(--cyan);
}

.btn-arrow {
  font-size: 28px;
  line-height: 1;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: -10px;
  width: min(54vw, 610px);
  height: 300px;
  overflow: visible;
  isolation: isolate;
  pointer-events: none;
  opacity: .88;
  filter: drop-shadow(0 0 48px rgba(32, 232, 255, .18)) drop-shadow(0 0 120px rgba(255, 230, 0, .08));
  animation: hero-float 6s ease-in-out infinite alternate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 2;
  pointer-events: none;
  background: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(32, 232, 255, .06), transparent 55%),
    radial-gradient(ellipse at 60% 40%, rgba(255, 230, 0, .04), transparent 45%);
  animation: hero-glow-breathe 4.5s ease-in-out infinite alternate;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 48%;
  opacity: 1;
  transform: scale(1.02);
  filter: saturate(1.1) contrast(1.04) brightness(.98);
  -webkit-mask-image: radial-gradient(ellipse 85% 90% at 50% 50%, #000 45%, rgba(0,0,0,.7) 65%, rgba(0,0,0,.3) 80%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 90% at 50% 50%, #000 45%, rgba(0,0,0,.7) 65%, rgba(0,0,0,.3) 80%, transparent 100%);
  animation: hero-image-drift 9s ease-in-out infinite alternate;
}

@keyframes hero-float {
  from {
    transform: translateY(0px) rotate(0deg);
  }
  to {
    transform: translateY(-8px) rotate(.3deg);
  }
}

@keyframes hero-image-drift {
  from {
    transform: scale(1.02) translate3d(-3px, 1px, 0);
    filter: saturate(1.08) contrast(1.03) brightness(.97);
  }
  to {
    transform: scale(1.06) translate3d(5px, -3px, 0);
    filter: saturate(1.18) contrast(1.07) brightness(1.02);
  }
}

@keyframes hero-glow-breathe {
  from {
    opacity: .4;
    transform: scale(.95);
  }
  to {
    opacity: .7;
    transform: scale(1.08);
  }
}

@keyframes cyber-text-shift {  0% { background-position: 0% 50%; }  100% { background-position: 100% 50%; }}@keyframes cyber-glitch {  0%, 92%, 94%, 96%, 98%, 100% { transform: none; opacity: 1; }  93% { transform: translate(-2px, 1px) skewX(-1deg); opacity: .9; }  95% { transform: translate(2px, -1px) skewX(1deg); opacity: .85; }  97% { transform: translate(-1px, 0) skewX(-.5deg); opacity: .92; }}
@keyframes hero-energy-pulse {
  0%, 100% {
    opacity: .42;
    transform: scale(.98);
  }
  50% {
    opacity: .72;
    transform: scale(1.04);
  }
}

.service-entry,
.status-strip,
.tutorial-card {
  background: linear-gradient(180deg, rgba(11, 25, 39, .88), rgba(5, 15, 25, .82));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-entry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 13px;
}

.entry-card {
  min-height: 116px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 22px;
  padding: 18px 26px;
  position: relative;
}

.entry-card + .entry-card {
  border-left: 1px solid rgba(136, 181, 214, .28);
}

.entry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 50%, color-mix(in srgb, currentColor 22%, transparent), transparent 36%);
  opacity: .55;
  pointer-events: none;
}

.entry-card:hover .entry-icon {
  transform: translateY(-2px) scale(1.03);
}

.entry-card strong,
.entry-card small,
.entry-card em {
  position: relative;
}

.entry-icon {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform .22s ease;
}

.entry-icon svg {
  width: 38px;
  height: 38px;
}

.entry-card strong {
  display: block;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .02em;
}

.entry-card small {
  display: block;
  margin-top: 9px;
  color: rgba(229, 238, 252, .72);
  font-size: 13px;
  line-height: 1.75;
}

.entry-card em {
  color: rgba(255,255,255,.78);
  font-size: 45px;
  font-style: normal;
  font-weight: 200;
}

.entry-yellow { color: var(--yellow); }
.entry-cyan { color: var(--cyan); }
.entry-pink { color: var(--pink); }

.status-strip {
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  align-items: center;
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.status-cell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 38px;
}

.status-cell + .status-cell {
  border-left: 1px solid rgba(136, 181, 214, .28);
}

.status-cell small,
.status-cell strong {
  display: block;
}

.status-cell small {
  color: rgba(230, 239, 255, .9);
  font-size: 15px;
  font-weight: 700;
}

.status-cell strong {
  margin-top: 1px;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .01em;
  white-space: nowrap;
}

.status-green strong {
  color: var(--green);
}

.pulse-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(34, 229, 140, .75);
}

.wave-icon {
  width: 56px;
  color: var(--green);
}

.round-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
}

.code-icon {
  color: var(--cyan);
  background: radial-gradient(circle, rgba(32,232,255,.22), rgba(5,47,89,.48));
}

.cube-icon {
  color: #b276ff;
  background: radial-gradient(circle, rgba(139,92,246,.26), rgba(42,21,85,.5));
  font-size: 38px;
}

.latest-section {
  margin-top: 26px;
  padding-bottom: 18px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
}

.section-heading h2 span {
  color: var(--yellow);
  filter: drop-shadow(0 0 14px rgba(255,230,0,.6));
}

.section-heading a {
  color: var(--cyan);
  font-weight: 800;
}

.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tutorial-card {
  min-height: 134px;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 16px;
  border-radius: 11px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.tutorial-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-bright);
  box-shadow: 0 20px 70px rgba(0,0,0,.46), 0 0 26px rgba(32,232,255,.12);
}

.tutorial-thumb {
  width: 128px;
  aspect-ratio: 1.42;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 24%, rgba(32,232,255,.6), transparent 34%),
    linear-gradient(135deg, rgba(9,119,120,.9), rgba(7,24,39,.96));
}

.tutorial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fallback-thumb {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
}

.tutorial-copy {
  min-width: 0;
}

.tutorial-copy strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.tutorial-copy small {
  display: -webkit-box;
  min-height: 48px;
  margin-top: 10px;
  overflow: hidden;
  color: rgba(229, 238, 252, .72);
  font-size: 14px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tutorial-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  color: var(--dim);
  font-size: 14px;
}

.tutorial-meta em {
  color: var(--green);
  font-style: normal;
  font-weight: 800;
}

.tutorial-card:nth-child(2) .tutorial-meta em {
  color: var(--pink);
}

.footer {
  position: relative;
  z-index: 2;
}

.single-post {
  position: relative;
  z-index: 2;
  width: min(940px, calc(100% - 48px));
  margin: 0 auto;
  padding: 74px 0 72px;
}

.single-hero {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.single-title {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.25;
}

.single-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(230, 239, 255, .78);
  font-size: 14px;
}

.single-meta .author-avatar,
.single-meta .author-name,
.single-meta .sep {
  display: none;
}

.single-cover {
  width: min(760px, 100%);
  margin: 0 auto 30px;
}

.single-cover img,
.single-content img {
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: 10px;
}

.single-content {
  width: min(820px, 100%);
  margin: 0 auto;
  color: rgba(238, 246, 255, .94);
  font-size: 16px;
  line-height: 1.95;
}

.single-content > * {
  margin-left: auto;
  margin-right: auto;
}

.single-content p {
  margin-top: 0;
  margin-bottom: 1.25em;
}

.single-content h2,
.single-content h3,
.single-content h4 {
  color: #fff;
  line-height: 1.35;
}

.single-content h2 {
  margin-top: 2em;
  font-size: 24px;
}

.single-content h3 {
  margin-top: 1.7em;
  font-size: 20px;
}

.single-content ul,
.single-content ol {
  padding-left: 1.4em;
}

.single-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.post-nav {
  width: min(820px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 44px auto 0;
}

.post-nav-item {
  min-height: 88px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(7, 19, 31, .72);
}

.post-nav-item.empty {
  visibility: hidden;
}

.post-nav-item.next {
  text-align: right;
}

.nav-label {
  display: block;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.nav-title {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .navbar {
    gap: 14px;
  }

  .nav-social {
    gap: 10px;
  }

  .nav-social a {
    font-size: 12px;
  }

  .nav-links {
    gap: 18px;
  }

  .hero-section {
    min-height: 320px;
  }

  .hero-visual {
    right: -120px;
    top: 44px;
    width: 560px;
    height: 260px;
    opacity: .5;
  }

  .entry-card {
    grid-template-columns: 52px minmax(0, 1fr) 14px;
    gap: 16px;
    padding: 16px 18px;
  }

  .entry-card small {
    font-size: 12px;
  }

  .status-strip {
    grid-template-columns: .86fr .9fr 1.55fr;
  }

  .status-cell {
    gap: 16px;
    padding: 14px 20px;
  }

  .status-cell strong {
    font-size: 17px;
  }

  .round-icon {
    width: 46px;
    height: 46px;
  }

  .tutorial-card {
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }

  .tutorial-thumb {
    width: 104px;
  }

  .tutorial-copy strong {
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  .navbar {
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 12px 16px;
  }

  .brand-text strong {
    font-size: 20px;
  }

  .brand-text em {
    font-size: 13px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    flex: 0 0 auto;
    font-size: 14px;
  }

  .home-page {
    width: calc(100% - 28px);
    padding-top: 118px;
  }

  .hero-section {
    padding: 30px 0 28px;
    min-height: auto;
    overflow: hidden;
  }

  .hero-copy h1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    white-space: normal;
  }

  .hero-title-cn,
  .hero-title-en {
    font-size: clamp(40px, 13vw, 54px);
    max-width: 100%;
    overflow-wrap: normal;
  }

  .hero-title-en {
    font-size: clamp(34px, 11vw, 46px);
  }

  .hero-kicker {
    font-size: 24px;
  }

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

  .hero-visual {
    display: none;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
    justify-content: space-between;
    font-size: 16px;
  }

  .entry-card {
    grid-template-columns: 62px minmax(0, 1fr) 18px;
    gap: 16px;
    padding: 20px 18px;
  }

  .entry-icon {
    width: 56px;
    height: 56px;
  }

  .entry-icon svg {
    width: 34px;
    height: 34px;
  }

  .entry-card strong {
    font-size: 19px;
  }

  .entry-card small {
    font-size: 14px;
  }

  .status-cell {
    padding: 18px;
  }

  .service-entry,
  .status-strip,
  .tutorial-grid {
    grid-template-columns: 1fr;
  }

  .entry-card + .entry-card,
  .status-cell + .status-cell {
    border-left: 0;
    border-top: 1px solid rgba(136, 181, 214, .28);
  }

  .status-cell strong {
    font-size: 20px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .tutorial-card {
    grid-template-columns: 102px minmax(0, 1fr);
    gap: 14px;
  }

  .tutorial-thumb {
    width: 102px;
  }

  .single-post {
    width: calc(100% - 28px);
    padding-top: 128px;
  }

  .single-hero {
    margin-bottom: 22px;
  }

  .single-content {
    font-size: 15px;
    line-height: 1.85;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav-item.next {
    text-align: left;
  }
}

/* Override older WordPress custom CSS that centered the previous navigation. */
body .navbar {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

body .nav-links {
  position: static !important;
  left: auto !important;
  transform: none !important;
}

body .nav-links a,
body .nav-links a.active,
body nav a.active {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .nav-links a::after,
body .nav-links a.active::after {
  display: block !important;
}

body .nav-social a:first-child span {
  display: none !important;
}

/* Clean archive article list */
body.archive,
body.category,
body.tag,
body.search {
  background:
    radial-gradient(circle at 52% 10%, rgba(18, 118, 160, .22), transparent 34%),
    linear-gradient(180deg, #061321 0%, #071728 48%, #06101e 100%) !important;
}

.archive-clean-hero {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  min-height: 210px;
  margin: 0 auto;
  padding: 116px 0 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.archive-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: #20e8ff;
  font-family: 'Orbitron', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
}

.archive-clean-hero .archive-title {
  margin: 0;
  font-family: 'Orbitron', 'Noto Sans SC', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.1;
  color: #eef9ff;
  -webkit-text-fill-color: #eef9ff;
  background: none;
}

.archive-clean-hero .archive-desc {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(226, 235, 255, .68);
  font-size: 16px;
  line-height: 1.8;
}

.archive-back-home {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 1px solid rgba(34, 232, 255, .5);
  border-radius: 7px;
  color: #20e8ff;
  background: rgba(8, 29, 46, .72);
  font-weight: 900;
  text-decoration: none;
}

.archive-clean-main {
  max-width: 1120px;
  padding: 0 0 80px;
}

.archive-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(84, 210, 255, .18);
  border-radius: 10px;
  background: rgba(7, 20, 36, .62);
}

.archive-toolbar .section-title {
  margin: 10px 0 0;
  color: #eef9ff;
}

.archive-count {
  min-width: 76px;
  text-align: center;
  padding: 8px 12px;
  border: 1px solid rgba(34, 232, 255, .28);
  border-radius: 999px;
  color: #20e8ff;
  background: rgba(34, 232, 255, .06);
  font-weight: 900;
}

.archive-list {
  display: grid;
  gap: 14px;
}

.archive-article {
  min-height: 168px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  padding: 14px;
  border: 1px solid rgba(84, 210, 255, .18);
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  background: rgba(7, 20, 36, .68);
  box-shadow: inset 0 0 30px rgba(34, 232, 255, .028);
  animation: cardIn .5s ease-out both;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}

.archive-article:hover {
  color: inherit;
  transform: translateY(-2px);
  border-color: rgba(34, 232, 255, .46);
  background: rgba(13, 37, 62, .82);
}

.archive-article-thumb {
  display: block;
  height: 140px;
  overflow: hidden;
  border-radius: 7px;
  background: #071422;
}

.archive-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.archive-article-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 4px 4px 2px 0;
}

.archive-article-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.archive-cat {
  color: #20e8ff;
  font-weight: 900;
}

.archive-date {
  color: rgba(226, 235, 255, .48);
  font-size: 13px;
}

.archive-article strong {
  color: #eef9ff;
  font-size: 22px;
  line-height: 1.28;
}

.archive-excerpt {
  margin-top: 10px;
  color: rgba(226, 235, 255, .66);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  color: rgba(226, 235, 255, .48);
  font-size: 13px;
}

.archive-read {
  margin-left: auto;
  color: #20e8ff;
  font-weight: 900;
}

.archive-pagination {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.archive-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(84, 210, 255, .22);
  border-radius: 8px;
  color: #cfe8ff;
  background: rgba(7, 20, 36, .62);
  text-decoration: none;
}

.archive-pagination .page-numbers.current,
.archive-pagination .page-numbers:hover {
  color: #061321;
  background: #20e8ff;
  border-color: #20e8ff;
}

@media (max-width: 760px) {
  .archive-clean-hero {
    width: calc(100% - 24px);
    padding-top: 148px;
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-clean-main {
    width: calc(100% - 24px);
  }

  .archive-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .archive-article {
    grid-template-columns: 1fr;
  }

  .archive-article-thumb {
    height: 190px;
  }

  .archive-meta {
    flex-wrap: wrap;
  }

  .archive-read {
    margin-left: 0;
  }
}

/* Direct shop product cards */
.product-direct-section {
  position: relative;
  z-index: 2;
  width: min(1260px, calc(100% - 48px));
  margin: 38px auto 0;
}

.product-direct-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.product-direct-heading h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #f5fbff;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
}

.product-direct-heading h2 span {
  color: #ffc62e;
}

.product-direct-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #20e8ff;
  font-weight: 900;
  white-space: nowrap;
}

.product-direct-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-direct-card,
.product-direct-empty {
  position: relative;
  min-height: 176px;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(84, 210, 255, .26);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(9, 31, 52, .92), rgba(6, 16, 29, .84)),
    radial-gradient(circle at 90% 10%, rgba(255, 220, 42, .13), transparent 30%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22), inset 0 0 0 1px rgba(255, 255, 255, .03);
  color: inherit;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.product-direct-card::before,
.product-direct-empty::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 4px;
  height: 38px;
  background: #20e8ff;
  box-shadow: 0 0 18px rgba(32, 232, 255, .65);
}

.product-direct-card:hover,
.product-direct-empty:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 232, 255, .62);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .3), 0 0 26px rgba(32, 232, 255, .12);
}

.product-direct-logo {
  width: 128px;
  aspect-ratio: 1.42;
  align-self: start;
  display: grid;
  place-items: center;
  border: 1px solid rgba(32, 232, 255, .25);
  border-radius: 8px;
  background: rgba(4, 14, 26, .82);
  overflow: hidden;
}

.product-direct-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-direct-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-direct-kicker {
  color: #20e8ff;
  font: 800 12px/1 "Rajdhani", "Noto Sans SC", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-direct-content strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.32;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-direct-highlight {
  color: #ff4f63;
  text-shadow: 0 0 12px rgba(255, 79, 99, .42);
}

.product-direct-content small {
  min-height: 44px;
  color: rgba(219, 232, 255, .68);
  font-size: 13px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-direct-price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: fit-content;
  min-height: 34px;
  margin-top: 2px;
  padding: 3px 12px;
  border: 1px solid rgba(255, 228, 101, .34);
  border-radius: 8px;
  background: rgba(255, 228, 101, .08);
  box-shadow: inset 0 0 14px rgba(255, 228, 101, .08);
}

.product-direct-price b {
  color: #ffe465;
  font: 900 24px/1 "Rajdhani", "Noto Sans SC", sans-serif;
}

.product-direct-price em {
  color: rgba(255, 255, 255, .72);
  font: 800 12px/1 "Rajdhani", "Noto Sans SC", sans-serif;
  font-style: normal;
  letter-spacing: .08em;
}

.product-direct-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.product-direct-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(32, 232, 255, .25);
  border-radius: 999px;
  background: rgba(32, 232, 255, .08);
  color: #b8f6ff;
  font-size: 12px;
  font-style: normal;
}

.product-direct-action {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(133, 176, 215, .16);
}

.product-direct-action b {
  color: #ffe465;
  font-size: 15px;
}

.product-direct-action i,
.product-direct-empty i {
  color: #20e8ff;
  font-size: 24px;
  font-style: normal;
}

.product-direct-empty {
  min-height: 120px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.product-direct-empty[hidden] {
  display: none;
}

.product-direct-loading {
  grid-column: 1 / -1;
  min-height: 120px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(84, 210, 255, .22);
  border-radius: 10px;
  background: rgba(7, 20, 36, .58);
  color: rgba(220, 236, 255, .68);
  font-weight: 800;
}

.product-direct-empty strong,
.product-direct-empty span {
  display: block;
}

.product-direct-empty strong {
  color: #fff;
  font-size: 20px;
}

.product-direct-empty span {
  margin-top: 8px;
  color: rgba(219, 232, 255, .68);
}

@media (max-width: 1080px) {
  .product-direct-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .product-direct-section {
    width: calc(100% - 24px);
  }

  .product-direct-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-direct-grid {
    grid-template-columns: 1fr;
  }

  .product-direct-card {
    grid-template-columns: 104px minmax(0, 1fr);
    padding: 16px;
  }

  .product-direct-logo {
    width: 104px;
  }
}

/* Product detail cards v2 */
.product-direct-section {
  width: min(1260px, calc(100% - 48px));
  margin-top: 44px;
}

.product-direct-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  margin-bottom: 34px;
  padding-top: 22px;
}

.product-direct-eyebrow {
  grid-column: 1 / -1;
  position: relative;
  padding-left: 66px;
  color: #20e8ff;
  font: 900 14px/1 "Rajdhani", "Noto Sans SC", sans-serif;
  letter-spacing: .46em;
}

.product-direct-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 50px;
  height: 6px;
  transform: translateY(-50%);
  background: #20e8ff;
  box-shadow: 0 0 18px rgba(32, 232, 255, .82);
}

.product-direct-heading h2 {
  display: block;
  margin: 0;
  color: #fff;
  font: italic 900 clamp(42px, 5vw, 66px)/.95 "Noto Sans SC", "Rajdhani", sans-serif;
  letter-spacing: 0;
  text-shadow: 4px 4px 0 rgba(16, 122, 255, .26);
}

.product-direct-heading a {
  color: rgba(214, 225, 245, .78);
  font-size: 13px;
  letter-spacing: .12em;
}

.product-direct-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.product-direct-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px 32px 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 18, .92), rgba(5, 7, 12, .96)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 4px);
  box-shadow: none;
}

.product-direct-card.is-featured {
  border-color: rgba(32, 232, 255, .74);
  box-shadow: inset 0 0 0 1px rgba(32, 232, 255, .22), 0 0 22px rgba(32, 232, 255, .08);
}

.product-direct-card::before {
  display: none;
}

.product-direct-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 232, 255, .66);
  box-shadow: 0 24px 44px rgba(0, 0, 0, .28), 0 0 28px rgba(32, 232, 255, .1);
}

.product-direct-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 34px;
}

.product-direct-kicker {
  position: relative;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px 0 14px;
  background: #20e8ff;
  color: #061019;
  font: 900 12px/1 "Rajdhani", "Noto Sans SC", sans-serif;
  letter-spacing: .18em;
  clip-path: polygon(10px 0, 100% 0, 100% 68%, calc(100% - 12px) 100%, 0 100%, 0 10px);
}

.product-direct-price {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-direct-price em {
  color: #ff4ba4;
  font: 900 15px/1 "Rajdhani", sans-serif;
  letter-spacing: 0;
}

.product-direct-price b {
  color: #fff;
  font: italic 900 36px/.9 "Rajdhani", "Noto Sans SC", sans-serif;
  text-shadow: 3px 3px 0 rgba(14, 105, 255, .24);
}

.product-direct-logo {
  width: 100%;
  aspect-ratio: 1.78;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 0;
  background: rgba(255, 255, 255, .06);
  box-shadow: inset 0 0 38px rgba(32, 232, 255, .08);
}

.product-direct-logo img {
  object-fit: cover;
}

.product-direct-content {
  flex: 1;
  gap: 13px;
}

.product-direct-content strong {
  color: #fff;
  font: italic 900 20px/1.18 "Noto Sans SC", "Rajdhani", sans-serif;
  -webkit-line-clamp: 3;
}

.product-direct-highlight {
  color: #ff4f63;
  text-shadow: 0 0 12px rgba(255, 79, 99, .48);
}

.product-direct-content small {
  min-height: 0;
  color: rgba(218, 229, 247, .68);
  font-size: 13px;
  line-height: 1.58;
  -webkit-line-clamp: 2;
}

.product-direct-tags {
  gap: 8px;
}

.product-direct-tags em {
  min-height: 24px;
  padding: 0 12px;
  border-color: rgba(255, 255, 255, .14);
  border-radius: 0;
  background: rgba(255, 255, 255, .035);
  color: rgba(219, 231, 249, .76);
  font-size: 11px;
}

.product-direct-action {
  margin: 0 -32px;
  min-height: 58px;
  padding: 0 32px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.product-direct-card.is-featured .product-direct-action {
  background: #20d7e8;
  border-top: 0;
}

.product-direct-action b {
  color: #e5eefc;
  font: italic 900 15px/1 "Noto Sans SC", "Rajdhani", sans-serif;
}

.product-direct-card.is-featured .product-direct-action b,
.product-direct-card.is-featured .product-direct-action i {
  color: #061019;
}

.product-direct-action i {
  color: #20e8ff;
  font-size: 22px;
}

@media (max-width: 1180px) {
  .product-direct-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .product-direct-section {
    width: calc(100% - 24px);
  }

  .product-direct-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-direct-heading h2 {
    font-size: 42px;
  }

  .product-direct-grid {
    grid-template-columns: 1fr;
  }

  .product-direct-card {
    min-height: 420px;
    padding: 26px 22px 0;
  }

  .product-direct-action {
    margin: 0 -22px;
    padding: 0 22px;
  }
}

/* Product card hover fill animation */
.product-direct-card .product-direct-logo {
  aspect-ratio: 1;
}

.product-direct-card .product-direct-logo img {
  object-fit: cover;
}

.product-direct-card .product-direct-action {
  position: relative;
  overflow: hidden;
  background: rgba(4, 7, 13, .88);
  border-top: 1px solid rgba(255, 255, 255, .1);
  transition: border-color .3s ease;
}

.product-direct-card .product-direct-action::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, #20d7e8, #31e6f2);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s ease;
}

.product-direct-card:hover .product-direct-action::before {
  transform: scaleX(1);
}

.product-direct-card .product-direct-action b,
.product-direct-card .product-direct-action i {
  position: relative;
  z-index: 1;
  transition: color .3s ease;
}

.product-direct-card:hover .product-direct-action b,
.product-direct-card:hover .product-direct-action i {
  color: #061019;
}

.product-direct-card.is-featured .product-direct-action {
  background: rgba(4, 7, 13, .88);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.product-direct-card.is-featured .product-direct-action b {
  color: #e5eefc;
}

.product-direct-card.is-featured .product-direct-action i {
  color: #20e8ff;
}

.product-direct-card.is-featured:hover .product-direct-action b,
.product-direct-card.is-featured:hover .product-direct-action i {
  color: #061019;
}

/* Match shop heading link with tutorial heading link */
.product-direct-heading a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.product-direct-heading a:hover {
  color: #fff;
}
