/* dy-s.monster — 竖屏短视频播放器官网 · 霓虹故障风 */
:root {
  --bg: #000000;
  --bg-soft: #0a0a0f;
  --bg-panel: #111118;
  --bg-glass: rgba(10, 10, 15, 0.82);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f2f2f7;
  --text-soft: #9a9ab0;
  --text-dim: #5c5c70;
  --cyan: #25f4ee;
  --pink: #fe2c55;
  --pink-deep: #d91a42;
  --cyan-glow: rgba(37, 244, 238, 0.35);
  --pink-glow: rgba(254, 44, 85, 0.4);
  --grad-neon: linear-gradient(135deg, var(--cyan) 0%, var(--pink) 100%);
  --grad-glitch: linear-gradient(90deg, var(--cyan), #fff 40%, var(--pink));
  --header-h: 54px;
  --fixed-h: 0px;
  --max: 1100px;
  --radius: 12px;
  --phone-w: 220px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --mono: "SF Mono", "Cascadia Code", "Consolas", monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.82;
  font-size: 15px;
  min-height: 100vh;
  overflow-x: hidden;
}

body.has-fixed-dl { padding-top: var(--fixed-h); }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.5;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover { color: var(--pink); }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

/* ===== Fixed download bar ===== */
.dym-fixed-dl {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.dym-fixed-dl.is-show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.dym-fixed-dl-inner {
  padding: 8px 16px;
}

.dym-hidden { display: none !important; }

/* ===== Ads ===== */
#ads,
.dym-ad-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6px 10px;
  background: transparent;
}

#ads > div,
.dym-ad-row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(25% - 8px);
  min-width: 68px;
  max-width: 90px;
  box-sizing: border-box;
}

#ads img,
.dym-ad-row img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 0 0 1px var(--line), 0 6px 20px rgba(254, 44, 85, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
  border: none;
  background: var(--bg-panel);
}

#ads a,
.dym-ad-row a {
  display: inline-block;
  text-decoration: none;
  border-radius: 16px;
}

#ads img:hover,
.dym-ad-row img:hover {
  transform: scale(1.06);
  box-shadow: 0 0 12px var(--pink-glow), 0 0 0 1px var(--pink);
}

#ads figcaption,
#ads .caption,
.dym-ad-row .caption {
  height: 15px;
  font-size: 11px;
  color: var(--text-soft);
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
}

/* ===== Header ===== */
.dym-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: var(--header-h);
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 1px solid transparent;
}

.dym-header.is-solid {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.dym-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 12px;
}

.dym-logo img {
  height: 30px;
  width: auto;
}

.dym-nav {
  display: none;
  gap: 4px;
}

.dym-nav a {
  color: var(--text-soft);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
}

.dym-nav a:hover,
.dym-nav a.is-on {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.dym-btn-dl {
  display: none;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: var(--grad-neon);
  color: #000 !important;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 0 20px var(--pink-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.dym-btn-dl:hover {
  color: #000 !important;
  transform: scale(1.04);
  box-shadow: 0 0 28px var(--cyan-glow);
}

.dym-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
}

.dym-menu-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}

.dym-menu-btn.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dym-menu-btn.is-open span:nth-child(2) { opacity: 0; }
.dym-menu-btn.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.dym-drawer {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  background: rgba(0, 0, 0, 0.96);
  padding: 20px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.dym-drawer.is-open { transform: translateX(0); }

.dym-drawer a {
  color: var(--text);
  font-size: 16px;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  display: block;
}

.dym-drawer a:hover { color: var(--cyan); }

@media (min-width: 900px) {
  .dym-nav { display: flex; }
  .dym-menu-btn { display: none; }
  .dym-btn-dl { display: inline-flex; }
}

/* ===== Ad stage ===== */
.dym-ad-stage {
  padding: calc(var(--header-h) + 16px) 0 20px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.dym-ad-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-neon);
}

.dym-ad-stage-head {
  text-align: center;
  margin-bottom: 14px;
}

.dym-ad-stage-head h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  background: var(--grad-glitch);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dym-ad-stage-head p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ===== Video hero ===== */
.dym-hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 0 28px;
  overflow: hidden;
}

