/* =====================================================================
 *  我的世界服务器官网 · 样式表
 *  设计语言：Minecraft 像素方块风（直角、硬边框、立体按钮）
 * ===================================================================== */

/* ---------- 1. 变量 ---------- */
:root {
  --bg:            #0d1117;
  --bg-2:          #121a24;
  --surface:       #182130;
  --surface-2:     #1f2a3c;
  --surface-3:     #26334a;
  --border:        #2c3a52;
  --border-hard:   #0a0e14;

  --text:          #e8edf5;
  --text-dim:      #9fb0c9;
  --text-mute:     #6b7d99;

  --grass:         #5bc236;
  --grass-dark:    #3d8c22;
  --grass-light:   #7ee05a;
  --gold:          #ffc53d;
  --gold-dark:     #c8941a;
  --diamond:       #4fd6e0;
  --redstone:      #e0503d;
  --netherite:     #6f5f8f;

  --radius:        4px;
  --shadow:        var(--border-hard) 0 4px 0 0, rgba(0, 0, 0, .35) 0 10px 24px -8px;
  --shadow-sm:     var(--border-hard) 0 3px 0 0;
  --shadow-press:  var(--border-hard) 0 0 0 0;
  --maxw:          1160px;

  --en: 'Press Start 2P', 'Segoe UI', monospace;
  --cn: 'ZCOOL QingKe HuangYou', 'Noto Sans SC', 'Microsoft YaHei', 'PingFang SC', system-ui, sans-serif;
}

/* ---------- 2. 基础 ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--cn);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background-color: var(--bg);
  /* 像素格背景 */
  background-image:
    linear-gradient(rgba(91, 194, 54, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 194, 54, .04) 1px, transparent 1px);
  background-size: 40px 40px, 40px 40px;
  overflow-x: hidden;
}

body::before {
  /* 顶部青草渐变色带 */
  content: '';
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--grass), var(--diamond), var(--gold), var(--grass));
  background-size: 300% 100%;
  animation: flow 8s linear infinite;
  z-index: 100;
}
@keyframes flow { to { background-position: 300% 0; } }

img { max-width: 100%; display: block; }
a { color: var(--grass-light); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold); }

h1, h2, h3, h4 { font-weight: 400; line-height: 1.3; margin: 0 0 .6em; letter-spacing: .02em; }
h1 { font-size: clamp(2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
code, kbd { font-family: ui-monospace, Consolas, monospace; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.en { font-family: var(--en); letter-spacing: 0; }

/* 打字机光标 */
.cursor { display: inline-block; width: .55em; height: 1em; background: var(--grass); vertical-align: -.12em; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

::selection { background: var(--grass); color: #08130a; }

/* ---------- 3. 顶栏 ---------- */
.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(13, 17, 23, .88);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border);
}
.header-inner { display: flex; align-items: center; gap: 16px; height: 68px; }

.logo { display: flex; align-items: center; gap: 12px; color: var(--text); flex-shrink: 0; }
.logo:hover { color: var(--text); }
/* 顶栏头像：优先用服务器图标（server.icon），加载失败时降级为绿方块 */
.logo-icon, .logo-cube {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 2px solid var(--border-hard);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .25s;
}
.logo-icon { image-rendering: pixelated; object-fit: cover; background: var(--surface-3); }
.logo-cube { background: var(--grass); }
.logo:hover .logo-icon, .logo:hover .logo-cube { transform: rotate(-6deg) scale(1.06); }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text b { font-weight: 400; font-size: 1.15rem; }
.logo-text span { font-size: .68rem; color: var(--text-mute); font-family: var(--en); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--text-dim); padding: 9px 14px; font-size: 1rem;
  border: 2px solid transparent; border-radius: var(--radius);
  transition: .15s;
}
.nav a:hover { color: var(--text); background: var(--surface-2); }
.nav a.active { color: var(--grass-light); background: var(--surface-2); border-color: var(--border); }
.nav a.ext::after { content: ' ↗'; font-size: .8em; color: var(--text-mute); }

.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 38px; cursor: pointer;
  background: var(--surface-2); border: 2px solid var(--border); border-radius: var(--radius);
  color: var(--text); font-size: 1.1rem; line-height: 1;
}
.nav-toggle:hover { background: var(--surface-3); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 70px; margin: 0;
    flex-direction: column; align-items: stretch; gap: 2px; padding: 10px 20px 16px;
    background: var(--bg-2); border-bottom: 2px solid var(--border);
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 14px; }
}

