/* ──────────────────────────────────────────────────────────────
   shell.css — 跨 entry HTML 共用「外殼」樣式

   涵蓋：
     - 共用 design token / 全域 reset / .visually-hidden utility
     - body 公園背景漸層（草地）
     - .sky-clouds + .cloud + .scenery（fixed 公園背景元素）
     - .brand-title-banner + .brand-back-btn + .title（頂端 fixed banner、← 鈕、品牌標題字）
     - .rules-article shell + .rules-cards + .rules-card 木牌卡片（border 堆疊、接縫單倍寬）
     - .rule-piece-icon 棋子 chip
     - .surface-shell（獨立 entry HTML 用的滾動容器，自帶 viewbox mask）
     - body[data-active-surface] 控制 .brand-back-btn 顯隱

   不含：
     - SPA 專屬 layout（html/body overflow:hidden、#surface-stack mask、棋盤、modal、各 surface 內互動 UI）
     - 各 surface 內部行為樣式

   引用：index.html / about.html 等 entry HTML 在 <head> 加
     <link rel="stylesheet" href="./css/shell.css">

   配合 partial：
     - src/partials/shell-bg.html       → sky-clouds + scenery DOM
     - src/partials/banner-static.html  → banner（<a href> 版本，獨立頁用）
     - src/partials/banner-spa.html     → banner（<button data-surface-link> 版本，SPA 用，預留待 SPA 重構時啟用）

   單一資料來源：
     本檔是「外殼樣式」的唯一定義處。index.html 已透過 <link> 引用本檔，
     不再 inline 重複 .sky-clouds / .scenery / .brand-title-banner / .title / .brand-back-btn /
     .rules-article / .rule-piece-icon 等規則。要調整任一視覺請改本檔即可，
     SPA 與 about 等 entry 同步更新。
   ────────────────────────────────────────────────────────────── */