.dym-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(254, 44, 85, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(37, 244, 238, 0.1) 0%, transparent 50%),
    var(--bg);
  z-index: 0;
}

.dym-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 244, 238, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 244, 238, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000 100%);
}

.dym-hero-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

.dym-hero-phone {
  justify-self: center;
  position: relative;
  width: min(240px, 58vw);
}

.dym-phone-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(37, 244, 238, 0.2),
    0 0 40px rgba(254, 44, 85, 0.25),
    0 24px 60px rgba(0, 0, 0, 0.8);
  aspect-ratio: 9 / 19;
  background: #111;
}

.dym-phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dym-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 3;
}

.dym-phone-ui {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  z-index: 3;
}

.dym-phone-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  margin-bottom: 8px;
  overflow: hidden;
}

.dym-phone-progress span {
  display: block;
  height: 100%;
  width: 38%;
  background: var(--grad-neon);
  border-radius: 2px;
  animation: dym-progress 4s ease-in-out infinite;
}

@keyframes dym-progress {
  0%, 100% { width: 28%; }
  50% { width: 72%; }
}

.dym-phone-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dym-phone-controls svg { opacity: 0.9; }

.dym-hero-copy h1 {
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.dym-hero-copy h1 em {
  font-style: normal;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.dym-hero-copy > p {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 520px;
}

.dym-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.dym-hero-tags span {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.03);
}

.dym-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dym-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: var(--pink);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: 24px;
  box-shadow: 0 4px 24px var(--pink-glow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.dym-btn-primary:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--pink-glow);
}

.dym-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  color: var(--text) !important;
  font-size: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s, background 0.2s;
}

.dym-btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan) !important;
  background: rgba(37, 244, 238, 0.06);
}

.dym-header-back {
  display: inline-flex;
  padding: 7px 14px;
  font-size: 13px;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .dym-hero {
    padding: 32px 0 36px;
  }
  .dym-hero-body {
    grid-template-columns: 1fr 200px;
    gap: 32px;
    align-items: center;
  }
  .dym-hero-phone {
    order: 2;
    width: 200px;
  }
  .dym-hero-copy { order: 1; }
}

@media (min-width: 1024px) {
  .dym-hero-body {
    grid-template-columns: 1fr 240px;
    gap: 48px;
  }
  .dym-hero-phone { width: 240px; }
}

/* ===== Marquee ticker ===== */
.dym-ticker {
  padding: 14px 0;
  background: var(--bg-panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.dym-ticker-track {
  display: flex;
  gap: 24px;
  animation: dym-ticker 28s linear infinite;
  width: max-content;
}

.dym-ticker-track span {
  font-size: 13px;
  color: var(--text-dim);
  white-space: nowrap;
  padding: 4px 0;
}

.dym-ticker-track span::before {
  content: "▶";
  color: var(--pink);
  margin-right: 8px;
  font-size: 10px;
}

@keyframes dym-ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Section common ===== */
.dym-section {
  padding: 48px 0;
  position: relative;
}

.dym-section-alt { background: var(--bg-soft); }

.dym-sec-head {
  margin-bottom: 32px;
}

.dym-sec-label {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.dym-sec-head h2 {
  font-size: clamp(22px, 4.5vw, 30px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}

.dym-sec-head p {
  color: var(--text-soft);
  font-size: 14px;
  max-width: 640px;
}

/* ===== 3:7 prose layout ===== */
.dym-prose-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
}

.dym-prose-block:last-child { margin-bottom: 0; }

.dym-prose-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.dym-prose-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--pink)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.4;
  pointer-events: none;
}

.dym-prose-img img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top;
}

.dym-prose-img figcaption {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-dim);
  background: var(--bg-panel);
  text-align: center;
}

.dym-prose-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--pink);
}

.dym-prose-text p {
  color: var(--text-soft);
  margin-bottom: 14px;
  font-size: 14.5px;
  text-align: justify;
}

.dym-prose-text ul {
  list-style: none;
  margin: 16px 0;
}

.dym-prose-text li {
  position: relative;
  padding: 8px 0 8px 20px;
  color: var(--text-soft);
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}

.dym-prose-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

