/* ===== 任天堂掌机游戏库 · 移动端商城 ===== */
:root {
  --red: #ff3d3d;
  --red-dark: #e01f1f;
  --purple: #7b5cff;
  --purple-dark: #5b3ce0;
  --bg: #f4f5f7;
  --card: #ffffff;
  --text: #17181c;
  --sub: #8b8f9a;
  --line: #eef0f3;
  --radius: 16px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; margin: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow: hidden;
}

/* ---------- 全屏容器（真机自适应，无手机外框） ---------- */
.phone {
  position: relative;
  width: 100%; height: 100vh; height: 100dvh;
  background: #fff; overflow: hidden;
}
.screen {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  background: var(--bg);
  padding-top: env(safe-area-inset-top, 0px);
}

/* ---------- 滚动区 ---------- */
.app { flex: 1; overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain; scrollbar-width: none; position: relative; }
.app::-webkit-scrollbar { display: none; }

/* ---------- 顶栏 ---------- */
.topbar {
  position: sticky; top: 0; z-index: 30;
  background: #fff; padding: 8px 16px 12px;
  display: flex; align-items: center; gap: 8px;
}
.topbar.line { border-bottom: 1px solid var(--line); }
.topbar .title { font-size: 17px; font-weight: 700; }
.topbar .spacer { flex: 1; }
.icon-btn {
  width: 32px; height: 32px; flex: none; border: 0; background: transparent; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text); cursor: pointer; border-radius: 50%;
}
.icon-btn:active { background: #f0f1f4; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: linear-gradient(140deg, #ff5252, #d81f1f);
  color: #fff; font-weight: 800; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(224, 31, 31, .3);
}
.brand-name { font-size: 17px; font-weight: 800; letter-spacing: .2px; }
.brand-sub { font-size: 11px; color: var(--sub); margin-top: 2px; }

/* ---------- 搜索框 ---------- */
.searchbar {
  margin: 0 16px 14px; height: 40px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px; padding: 0 14px; color: var(--sub);
}
.searchbar input { flex: 1; border: 0; outline: 0; background: transparent; font-size: 13.5px; color: var(--text); }
.searchbar input::placeholder { color: #b3b7c0; }

/* ---------- Banner ---------- */
.banner {
  margin: 0 16px 14px; border-radius: 18px; overflow: hidden; position: relative;
  background: linear-gradient(120deg, #ff4d4d 0%, #e01f1f 55%, #a8102e 100%);
  color: #fff; padding: 18px 16px; display: flex; align-items: center;
  box-shadow: 0 12px 26px rgba(224, 31, 31, .26);
}
.banner::after {
  content: ''; position: absolute; right: -40px; top: -60px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 62%);
}
.banner-txt { position: relative; z-index: 2; flex: 1; }
.banner-title { font-size: 21px; font-weight: 800; letter-spacing: .5px; }
.banner-desc { font-size: 12.5px; opacity: .88; margin: 6px 0 12px; }
.banner-btn {
  border: 0; border-radius: 999px; padding: 8px 16px;
  background: #fff; color: #d81f1f; font-size: 12.5px; font-weight: 700; cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .16);
}
.banner-art { position: relative; z-index: 2; width: 118px; flex: none; }
.banner-art svg { display: block; width: 100%; height: auto; }

/* ---------- 四宫格入口 ---------- */
.grid4 {
  margin: 0 16px 14px; background: #fff; border-radius: var(--radius);
  padding: 16px 8px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.grid4 .g-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  border: 0; background: transparent; cursor: pointer; padding: 4px 0;
}
.grid4 .g-ico {
  width: 46px; height: 46px; border-radius: 14px; color: #fff;
  display: flex; align-items: center; justify-content: center;
  background-image: linear-gradient(150deg, var(--c1), var(--c2));
  box-shadow: 0 8px 16px -6px var(--c2);
}
.grid4 .g-txt { font-size: 12px; color: #3a3d45; font-weight: 500; }
.grid4 .g-item:active { transform: scale(.95); }

/* ---------- 区块 ---------- */
.section { margin: 0 16px 16px; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.section-title { font-size: 15.5px; font-weight: 700; }
.section-more { font-size: 12.5px; color: var(--sub); display: inline-flex; align-items: center; gap: 2px; cursor: pointer; background: none; border: 0; font-family: inherit; }

/* ---------- 卡片 ---------- */
.card { background: var(--card); border-radius: var(--radius); }
.card-pad { padding: 14px; }

/* ---------- 模拟器行 ---------- */
.em-row { display: flex; align-items: center; gap: 12px; padding: 14px; background: #fff; border-radius: var(--radius); }
.em-row + .em-row { margin-top: 10px; }
.em-ico {
  width: 48px; height: 48px; flex: none; border-radius: 14px; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 800; font-style: italic;
  background-image: linear-gradient(150deg, var(--c1), var(--c2));
  box-shadow: 0 10px 18px -8px var(--c2);
}
.em-main { flex: 1; min-width: 0; }
.em-name { font-size: 14.5px; font-weight: 700; }
.em-desc { font-size: 12px; color: var(--sub); margin-top: 4px; }
.btn-mini {
  flex: none; border: 0; border-radius: 999px; padding: 7px 15px;
  background: linear-gradient(120deg, var(--red), var(--red-dark));
  color: #fff; font-size: 12.5px; font-weight: 700; cursor: pointer; font-family: inherit;
  box-shadow: 0 6px 14px -5px rgba(224, 31, 31, .8);
}
.btn-mini:active { opacity: .86; }

/* ---------- 游戏封面 ---------- */
.cover {
  position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden;
  background-image: linear-gradient(152deg, var(--c1), var(--c2));
  color: #fff; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .14);
}
.cover::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 255, 255, 0) 52%),
              radial-gradient(circle at 82% 8%, rgba(255, 255, 255, .38), transparent 46%);
}
.cover-plat {
  position: absolute; top: 5px; left: 5px; z-index: 2;
  font-size: 8.5px; font-weight: 800; letter-spacing: .6px;
  background: rgba(0, 0, 0, .32); border-radius: 4px; padding: 1.5px 5px;
}
.cover-short {
  position: relative; z-index: 2; font-size: 12px; font-weight: 900; letter-spacing: 1px;
  text-align: center; line-height: 1.15; padding: 0 6px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .35); font-style: italic;
}
.cover-name { position: relative; z-index: 2; font-size: 8.5px; opacity: .9; }