:root {
  /* ── 共用版面 token ── */
  /* 全站基礎字（除棋子相關 .rule-piece-icon 用標楷體外）。
     思源黑體（Noto Sans TC）= Source Han Sans TC，跨裝置同一份字形檔，
     螢幕清晰度遠優於 Serif，避免長文小字級下細筆畫糊掉。
     更換時只改本 token；棋子相關處請保留標楷體 fallback chain。 */
  --ff-base: "Noto Sans TC", system-ui, sans-serif;

  /* Play 區塊棋盤外框實寬（與 index.html SPA 同一份規格）：
     盤本體 .board(width: max(40vw, 768px)) + .board-frame(padding: 15px × 2) */
  --play-board-width: calc(max(40vw, 768px) + 30px);
  /* 內容容器最大寬：完整對齊棋盤外框，QHD/4K 下卡片同步變寬 */
  --content-max-width: var(--play-board-width);
  --content-side-padding: 20px;
  --sky-band-height: 108px;

  /* 藍色 alpha 漸層越界到綠地的厚度（純視覺裝飾，不算 layout 空間）。
     由 .sky-clouds::after 渲染，從 sky-band 下緣往下延伸，alpha 1 → 0（hint 65% ease-out）。
     藍天本體保持實心 108px，只用此越界裝飾與下方草綠自然混色。 */
  --sky-fade-overflow: 18px;

  /* 草地 scenery 帶高度（與 index.html SPA 同一份規格）：
     SVG 採方向 A：.scenery 容器 span「藍天下緣 → 視窗底」整段，
     SVG 內 preserveAspectRatio="xMidYMax meet"，自然 fit 貼底。
     typical 寬度受限：實際渲染高 = 100vw × 220/1440。 */
  --scenery-height: calc(100vw * 220 / 1440);

  /* 地板（草地實心帶）實際渲染高：
     SVG viewBox 內草地 rect 從 y=178 到 y=220（42 單位），佔 viewBox 高 42/220 ≈ 19%。
     地板實高 = scenery 實高 × 42/220。 */
  --floor-height: calc(var(--scenery-height) * 42 / 220);

  /* ── 共用顏色 token（about / rules / changelog 都會用到）── */
  --wood-mid: #b07828;
  --wood-dark: #7a5010;
  --piece-rim: #a07828;
  --red-ink: #c01808;
  --black-ink: #181008;
  --text-warm: #fff3d0;
  --text-dim: rgba(255, 243, 200, 0.65);

  /* ── Surface viewbox mask 三段式 ──
     讓滾動內容進入頂端 sky-clouds / 底端 scenery 區時自然漸隱，
     不會出現「卡片邊緣硬切過雲帶／草地」。
     content-safe 為內容容器 padding，必須 ≥ hide + fade，否則內容會落在過渡區半透明。 */
  --surface-mask-sky-hide: var(--sky-band-height); /* 與 .sky-clouds 對齊 */
  --surface-mask-grass-hide: calc(var(--floor-height) + 24px); /* 地板實高 + padding */
  --surface-mask-fade: 32px; /* 軟過渡厚度 */
  --surface-content-safe-top: calc(
    var(--surface-mask-sky-hide) + var(--surface-mask-fade) + 24px
  );
  --surface-content-safe-bottom: calc(
    var(--surface-mask-grass-hide) + var(--surface-mask-fade) + 24px
  );

  /* ── 規則／卡片字級 token ── */
  --fs-rules-meta: 20px;
  --fs-rules-body: 16px;
  --fs-rules-piece: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* 視覺隱藏但對 SR / SEO 可見的標準 utility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body {
  font-family: var(--ff-base);
  background: radial-gradient(
      ellipse 80% 60% at 20% 90%,
      rgba(160, 220, 100, 0.5) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 60% 50% at 80% 10%,
      rgba(180, 235, 120, 0.35) 0%,
      transparent 50%
    ),
    linear-gradient(175deg, #b5e090 0%, #a5d878 45%, #95c868 100%);
}

/* ═══════════════════════════════════════════
   Sky band（fixed 頂端藍天 + 雲）
═══════════════════════════════════════════ */
/* 設計：藍天本體 (--sky-band-height) 全程實心純藍，過渡帶由 ::after 越界到綠地處理。
   - 本體 = 實心 rgba(107,184,216,1)，layout 邊界即視覺邊界
   - ::after = 越界 var(--sky-fade-overflow) 的 alpha 漸層裝飾，不算 layout 空間 */
.sky-clouds {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--sky-band-height);
  background: rgba(107, 184, 216, 1);
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.sky-clouds::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: var(--sky-fade-overflow);
  /* Ease-out alpha 曲線（CSS color hint syntax）：
     65% hint = alpha 0.5 點落在 65% 位置，藍色「黏住」較久、再快速融入綠地。
     視覺更接近真實天空溶於地面。 */
  background: linear-gradient(
    180deg,
    rgba(107, 184, 216, 1),
    50%,
    rgba(107, 184, 216, 0)
  );
  pointer-events: none;
}
.cloud {
  position: absolute;
  opacity: 0.82;
  will-change: transform;
}
.cloud-inner {
  position: relative;
}
.cloud-inner span {
  position: absolute;
  display: block;
  background: #fff;
  border-radius: 50%;
}
@keyframes cloud-drift-1 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(110vw);
  }
}
@keyframes cloud-drift-2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(115vw);
  }
}
@keyframes cloud-drift-3 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(108vw);
  }
}

/* ═══════════════════════════════════════════
   Park scenery（fixed 底端草地 + 樹 + 長椅 + 小狗）
═══════════════════════════════════════════ */
/* ─── Park scenery（方向 A：容器 span 整段「藍天下緣 → 視窗底」）───
   - 容器用 explicit width/height 撐滿藍天下方整段（不能只用 top/bottom，
     SVG 是 replaced element，沒有顯式尺寸時會 fallback 到 viewBox 內在大小、
     渲染在容器頂端 → 樹群錯位到藍天下緣而非貼底）
   - SVG 內 preserveAspectRatio="xMidYMax meet" 把 SVG 自然 fit 於容器、
     貼底（YMax）、橫向置中（xMid），上方剩餘空間透出 body 綠草色
   - mask grass-hide = --floor-height + padding：卡片視覺穿過樹冠下方、
     在接近地面時才 fade 出 */