@media (min-width: 768px) {
  .dym-prose-block {
    grid-template-columns: 30% 1fr;
    gap: 32px;
  }
  .dym-prose-block.reverse {
    grid-template-columns: 1fr 30%;
  }
  .dym-prose-block.reverse .dym-prose-img { order: 2; }
  .dym-prose-block.reverse .dym-prose-text { order: 1; }
}

/* ===== Category chips ===== */
.dym-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.dym-chip {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  color: var(--text-soft);
  transition: border-color 0.2s, color 0.2s;
}

.dym-chip:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* ===== Pure text SEO panels ===== */
.dym-text-panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 20px;
}

.dym-text-panel h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 3px solid var(--cyan);
}

.dym-text-panel p {
  color: var(--text-soft);
  font-size: 14.5px;
  margin-bottom: 12px;
  text-align: justify;
  line-height: 1.85;
}

.dym-text-panel p:last-child { margin-bottom: 0; }

.dym-text-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .dym-text-columns { grid-template-columns: 1fr 1fr; }
  .dym-text-panel { padding: 28px 28px; }
}

.dym-text-col {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.dym-text-col h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.dym-text-col p {
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 10px;
  text-align: justify;
  line-height: 1.8;
}

.dym-text-col ul {
  list-style: none;
  margin-top: 10px;
}

.dym-text-col li {
  position: relative;
  padding: 6px 0 6px 16px;
  font-size: 13px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--line);
}

.dym-text-col li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

/* ===== Stats strip ===== */
.dym-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 32px 0;
}

.dym-stat {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-panel);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.dym-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.dym-stat span {
  font-size: 12px;
  color: var(--text-dim);
}

@media (min-width: 600px) {
  .dym-stats { grid-template-columns: repeat(4, 1fr); }
}

/* ===== Timeline chapters ===== */
.dym-timeline {
  position: relative;
  padding-left: 28px;
}

.dym-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--pink));
  opacity: 0.4;
}

.dym-tl-item {
  position: relative;
  margin-bottom: 28px;
}

.dym-tl-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink-glow);
}

.dym-tl-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.dym-tl-item p {
  font-size: 14px;
  color: var(--text-soft);
}

/* ===== FAQ ===== */
.dym-faq-item {
  border-bottom: 1px solid var(--line);
}

.dym-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
}

.dym-faq-q::after {
  content: "+";
  font-size: 20px;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.dym-faq-item.is-open .dym-faq-q::after {
  transform: rotate(45deg);
}

.dym-faq-a {
  display: none;
  padding: 0 0 16px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.75;
}

.dym-faq-item.is-open .dym-faq-a { display: block; }

/* ===== Footer ===== */
.dym-footer {
  padding: 40px 0 28px;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}

.dym-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.dym-footer-brand p {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 10px;
  line-height: 1.7;
}

.dym-footer-links h4 {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 10px;
  font-weight: 600;
}

.dym-footer-links a {
  display: block;
  font-size: 13px;
  color: var(--text-dim);
  padding: 4px 0;
}

.dym-footer-links a:hover { color: var(--cyan); }

.dym-footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

@media (min-width: 600px) {
  .dym-footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ===== Sub pages ===== */
.dym-page-hero {
  padding: calc(var(--header-h) + 32px) 0 28px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.dym-page-hero h1 {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 800;
  margin-bottom: 8px;
}

.dym-page-hero p {
  color: var(--text-soft);
  font-size: 14px;
}

.dym-article {
  padding: 36px 0 48px;
}

.dym-article h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text);
}

.dym-article h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 20px 0 10px;
}

.dym-article p,
.dym-article li {
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 1.8;
}

.dym-article ul,
.dym-article ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.dym-article a { word-break: break-all; }

/* ===== Error pages ===== */
.dym-error {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 40px) 16px 40px;
}

.dym-error-code {
  font-family: var(--mono);
  font-size: clamp(64px, 18vw, 120px);
  font-weight: 800;
  line-height: 1;
  background: var(--grad-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.dym-error h1 {
  font-size: 22px;
  margin-bottom: 10px;
}

.dym-error p {
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 400px;
}

.dym-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