/* ---------- 4. 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; font-family: var(--cn); font-size: 1.02rem; cursor: pointer;
  color: #0a1a08; background: var(--grass);
  border: 2px solid var(--border-hard); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: .12s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { background: var(--grass-light); color: #0a1a08; transform: translateY(-2px); box-shadow: var(--border-hard) 0 5px 0 0; }
.btn:active { transform: translateY(2px); box-shadow: var(--shadow-press); }
.btn-ghost { background: var(--surface-2); color: var(--text); border-color: var(--border); }
.btn-ghost:hover { background: var(--surface-3); color: var(--text); }
.btn-gold { background: var(--gold); color: #241a02; }
.btn-gold:hover { background: #ffd76b; color: #241a02; }
.btn-sm { padding: 8px 14px; font-size: .92rem; }

/* ---------- 5. 通用区块 ---------- */
.section { padding: 76px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.section-head .tag {
  display: inline-block; font-family: var(--en); font-size: .6rem; letter-spacing: .12em;
  color: var(--grass); background: rgba(91, 194, 54, .1);
  border: 2px solid var(--grass-dark); border-radius: var(--radius);
  padding: 5px 12px; margin-bottom: 16px;
}
.section-head p { color: var(--text-dim); margin: 0; }
.section-alt { background: var(--bg-2); border-top: 2px solid var(--border); border-bottom: 2px solid var(--border); }

.card {
  background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform .18s, border-color .18s, box-shadow .18s;
}
.card:hover { transform: translateY(-4px); border-color: var(--grass-dark); box-shadow: var(--border-hard) 0 7px 0 0; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

/* 进入视口动画 */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .5s, transform .5s; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  body::before { animation: none; }
}
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
  .header, .totop, .toast { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ---------- 6. 首页 Hero ---------- */
.hero { position: relative; padding: 88px 0 76px; overflow: hidden; }
.hero::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 220px; pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%, rgba(91, 194, 54, .16), transparent 70%);
}
.hero-inner { position: relative; z-index: 2; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px;
  padding: 7px 16px; font-size: .92rem; color: var(--text-dim);
  background: var(--surface); border: 2px solid var(--border); border-radius: 999px;
}
.hero h1 { margin-bottom: .35em; }
.hero h1 .hl {
  background: linear-gradient(180deg, var(--grass-light), var(--grass-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, .35));
}
.hero-sub { color: var(--text-dim); font-size: clamp(1rem, 2.4vw, 1.18rem); max-width: 640px; margin: 0 auto 34px; }

/* 服务器地址 */
.ip-box {
  display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; gap: 10px;
  max-width: 560px; margin: 0 auto 16px;
}
.ip-field {
  flex: 1 1 300px; display: flex; align-items: center; gap: 10px; min-width: 0;
  padding: 0 16px; height: 54px;
  background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.ip-field .tag-label { font-size: .78rem; color: var(--text-mute); font-family: var(--en); flex-shrink: 0; }
.ip-field .ip {
  flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  font-family: ui-monospace, Consolas, monospace; font-size: 1.05rem; color: var(--grass-light);
  background: none; border: 0; padding: 0; text-align: left; cursor: pointer;
}
.ip-box .btn { height: 54px; }
.copy-hint { font-size: .88rem; color: var(--text-mute); min-height: 1.4em; }
.copy-hint.ok { color: var(--grass); }
.copy-hint.err { color: var(--redstone); }

/* 快捷数据条 */
.stat-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px; max-width: 760px; margin: 44px auto 0;
}
.stat {
  background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius);
  padding: 16px 12px; box-shadow: var(--shadow-sm);
}
.stat .k { font-size: .72rem; font-family: var(--en); color: var(--text-mute); letter-spacing: .06em; }
.stat .v { font-size: 1.55rem; color: var(--text); margin-top: 8px; }
.stat .v.green { color: var(--grass-light); }
.stat .v.gold  { color: var(--gold); }

/* 装饰性方块 */
.cubes { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.cube {
  position: absolute; width: 26px; height: 26px; image-rendering: pixelated;
  border: 2px solid var(--border-hard); animation: float 7s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-18px) rotate(6deg); } }
@media (prefers-reduced-motion: reduce) { .cube { animation: none; } }

/* ---------- 7. 实时状态 ---------- */
.status-card {
  background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.status-top {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 18px 22px; background: var(--surface-2); border-bottom: 2px solid var(--border);
}
.status-top h3 { margin: 0; font-size: 1.2rem; }
.status-left { display: flex; align-items: center; gap: 12px; }
.status-top .btn { margin-left: auto; }
.status-icon {
  width: 44px; height: 44px; image-rendering: pixelated; border: 2px solid var(--border-hard);
  border-radius: var(--radius); background: var(--surface-3); flex-shrink: 0;
}
.dot { width: 11px; height: 11px; border-radius: 50%; background: var(--text-mute); flex-shrink: 0; }
.dot.on  { background: var(--grass); box-shadow: 0 0 0 0 rgba(91, 194, 54, .6); animation: pulse 2s infinite; }
.dot.off { background: var(--redstone); }
.dot.loading { background: var(--gold); animation: pulse 1s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(91, 194, 54, 0); } 100% { box-shadow: 0 0 0 0 rgba(91, 194, 54, 0); } }
.status-label { font-size: .95rem; color: var(--text-dim); }

