/* ========== Copper Signal · 雾纸 + 铜色信号 ========== */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,500;0,9..40,700;0,9..40,800;1,9..40,500&family=Noto+Sans+SC:wght@400;500;600;700;800&display=swap");

:root {
  --hx-ink: #0c1220;
  --hx-ink-2: #172033;
  --hx-fog: #e8eef3;
  --hx-fog-2: #f4f7fa;
  --hx-paper: #dfe7ee;
  --hx-copper: #e4572e;
  --hx-copper-hot: #ff6b3d;
  --hx-ice: #3d8b9e;
  --hx-muted: #5a6a7a;
  --hx-line: rgba(12, 18, 32, 0.1);
  --hx-white: #ffffff;
  --hx-max: 1160px;
  --hx-font: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --hx-display: "DM Sans", "Noto Sans SC", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--hx-font);
  color: var(--hx-ink);
  background:
    radial-gradient(ellipse 80% 50% at 90% -10%, rgba(228, 87, 46, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 0% 80%, rgba(61, 139, 158, 0.1), transparent 45%),
    linear-gradient(180deg, var(--hx-fog-2) 0%, var(--hx-fog) 40%, var(--hx-paper) 100%);
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

.hx-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hx-wrap {
  width: min(100% - 2rem, var(--hx-max));
  margin-inline: auto;
}

/* -------- Header -------- */
.hx-top {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244, 247, 250, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 3px solid var(--hx-copper);
  box-shadow: 0 10px 30px rgba(12, 18, 32, 0.04);
}

.hx-top__row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 68px;
}

.hx-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  min-width: 0;
}

.hx-brand__mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.hx-brand__ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--hx-ink);
  border-radius: 50%;
  clip-path: inset(0 0 0 42%);
}

.hx-brand__core {
  position: absolute;
  left: 2px;
  top: 50%;
  translate: 0 -50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--hx-copper);
  color: #fff;
  border-radius: 8px 2px 8px 2px;
  box-shadow: 0 6px 14px rgba(228, 87, 46, 0.35);
}

.hx-brand__dash {
  position: absolute;
  right: -2px;
  top: 50%;
  width: 10px;
  height: 2px;
  background: var(--hx-ice);
  translate: 0 -50%;
}

.hx-brand__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  line-height: 1;
}

.hx-brand__text strong {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0;
  font-family: var(--hx-display);
  font-size: clamp(0.92rem, 2vw, 1.08rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  color: var(--hx-ink);
}

.hx-brand__text strong b {
  font-weight: 800;
  color: var(--hx-copper);
  margin-inline: 0.05em;
}

.hx-brand__text strong i {
  font-style: normal;
  font-weight: 700;
  color: var(--hx-ink-2);
  opacity: 0.88;
}

.hx-brand__text em {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.2em;
  font-weight: 750;
  color: var(--hx-ice);
}

.hx-brand__text em span:first-child {
  color: var(--hx-copper);
}

.hx-brand__text em span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
  opacity: 0.55;
}

.hx-nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  margin-left: 0.5rem;
}

.hx-nav a,
.hx-nav__btn {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--hx-ink-2);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.35rem 0;
  position: relative;
}

.hx-nav a.is-active::after,
.hx-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--hx-copper);
}

.hx-nav__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.hx-nav__drop {
  position: relative;
}

.hx-nav__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 280px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 8px;
  background: var(--hx-white);
  border: 1px solid var(--hx-line);
  box-shadow: 0 18px 40px rgba(12, 18, 32, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: 0.18s ease;
  z-index: 70;
}

