/* ZONE 51 — Live bets table (index.html, games.html) */
@keyframes sbPulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
/* ── LIVE BETS TABLE ── */
.lb-block { margin-top: 26px; border-radius: 22px; border: 1px solid rgba(255,255,255,0.06); background: rgba(20,14,27,0.75); box-shadow: var(--shadow-soft); overflow: hidden; }
.lb-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 20px 12px; flex-wrap: wrap; }
.lb-title { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1rem; color: var(--text); }
.lb-title small { font-size: 0.72rem; font-weight: 500; color: var(--muted); }
.lb-live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 10px rgba(52,211,153,0.8); animation: sbPulse 2s ease-in-out infinite; }
.lb-tabs { display: inline-flex; gap: 4px; padding: 4px; border-radius: 9999px; border: 1px solid rgba(255,255,255,0.07); background: rgba(255,255,255,0.035); }
.lb-tab { height: 30px; padding: 0 14px; border-radius: 9999px; border: none; background: transparent; color: var(--muted); font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; cursor: pointer; transition: background-color .18s, color .18s; }
.lb-tab:hover { color: var(--text); }
.lb-tab.active { color: #fff; background: linear-gradient(135deg, #24ab7a, #1e8c64); box-shadow: 0 8px 18px -8px rgba(36,171,122,0.7); }
.lb-table { padding: 0 8px 8px; }
.lb-row { display: grid; grid-template-columns: 1.7fr 1.3fr 0.7fr 1fr 1fr 1.1fr; align-items: center; gap: 12px; padding: 0 12px; height: 54px; border-radius: 14px; font-size: 0.8rem; color: var(--text-2); }
.lb-row-head { height: 38px; font-size: 0.6rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); font-weight: 700; background: rgba(255,255,255,0.03); border-radius: 14px; margin-bottom: 4px; }
.lb-body .lb-row { border-top: 1px solid rgba(255,255,255,0.04); border-radius: 0; }
.lb-body .lb-row:first-child { border-top: none; }
.lb-body .lb-row:hover { background: rgba(255,255,255,0.025); }
.lb-num { text-align: right; font-variant-numeric: tabular-nums; display: inline-flex; align-items: center; justify-content: flex-end; gap: 6px; color: var(--text); font-weight: 600; }
.lb-row-head .lb-num { color: var(--muted); font-weight: 700; }
.lb-game { display: flex; align-items: center; gap: 10px; min-width: 0; }
.lb-game img { width: 28px; height: 28px; border-radius: 8px; object-fit: cover; flex: none; background: linear-gradient(135deg, rgba(36,171,122,0.35), rgba(234,179,8,0.25)); }
.lb-game b, .lb-user b { font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lb-user { display: flex; align-items: center; gap: 7px; min-width: 0; }
.lb-user svg { width: 16px; height: 16px; flex: none; color: var(--muted); }
.lb-user .lb-vip { color: var(--gold-bright); }
.lb-user.lb-anon b { color: var(--muted); font-weight: 600; }
.lb-coin { width: 15px; height: 15px; border-radius: 50%; flex: none; }
.lb-row.win .lb-pay { color: var(--green-bright); font-weight: 800; }
.lb-row.loss .lb-pay { color: #47d8a3; font-weight: 700; }
.lb-fire { width: 12px; height: 14px; margin-right: 2px; background: linear-gradient(180deg, #ffb347, #24ab7a); border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%; box-shadow: 0 0 8px rgba(124,222,198,0.7); display: inline-block; }
.lb-fresh { animation: lbIn .5s cubic-bezier(.2,.8,.2,1); }
@keyframes lbIn { from { opacity: 0; transform: translateY(-10px); background: rgba(36,171,122,0.12); } to { opacity: 1; transform: none; } }
.lb-empty { padding: 22px; text-align: center; font-size: 0.78rem; color: var(--muted); }
@media (max-width: 860px) { .lb-row { grid-template-columns: 1.6fr 1.2fr 1fr 1fr; } .lb-c-time, .lb-c-mult { display: none !important; } }
@media (max-width: 620px) { .lb-head { padding: 14px 14px 10px; } .lb-row { padding: 0 8px; gap: 8px; font-size: 0.74rem; height: 50px; } .lb-tab { padding: 0 10px; font-size: 0.66rem; } .lb-title small { display: none; } }