.scenery {
  position: fixed;
  top: var(--sky-band-height);
  left: 0;
  width: 100vw;
  height: calc(100vh - var(--sky-band-height));
  height: calc(100dvh - var(--sky-band-height));
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════
   Brand title banner（fixed top，含 ← 返回鈕）
   - SPA 用 <button data-surface-link>；獨立頁用 <a href>，CSS 共用
   - z-index 25 浮於 sky-clouds alpha 漸層（z:0）之上
═══════════════════════════════════════════ */
.brand-title-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--sky-band-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  pointer-events: none;
  z-index: 25;
}
/* 藍天帶品牌標題：與 SPA play 頁 #brandTitleBanner 同款字級／字重／陰影（原 index inline） */
.title {
  font-size: 40px;
  /* 從 900 降到 700 修 FOUT 字重突變（見 index 註解）；font-synthesis-weight 避免 fallback 人造粗體 */
  font-weight: 700;
  font-synthesis-weight: none;
  color: #fff;
  letter-spacing: 4px;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25), 0 1px 0 rgba(0, 0, 0, 0.1);
}

.brand-title-banner .title {
  margin: 0;
  pointer-events: none;
}

/* ← 返回鈕：絕對定位，水平對齊內容卡片左緣 */
.brand-back-btn {
  position: absolute;
  left: max(
    calc(var(--content-side-padding) + env(safe-area-inset-left, 0px)),
    calc((100% - var(--content-max-width)) / 2)
  );
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  font-family: var(--ff-base);
  cursor: pointer;
  pointer-events: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  text-decoration: none; /* 支援 <a> 變體 */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.15s, transform 0.1s;
}
.brand-back-btn:hover {
  background: rgba(255, 255, 255, 0.32);
}
.brand-back-btn:active {
  transform: translateY(-50%) scale(0.94);
}
.brand-back-btn:focus-visible {
  outline: 3px solid #fff8e0;
  outline-offset: 2px;
}

/* 預設不顯示；只在內容頁顯示 ← 返回 */
.brand-back-btn {
  display: none;
}
body[data-active-surface="rules"] .brand-back-btn,
body[data-active-surface="changelog"] .brand-back-btn,
body[data-active-surface="history"] .brand-back-btn,
body[data-active-surface="replay"] .brand-back-btn,
body[data-active-surface="about"] .brand-back-btn {
  display: inline-flex;
}

/* history / replay 在 SPA 內 ← 鈕對齊各自實際內容寬度（非 content-max-width） */
body[data-active-surface="history"] .brand-back-btn {
  left: max(
    calc(env(safe-area-inset-left, 0px) + 12px),
    calc((100% - min(1000px, 100vw - 40px)) / 2)
  );
}
body[data-active-surface="replay"] .brand-back-btn {
  left: max(
    calc(env(safe-area-inset-left, 0px) + 12px),
    calc((100% - var(--play-board-width)) / 2)
  );
}

/* ═══════════════════════════════════════════
   Surface shell（獨立 entry HTML 用的滾動容器）
   - SPA 內走 #surface-stack > .surface 各自的 mask（不在本檔）
   - 獨立頁（about）用 .surface-shell 取得同款行為：
       高 = 100vh，內部 overflow-y: auto，套同款三段式 mask
   - 加上 about.html 自身 body { height:100vh; overflow:hidden }
     （在 about.html inline，避免污染 SPA 的 body 樣式）
═══════════════════════════════════════════ */
.surface-shell {
  /* 卡片外區域可點回主遊戲（行為見 src/ts/content-shell-dismiss.ts） */
  cursor: pointer;
  height: 100vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent var(--surface-mask-sky-hide),
    #000 calc(var(--surface-mask-sky-hide) + var(--surface-mask-fade)),
    #000
      calc(
        100% - var(--surface-mask-grass-hide) - var(--surface-mask-fade)
      ),
    transparent calc(100% - var(--surface-mask-grass-hide)),
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0,
    transparent var(--surface-mask-sky-hide),
    #000 calc(var(--surface-mask-sky-hide) + var(--surface-mask-fade)),
    #000
      calc(
        100% - var(--surface-mask-grass-hide) - var(--surface-mask-fade)
      ),
    transparent calc(100% - var(--surface-mask-grass-hide)),
    transparent 100%
  );
}

.surface-shell .rules-card,
.surface-shell .changelog-entry {
  cursor: auto;
}