.hx-nav__drop:hover .hx-nav__panel,
.hx-nav__drop.is-open .hx-nav__panel {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hx-nav__panel a {
  padding: 0.55rem 0.7rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.hx-nav__panel a:hover {
  background: rgba(228, 87, 46, 0.08);
  color: var(--hx-copper);
}

.hx-search {
  margin-left: auto;
  display: none;
  align-items: center;
  gap: 0;
  min-width: 220px;
  max-width: 280px;
  flex: 1;
  background: var(--hx-white);
  border: 1px solid var(--hx-line);
  overflow: hidden;
}

.hx-search__ico {
  width: 16px;
  height: 16px;
  margin-left: 12px;
  color: var(--hx-muted);
  flex-shrink: 0;
}

.hx-search input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0.65rem 0.65rem;
  font: inherit;
  background: transparent;
  min-width: 0;
}

.hx-search button {
  border: 0;
  background: var(--hx-ink);
  color: #fff;
  padding: 0 14px;
  min-height: 40px;
  font-weight: 700;
  cursor: pointer;
}

.hx-login {
  display: none;
  padding: 0.45rem 0.9rem;
  border: 1.5px solid var(--hx-ink);
  font-weight: 700;
  font-size: 0.875rem;
}

.hx-login:hover {
  background: var(--hx-ink);
  color: #fff;
}

.hx-burger {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hx-line);
  background: var(--hx-white);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.hx-burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--hx-ink);
  transition: 0.2s ease;
}

.hx-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hx-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.hx-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hx-drawer {
  display: none;
  border-top: 1px solid var(--hx-line);
  background: var(--hx-fog-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.hx-drawer.is-open {
  display: block;
  max-height: 80vh;
  overflow: auto;
}

.hx-drawer__inner {
  padding: 1rem 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.hx-drawer__inner > a {
  font-weight: 700;
  padding: 0.4rem 0;
}

.hx-drawer__label {
  margin: 0.5rem 0 0;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--hx-muted);
  font-weight: 700;
}

.hx-drawer__cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.hx-drawer__cats a {
  padding: 0.55rem 0.7rem;
  background: var(--hx-white);
  border: 1px solid var(--hx-line);
  font-size: 0.875rem;
  font-weight: 600;
}

.hx-drawer__search {
  display: flex;
  gap: 8px;
}

.hx-drawer__search input {
  flex: 1;
  border: 1px solid var(--hx-line);
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.hx-drawer__search button,
.hx-login--block {
  display: inline-flex;
  justify-content: center;
  background: var(--hx-copper);
  color: #fff;
  border: 0;
  padding: 0.7rem 1rem;
  font-weight: 700;
  cursor: pointer;
}

/* -------- Hero -------- */
.hx-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 68vh, 620px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--hx-ink);
}

.hx-hero__rail {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 4px;
  opacity: 0.55;
}

.hx-hero__shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.hx-hero__shot--1 {
  animation: hx-drift 18s ease-in-out infinite alternate;
}
.hx-hero__shot--3 {
  animation: hx-drift 22s ease-in-out infinite alternate-reverse;
}

.hx-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 18, 32, 0.94) 0%, rgba(12, 18, 32, 0.72) 42%, rgba(12, 18, 32, 0.35) 70%, rgba(228, 87, 46, 0.25) 100%),
    linear-gradient(180deg, transparent 40%, rgba(12, 18, 32, 0.85) 100%);
}

.hx-hero__copy {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0;
  max-width: 36rem;
  animation: hx-rise 0.55s ease both;
}

.hx-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #ffc2b0;
}

.hx-hero__kicker span {
  width: 8px;
  height: 8px;
  background: var(--hx-copper-hot);
  box-shadow: 0 0 0 4px rgba(228, 87, 46, 0.25);
}

.hx-hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--hx-display);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hx-hero__lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 28rem;
}

.hx-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.35rem;
  font-weight: 750;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

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

.hx-btn--signal {
  background: var(--hx-copper);
  color: #fff;
  box-shadow: 0 12px 28px rgba(228, 87, 46, 0.35);
}

.hx-btn--line {
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hx-btn--line:hover {
  background: #fff;
  color: var(--hx-ink);
}

@keyframes hx-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hx-drift {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-2%);
  }
}

/* -------- Sections / Cards -------- */
.hx-band {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: rgba(255, 255, 255, 0.35);
}

.hx-band--plain {
  background: transparent;
}