.status-body { padding: 22px; display: grid; gap: 20px; }
.kv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; }
.kv { background: var(--bg-2); border: 2px solid var(--border); border-radius: var(--radius); padding: 12px 14px; }
.kv .k { font-size: .78rem; color: var(--text-mute); }
.kv .v { font-size: 1.15rem; color: var(--text); margin-top: 4px; word-break: break-word; }

.motd {
  background: #0a0f16; border: 2px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px;
  font-family: ui-monospace, Consolas, monospace; font-size: 1.02rem; line-height: 1.85;
  min-height: 76px; display: flex; flex-direction: column; justify-content: center; gap: 2px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .03);
}
.motd .line { white-space: pre-wrap; word-break: break-word; }

.player-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: flex; align-items: center; gap: 10px; padding: 8px 14px 8px 8px;
  background: var(--bg-2); border: 2px solid var(--border); border-radius: var(--radius);
}
.chip img, .chip .ph {
  width: 34px; height: 34px; image-rendering: pixelated;
  border: 2px solid var(--border-hard); border-radius: var(--radius); background: var(--surface-3);
}
.chip span { font-size: .95rem; }

.skeleton {
  height: 18px; border-radius: 2px; background: linear-gradient(90deg, var(--surface-2), var(--surface-3), var(--surface-2));
  background-size: 200% 100%; animation: shimmer 1.3s linear infinite;
}
@keyframes shimmer { to { background-position: -200% 0; } }
.empty-note { color: var(--text-mute); font-size: .95rem; }

/* ---------- 8. 特色 ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .ico {
  width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center; font-size: 1.5rem;
  background: var(--bg-2); border: 2px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.feature h4 { margin: 2px 0 6px; font-size: 1.12rem; color: var(--text); }
.feature p { margin: 0; color: var(--text-dim); font-size: .96rem; }

/* ---------- 9. 团队（头像卡片） ---------- */
.member { text-align: center; }
.member img, .member .ph {
  width: 76px; height: 76px; margin: 0 auto 14px; image-rendering: pixelated;
  border: 2px solid var(--border-hard); border-radius: var(--radius);
  background: var(--surface-3); box-shadow: var(--shadow-sm);
}
.member .name { font-size: 1.08rem; color: var(--text); word-break: break-all; }
.member .role { font-size: .86rem; color: var(--grass); }
.member .desc { font-size: .9rem; color: var(--text-mute); margin-top: 8px; }

/* ---------- 10. 规则 ---------- */
.rule { border-left: 4px solid var(--grass-dark); background: var(--surface); border-radius: var(--radius); padding: 20px 22px; border-top: 2px solid var(--border); border-right: 2px solid var(--border); border-bottom: 2px solid var(--border); }
.rule h4 { margin: 0 0 8px; font-size: 1.1rem; color: var(--gold); }
.rule p { margin: 0; color: var(--text-dim); font-size: .96rem; }

/* ---------- 11. 历程时间线 ---------- */
.timeline { position: relative; max-width: 780px; margin: 0 auto; padding-left: 34px; }
.timeline::before {
  content: ''; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 3px;
  background: linear-gradient(180deg, var(--grass), var(--diamond), transparent);
}
.tl-item { position: relative; padding: 0 0 34px; }
.tl-item::before {
  content: ''; position: absolute; left: -33px; top: 6px; width: 15px; height: 15px;
  background: var(--grass); border: 3px solid var(--bg); box-shadow: 0 0 0 2px var(--grass-dark);
}
.tl-date { font-family: var(--en); font-size: .68rem; color: var(--gold); letter-spacing: .06em; }
.tl-item h4 { margin: 8px 0 6px; font-size: 1.18rem; }
.tl-item p { margin: 0; color: var(--text-dim); font-size: .96rem; }

