/* ============ 互动玩法（大转盘 / 喝酒游戏 / 桌游 / 包间 / 排队） ============ */
.games-sec { margin-top:18px; }
.games-hint { font-size:11px; color:var(--muted,#8F8A82); padding:4px 2px 0; }

/* ---------- 幸运大转盘 ---------- */
.wheel-wrap { display:flex; flex-direction:column; align-items:center; padding:6px 0 14px; }
.wheel { position:relative; width:286px; height:286px; border-radius:50%; }
.wheel svg { width:100%; height:100%; display:block; }
.wheel-halo { position:absolute; inset:-10px; border-radius:50%; border:2px dashed rgba(216,180,122,.35); pointer-events:none; }
.wheel-center { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:92px; height:92px; border-radius:50%;
  background:linear-gradient(145deg,#E8C98F,#C9A05A); color:#1a1206; display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:15px; border:5px solid #15120d; box-shadow:0 4px 18px rgba(0,0,0,.55); cursor:pointer; z-index:3; text-align:center; line-height:1.25; }
.wheel-center:disabled { opacity:.55; cursor:default; }
.wheel-pointer { position:absolute; top:-8px; left:50%; transform:translateX(-50%); width:0; height:0; border-left:10px solid transparent;
  border-right:10px solid transparent; border-top:16px solid #D8B47A; z-index:4; filter:drop-shadow(0 2px 3px rgba(0,0,0,.5)); }
.lottery-info { display:flex; gap:10px; justify-content:center; padding:8px 0 4px; font-size:12px; color:var(--muted,#8F8A82); }
.lottery-info b { color:var(--gold,#D8B47A); }
.result-mask { position:fixed; inset:0; background:rgba(0,0,0,.72); display:flex; align-items:center; justify-content:center; z-index:99; }
.result-card { width:280px; background:#14110c; border:1px solid #3a332a; border-radius:16px; padding:26px 20px 20px; text-align:center; animation:pop .25s ease; }
@keyframes pop { from { transform:scale(.8); opacity:0; } to { transform:scale(1); opacity:1; } }
.result-card .big { font-size:46px; }
.result-card h3 { margin:10px 0 4px; color:var(--gold,#D8B47A); }
.result-card .sub { font-size:12px; color:var(--muted,#8F8A82); margin-bottom:14px; }
.win-banner { background:linear-gradient(90deg,rgba(216,180,122,.16),rgba(216,180,122,.04)); border:1px solid rgba(216,180,122,.35);
  border-radius:10px; padding:8px 12px; font-size:12px; color:#cfae74; margin-top:10px; line-height:1.7; }
.win-banner span { color:#fff; margin-right:6px; }

/* ---------- 喝酒游戏（骰子比大小） ---------- */
.dice-bet-row { display:flex; gap:8px; justify-content:center; padding:8px 0; }
.dice-bet-btn { min-width:64px; padding:8px 0; border:1px solid #3a332a; border-radius:10px; background:#181510; color:#e6e0d4; font-weight:600; cursor:pointer; }
.dice-bet-btn.on { border-color:var(--gold,#D8B47A); color:var(--gold,#D8B47A); box-shadow:0 0 0 1px rgba(216,180,122,.4); }
.dice-area { display:flex; gap:34px; justify-content:center; align-items:center; padding:20px 0 12px; }
.dice-side { text-align:center; }
.dice-side .lb { font-size:11px; color:var(--muted,#8F8A82); margin-bottom:8px; }
.dice { width:76px; height:76px; border-radius:14px; background:linear-gradient(145deg,#211d17,#171410); border:1px solid #453b2c;
  display:grid; grid-template-columns:repeat(3,1fr); grid-template-rows:repeat(3,1fr); padding:9px; gap:2px; }
.dice .pip { display:flex; align-items:center; justify-content:center; }
.dice .pip i { width:12px; height:12px; border-radius:50%; background:#E8C98F; box-shadow:0 0 6px rgba(232,201,143,.5); }
.dice.rolling { animation:shake .35s linear infinite; }
@keyframes shake { 0%{transform:rotate(-8deg)} 50%{transform:rotate(8deg)} 100%{transform:rotate(-8deg)} }
.dice-vs { color:var(--gold,#D8B47A); font-weight:800; font-size:18px; }
.dice-result { text-align:center; font-size:15px; color:#e6e0d4; min-height:24px; padding:4px 0; }
.dice-result.win { color:#4ade80; } .dice-result.lose { color:#f87171; }
.dice-result.draw { color:var(--gold,#D8B47A); }

/* ---------- 桌游 / 包间 ---------- */
.board-card, .room-card { background:#161310; border:1px solid #2c271e; border-radius:12px; padding:12px 14px; margin-bottom:10px; }
.board-card .hd, .room-card .hd { display:flex; justify-content:space-between; align-items:center; }
.board-card .nm, .room-card .nm { font-weight:700; color:#ece6da; }
.board-card .meta { font-size:11px; color:var(--muted,#8F8A82); margin:5px 0; display:flex; gap:12px; }
.board-card .desc { font-size:12px; color:#b5ae9f; line-height:1.6; }
.room-card .price { color:var(--gold,#D8B47A); font-weight:700; }
.room-card .desc { font-size:12px; color:#b5ae9f; line-height:1.6; margin:6px 0; }
.room-reserve-btn { margin-top:8px; }
.reserve-form { background:#161310; border:1px solid #2c271e; border-radius:12px; padding:14px; margin:12px 0; }
.reserve-form .f-title { font-weight:700; color:#ece6da; margin-bottom:10px; }
.reserve-form .input, .reserve-form select.input { width:100%; box-sizing:border-box; margin-bottom:8px; background:#12100b; }
.status-tag { font-size:11px; padding:2px 8px; border-radius:20px; border:1px solid #3a332a; color:var(--muted,#8F8A82); }
.status-tag.pending { color:#fbbf24; border-color:rgba(251,191,36,.4); }
.status-tag.confirmed { color:#4ade80; border-color:rgba(74,222,128,.4); }
.status-tag.canceled { color:#f87171; border-color:rgba(248,113,113,.4); }
.status-tag.done { color:#9ca3af; border-color:rgba(156,163,175,.4); }

/* ---------- 在线排队 ---------- */
.queue-hero { text-align:center; padding:20px 0 6px; }
.queue-hero .big-no { font-size:56px; font-weight:800; color:var(--gold,#D8B47A); line-height:1; letter-spacing:2px; }
.queue-hero .lbl { font-size:12px; color:var(--muted,#8F8A82); margin-top:6px; }
.queue-stat { display:flex; gap:10px; justify-content:center; padding:10px 0; }
.queue-stat .cell { background:#161310; border:1px solid #2c271e; border-radius:10px; padding:10px 18px; text-align:center; min-width:84px; }
.queue-stat .cell b { display:block; font-size:22px; color:var(--gold,#D8B47A); }
.queue-stat .cell span { font-size:11px; color:var(--muted,#8F8A82); }
.queue-board { background:#161310; border:1px solid #2c271e; border-radius:12px; padding:10px 14px; margin:10px 0; }
.queue-board .t { font-size:12px; color:var(--muted,#8F8A82); margin-bottom:6px; }
.queue-board .nos { display:flex; gap:10px; flex-wrap:wrap; }
.queue-board .no { background:#1d1a14; border:1px solid #3a332a; border-radius:8px; padding:4px 10px; font-weight:700; color:#e6e0d4; font-size:14px; }
.queue-board .no.on { border-color:var(--gold,#D8B47A); color:var(--gold,#D8B47A); }