/* 首页热门推荐 */
.hot-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hot-item { border: 0; background: none; padding: 0; cursor: pointer; text-align: left; font-family: inherit; }
.hot-name { font-size: 11.5px; color: #3a3d45; margin-top: 7px; text-align: center; line-height: 1.35; }
.hot-item:active { transform: scale(.97); }

/* ---------- 分类列表 ---------- */
.cat-item {
  display: flex; align-items: center; gap: 12px; padding: 13px 14px;
  background: #fff; border-radius: var(--radius); width: 100%; border: 0; cursor: pointer;
  font-family: inherit; text-align: left;
}
.cat-item + .cat-item { margin-top: 10px; }
.cat-ico {
  width: 44px; height: 44px; flex: none; border-radius: 13px; color: #fff;
  display: flex; align-items: center; justify-content: center;
  background-image: linear-gradient(150deg, var(--c1), var(--c2));
  box-shadow: 0 9px 18px -8px var(--c2);
}
.cat-name { font-size: 14.5px; font-weight: 700; }
.cat-count { font-size: 12px; color: var(--sub); margin-top: 4px; }
.cat-arrow { color: #c8ccd4; margin-left: auto; }
.cat-item:active { background: #fafafc; }

/* ---------- 标签 ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 11px; color: #6b7078; background: #f3f4f7;
  border-radius: 6px; padding: 2.5px 8px; line-height: 1.4;
}
.tag.plain { background: transparent; padding: 0; color: var(--sub); font-size: 11.5px; }
.tag.soft { background: #fff1f1; color: var(--red-dark); }

/* 分类筛选 chips */
.chips { display: flex; gap: 8px; overflow-x: auto; padding: 2px 16px 12px; scrollbar-width: none; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; border: 0; border-radius: 999px; padding: 7px 15px; font-size: 12.5px; font-family: inherit;
  background: #eceef2; color: #5c6068; cursor: pointer; font-weight: 600;
}
.chip.on { background: linear-gradient(120deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 6px 14px -6px rgba(224, 31, 31, .9); }

/* ---------- 游戏列表行 ---------- */
.grow-item { display: flex; gap: 12px; background: #fff; border-radius: var(--radius); padding: 12px; }
.grow-item + .grow-item { margin-top: 10px; }
.grow-cover { width: 76px; height: 76px; flex: none; }
.grow-cover .cover { width: 76px; height: 76px; aspect-ratio: auto; border-radius: 12px; }
.grow-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.grow-title { font-size: 14.5px; font-weight: 700; line-height: 1.3; }
.grow-main .tags { margin-top: 6px; }
.grow-buy { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.price { color: var(--red); font-weight: 800; font-size: 15px; }
.price small { font-size: 11px; font-weight: 700; }
.btn-buy {
  border: 0; border-radius: 999px; padding: 7px 14px; font-size: 12.5px; font-weight: 700;
  background: linear-gradient(120deg, var(--red), var(--red-dark)); color: #fff; cursor: pointer; font-family: inherit;
  box-shadow: 0 6px 14px -6px rgba(224, 31, 31, .9);
}
.btn-buy:active { opacity: .86; }

/* ---------- 详情页 ---------- */
.hero { position: relative; height: 232px; overflow: hidden; }
.hero-cover {
  position: absolute; inset: 0;
  background-image: linear-gradient(150deg, var(--c1), var(--c2));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: #fff;
}
.hero-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, 0) 34%),
              radial-gradient(circle at 50% 46%, rgba(255, 255, 255, .26), transparent 58%);
}
.hero-back {
  position: absolute; top: 12px; left: 14px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%; border: 0; cursor: pointer;
  background: rgba(0, 0, 0, .3); color: #fff;
  display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px);
}
.hero-short { position: relative; z-index: 2; font-size: 30px; font-weight: 900; font-style: italic; letter-spacing: 2px; text-shadow: 0 3px 12px rgba(0, 0, 0, .4); }
.hero-plat { position: relative; z-index: 2; font-size: 12px; background: rgba(0, 0, 0, .3); padding: 3px 12px; border-radius: 999px; letter-spacing: 1px; }

.detail-body { position: relative; margin-top: -18px; background: #fff; border-radius: 20px 20px 0 0; padding: 18px 16px 24px; }
.detail-title { font-size: 19px; font-weight: 800; }
.detail-meta { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 14px; }
.detail-price { color: var(--red); font-size: 25px; font-weight: 900; letter-spacing: -.5px; }
.detail-price small { font-size: 14px; font-weight: 800; }
.detail-sold { font-size: 12px; color: var(--sub); }
.divider { height: 1px; background: var(--line); margin: 16px 0; }
.block-title { font-size: 14.5px; font-weight: 700; margin-bottom: 8px; }
.block-text { font-size: 13px; line-height: 1.78; color: #4a4e57; text-align: justify; }

.ship-list { display: flex; flex-direction: column; gap: 10px; }
.ship-item { display: flex; align-items: center; gap: 9px; font-size: 13px; color: #3f434b; }
.ship-item svg { color: var(--red); flex: none; }

.detail-bar {
  position: sticky; bottom: 0; z-index: 30; margin: 18px -16px -24px;
  padding: 12px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px;
}
.fav-btn {
  border: 0; background: none; cursor: pointer; color: var(--sub);
  display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 10px; font-family: inherit; flex: none;
}
.fav-btn.on { color: var(--red); }
.btn-primary {
  flex: 1; border: 0; border-radius: 999px; padding: 13px; font-size: 15px; font-weight: 700; font-family: inherit;
  background: linear-gradient(120deg, #ff4d4d, var(--red-dark)); color: #fff; cursor: pointer;
  box-shadow: 0 10px 22px -8px rgba(224, 31, 31, .95);
}
.btn-primary:active { opacity: .88; }
.btn-primary.block { width: 100%; }
.btn-ghost {
  width: 100%; border-radius: 999px; padding: 12.5px; font-size: 15px; font-weight: 700; font-family: inherit;
  background: #fff; color: #3f434b; border: 1px solid #e3e5ea; cursor: pointer;
}
.btn-ghost:active { background: #f6f7f9; }

/* ---------- 订单 ---------- */
.order-card { background: #fff; border-radius: var(--radius); padding: 13px; }
.order-card + .order-card { margin-top: 10px; }
.order-top { display: flex; align-items: center; gap: 12px; }
.order-cover { width: 66px; height: 66px; flex: none; }
.order-cover .cover { width: 66px; height: 66px; aspect-ratio: auto; border-radius: 11px; }
.order-main { flex: 1; min-width: 0; }
.order-title { font-size: 14px; font-weight: 700; }
.order-no { font-size: 11.5px; color: var(--sub); margin-top: 5px; }
.order-status { font-size: 12.5px; font-weight: 700; flex: none; text-align: right; }
.st-pending { color: var(--red); }
.st-shipped { color: #f5941a; }
.st-done    { color: #22ab6b; }
.order-foot { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-top: 12px; padding-top: 11px; border-top: 1px solid var(--line); }
.btn-line {
  border: 1px solid #e3e5ea; background: #fff; border-radius: 999px; padding: 6.5px 14px;
  font-size: 12.5px; font-family: inherit; color: #3f434b; cursor: pointer;
}
.btn-line.red { border-color: #ffd0d0; color: var(--red-dark); background: #fff6f6; }
.btn-line:active { background: #f4f5f7; }
.order-price { margin-left: auto; }

/* 空状态 */
.empty { padding: 70px 0; text-align: center; color: var(--sub); font-size: 13px; }
.empty .em-ico-big { font-size: 42px; margin-bottom: 12px; }

/* ---------- 推广收益 ---------- */
.wallet {
  margin: 0 16px 14px; border-radius: 18px; padding: 18px;
  background: linear-gradient(125deg, #8b6cff 0%, #6b3ce0 55%, #4a24b8 100%);
  color: #fff; position: relative; overflow: hidden;
  box-shadow: 0 16px 32px -14px rgba(91, 60, 224, .95);
}
.wallet::after { content: ''; position: absolute; right: -50px; bottom: -70px; width: 190px; height: 190px; border-radius: 50%; background: rgba(255, 255, 255, .12); }
.wallet-label { font-size: 12.5px; opacity: .85; position: relative; z-index: 2; }
.wallet-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 8px; position: relative; z-index: 2; }
.wallet-num { font-size: 32px; font-weight: 900; letter-spacing: -.5px; }
.wallet-num small { font-size: 15px; font-weight: 700; margin-right: 2px; }
.btn-cash {
  border: 0; border-radius: 999px; padding: 8px 16px; background: #fff; color: var(--purple-dark);
  font-size: 12.5px; font-weight: 800; cursor: pointer; font-family: inherit;
}
.wallet-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 16px; position: relative; z-index: 2; }
.wallet-stats .ws { text-align: center; }
.wallet-stats .ws + .ws { border-left: 1px solid rgba(255, 255, 255, .24); }
.ws-label { font-size: 11.5px; opacity: .82; }
.ws-val { font-size: 16px; font-weight: 800; margin-top: 5px; }

.seg { display: flex; background: #fff; border-radius: 14px; padding: 4px; margin: 0 16px 12px; }
.seg button {
  flex: 1; border: 0; background: transparent; border-radius: 11px; padding: 9px 0;
  font-size: 13.5px; font-weight: 700; color: #7b7f88; font-family: inherit; cursor: pointer;
}
.seg button.on { background: #fff3f3; color: var(--red-dark); }

.link-box {
  margin: 0 16px 16px; background: #fff; border-radius: 14px; padding: 14px;
  display: flex; align-items: center; gap: 10px;
}
.link-text { flex: 1; min-width: 0; font-size: 12.5px; color: #4a4e57; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.btn-copy {
  flex: none; border: 0; border-radius: 999px; padding: 7px 15px; font-size: 12.5px; font-weight: 700;
  background: linear-gradient(120deg, var(--red), var(--red-dark)); color: #fff; cursor: pointer; font-family: inherit;
}
.btn-copy:active { opacity: .85; }

.poster {
  margin: 0 16px 16px; border-radius: 18px; padding: 18px; color: #fff;
  background: linear-gradient(150deg, #ff5252, #a8102e); position: relative; overflow: hidden;
  box-shadow: 0 14px 28px -14px rgba(168, 16, 46, .9);
}
.poster-title { font-size: 18px; font-weight: 900; }
.poster-sub { font-size: 11.5px; opacity: .9; margin-top: 6px; }
.poster-code {
  margin-top: 16px; background: #fff; color: #17181c; border-radius: 14px; padding: 14px;
  display: flex; align-items: center; gap: 14px;
}
.qr { width: 74px; height: 74px; flex: none; border-radius: 8px; background: #fff; }
.poster-code .pc-t { font-size: 12px; color: var(--sub); }
.poster-code .pc-v { font-size: 17px; font-weight: 900; margin-top: 6px; letter-spacing: 1px; }

.inc-row { display: flex; align-items: center; gap: 12px; padding: 13px 14px; background: #fff; border-radius: 14px; }
.inc-row + .inc-row { margin-top: 8px; }
.inc-ico {
  width: 36px; height: 36px; border-radius: 11px; flex: none; color: #fff;
  background: linear-gradient(140deg, #ff7a6b, #e0432f);
  display: flex; align-items: center; justify-content: center;
}
.inc-title { font-size: 13.5px; font-weight: 600; }
.inc-time { font-size: 11.5px; color: var(--sub); margin-top: 4px; }
.inc-amt { margin-left: auto; color: var(--red); font-weight: 800; font-size: 15px; }
.sec-head-inline { display: flex; align-items: center; justify-content: space-between; margin: 4px 0 10px; }

/* ---------- 我的 ---------- */
.profile-head { background: #fff; padding: 10px 16px 22px; display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 62px; height: 62px; border-radius: 50%; flex: none;
  background: linear-gradient(150deg, #8b6cff, #5b3ce0); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 20px -10px rgba(91, 60, 224, .95);
}
.p-name { font-size: 18px; font-weight: 800; }
.p-id { font-size: 12px; color: var(--sub); margin-top: 6px; }
.p-level {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 8px;
  background: #fff6ec; color: #e0700f; border-radius: 999px; padding: 3px 10px; font-size: 11.5px; font-weight: 700;
}
.menu { background: #fff; border-radius: var(--radius); overflow: hidden; }
.menu-row {
  width: 100%; border: 0; background: #fff; font-family: inherit; cursor: pointer;
  display: flex; align-items: center; gap: 12px; padding: 15px 14px; font-size: 14.5px; color: #2c2f36; text-align: left;
}
.menu-row + .menu-row { border-top: 1px solid var(--line); }
.menu-row:active { background: #fafafc; }
.menu-ico { color: #6b7078; display: flex; }
.menu-arrow { margin-left: auto; color: #c8ccd4; }

/* ---------- 发货成功 ---------- */
.ship-hero { text-align: center; padding: 26px 16px 20px; background: #fff; }
.ship-check {
  width: 74px; height: 74px; margin: 0 auto 14px; border-radius: 50%;
  background: linear-gradient(150deg, #4bd07f, #1f9c5c); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 26px -12px rgba(31, 156, 92, .95);
}
.ship-h1 { font-size: 19px; font-weight: 800; }
.ship-h2 { font-size: 13px; color: var(--sub); margin-top: 8px; line-height: 1.6; }
.ship-game { display: flex; align-items: center; gap: 12px; margin: 0 16px 12px; background: #fff; border-radius: 14px; padding: 12px; }
.ship-game .cover { width: 54px; height: 54px; aspect-ratio: auto; border-radius: 10px; }
.ship-tips { margin: 0 16px 16px; background: #fffaf3; border: 1px solid #ffe9cf; border-radius: 14px; padding: 14px; }
.ship-tips .tt { font-size: 13px; font-weight: 800; color: #e0700f; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.ship-tips ol { margin: 0; padding-left: 18px; color: #7a6a58; font-size: 12.5px; line-height: 1.9; }

/* ---------- 底部导航 ---------- */
.tabbar {
  flex: none; height: calc(62px + env(safe-area-inset-bottom, 0px));
  background: #fff; border-top: 1px solid var(--line);
  display: flex; align-items: flex-start; padding-top: 7px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.tabbar button {
  flex: 1; border: 0; background: none; cursor: pointer; font-family: inherit;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  color: #9aa0aa; font-size: 10.5px; padding: 2px 0;
}
.tabbar button.on { color: var(--red); font-weight: 700; }
.tabbar button:active { opacity: .7; }

/* ---------- Toast ---------- */
.toast {
  position: absolute; left: 50%; bottom: 110px; transform: translate(-50%, 12px);
  background: rgba(23, 24, 28, .9); color: #fff; font-size: 13px;
  padding: 10px 18px; border-radius: 999px; z-index: 99;
  opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  max-width: 78%; text-align: center; backdrop-filter: blur(4px);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border-radius: 14px; padding: 15px 14px; }
.faq-item + .faq-item { margin-top: 10px; }
.faq-q { font-size: 14px; font-weight: 700; }
.faq-a { font-size: 12.5px; color: #6b7078; line-height: 1.75; margin-top: 8px; }