.hx-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--hx-line);
}

.hx-head__lead {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  min-width: 0;
}

.hx-head__bar {
  width: 4px;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 2.6rem;
  background: linear-gradient(180deg, var(--hx-copper) 0%, var(--hx-ice) 100%);
  border-radius: 2px;
}

.hx-head__copy {
  min-width: 0;
}

.hx-head__sub {
  margin: 0 0 0.35rem;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.16em;
  color: var(--hx-copper);
  text-transform: none;
}

.hx-head h2 {
  margin: 0;
  font-family: var(--hx-display);
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--hx-ink);
}

.hx-head__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.45rem 0.8rem;
  font-weight: 750;
  font-size: 0.85rem;
  color: var(--hx-ink);
  background: var(--hx-white);
  border: 1px solid var(--hx-line);
  white-space: nowrap;
  transition: 0.15s ease;
}

.hx-head__more:hover {
  background: var(--hx-ink);
  border-color: var(--hx-ink);
  color: #fff;
}

.hx-head__more span {
  color: var(--hx-copper);
  transition: transform 0.15s ease;
}

.hx-head__more:hover span {
  color: var(--hx-copper-hot);
  transform: translateX(3px);
}

.hx-chipwall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.hx-chip {
  display: grid;
  place-items: center;
  min-height: 52px;
  padding: 0.5rem;
  background: var(--hx-white);
  border-left: 3px solid var(--hx-ink);
  font-weight: 700;
  font-size: 0.9rem;
  transition: 0.15s ease;
}

.hx-chip:hover {
  border-left-color: var(--hx-copper);
  color: var(--hx-copper);
  transform: translateX(2px);
}

.hx-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.9rem;
}

.hx-tile {
  display: grid;
  gap: 0.65rem;
  animation: hx-rise 0.45s ease both;
}

.hx-tile__shot {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--hx-ink);
}

.hx-tile__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hx-tile:hover .hx-tile__shot img {
  transform: scale(1.05);
}

.hx-tile__grade {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0.35rem 0.55rem;
  background: var(--hx-copper);
  color: #fff;
  font-family: var(--hx-display);
  font-weight: 800;
  font-size: 0.8rem;
}