/* ═══════════════════════════════════════════
   Rules article shell + 木牌卡片
   - 與 SPA rules / changelog surface 完全同款
   - about / 未來簡體版 about / 其他 SEO landing 都用同一套 class
═══════════════════════════════════════════ */
.rules-article {
  width: min(var(--content-max-width), 100%);
  margin: 0 auto;
  padding: var(--surface-content-safe-top) var(--content-side-padding)
    var(--surface-content-safe-bottom);
  box-sizing: border-box;
  color: #1a1a1a;
}
.rules-article:focus {
  outline: none;
}

.rules-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  /* 木框改 border 相疊：border-box 緊貼，從第二張起不畫上邊避免接縫雙倍厚 */
  gap: 0;
}

/* 木牌外框：8px 實線 border + 柔影（不再用 0 0 0 8px 整圈 shadow，避免相鄰雙層木色）。
   從第二張起 border-top:none；圓角僅最上／最下（單卡則四角）。
   width + 負 margin 抵銷 border 佔用，內文欄寬與改版前「陰影在盒外」時一致。 */
.rules-card,
.changelog-entry {
  box-sizing: border-box;
  width: calc(100% + 16px);
  margin-left: -8px;
  margin-right: -8px;
  padding: 16px 20px;
  background: linear-gradient(170deg, #f7f0e0 0%, #f0e8d0 100%);
  border: 8px solid #9a6820;
  border-radius: 0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32);
}

.rules-card:first-child,
.changelog-entry:first-child {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.rules-card:last-child,
.changelog-entry:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.rules-card:first-child:last-child,
.changelog-entry:first-child:last-child {
  border-radius: 6px;
}

.rules-card:not(:first-child),
.changelog-entry:not(:first-child) {
  border-top: none;
}

.rules-card-meta {
  margin: 0 0 10px;
  font-size: var(--fs-rules-meta);
  font-weight: 700;
  color: #3a2818;
  line-height: 1.35;
}

.rules-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: var(--fs-rules-body);
  line-height: 1.7;
  color: #2a1a08;
}
.rules-card-body p {
  margin: 0;
}
.rules-card-body a {
  color: var(--wood-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.rules-card-body a:hover {
  color: #5a3808;
}
.rules-card-body ul {
  margin: 0;
  padding-left: 1.4em;
}
.rules-card-body li {
  margin-bottom: 4px;
}
.rules-card-body .rules-item-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin: 0 0 4px;
  font-size: var(--fs-rules-body);
  font-weight: 700;
  line-height: 1.6;
  color: #2a1a08;
}

/* about 頁「錯誤回報」web3forms：與 .rules-card-body 間距、木牌邊色一致 */
.about-feedback-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
.about-feedback-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-feedback-form label {
  font-weight: 700;
  color: #2a1a08;
  line-height: 1.45;
}
.about-feedback-optional {
  font-weight: 400;
  color: #5a4028;
  opacity: 0.9;
}
.about-feedback-form input[type="text"],
.about-feedback-form textarea {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  font: inherit;
  font-size: var(--fs-rules-body);
  line-height: 1.5;
  color: #1a1a1a;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #9a6820;
  border-radius: 6px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
}
.about-feedback-form textarea {
  min-height: 7.5em;
  resize: vertical;
}
.about-feedback-form input[type="text"]:focus-visible,
.about-feedback-form textarea:focus-visible {
  outline: 2px solid #7a5018;
  outline-offset: 2px;
}
.about-feedback-submit {
  align-self: flex-start;
  margin-top: 2px;
  padding: 10px 20px;
  font: inherit;
  font-size: var(--fs-rules-body);
  font-weight: 700;
  line-height: 1.4;
  color: #f7f0e0;
  cursor: pointer;
  background: linear-gradient(180deg, #8a6028 0%, #6a4818 100%);
  border: 1px solid #5a3810;
  border-radius: 6px;
  box-shadow: 0 2px 0 #4a3010, 0 4px 10px rgba(0, 0, 0, 0.2);
}
.about-feedback-submit:hover {
  filter: brightness(1.06);
}
.about-feedback-submit:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 #4a3010, 0 2px 6px rgba(0, 0, 0, 0.18);
}
.about-feedback-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.about-feedback-status {
  margin: 0;
  padding: 10px 12px;
  font-size: var(--fs-rules-body);
  line-height: 1.65;
  color: #1a4a1a;
  background: rgba(180, 220, 160, 0.45);
  border: 1px solid #6a9850;
  border-radius: 6px;
}
.about-feedback-status.about-feedback-status--error {
  color: #5a1810;
  background: rgba(255, 210, 200, 0.55);
  border-color: #b05040;
}
.about-feedback-thanks {
  margin-top: 1rem;
}

/* ─── 規則內容元件（rules-renderer.ts 渲染輸出）───
   獨立於 .rules-card 與 .rules-card-body 之外的細節元件，
   供 rules.html / about.html 等獨立 entry HTML 共用。 */
.rules-item-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-weight: 700;
  color: #2a1a08;
  margin-bottom: 4px;
  line-height: 1.6;
}

