/* ============================================================
   铃雪回廊 · 全站基础样式（设计系统）
   基调：干净清爽的编辑感 —— 衬线大标题、克制的边框与留白、
   单一雾蓝紫点缀，外加极轻的霜雪星光氛围。
   ============================================================ */

:root {
  /* —— 六枚核心 token（仅此处允许定义色值） —— */
  --bg:      oklch(98.4% 0.005 245);   /* 冰白底 */
  --surface: oklch(100% 0.002 245);    /* 卡片表面 */
  --fg:      oklch(23% 0.02 260);      /* 墨青黑 */
  --muted:   oklch(50% 0.018 260);     /* 次级文字 */
  --border:  oklch(91.5% 0.008 245);   /* 发丝线 */
  --accent:  oklch(46% 0.105 262);     /* 雾蓝紫 · 霜雪点缀 */

  /* 派生色（就地混合，不新增 token） */
  --accent-soft:   color-mix(in oklch, var(--accent) 12%, transparent);
  --accent-softer: color-mix(in oklch, var(--accent) 6%, transparent);
  --fg-soft:       color-mix(in oklch, var(--fg) 5%, transparent);

  /* —— 字体 —— 显示=衬线(中文回退宋体系)，正文=无衬线，元数据=等宽 */
  --font-display: 'Iowan Old Style', 'Charter', Georgia, 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;
  --font-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, sans-serif;
  --font-mono:    ui-monospace, 'SF Mono', 'JetBrains Mono', 'Consolas', monospace;

  /* —— 字号 —— */
  --fs-h1:   clamp(48px, 6.6vw, 84px);
  --fs-h2:   clamp(30px, 4.2vw, 46px);
  --fs-h3:   21px;
  --fs-lead: 18px;
  --fs-body: 16px;
  --fs-meta: 13px;

  /* —— 间距（8pt 网格） —— */
  --gap-xs: 8px;
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 32px;
  --gap-xl: 56px;
  --gap-2xl: 96px;
  --container: 1120px;
  --gutter: 32px;

  --radius: 8px;
  --radius-lg: 12px;
}

/* —— reset & base —— */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; }
::selection { background: var(--accent-soft); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

/* —— 布局基元 —— */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  position: relative;
  padding-block: clamp(64px, 10vw, 120px);
  scroll-margin-top: 84px;
}
.stack { display: flex; flex-direction: column; }
.stack > * + * { margin-top: var(--gap-md); }
.row { display: flex; align-items: center; gap: var(--gap-md); flex-wrap: wrap; }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-md); flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: var(--gap-xl); align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: var(--gap-xl); align-items: start; }
@media (max-width: 920px) {
  .grid-2, .grid-3, .grid-4, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
}

/* —— 标题排版 —— */
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--fg); }
h1, .h1 { font-size: var(--fs-h1); line-height: 1.12; letter-spacing: -0.015em; font-weight: 600; }
h2, .h2 { font-size: var(--fs-h2); line-height: 1.18; letter-spacing: -0.01em; font-weight: 600; }
h3, .h3 { font-size: var(--fs-h3); line-height: 1.35; font-weight: 600; }
.lead { font-size: var(--fs-lead); color: var(--muted); line-height: 1.75; max-width: 60ch; margin: 0; }
.meta { font-family: var(--font-mono); font-size: var(--fs-meta); color: var(--muted); }
.num  { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* 眉题（mono 大写 + 短线，编辑感来源） */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 var(--gap-md);
}
.eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--accent); flex-shrink: 0; }

/* 板块头部 */
.section-head { max-width: 720px; margin-bottom: var(--gap-xl); }
.section-head .lead { margin-top: var(--gap-md); }

/* 子页页头（顶部一层极淡霜辉，承接 hero 氛围） */
.page-hero {
  position: relative;
  padding-block: clamp(56px, 8vw, 96px) clamp(40px, 6vw, 72px);
  background: radial-gradient(46% 38% at 50% 0%, var(--accent-softer), transparent 72%);
}
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: var(--gap-md); }
.page-hero .lead { max-width: 52ch; }