/* ---------- 12. FAQ 折叠 ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item[open] { border-color: var(--grass-dark); }
.faq-item summary {
  cursor: pointer; padding: 18px 22px; list-style: none; display: flex; align-items: center; gap: 14px;
  font-size: 1.06rem; color: var(--text); transition: background .15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--surface-2); }
.faq-item summary .q { color: var(--grass); font-family: var(--en); font-size: .72rem; flex-shrink: 0; }
.faq-item summary .arrow { margin-left: auto; color: var(--text-mute); transition: transform .2s; flex-shrink: 0; }
.faq-item[open] summary .arrow { transform: rotate(180deg); }
.faq-item .a { padding: 0 22px 20px 22px; color: var(--text-dim); font-size: .98rem; }
.faq-item .a p:last-child { margin-bottom: 0; }

/* ---------- 13. 步骤 ---------- */
.steps { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: s; }
.step { position: relative; padding: 24px 22px; background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  position: absolute; top: -14px; left: 18px; padding: 3px 10px;
  font-family: var(--en); font-size: .66rem; color: #0a1a08; background: var(--grass);
  border: 2px solid var(--border-hard); border-radius: var(--radius);
}
.step h4 { margin: 10px 0 8px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--text-dim); font-size: .95rem; }

/* ---------- 14. CTA 横幅 ---------- */
.cta {
  text-align: center; padding: 60px 30px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface-2), var(--bg-2));
  border: 2px solid var(--border); box-shadow: var(--shadow);
}
.cta h2 { margin-bottom: .4em; }
.cta p { color: var(--text-dim); max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- 15. 页头（子页面） ---------- */
.page-head { padding: 60px 0 46px; text-align: center; border-bottom: 2px solid var(--border); background: var(--bg-2); }
.page-head .crumb { font-size: .85rem; color: var(--text-mute); margin-bottom: 14px; }
.page-head p { color: var(--text-dim); max-width: 640px; margin: 14px auto 0; }

/* ---------- 17. 配置信息表 ---------- */
.spec-list { display: grid; gap: 0; border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.spec-list .row {
  display: grid; grid-template-columns: minmax(76px, 34%) 1fr; gap: 6px 16px;
  padding: 12px 18px; background: var(--surface); border-bottom: 2px solid var(--border);
  align-items: baseline;
}
.spec-list .row:last-child { border-bottom: 0; }
.spec-list .row:nth-child(even) { background: var(--bg-2); }
.spec-list .k { color: var(--text-mute); font-size: .95rem; word-break: break-word; }
.spec-list .v { color: var(--text); word-break: break-word; }
.spec-list .v.pending, .pending {
  color: var(--text-mute); font-style: italic; opacity: .75;
}
.cfg-title {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 1.08rem; margin: 0 0 12px; color: var(--text);
}
.tag-mini {
  font-family: var(--en); font-size: .58rem; letter-spacing: .1em;
  color: var(--grass); background: rgba(91, 194, 54, .1);
  border: 2px solid var(--grass-dark); border-radius: var(--radius);
  padding: 3px 8px; flex-shrink: 0;
}

/* ---------- 17. 页脚 ---------- */
.footer { margin-top: 40px; padding: 52px 0 34px; background: var(--bg-2); border-top: 2px solid var(--border); }
.footer-grid { display: grid; gap: 30px; grid-template-columns: 1.6fr 1fr 1fr; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { font-size: .95rem; color: var(--text); margin-bottom: 14px; }
.footer p, .footer li { color: var(--text-mute); font-size: .92rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.copy-mini {
  margin-left: 8px; padding: 1px 8px; cursor: pointer;
  font-family: var(--cn); font-size: .8rem; line-height: 1.6;
  color: var(--text-mute); background: var(--surface-2);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: .15s;
}
.copy-mini:hover { color: #0a1a08; background: var(--grass); border-color: var(--grass-dark); }
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 2px solid var(--border);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  color: var(--text-mute); font-size: .88rem;
}

/* ---------- 18. 回到顶部 ---------- */
.totop {
  position: fixed; right: 20px; bottom: 24px; z-index: 80; width: 46px; height: 46px;
  display: grid; place-items: center; cursor: pointer; font-size: 1.05rem;
  color: var(--text); background: var(--surface-2); border: 2px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transition: .2s;
}
.totop.show { opacity: 1; visibility: visible; }
.totop:hover { background: var(--grass); color: #0a1a08; }

/* ---------- 19. Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 34px; transform: translate(-50%, 20px); z-index: 200;
  padding: 13px 22px; color: #0a1a08; background: var(--grass);
  border: 2px solid var(--border-hard); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transition: .22s; max-width: min(90vw, 420px); text-align: center;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.toast.err { background: var(--redstone); color: #fff; }

/* ---------- 20. 杂项 ---------- */
.muted { color: var(--text-mute); }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 20px; } .mt-3 { margin-top: 32px; } .mt-4 { margin-top: 46px; }
.hidden { display: none !important; }
.nowrap { white-space: nowrap; }
.note-box {
  display: flex; gap: 12px; padding: 14px 18px; background: rgba(255, 197, 61, .07);
  border: 2px solid var(--gold-dark); border-radius: var(--radius); color: var(--text-dim); font-size: .93rem;
}