.hx-tile__time {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 0.2rem 0.45rem;
  background: rgba(12, 18, 32, 0.78);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.hx-tile__body h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hx-tile__body h3 a:hover {
  color: var(--hx-copper);
}

.hx-tile__desc {
  margin: 0.35rem 0 0;
  color: var(--hx-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hx-tile__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: var(--hx-muted);
}

.hx-tile__cat {
  color: var(--hx-ice);
  font-weight: 700;
}

.hx-split {
  display: grid;
  gap: 1px;
  background: var(--hx-line);
  border: 1px solid var(--hx-line);
}

.hx-split article {
  background: var(--hx-fog-2);
  padding: 1.25rem 1.1rem;
}

.hx-split span {
  display: block;
  font-family: var(--hx-display);
  font-weight: 800;
  color: var(--hx-copper);
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.hx-split h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.hx-split p {
  margin: 0;
  color: var(--hx-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* -------- Footer -------- */
.hx-foot {
  margin-top: auto;
  background: var(--hx-ink);
  color: rgba(255, 255, 255, 0.78);
}

.hx-foot__rule {
  height: 4px;
  background: linear-gradient(90deg, var(--hx-copper), var(--hx-ice));
}

.hx-foot__inner {
  padding: 2.5rem 0 2rem;
}

.hx-foot__brand {
  margin: 0 0 0.6rem;
  font-family: var(--hx-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.hx-foot__lead {
  margin: 0;
  max-width: 28rem;
  line-height: 1.65;
  font-size: 0.92rem;
}

.hx-foot__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.hx-foot__cols h3 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 0.95rem;
}

.hx-foot__cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.hx-foot__cols a:hover {
  color: var(--hx-copper-hot);
}

.hx-foot__end {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}

.hx-foot__meta {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
  flex: 1 1 16rem;
}

.hx-foot__end .ababseo-mark {
  margin-top: 0;
  flex-shrink: 0;
}

.hx-foot__end a:hover {
  color: #fff;
}

/* -------- Category -------- */
.hx-cat__banner {
  background:
    linear-gradient(120deg, rgba(12, 18, 32, 0.92), rgba(228, 87, 46, 0.75)),
    var(--hx-ink);
  color: #fff;
  padding: clamp(1.75rem, 4vw, 2.75rem) 0;
}

.hx-crumb {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.hx-crumb a:hover {
  color: #fff;
}

.hx-cat__banner h1 {
  margin: 0 0 0.4rem;
  font-family: var(--hx-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hx-cat__banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.hx-cat__layout {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem 0 3rem;
}

.hx-cat__side {
  display: none;
}

.hx-cat__side-title {
  margin: 0 0 0.75rem;
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 750;
  color: var(--hx-muted);
}

.hx-cat__side-nav {
  display: grid;
  gap: 2px;
}

.hx-cat__side-nav a {
  padding: 0.55rem 0.7rem;
  font-weight: 650;
  font-size: 0.9rem;
  border-left: 3px solid transparent;
  background: rgba(255, 255, 255, 0.55);
}

.hx-cat__side-nav a:hover,
.hx-cat__side-nav a.is-active {
  border-left-color: var(--hx-copper);
  background: var(--hx-white);
  color: var(--hx-copper);
}

.hx-cat__rail {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.hx-cat__rail a {
  flex: 0 0 auto;
  padding: 0.45rem 0.85rem;
  background: var(--hx-white);
  border: 1px solid var(--hx-line);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.hx-cat__rail a.is-active {
  background: var(--hx-ink);
  color: #fff;
  border-color: var(--hx-ink);
}

.hx-cat__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 1rem 0 1.15rem;
  font-size: 0.88rem;
  color: var(--hx-muted);
}

.hx-cat__toolbar strong {
  color: var(--hx-ink);
}

.hx-cat__sort {
  display: flex;
  gap: 8px;
}

.hx-cat__sort select,
.hx-cat__sort button {
  min-height: 38px;
  padding: 0 0.75rem;
  border: 1px solid var(--hx-line);
  background: var(--hx-white);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.hx-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--hx-muted);
}

.hx-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 1.75rem 0;
}

.hx-pager button {
  min-width: 40px;
  min-height: 40px;
  padding: 0 0.7rem;
  border: 1px solid var(--hx-line);
  background: var(--hx-white);
  font-weight: 700;
  cursor: pointer;
}

.hx-pager button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.hx-pager button.is-active,
.hx-pager button:not(:disabled):hover {
  background: var(--hx-copper);
  border-color: var(--hx-copper);
  color: #fff;
}

.hx-pager__pages {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hx-about {
  margin-top: 2rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--hx-line);
}

.hx-about h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.hx-about p {
  margin: 0 0 0.65rem;
  color: var(--hx-muted);
  line-height: 1.7;
}

/* -------- ABABSEO -------- */
.ababseo-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  user-select: none;
}

.ababseo-mark__plane-wrap {
  position: relative;
  width: 36px;
  height: 28px;
  flex-shrink: 0;
}

.ababseo-mark__plane {
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  color: #ff8f6b;
  animation: ababseo-fly 3.6s ease-in-out infinite;
}

.ababseo-mark__plane svg {
  display: block;
  width: 100%;
  height: 100%;
}

.ababseo-mark__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.05;
}

.ababseo-mark__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a97a8;
}

.ababseo-mark__name {
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.14em;
  background: linear-gradient(105deg, #ff8f6b 0%, #fff 40%, #5eb1bf 70%, #fff 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: ababseo-shimmer 5s ease-in-out infinite;
}

@keyframes ababseo-fly {
  0% {
    transform: translate(0, 2px) rotate(-8deg);
  }
  20% {
    transform: translate(8px, -6px) rotate(4deg);
  }
  45% {
    transform: translate(16px, 1px) rotate(-2deg);
  }
  70% {
    transform: translate(6px, -8px) rotate(10deg);
  }
  100% {
    transform: translate(0, 2px) rotate(-8deg);
  }
}

@keyframes ababseo-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* -------- Responsive -------- */
@media (min-width: 720px) {
  .hx-chipwall {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .hx-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hx-mosaic--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hx-split {
    grid-template-columns: repeat(3, 1fr);
  }

  .hx-foot__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
  }

  .hx-foot__end {
    grid-column: 1 / -1;
  }
}

@media (min-width: 960px) {
  .hx-nav,
  .hx-search,
  .hx-login {
    display: flex;
  }

  .hx-burger,
  .hx-drawer,
  .hx-drawer.is-open {
    display: none;
  }

  .hx-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hx-cat__layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 2rem;
  }

  .hx-cat__side {
    display: block;
    position: sticky;
    top: 88px;
    align-self: start;
  }

  .hx-cat__rail {
    display: none;
  }
}

@media (max-width: 719px) {
  .hx-hero {
    min-height: 380px;
  }

  .hx-hero__rail {
    grid-template-columns: 1fr 1fr;
  }

  .hx-hero__shot--3,
  .hx-hero__shot--4 {
    display: none;
  }

  .hx-chipwall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hx-brand__mark {
    width: 40px;
    height: 40px;
  }

  .hx-brand__core {
    width: 26px;
    height: 26px;
  }

  .hx-brand__text strong {
    font-size: 0.88rem;
  }

  .hx-brand__text strong i {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hx-hero__copy,
  .hx-tile,
  .hx-hero__shot--1,
  .hx-hero__shot--3,
  .ababseo-mark__plane,
  .ababseo-mark__name {
    animation: none;
  }
}

/* -------- Play / Search / Auth -------- */
.hx-play__stage {
  background: #05080f;
  padding: 0 0 1rem;
}

.hx-play__ticker {
  margin: 0;
  padding: 0.55rem 1rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 650;
  color: #fff;
  background: linear-gradient(90deg, var(--hx-ink), var(--hx-copper));
}

.hx-player {
  width: min(100% - 2rem, 880px, calc(min(48vh, 460px) * 16 / 9));
  margin: 0.85rem auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.hx-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

@media (max-width: 719px) {
  .hx-player {
    width: min(100%, calc(min(42vh, 320px) * 16 / 9));
    margin: 0.65rem auto 0;
  }
}

.hx-play__layout {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 0 3rem;
}

.hx-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--hx-line);
  padding: 1.25rem 1.15rem;
}

.hx-panel h1 {
  margin: 0 0 0.85rem;
  font-family: var(--hx-display);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hx-panel h2 {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.hx-play__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--hx-muted);
}

.hx-play__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hx-play__cat {
  padding: 0.2rem 0.55rem;
  background: rgba(61, 139, 158, 0.12);
  color: var(--hx-ice);
  font-weight: 750;
}

.hx-play__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.hx-btn--fav,
.hx-btn--ink {
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  color: #fff;
}

.hx-btn--fav {
  background: #c2410c;
}

.hx-btn--fav.is-on {
  background: var(--hx-copper);
}

.hx-btn--ink {
  background: var(--hx-ink);
}

.hx-play__tip {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--hx-copper);
  font-weight: 650;
}

.hx-play__intro {
  border-top: 1px solid var(--hx-line);
  padding-top: 1.1rem;
}

.hx-play__intro p {
  margin: 0 0 0.85rem;
  color: var(--hx-ink-2);
  line-height: 1.7;
}

.hx-play__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hx-play__tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem 0.55rem;
  background: var(--hx-fog);
  font-size: 0.8rem;
  color: var(--hx-muted);
}

.hx-play__side {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hx-rel {
  display: grid;
  gap: 0.65rem;
}

.hx-rel__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.45rem;
  transition: background 0.15s ease;
}

.hx-rel__item:hover {
  background: rgba(228, 87, 46, 0.06);
}

.hx-rel__shot {
  width: 88px;
  height: 52px;
  object-fit: cover;
  background: var(--hx-ink);
}

.hx-rel__item h3 {
  margin: 0 0 0.3rem;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hx-rel__item p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--hx-muted);
}

.hx-play__cats {
  display: grid;
  gap: 4px;
}

.hx-play__cats a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.65rem;
  font-weight: 650;
  border-left: 3px solid transparent;
}

.hx-play__cats a:hover {
  border-left-color: var(--hx-copper);
  background: rgba(228, 87, 46, 0.06);
  color: var(--hx-copper);
}

.hx-search-page {
  padding: 2rem 0 3rem;
}

.hx-search-page__head {
  margin-bottom: 1.35rem;
}

.hx-search-page__head h1 {
  margin: 0 0 0.4rem;
  font-family: var(--hx-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.hx-search-page__head p {
  margin: 0;
  color: var(--hx-muted);
}

.hx-auth {
  display: grid;
  place-items: center;
  padding: 3rem 1rem 4rem;
  min-height: 52vh;
}

.hx-auth__card {
  width: min(100%, 420px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--hx-line);
  border-top: 3px solid var(--hx-copper);
  padding: 1.75rem 1.4rem;
}

.hx-auth__card--center {
  text-align: center;
}

.hx-auth__card h1 {
  margin: 0 0 0.45rem;
  font-family: var(--hx-display);
  font-size: 1.45rem;
  font-weight: 800;
}

.hx-auth__lead {
  margin: 0 0 1.25rem;
  color: var(--hx-muted);
  font-size: 0.9rem;
}

.hx-auth__card form {
  display: grid;
  gap: 0.75rem;
}

.hx-auth__card input {
  border: 1px solid var(--hx-line);
  background: var(--hx-white);
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.hx-auth__card input:focus {
  outline: 2px solid rgba(228, 87, 46, 0.35);
  outline-offset: 1px;
  border-color: var(--hx-copper);
}

.hx-auth__err {
  margin: 0;
  color: #c2410c;
  font-size: 0.875rem;
}

.hx-auth__card .hx-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.hx-auth__back {
  margin: 1rem 0 0;
  font-size: 0.9rem;
}

.hx-auth__back a {
  color: var(--hx-copper);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.hx-auth__code {
  margin: 0 0 0.5rem;
  font-family: var(--hx-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--hx-copper);
  line-height: 1;
}

.hx-auth__card--center .hx-btn {
  margin-top: 1.25rem;
  display: inline-flex;
}

.hx-player .hover\:text-blue-400:hover,
.hx-player button:hover {
  color: var(--hx-copper-hot) !important;
}

.slider {
  background: linear-gradient(
    to right,
    var(--hx-copper) 0%,
    var(--hx-copper) var(--progress, 0%),
    #6b7280 var(--progress, 0%),
    #6b7280 100%
  ) !important;
}

.slider::-webkit-slider-thumb {
  background: var(--hx-copper) !important;
}

.slider::-moz-range-thumb {
  background: var(--hx-copper) !important;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-color: rgba(228, 87, 46, 0.55);
}

@media (min-width: 960px) {
  .hx-play__layout {
    grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
    gap: 1.5rem;
  }
}

/* -------- Comments -------- */
.hx-play__main {
  display: grid;
  gap: 1rem;
}

.hx-comments__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.hx-comments__head h2 {
  margin: 0;
}

.hx-comments__head span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--hx-copper);
}

.hx-comments__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.hx-comment {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--hx-line);
}

.hx-comment:first-child {
  border-top: 0;
  padding-top: 0.35rem;
}

.hx-comment__avatar {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--hx-ink);
}

.hx-comment__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.35rem;
}

.hx-comment__meta strong {
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--hx-ink);
}

.hx-comment__meta time {
  font-size: 0.75rem;
  color: var(--hx-muted);
}

.hx-comment__body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--hx-ink-2);
}

.hx-comment__likes {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--hx-muted);
}