/* 板块雪线：每节顶部一条渐隐的霜雪虚线，取代生硬的实线分隔 */
.section::before {
  content: '';
  position: absolute;
  top: 0; left: var(--gutter); right: var(--gutter);
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 5px, transparent 5px 13px);
  opacity: 0.3;
  -webkit-mask: linear-gradient(90deg, transparent, black 14%, black 86%, transparent);
  mask: linear-gradient(90deg, transparent, black 14%, black 86%, transparent);
  pointer-events: none;
}
.section:first-of-type::before { display: none; }

/* —— 顶部导航（毛玻璃） —— */
.topnav {
  position: sticky; top: 0; z-index: 80;
  background: color-mix(in oklch, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topnav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-lg); padding-block: 13px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 19px; font-weight: 600; letter-spacing: 0.02em; color: var(--fg); }
.brand .mark { width: 24px; height: 24px; color: var(--accent); flex-shrink: 0; }
.brand-sep { color: var(--accent); }
.brand-en { font-family: var(--font-mono); font-size: 12.5px; font-weight: 400; letter-spacing: 0.05em; color: var(--muted); white-space: nowrap; }
.topnav nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 32px); }
.topnav nav a { font-size: 14px; color: var(--muted); padding-block: 4px; }
.topnav nav a:hover { color: var(--fg); }
.topnav nav a.current { color: var(--fg); font-weight: 600; }
.topnav .btn-auth { min-height: 38px; padding: 7px 20px; font-size: 14px; }

/* —— 页脚（四栏：品牌简介 + 板块 + 页面 + 联系；底部版权行） —— */
.pagefoot {
  position: relative;
  border-top: 1px solid var(--border);
  padding-block: var(--gap-2xl) var(--gap-lg);
  margin-top: clamp(48px, 8vw, 96px);
  color: var(--muted);
  font-size: 13px;
  overflow: hidden;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: var(--gap-xl);
  padding-bottom: var(--gap-xl);
}
.foot-brand .brand { font-size: 20px; margin-bottom: 6px; }
.foot-tagline { margin: 10px 0 8px; font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 34ch; }
.foot-meta { font-size: 11.5px; letter-spacing: 0.08em; }
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.foot-col a, .foot-col span { display: block; padding-block: 3px; color: var(--muted); font-size: 13.5px; }
.foot-col a:hover { color: var(--fg); }
.foot-col a::before { content: '· '; color: var(--accent); opacity: 0.6; }
.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--gap-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
  flex-wrap: wrap;
}
.foot-copy { font-size: 13px; color: var(--muted); }
.foot-copy b { color: var(--fg); font-weight: 600; }
.foot-note { font-size: 12px; letter-spacing: 0.03em; }

/* —— 按钮 —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.005em;
  min-height: 44px;
  transition: transform 0.06s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--surface); border-color: var(--accent); }
.btn-primary:hover { background: color-mix(in oklch, var(--accent) 85%, black); }
.btn-secondary { background: transparent; color: var(--fg); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--fg); background: var(--fg-soft); }
.btn-ghost { background: transparent; color: var(--fg); border-color: transparent; padding-inline: 8px; }
.btn-ghost:hover { color: var(--accent); }
.btn-arrow::after { content: '→'; transition: transform 0.15s ease; }
.btn-arrow:hover::after { transform: translateX(3px); }

/* 文字链 */
.link-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--fg);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.link-more:hover { color: var(--accent); border-color: var(--accent); }
.link-more::after { content: '→'; transition: transform 0.15s ease; }
.link-more:hover::after { transform: translateX(3px); }

/* —— 卡片（编辑感：细边 + 留白，不做浮夸阴影） —— */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-flat { background: transparent; border: 0; padding: 0; }

/* 悬停浮空：柔和上浮 + 更深的投影 + 淡紫描边，用于需要轻微“飘起”的卡片 */
.lift {
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}
.lift:hover {
  transform: translateY(-6px);
  border-color: color-mix(in oklch, var(--accent) 38%, var(--border));
  box-shadow: 0 26px 52px -26px oklch(0.3 0.06 262 / 0.5);
}
.card-hover { transition: border-color 0.2s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease; }
.card-hover:hover {
  border-color: color-mix(in oklch, var(--accent) 38%, var(--border));
  transform: translateY(-6px);
  box-shadow: 0 26px 52px -26px oklch(0.3 0.06 262 / 0.5);
}

