*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0d1820;
  color: #c2cfe0;
  height: 100vh;
  overflow: hidden;
  user-select: none;
  display: flex;
  flex-direction: column;
}

#app {
  display: flex;
  flex: 1;
  min-height: 0;
}

/* ── Sidebar ─────────────────────────────────────────────── */
#sidebar {
  width: 210px;
  min-width: 210px;
  background: #15202e;
  border-right: 1px solid #1c2e40;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 12px;
}

.sidebar-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #4a6275;
}

/* Bet Amount header row: label left, balance right */
#bet-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#balance-value-btc {
  font-size: 11px;
  font-weight: 500;
  color: #4a6275;
}

/* ── Table ───────────────────────────────────────────────── */
#table {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 120px;
  padding: 40px;
  position: relative;
  background: #0d1820;
}

/* ── Dealer zone ─────────────────────────────────────────── */
#dealer-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-30px);
}

/* ── Player zone ─────────────────────────────────────────── */
#player-zone {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.hand-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s;
}

.hand-container:not(.active) { opacity: 0.45; }

/* ── Card group (positions score badge at top-right) ─────── */
.card-group {
  position: relative;
  display: inline-block;
}

.card-group .score-badge {
  position: absolute;
  top: -14px;
  right: -10px;
  z-index: 10;
}

/* ── Table info banner ───────────────────────────────────── */
#table-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 28px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Extending lines on both sides */
#table-info::before,
#table-info::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 48px;
  background: rgba(255, 255, 255, 0.04);
}

#table-info::before { right: 100%; margin-right: 0; }
#table-info::after  { left:  100%; margin-left:  0; }

.table-rule {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #2e4a61;
  text-transform: uppercase;
}

/* ── Shoe indicator ──────────────────────────────────────── */
#shoe-indicator {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#shoe-bar {
  width: 100%;
  height: 3px;
  background: #1c2e40;
  border-radius: 2px;
  overflow: hidden;
}

#shoe-fill {
  height: 100%;
  background: #2563eb;
  border-radius: 2px;
  transition: width 0.4s ease;
}

#shoe-label { font-size: 10px; color: #3a5568; }

/* ── Hand bet label ──────────────────────────────────────── */
.hand-bet-label {
  font-size: 12px;
  font-weight: 600;
  color: #3a5568;
}




.hidden { display: none !important; }