.rule-rank-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  padding: 8px 0 4px;
  font-size: var(--fs-rules-body);
  color: #5a4028;
}
/* 內文段落內的階列用 inline-flex，避免變成整寬度換行導致句點被孤立在下一行 */
.rule-text .rule-rank-row {
  display: inline-flex;
  vertical-align: text-bottom;
}
/* 行尾句點用正文色，不沿用階列的棕色 */
.rule-text .rule-rank-term {
  color: #1a1a1a;
  flex-shrink: 0;
}
.rule-rank-pair { display: inline-flex; align-items: center; }
.rule-rank-arrow { opacity: 0.55; padding: 0 2px; font-weight: 700; }

.rule-text {
  color: #1a1a1a;
  font-size: var(--fs-rules-body);
  line-height: 1.85;
}
.rule-text + .rule-text,
.rule-text + .rule-list { margin-top: 4px; }

.rule-list {
  margin: 4px 0 0;
  padding-left: 22px;
  list-style: disc;
  color: #1a1a1a;
  font-size: var(--fs-rules-body);
  line-height: 1.85;
}

.rule-note {
  display: block;
  margin: 6px 0 0;
  font-size: var(--fs-rules-caption);
  color: #6a5840;
  line-height: 1.7;
}
.rule-note::before { content: "＃ "; opacity: 0.6; }

/* ─── 更新日誌內容元件（changelog-renderer.ts 渲染輸出）───
   供 changelog.html 使用；視覺與 .rules-cards/.rules-card 同款。 */
.changelog-article {
  width: min(var(--content-max-width), 100%);
  margin: 0 auto;
  padding: var(--surface-content-safe-top) var(--content-side-padding)
    var(--surface-content-safe-bottom);
  box-sizing: border-box;
  color: #1a1a1a;
}
.changelog-article:focus { outline: none; }

.changelog-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.changelog-entry-meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.changelog-entry-version {
  font-size: var(--fs-md);
  font-weight: 700;
  color: #3a2818;
  letter-spacing: 0.03em;
}

.changelog-entry-date {
  font-size: var(--fs-xs);
  color: #8a7050;
  flex: 1;
}

.changelog-badge-new {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: #3a1a00;
  background: #d4a050;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.changelog-entry-body {
  padding: 0 0 0 20px;
  margin: 0;
  list-style: disc;
  color: #1a1a1a;
  font-size: var(--fs-md);
  line-height: 1.85;
}
.changelog-entry-body li { color: #1a1a1a; }

/* 棋子 chip：rules surface 與棋盤下方變體列共用的 <span> 版本 */
.rule-piece-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  margin: 0 1px;
  vertical-align: -0.35em;
  border-radius: 50%;
  /* 棋子永遠走標楷體 — 這是暗棋視覺底蘊，請勿合併到 --ff-base */
  font-family: "BiauKai", "標楷體", "DFKai-SB", "KaiTi", serif;
  font-weight: 900;
  font-size: var(--fs-rules-piece);
  line-height: 1;
  background: linear-gradient(168deg, #e8d4a4 0%, #d4b87a 100%);
  border: 1.5px solid #9a6820;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  user-select: none;
}
.rule-piece-icon--red {
  color: #b0140a;
}
.rule-piece-icon--black {
  color: #17110a;
}

/* SVG hydrated 變體（棋盤同款資產） */
img.rule-piece-icon,
.rule-piece-icon--svg {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  font: inherit;
  color: inherit;
  width: 1.7em;
  height: 1.7em;
  object-fit: contain;
  -webkit-user-drag: none;
}

/* 與 index.html SPA 行動版斷點一致：頂欄品牌字縮放 */
@media (max-width: 639px) {
  .title {
    font-size: 26px;
    letter-spacing: 2px;
  }
}