/* —— 作品卡片（首页与作品独立页共用） —— */
.project-card { display: flex; flex-direction: column; gap: 14px; }
.project-top { display: flex; align-items: center; justify-content: space-between; }
.project-index { color: var(--accent); font-size: 13px; letter-spacing: 0.08em; }
.project-title { font-size: 24px; }
.project-sub { font-family: var(--font-mono); font-size: 13px; color: var(--muted); margin: 0; }
.project-desc { margin: 0; color: var(--fg); font-size: 14.5px; line-height: 1.75; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.project-card .link-more { align-self: flex-start; margin-top: 6px; }

/* —— 设定集条目（首页与设定集独立页共用） —— */
.collection-grid { gap: var(--gap-lg); }
.collection-grid .collection-item { margin: 0; }
.collection-item .ph-img { margin-bottom: 12px; }
.collection-item figcaption h3 { font-size: 16px; margin-bottom: 2px; }
.collection-item figcaption p { margin: 0; color: var(--muted); font-size: 13px; }

/* —— 标签 / 筛选药丸 —— */
.tag {
  display: inline-flex; align-items: center;
  padding: 3px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px; color: var(--muted);
  white-space: nowrap;
}
.pill-filter {
  display: inline-flex; align-items: center;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  user-select: none;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  min-height: 34px;
}
.pill-filter:hover { border-color: var(--fg); color: var(--fg); }
.pill-filter.active { background: var(--fg); border-color: var(--fg); color: var(--surface); }

/* 状态徽标 */
.status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  white-space: nowrap;
}
.status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.status-inprogress { background: color-mix(in oklch, oklch(72% 0.1 255) 20%, transparent); color: oklch(40% 0.11 255); }
.status-planning   { background: color-mix(in oklch, oklch(72% 0.12 95) 20%, transparent); color: oklch(38% 0.1 105); }
.status-completed  { background: color-mix(in oklch, oklch(72% 0.12 155) 20%, transparent); color: oklch(38% 0.11 155); }
.status-blocked    { background: color-mix(in oklch, oklch(72% 0.12 25) 20%, transparent); color: oklch(40% 0.12 25); }
.status-onhold     { background: color-mix(in oklch, oklch(72% 0.03 280) 22%, transparent); color: oklch(42% 0.04 280); }

/* —— 日志行（编辑式条目：上边线分隔） —— */
.log-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: var(--gap-lg);
  padding: 26px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.log-row:first-child { border-top: 0; }
.log-row .log-date { font-family: var(--font-mono); font-size: var(--fs-meta); color: var(--muted); }
.log-row h3 { font-size: 20px; margin-bottom: 6px; }
.log-row .log-dek { color: var(--muted); font-size: 14.5px; margin: 0; }

/* —— 图像占位（渐变底 + 诚实标注，不伪造图片） —— */
.ph-img {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent-softer)), var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 10;
  display: grid; place-items: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ph-img.square   { aspect-ratio: 1 / 1; }
.ph-img.portrait { aspect-ratio: 3 / 4; }
.ph-img.wide     { aspect-ratio: 16 / 9; }

/* —— 表单 —— */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; color: var(--muted); }
.input, .textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--fg);
  font: inherit; font-size: 15px;
}
.input:focus, .textarea:focus { outline: 2px solid var(--accent-soft); border-color: var(--accent); }
.textarea { min-height: 96px; resize: vertical; line-height: 1.6; }

/* —— 数据表 —— */
.ds-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ds-table th, .ds-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); }
.ds-table th { color: var(--muted); font-weight: 500; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.ds-table tbody tr:hover { background: var(--fg-soft); }
.ds-table .num-col { font-family: var(--font-mono); font-variant-numeric: tabular-nums; text-align: right; }

/* —— 分割线 —— */
.rule { border: 0; border-top: 1px solid var(--border); margin: 0; }
.rule-strong { border: 0; border-top: 1px solid var(--fg); margin: 0; }

/* —— 滚动显现 —— */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* —— 霜雪星光（唯一贯穿全站的氛围点缀） —— */
.sparkle-field { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.spark {
  position: absolute;
  color: var(--accent);
  opacity: 0;
  animation: twinkle var(--t, 16s) ease-in-out infinite;
}
.spark svg { width: 1em; height: 1em; display: block; }
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(0.5) rotate(0deg); }
  20%      { opacity: 0.55; }
  50%      { opacity: 0.2; transform: translateY(-26px) scale(1) rotate(18deg); }
  80%      { opacity: 0.5; }
}

