﻿/* ============================================================
   赣州德州酒馆 SOMTOP - 品牌视觉样式
   暗黑底 + 霓虹红 + 菱形徽章 + 赛博发光
   ============================================================ */
:root {
  --red: #ff2d2d;
  --red-deep: #c4111f;
  --red-glow: rgba(255, 45, 45, .55);
  --bg: #0b0b0d;
  --bg-2: #121216;
  --card: #16161c;
  --card-2: #1d1d25;
  --line: #26262f;
  --text: #f2f2f5;
  --text-2: #9b9ba6;
  --text-3: #64646f;
  --gold: #f6c453;
  --ok: #37d67a;
  --radius: 16px;
  --shadow-red: 0 0 18px rgba(255,45,45,.35), 0 0 42px rgba(255,45,45,.12);
  --font: "PingFang SC","Microsoft YaHei","Helvetica Neue",Arial,sans-serif;
}
* { margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent; }
html,body { height:100%; }
body {
  font-family:var(--font); background:var(--bg); color:var(--text);
  background-image:
    radial-gradient(1200px 500px at 80% -10%, rgba(255,45,45,.10), transparent 60%),
    radial-gradient(900px 420px at -10% 110%, rgba(255,45,45,.07), transparent 60%);
  background-attachment: fixed;
  font-size:15px; line-height:1.5;
}
#app { max-width:520px; margin:0 auto; min-height:100vh; position:relative; }
a { color:inherit; text-decoration:none; }
button { font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
input,textarea,select { font-family:inherit; }
.hidden { display:none !important; }

/* ---------- 顶部品牌栏 ---------- */
.app-header {
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; gap:10px;
  padding:12px 16px; background:rgba(11,11,13,.82); backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.app-header .brand { display:flex; align-items:center; gap:9px; }
.app-header .brand-text { font-weight:800; font-size:17px; letter-spacing:2px; color:#fff; }
.app-header .brand-sub { font-size:10px; color:var(--text-3); letter-spacing:3px; }
.app-header .header-right { margin-left:auto; display:flex; gap:8px; align-items:center; }
.header-chip {
  display:flex; align-items:center; gap:6px; padding:6px 10px; font-size:12px;
  background:var(--card); border:1px solid var(--line); border-radius:999px; color:var(--text-2);
}

/* ---------- 品牌 LOGO（菱形徽章 SVG） ---------- */
.logo-diamond { width:40px; height:46px; flex:none; filter:drop-shadow(0 0 8px rgba(255,45,45,.6)); }

/* ---------- 霓虹按钮 ---------- */
.btn-neon {
  position:relative; display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 22px; border-radius:999px; font-size:15px; font-weight:700; letter-spacing:2px;
  color:#fff; background:linear-gradient(135deg,#ff2d2d,#b30d18);
  box-shadow:var(--shadow-red); transition:transform .12s, box-shadow .2s;
}
.btn-neon:active { transform:scale(.96); }
.btn-neon.secondary { background:var(--card-2); box-shadow:none; border:1px solid var(--line); color:var(--text); }
.btn-neon:disabled { opacity:.45; cursor:not-allowed; transform:none; box-shadow:none; }
.btn-neon.sm { padding:7px 14px; font-size:13px; letter-spacing:1px; }

/* ---------- 卡片 ---------- */
.card {
  background:linear-gradient(180deg,var(--card),var(--bg-2));
  border:1px solid var(--line); border-radius:var(--radius); padding:16px;
}
.card-title { display:flex; align-items:center; gap:8px; font-weight:700; font-size:16px; margin-bottom:12px; }
.card-title .bar { width:4px; height:16px; background:var(--red); border-radius:2px; box-shadow:0 0 8px var(--red-glow); }

/* ---------- 输入框 ---------- */
.field { position:relative; margin-bottom:14px; }
.field label { display:block; font-size:12px; color:var(--text-2); margin-bottom:6px; letter-spacing:1px; }
.field input, .field select, .field textarea {
  width:100%; padding:12px 14px; background:var(--bg-2); border:1px solid var(--line);
  border-radius:12px; color:var(--text); font-size:15px; outline:none; transition:border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--red); box-shadow:0 0 0 3px rgba(255,45,45,.12); }
.field textarea { resize:vertical; min-height:60px; }

/* ---------- 通用页面壳 ---------- */
.page { padding:14px 14px 84px; animation:fadeIn .25s; }
@keyframes fadeIn { from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:none;} }
.page-head { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.page-head h1 { font-size:20px; font-weight:800; letter-spacing:1px; }
.page-head .sub { font-size:12px; color:var(--text-3); margin-top:2px; }
.btn-back {
  width:36px; height:36px; flex:none; display:flex; align-items:center; justify-content:center;
  background:var(--card); border:1px solid var(--line); border-radius:12px; font-size:18px; color:var(--text);
}

/* ---------- 底部导航 ---------- */
.tabbar {
  position:fixed; left:50%; transform:translateX(-50%); bottom:0; width:100%; max-width:520px;
  display:flex; background:rgba(13,13,17,.94); backdrop-filter:blur(16px);
  border-top:1px solid var(--line); z-index:60; padding-bottom:env(safe-area-inset-bottom);
}
.tabbar a {
  flex:1; display:flex; flex-direction:column; align-items:center; gap:3px;
  padding:9px 0 10px; font-size:11px; color:var(--text-3); transition:color .2s;
}
.tabbar a .tab-ico { font-size:20px; line-height:1; }
.tabbar a.on { color:var(--red); }
.tabbar a.on .tab-ico { filter:drop-shadow(0 0 6px var(--red-glow)); }

/* ---------- 门店广场 ---------- */
.plaza-hero {
  position:relative; margin:14px 0; padding:26px 20px; overflow:hidden; text-align:center;
  background:radial-gradient(600px 200px at 50% 0%, rgba(255,45,45,.16), transparent 70%);
  border:1px solid var(--line); border-radius:20px;
}
.plaza-hero .logo-lg { width:76px; height:88px; margin:0 auto 8px; filter:drop-shadow(0 0 18px rgba(255,45,45,.7)); }
.plaza-hero h2 { font-size:26px; letter-spacing:6px; font-weight:900; color:#fff; }
.plaza-hero .slogan { margin-top:6px; font-size:12px; color:var(--red); letter-spacing:4px; text-shadow:0 0 12px var(--red-glow); }
.search-box {
  display:flex; align-items:center; gap:8px; margin:14px 0;
  padding:11px 14px; background:var(--card); border:1px solid var(--line); border-radius:14px;
}
.search-box input { flex:1; background:none; border:none; outline:none; color:var(--text); font-size:15px; }
.search-box .ico { color:var(--text-3); }
.store-list { display:flex; flex-direction:column; gap:12px; }
.store-card {
  display:flex; align-items:center; gap:14px; padding:16px;
  background:linear-gradient(180deg,var(--card),var(--bg-2));
  border:1px solid var(--line); border-radius:var(--radius);
  transition:border-color .2s;
}
.store-card:active { border-color:var(--red-deep); }
.store-logo {
  width:52px; height:52px; flex:none; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:radial-gradient(circle at 30% 20%, #1c1c24, #0d0d11);
  border:1px solid #2c2c36; color:#fff; font-size:24px;
}
.store-main { flex:1; min-width:0; }
.store-main strong { display:block; font-size:15.5px; font-weight:700; letter-spacing:.5px; }
.store-main small { display:block; margin-top:3px; font-size:12px; color:var(--text-3); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.store-meta { display:flex; gap:8px; margin-top:7px; align-items:center; }
.badge {
  font-size:10.5px; padding:2px 8px; border-radius:999px; letter-spacing:1px;
  border:1px solid var(--line); color:var(--text-2);
}
.badge.visited { color:var(--red); border-color:rgba(255,45,45,.4); background:rgba(255,45,45,.08); }
.badge.battle { color:var(--gold); border-color:rgba(246,196,83,.35); background:rgba(246,196,83,.07); }
.enter-btn {
  flex:none; width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:radial-gradient(circle at 30% 28%, #ff4d4d, #a30d17 70%);
  box-shadow:0 0 0 6px rgba(255,45,45,.08), 0 0 20px rgba(255,45,45,.5), inset 0 0 12px rgba(255,255,255,.18);
  color:#fff; font-size:13px; font-weight:800; letter-spacing:2px;
  transition:transform .12s;
}
.enter-btn:active { transform:scale(.93); }
.enter-btn:disabled { opacity:.4; }
.empty { text-align:center; padding:48px 0; color:var(--text-3); font-size:14px; }

/* ---------- 门店主页入口卡片 ---------- */
.store-hero { position:relative; padding:22px 18px; overflow:hidden; border-radius:20px;
  border:1px solid var(--line);
  background:radial-gradient(500px 180px at 20% 0%, rgba(255,45,45,.18), transparent 70%), var(--card);
}
.store-hero h2 { font-size:19px; letter-spacing:2px; }
.store-hero .addr { font-size:12px; color:var(--text-2); margin-top:5px; }
.seat-chip {
  display:inline-flex; align-items:center; gap:6px; margin-top:12px;
  padding:6px 12px; border-radius:999px; font-size:12px;
  background:rgba(255,45,45,.1); border:1px solid rgba(255,45,45,.4); color:var(--red);
}
.entry-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:14px; }
.entry-card {
  position:relative; padding:18px 14px; border-radius:var(--radius); overflow:hidden;
  background:linear-gradient(160deg, var(--card-2), var(--bg-2));
  border:1px solid var(--line); transition:border-color .2s;
}
.entry-card:active { border-color:var(--red-deep); }
.entry-card .e-ico { font-size:26px; filter:drop-shadow(0 0 10px var(--red-glow)); }
.entry-card strong { display:block; margin-top:8px; font-size:15px; letter-spacing:1px; }
.entry-card small { display:block; margin-top:3px; font-size:11px; color:var(--text-3); }
.entry-card .go { position:absolute; right:12px; top:14px; color:var(--text-3); font-size:16px; }

/* ---------- 扫码入座（桌台） ---------- */
.room-tabs { display:flex; gap:8px; margin-bottom:14px; overflow-x:auto; padding-bottom:4px; }
.room-tab {
  flex:none; padding:8px 18px; border-radius:999px; font-size:13px;
  background:var(--card); border:1px solid var(--line); color:var(--text-2); letter-spacing:1px;
}
.room-tab.on { background:linear-gradient(135deg,#ff2d2d,#b30d18); color:#fff; border-color:transparent; box-shadow:var(--shadow-red); }
.table-grid { display:flex; flex-direction:column; gap:14px; }
.table-card { padding:14px; background:var(--card); border:1px solid var(--line); border-radius:var(--radius); }
.table-card .t-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
.table-card .t-head strong { font-size:14px; letter-spacing:1px; }
.table-card .t-head small { font-size:11px; color:var(--text-3); }
.seat-grid { display:grid; grid-template-columns:repeat(6, 1fr); gap:8px; }
.seat {
  position:relative; aspect-ratio:1; border-radius:10px; font-size:11px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px;
  background:var(--bg-2); border:1px solid var(--line); color:var(--text-2);
  transition:transform .1s, border-color .15s;
}
.seat:active { transform:scale(.92); }
.seat.empty { color:var(--text-3); }
.seat.occupied { border-color:rgba(255,45,45,.55); color:#ff7a7a; background:rgba(255,45,45,.08); }
.seat.mine {
  border-color:var(--red); color:#fff; background:linear-gradient(135deg,#ff2d2d,#b30d18);
  box-shadow:0 0 12px var(--red-glow); font-weight:700;
}
.seat .s-dot { width:5px; height:5px; border-radius:50%; background:currentColor; }

/* ---------- 点单 ---------- */
.order-layout { display:flex; gap:10px; align-items:flex-start; }
.cat-col {
  width:88px; flex:none; display:flex; flex-direction:column; gap:6px;
  position:sticky; top:70px;
}
.cat-tab {
  padding:10px 6px; border-radius:12px; text-align:center; font-size:12px;
  background:var(--card); border:1px solid var(--line); color:var(--text-2); letter-spacing:1px;
}
.cat-tab.on { background:linear-gradient(135deg,#ff2d2d,#b30d18); color:#fff; border-color:transparent; box-shadow:var(--shadow-red); font-weight:700; }
.menu-main { flex:1; min-width:0; display:flex; flex-direction:column; gap:12px; }
.menu-group .g-title { font-size:13px; color:var(--text-2); letter-spacing:1px; margin:4px 0 8px; display:flex; align-items:center; gap:6px; }
.menu-item {
  display:flex; align-items:center; gap:11px; padding:12px;
  background:var(--card); border:1px solid var(--line); border-radius:14px; margin-bottom:9px;
}
.mi-icon {
  width:44px; height:44px; flex:none; border-radius:12px; font-size:22px;
  display:flex; align-items:center; justify-content:center;
  background:radial-gradient(circle at 30% 25%, #23232c, #101014); border:1px solid #2b2b35;
}
.mi-main { flex:1; min-width:0; }
.mi-main strong { font-size:14px; display:block; }
.mi-main p { font-size:11px; color:var(--text-3); margin-top:2px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.mi-price { margin-top:4px; font-size:14px; font-weight:800; color:#fff; }
.mi-price small { font-size:10px; color:var(--text-3); font-weight:400; margin-right:2px; }
.mi-paytag { font-size:9.5px; color:var(--red); border:1px solid rgba(255,45,45,.35); border-radius:4px; padding:0 4px; margin-left:5px; }
.qty-ctl { display:flex; align-items:center; gap:8px; }
.qty-btn {
  width:26px; height:26px; border-radius:8px; font-size:16px; line-height:1;
  display:flex; align-items:center; justify-content:center;
  background:var(--bg-2); border:1px solid var(--line); color:var(--text);
}
.qty-btn.add { background:linear-gradient(135deg,#ff2d2d,#b30d18); border-color:transparent; box-shadow:0 0 8px rgba(255,45,45,.4); }
.qty-btn:disabled { opacity:.3; }
.qty-num { min-width:22px; text-align:center; font-weight:700; font-size:15px; }
.pkg-card { padding:14px; background:linear-gradient(160deg,#1d1a22,#121216); border:1px solid rgba(255,45,45,.25); border-radius:14px; margin-bottom:10px; }
.pkg-card .p-name { font-weight:800; font-size:14.5px; letter-spacing:.5px; display:flex; align-items:center; gap:6px; }
.pkg-card .p-desc { font-size:11.5px; color:var(--text-2); margin:4px 0 6px; }
.pkg-card .p-price { font-size:15px; font-weight:800; color:var(--red); }
.pkg-card .p-comps { font-size:10.5px; color:var(--text-3); margin-top:4px; }

/* 购物车结算条 */
.checkout-bar {
  position:fixed; left:50%; transform:translateX(-50%); bottom:52px; width:100%; max-width:520px;
  padding:10px 14px; z-index:55;
}
.checkout-inner {
  display:flex; align-items:center; gap:12px; padding:10px 10px 10px 16px;
  background:rgba(20,20,26,.95); backdrop-filter:blur(14px);
  border:1px solid var(--line); border-radius:18px; box-shadow:0 8px 30px rgba(0,0,0,.5);
}
.cart-total { flex:1; }
.cart-total .t1 { font-size:16px; font-weight:800; }
.cart-total .t2 { font-size:10.5px; color:var(--text-3); }
.checkout-btn {
  padding:11px 20px; border-radius:12px; font-weight:800; font-size:14px; letter-spacing:2px;
  background:linear-gradient(135deg,#ff2d2d,#b30d18); color:#fff; box-shadow:var(--shadow-red);
}
.checkout-btn:disabled { opacity:.4; box-shadow:none; }

/* ---------- 比赛 ---------- */
.battle-card {
  padding:15px; background:linear-gradient(170deg,#19151c,#121216);
  border:1px solid rgba(255,45,45,.22); border-radius:var(--radius); margin-bottom:12px;
  position:relative; overflow:hidden;
}
.battle-card::after {
  content:""; position:absolute; right:-30px; top:-30px; width:110px; height:110px;
  background:radial-gradient(circle, rgba(255,45,45,.12), transparent 70%);
}
.battle-type {
  display:inline-block; font-size:10.5px; padding:2px 9px; border-radius:999px; letter-spacing:1px;
  background:rgba(255,45,45,.12); border:1px solid rgba(255,45,45,.4); color:var(--red);
}
.battle-card h3 { margin:8px 0 4px; font-size:16px; letter-spacing:1px; }
.battle-meta { display:flex; flex-wrap:wrap; gap:10px; font-size:11.5px; color:var(--text-2); margin:6px 0; }
.battle-meta b { color:var(--gold); font-weight:700; }
.battle-foot { display:flex; align-items:center; justify-content:space-between; margin-top:10px; }
.battle-prize { font-size:11px; color:var(--text-3); }
.battle-status.live { color:var(--ok); }
.battle-status.end { color:var(--text-3); }

/* 座位选择弹层 */
.modal-mask {
  position:fixed; inset:0; z-index:90; display:flex; align-items:flex-end; justify-content:center;
  background:rgba(0,0,0,.6); backdrop-filter:blur(4px);
}
.modal-sheet {
  width:100%; max-width:520px; max-height:82vh; overflow-y:auto;
  background:var(--bg-2); border-radius:22px 22px 0 0; padding:18px 16px 26px;
  border-top:1px solid var(--line); animation:sheetUp .25s;
}
@keyframes sheetUp { from{transform:translateY(40px); opacity:.4;} to{transform:none; opacity:1;} }
.modal-sheet h3 { font-size:17px; letter-spacing:1px; margin-bottom:4px; }
.modal-sheet .tip { font-size:12px; color:var(--text-3); margin-bottom:12px; }
.seat-pick-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; }
.seat-pick {
  padding:12px 4px; border-radius:12px; text-align:center; font-size:12px;
  background:var(--card); border:1px solid var(--line); color:var(--text-2);
}
.seat-pick.on { background:linear-gradient(135deg,#ff2d2d,#b30d18); color:#fff; border-color:transparent; box-shadow:var(--shadow-red); font-weight:700; }
.seat-pick.taken { opacity:.35; }
.modal-actions { display:flex; gap:10px; margin-top:16px; }
.modal-actions button { flex:1; }

/* ---------- 排行榜 ---------- */
.podium { display:flex; align-items:flex-end; justify-content:center; gap:10px; padding:22px 0 6px; }
.podium .pod { flex:1; text-align:center; }
.podium .pod .pod-avatar {
  width:56px; height:56px; margin:0 auto; border-radius:50%; font-size:24px;
  display:flex; align-items:center; justify-content:center;
  background:var(--card-2); border:2px solid var(--line);
}
.podium .pod.p1 .pod-avatar { border-color:var(--gold); box-shadow:0 0 16px rgba(246,196,83,.4); }
.podium .pod.p2 .pod-avatar { border-color:#c7ccd9; }
.podium .pod.p3 .pod-avatar { border-color:var(--red); }
.podium .pod .pod-name { font-size:11px; margin-top:6px; color:var(--text-2); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.podium .pod .pod-bar {
  width:70%; margin:6px auto 0; padding-top:8px; border-radius:8px 8px 0 0;
  background:linear-gradient(180deg, rgba(255,45,45,.25), rgba(255,45,45,.05)); border:1px solid rgba(255,45,45,.2); border-bottom:none;
  font-size:12px; font-weight:800;
}
.podium .pod.p1 .pod-bar { height:64px; }
.podium .pod.p2 .pod-bar { height:44px; }
.podium .pod.p3 .pod-bar { height:32px; }
.rank-row { display:flex; align-items:center; gap:12px; padding:12px; margin-bottom:8px;
  background:var(--card); border:1px solid var(--line); border-radius:14px; }
.rank-idx { width:30px; text-align:center; font-weight:800; font-size:15px; color:var(--text-2); }
.rank-idx.top { color:var(--gold); }
.rank-ava { width:38px; height:38px; border-radius:50%; background:var(--bg-2); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; font-size:16px; }
.rank-main { flex:1; min-width:0; }
.rank-main strong { font-size:14px; display:block; }
.rank-main small { font-size:11px; color:var(--text-3); }
.rank-reward { text-align:right; font-size:11px; color:var(--gold); }

/* ---------- 个人中心 ---------- */
.wallet-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.wallet-cell { padding:14px; border-radius:14px; background:var(--card); border:1px solid var(--line); }
.wallet-cell .w-label { font-size:11px; color:var(--text-3); letter-spacing:1px; }
.wallet-cell .w-num { font-size:22px; font-weight:900; margin-top:4px; letter-spacing:.5px; }
.wallet-cell .w-num small { font-size:12px; font-weight:400; color:var(--text-3); }
.wallet-cell.red .w-num { color:var(--red); text-shadow:0 0 14px var(--red-glow); }
.wallet-cell.gold .w-num { color:var(--gold); }
.profile-row {
  display:flex; align-items:center; gap:12px; padding:14px 4px;
  border-bottom:1px solid var(--line); font-size:14.5px;
}
.profile-row:last-child { border-bottom:none; }
.profile-row .r-ico { font-size:19px; width:26px; text-align:center; }
.profile-row .r-arrow { margin-left:auto; color:var(--text-3); }
.stats-row { display:flex; margin-top:12px; }
.stat-cell { flex:1; text-align:center; }
.stat-cell b { display:block; font-size:19px; font-weight:900; }
.stat-cell small { font-size:11px; color:var(--text-3); }

/* ---------- 订单 / 流水 ---------- */
.order-item { padding:13px; background:var(--card); border:1px solid var(--line); border-radius:14px; margin-bottom:10px; }
.order-item .o-head { display:flex; justify-content:space-between; font-size:12px; color:var(--text-2); }
.order-item .o-head b { color:var(--text); font-size:13px; letter-spacing:.5px; }
.order-item .o-lines { margin-top:8px; }
.order-item .o-line { display:flex; justify-content:space-between; font-size:12.5px; padding:2px 0; color:var(--text-2); }
.order-item .o-foot { display:flex; justify-content:space-between; align-items:center; margin-top:9px; font-size:13px; }
.order-item .o-total { font-weight:800; font-size:15px; }
.status-tag { font-size:10.5px; padding:2px 8px; border-radius:999px; border:1px solid var(--line); color:var(--text-2); }
.status-tag.s0 { color:var(--gold); border-color:rgba(246,196,83,.4); }
.status-tag.s2 { color:var(--ok); border-color:rgba(55,214,122,.4); }
.status-tag.s3 { color:var(--text-3); }

/* ---------- 登录注册 ---------- */
.auth-hero { text-align:center; padding:42px 0 26px; }
.auth-hero .logo-lg { width:74px; height:86px; margin:0 auto 10px; filter:drop-shadow(0 0 20px rgba(255,45,45,.8)); }
.auth-hero h1 { font-size:24px; letter-spacing:5px; font-weight:900; }
.auth-hero p { margin-top:6px; font-size:12px; color:var(--red); letter-spacing:3px; text-shadow:0 0 12px var(--red-glow); }
.auth-card { padding:20px 18px; }
.auth-link { text-align:center; font-size:12.5px; color:var(--text-3); margin-top:14px; }
.auth-link a { color:var(--red); }
.code-row { display:flex; gap:8px; }
.code-row input { flex:1; }
.code-btn { flex:none; padding:0 14px; border-radius:12px; background:var(--card-2); border:1px solid var(--line); font-size:13px; color:var(--text-2); white-space:nowrap; }

/* ---------- 旅程 ---------- */
.journey-item { display:flex; gap:12px; padding:12px 2px; border-bottom:1px solid var(--line); }
.journey-item .j-dot { width:9px; height:9px; flex:none; border-radius:50%; margin-top:6px; background:var(--red); box-shadow:0 0 8px var(--red-glow); }
.journey-item .j-main strong { font-size:14px; }
.journey-item .j-main small { display:block; font-size:11.5px; color:var(--text-3); margin-top:2px; }
.journey-item .j-val { margin-left:auto; font-size:13px; font-weight:700; flex:none; }
.journey-item .j-val.minus { color:var(--text-2); }
.journey-item .j-val.plus { color:var(--ok); }

/* ---------- toast ---------- */
.toast {
  position:fixed; left:50%; top:46%; transform:translate(-50%,-50%); z-index:120;
  max-width:80%; padding:11px 20px; border-radius:12px; font-size:14px;
  background:rgba(20,20,26,.96); border:1px solid var(--line); color:var(--text);
  box-shadow:0 10px 40px rgba(0,0,0,.5); animation:fadeIn .2s;
}
.toast.err { border-color:rgba(255,45,45,.5); color:#ff8a8a; }
.loading { text-align:center; padding:40px 0; color:var(--text-3); font-size:13px; }
.spinner {
  width:26px; height:26px; margin:0 auto 10px; border-radius:50%;
  border:3px solid var(--line); border-top-color:var(--red);
  animation:spin .8s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }
.divider { height:1px; background:var(--line); margin:14px 0; }
.section-gap { height:16px; }

/* ---------- 门店广场地图 ---------- */
.plaza-map { position:relative; height:180px; border-radius:16px; overflow:hidden; margin-bottom:14px; border:1px solid var(--line); }
.map-bg { position:absolute; inset:0; background:
  linear-gradient(135deg, #14141a 0%, #1a1a22 50%, #14141a 100%); }
.map-bg::before { content:''; position:absolute; inset:0; background:
  repeating-linear-gradient(0deg, transparent 0, transparent 28px, rgba(255,255,255,.03) 28px, rgba(255,255,255,.03) 29px),
  repeating-linear-gradient(90deg, transparent 0, transparent 28px, rgba(255,255,255,.03) 28px, rgba(255,255,255,.03) 29px); }
.map-pin { position:absolute; width:14px; height:14px; transform:translate(-50%,-100%); cursor:pointer; z-index:2; }
.map-pin .pin-dot { display:block; width:12px; height:12px; border-radius:50%; background:var(--red); box-shadow:0 0 10px var(--red-glow), 0 0 0 3px rgba(255,45,45,.2); }
.me-pin { position:absolute; transform:translate(-50%,-100%); z-index:3; text-align:center; }
.me-pin .me-dot { display:block; width:12px; height:12px; border-radius:50%; background:#fff; box-shadow:0 0 0 3px rgba(255,255,255,.25); margin:0 auto; }
.me-pin .me-label { display:block; font-size:10px; color:#fff; margin-top:2px; white-space:nowrap; }
.map-tip { position:absolute; left:50%; top:10px; transform:translateX(-50%); font-size:11.5px; color:rgba(255,255,255,.6); background:rgba(0,0,0,.4); padding:4px 10px; border-radius:999px; z-index:4; }
.map-locate-btn { position:absolute; right:10px; bottom:10px; width:38px; height:38px; border-radius:50%; background:var(--card); border:1px solid var(--line); color:var(--red); font-size:16px; z-index:5; cursor:pointer; }

/* 门店距离标签 */
.store-card { position:relative; }
.store-distance { position:absolute; top:10px; right:10px; font-size:11px; color:var(--red); background:rgba(255,45,45,.12); padding:3px 8px; border-radius:999px; }

/* ---------- 个人中心会员卡 ---------- */
.member-card { align-items:center; }
.m-ava { width:60px; height:60px; border-radius:50%; background:var(--card-2); border:2px solid var(--red); display:flex; align-items:center; justify-content:center; font-size:30px; flex:none; overflow:hidden; cursor:pointer; }
.m-name { font-size:17px; font-weight:800; color:var(--text); }
.m-id { font-size:12px; color:var(--red); margin-top:3px; letter-spacing:.5px; }
.m-phone { font-size:11.5px; color:var(--text-3); margin-top:2px; }

/* 头像选择 */
.ava-pick { width:44px; height:44px; border-radius:50%; background:var(--card-2); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; font-size:22px; cursor:pointer; }
.ava-pick.on { border:2px solid var(--red); box-shadow:0 0 10px var(--red-glow); }
.ava-pick.upload { font-size:18px; }

/* ---------- 德州扑克桌 ---------- */
.table-tabs { display:flex; gap:8px; overflow-x:auto; margin-bottom:14px; padding-bottom:4px; }
.table-tab { flex:none; padding:8px 14px; border-radius:12px; background:var(--card); border:1px solid var(--line); cursor:pointer; text-align:center; }
.table-tab.on { background:rgba(255,45,45,.15); border-color:var(--red); }
.table-tab strong { display:block; font-size:13px; color:var(--text); }
.table-tab small { display:block; font-size:10.5px; color:var(--text-3); margin-top:2px; }

.poker-table {
  position:relative; width:100%; aspect-ratio: 1 / 1.05; margin:10px 0 20px;
}
.table-felt {
  position:absolute; left:12%; right:12%; top:22%; bottom:18%;
  background: radial-gradient(ellipse at center, #1a3a2a 0%, #0f2418 70%);
  border-radius: 50% / 48%;
  border: 3px solid #c9a84c;
  box-shadow: 0 0 0 3px #000, 0 0 24px rgba(255,45,45,.35), inset 0 0 40px rgba(0,0,0,.6);
}
.table-logo {
  position:absolute; left:50%; top:50%; transform:translate(-50%,-50%);
  font-size:60px; color:rgba(255,45,45,.85); text-shadow:0 0 18px var(--red-glow);
  font-family: Georgia, serif; font-weight:800;
}
.table-dealer {
  position:absolute; left:50%; top:8%; transform:translateX(-50%);
  background:#111; border:1.5px solid #c9a84c; color:#e8c87a;
  font-size:10px; letter-spacing:2px; padding:3px 10px; border-radius:6px;
}

.poker-seat {
  position:absolute; width:17%; min-width:64px; transform:translate(-50%,-50%);
  display:flex; flex-direction:column; align-items:center; cursor:pointer; z-index:2;
}
.poker-seat .seat-no {
  position:absolute; top:-6px; left:-4px; z-index:3;
  width:18px; height:18px; border-radius:50%;
  background:#000; border:1.5px solid #c9a84c; color:#e8c87a;
  font-size:10px; display:flex; align-items:center; justify-content:center;
}
.poker-seat .seat-icon {
  width:54px; height:54px; border-radius:12px;
  background:#14141a; border:1.5px solid #333;
  display:flex; align-items:center; justify-content:center;
  font-size:22px; color:#888;
}
.poker-seat .seat-label {
  margin-top:3px; font-size:10px; color:#888;
}
.poker-seat.empty .seat-icon { border-color:#3a3a44; }
.poker-seat.empty:hover .seat-icon { border-color:var(--red); box-shadow:0 0 12px var(--red-glow); }
.poker-seat.occupied .seat-icon { background:#1f1414; border-color:var(--red); color:#ff8a8a; }
.poker-seat.mine .seat-icon {
  background: linear-gradient(135deg, #ff2d2d, #a80000);
  border-color:#ff6b6b; box-shadow:0 0 18px var(--red-glow); color:#fff;
}
.poker-seat.mine .seat-label { color:var(--red); font-weight:600; }

.mine-bar { display:flex; align-items:center; justify-content:space-between; padding:12px 16px; font-size:13.5px; }
.mine-bar.empty-bar { color:var(--text-3); font-size:12.5px; }
.mine-bar b { color:var(--red); }