/* —— 幽灵星（极淡的背景装饰，霜雪氛围；仅作氛围，不遮内容） —— */
.star-ghost {
  position: absolute;
  color: var(--accent);
  opacity: 0.07;
  pointer-events: none;
  animation: star-drift var(--drift, 26s) ease-in-out infinite alternate;
}
.star-ghost svg { width: 100%; height: auto; display: block; }
@keyframes star-drift {
  from { transform: rotate(-10deg) translateY(0); }
  to   { transform: rotate(12deg) translateY(-16px); }
}

/* —— 侧边板块导航（左侧抽屉 · 小半屏全幅，覆盖顶栏；开关钮浮于左上、顶栏之下） —— */
.side-toggle {
  position: fixed;
  top: 64px; left: var(--gutter);
  z-index: 95;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--surface) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--accent);
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -16px oklch(0.35 0.06 260 / 0.5);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, left 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.side-toggle[aria-expanded="true"] { left: calc(min(400px, 42vw) + var(--gutter)); }
.side-toggle:hover { border-color: var(--accent); color: var(--fg); }
.side-toggle:active { transform: scale(0.96); }
.side-toggle svg { width: 21px; height: 21px; transition: transform 0.3s ease; }
.side-toggle[aria-expanded="true"] svg { transform: rotate(135deg); }

.side-nav {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: min(400px, 42vw);
  z-index: 90;
  display: flex; flex-direction: column;
  background: color-mix(in oklch, var(--surface) 90%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-right: 1px solid var(--border);
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0 var(--gap-lg) var(--gap-xl);
  overflow-y: auto;
}
.side-nav.open { transform: translateX(0); }
.side-head {
  padding: 128px 0 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--gap-md);
}
.side-title { display: block; font-family: var(--font-display); font-size: 21px; font-weight: 600; margin-bottom: 2px; }
.side-head .meta { font-size: 12px; letter-spacing: 0.08em; }
.side-links { display: flex; flex-direction: column; gap: 8px; }
.side-links a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklch, var(--bg) 74%, transparent);
  font-size: 15px; color: var(--fg);
  white-space: nowrap;
  min-height: 48px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.side-links a:hover { color: var(--accent); border-color: var(--accent); transform: translateX(4px); }
.side-links a .side-no { font-family: var(--font-mono); font-size: 12px; color: var(--accent); font-variant-numeric: tabular-nums; min-width: 20px; transition: color 0.15s ease; }
.side-links a.active { background: var(--accent); border-color: var(--accent); color: var(--surface); }
.side-links a.active .side-no { color: var(--surface); }
.side-links a.active::after { content: '→'; margin-left: auto; font-size: 14px; }
.side-backdrop { position: fixed; inset: 0; z-index: 85; background: oklch(20% 0.02 260 / 0.22); }

/* —— 进度条 —— */
.progress-item { display: flex; flex-direction: column; gap: 8px; }
.progress-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.progress-name { font-size: 15px; font-weight: 500; margin: 0; }
.progress-pct { font-family: var(--font-mono); font-size: 13px; color: var(--muted); font-variant-numeric: tabular-nums; }
.progress-track { height: 6px; border-radius: 999px; background: var(--fg-soft); overflow: hidden; }
.progress-fill { height: 100%; border-radius: 999px; background: var(--accent); width: 0; transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1); }

/* —— 状态文案 —— */
.loading, .empty, .error { text-align: center; padding: 48px 20px; color: var(--muted); font-size: 15px; }
.error { color: oklch(45% 0.15 25); }

/* —— 响应式 —— */
@media (max-width: 920px) {
  .topnav nav { gap: 16px; }
  .topnav nav a { font-size: 13px; }
  .section-head { margin-bottom: var(--gap-lg); }
  .side-nav { width: min(340px, 84vw); }
  .side-head { padding-top: 128px; }
  .side-links a { padding: 12px 16px; }
  .side-toggle[aria-expanded="true"] { left: calc(min(340px, 84vw) - 66px); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: var(--gap-lg); }
}
@media (max-width: 640px) {
  .log-row { grid-template-columns: 1fr; gap: 6px; }
  .brand-sep, .brand-en { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: var(--gap-lg); }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .spark { display: none; }
}
