.bj-wrap {
  max-width: 1060px;
  margin: 0 auto;
  font-family: "Monda", "Trebuchet MS", "Segoe UI", sans-serif;
}

.bj-wrap,
.bj-wrap *,
.bj-result-modal,
.bj-result-modal *,
.bj-sidebet-modal,
.bj-sidebet-modal *,
.bj-help-modal,
.bj-help-modal * {
  font-family: "Monda", "Trebuchet MS", "Segoe UI", sans-serif;
}

.bj-wrap input,
.bj-wrap button,
.bj-wrap select,
.bj-wrap textarea,
.bj-wrap fieldset {
  margin-bottom: 0 !important;
}

.bj-table {
  position: relative;
  background: #202020;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  color: #f1f1f1;
}

.bj-header {
  text-align: center;
  margin-bottom: 20px;
}

.bj-subtitle {
  margin: 6px 0 0;
  opacity: 0.85;
  color: #d2a2be;
}

.bj-help-link,
.bj-audio-link,
.bj-hint-link {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(210,162,190,0.35);
  border-radius: 999px;
  background: rgb(26, 26, 26);
  color: #d2a2be;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  box-sizing: border-box;
}

.bj-hint-link {
  width: auto;
  min-width: 58px;
  padding: 0 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bj-hint-link[hidden] {
  display: none;
}

.bj-audio-link svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.bj-audio-link.is-muted {
  color: #d37676;
  border-color: rgba(211,118,118,0.38);
}

.bj-status-bar {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 14px 16px;
  background: rgb(26, 26, 26);
  border: 1px solid rgba(210,162,190,0.28);
  border-radius: 12px;
}

.bj-status-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.bj-bank {
  font-size: 18px;
  font-weight: 700;
}

.bj-bank-label {
  color: #d2a2be;
}

.bj-message {
  min-height: 52px;
  margin-top: 18px;
  margin-bottom: 18px;
  padding: 12px 14px;
  background: rgb(26, 26, 26);
  border: 1px solid rgba(210,162,190,0.28);
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.bj-message-loss-prefix {
  color: #d37676;
}

.bj-message-win-prefix {
  color: #93d376;
}

.bj-message-hit-prefix {
  color: #93d376;
}

.bj-message-double-prefix {
  color: #d2a2be;
}

.bj-message-split-prefix {
  color: #d3c476;
}

.bj-message-stand-prefix {
  color: #d37676;
}

.bj-message-push-prefix {
  color: #d3c476;
}

.bj-board {
  display: grid;
  gap: 20px;
}

.bj-player-hands {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.bj-player-hands.has-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bj-player-hands.has-split .bj-hand-area {
  min-height: 187px;
}

.bj-hand-body {
  display: flex;
  align-items: stretch;
  gap: 18px;
}

.bj-dealer-hand .bj-hand-body {
  align-items: center;
}

.bj-player-hands.has-split .bj-cards {
  display: grid;
  grid-template-columns: repeat(5, 72px);
  align-content: start;
  min-height: 104px;
}

.bj-player-hands.has-split .bj-hand-body {
  display: block;
}

.bj-player-hands.has-split .bj-hand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 0;
  margin-bottom: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.bj-player-hands.has-split .bj-hand-title {
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  font-size: 22px;
}

.bj-player-hands.has-split .bj-score {
  font-size: inherit;
  line-height: inherit;
}

.bj-player-hands.has-split .bj-card {
  width: 72px;
  height: 104px;
}

.bj-hand-area {
  background: rgb(26, 26, 26);
  border: 1px solid rgba(210,162,190,0.22);
  border-radius: 14px;
  padding: 16px;
}

.bj-hand-area.is-active-hand {
  border-color: rgba(210,162,190,0.6);
  box-shadow: 0 0 0 1px rgba(210,162,190,0.25);
}

.bj-hand-header {
  display: flex;
  flex: 0 0 140px;
  min-height: 155px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(210,162,190,0.14);
}

.bj-hand-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.bj-score {
  display: inline-block;
  min-height: 34px;
  font-weight: 700;
  color: #d2a2be;
  opacity: 1;
  font-size: 34px;
  line-height: 1;
}

.bj-score.is-21 {
  color: #93d376;
}

.bj-score.is-bust {
  color: #d37676;
  opacity: 1;
}

.bj-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 155px;
  flex: 1 1 auto;
  align-content: center;
}

.bj-dealer-hand .bj-cards {
  min-width: 0;
}

.bj-deck-stack {
  position: relative;
  flex: 0 0 128px;
  width: 128px;
  min-height: 173px;
  margin-left: auto;
}

.bj-deck-card {
  position: absolute;
  top: calc(var(--card-layer) * 2px);
  right: calc(var(--card-layer) * 2px);
  width: 110px;
  height: 155px;
  border-radius: 10px;
  background: url('/game/blackjack/assets/cards/back.png') center / contain no-repeat;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.bj-card {
  width: 110px;
  height: 155px;
  background: transparent;
  position: relative;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  user-select: none;
  border-radius: 10px;
  overflow: hidden;
}

.bj-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.bj-actions {
  display: block;
  margin-top: 12px;
  min-height: 82px;
}

.bj-actions button[hidden] {
  display: none;
}

.bj-action-buttons {
  display: flex;
  padding-bottom: 12px;
  flex-wrap: wrap;
  min-height: 82px;
  align-items: stretch;
}

.bj-action-buttons button {
  margin-right: 0;
}

.bj-action-buttons button:not([hidden]) {
  margin-left: 0;
}

.bj-action-buttons button:not([hidden]) ~ button:not([hidden]) {
  margin-left: 12px;
}

.bj-actions.bj-actions-play-mode .bj-action-buttons {
  flex: 1 1 100%;
  width: 100%;
}

.bj-actions.bj-actions-one-button .bj-action-buttons {
  width: 100%;
  flex: 1 1 100%;
}

.bj-actions.bj-actions-one-button .bj-action-buttons button {
  width: calc(50% - 6px);
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
}

.bj-actions.bj-actions-two-buttons .bj-action-buttons button {
  flex: 1 1 0;
  max-width: none;
  min-width: 0;
  margin-left: 0;
  width: auto;
  padding-left: 0;
  padding-right: 0;
}

.bj-actions.bj-actions-two-buttons .bj-action-buttons {
  width: 100%;
  flex: 1 1 100%;
  display: flex;
}

.bj-actions.bj-actions-two-buttons .bj-bet-panel {
  width: 100%;
  flex: 1 1 100%;
  margin-left: 0;
}

.bj-actions.bj-actions-two-buttons .bj-action-buttons button + button {
  margin-left: 12px;
}

.bj-actions.bj-actions-two-buttons #bj-add-credit {
  margin-left: 0;
}

.bj-actions.bj-actions-two-buttons {
  display: block;
}

.bj-actions.bj-actions-two-buttons .bj-action-buttons button,
.bj-actions.bj-actions-three-buttons .bj-action-buttons button,
.bj-actions.bj-actions-four-buttons .bj-action-buttons button {
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
}

.bj-actions.bj-actions-three-buttons .bj-action-buttons button {
  flex: 1 1 0;
}

.bj-actions.bj-actions-three-buttons .bj-action-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 12px;
}

.bj-actions.bj-actions-four-buttons .bj-action-buttons button {
  flex: 1 1 0;
}

.bj-actions.bj-actions-four-buttons .bj-action-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 12px;
}

.bj-action-buttons button {
  padding: 22px 100px;
  border: 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.bj-actions .bj-bet-panel {
  background: rgb(26, 26, 26);
  padding: 12px;
  border: 1px solid rgba(210,162,190,0.28);
  border-radius: 10px;
  flex: 1 1 100%;
  box-sizing: border-box;
  width: 100%;
}

.bj-betting-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 12px;
}

.bj-betting-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-height: 138px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(210,162,190,0.22);
  background: rgba(255,255,255,0.03);
  color: #f1f1f1;
  text-align: left;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.bj-betting-box:hover {
  transform: translateY(-1px);
  border-color: rgba(210,162,190,0.45);
}

.bj-betting-box.is-active {
  border-color: rgba(210,162,190,0.7);
  box-shadow: 0 0 0 1px rgba(210,162,190,0.25);
}

.bj-betting-box-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d2a2be;
}

.bj-betting-box-total {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.bj-betting-box-chips {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  min-height: 64px;
  margin-top: auto;
}

.bj-mini-chip-stack {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 40px;
  height: 66px;
}

.bj-mini-chip {
  position: absolute;
  left: 50%;
  bottom: calc(var(--chip-layer, 0) * 4px);
  transform: translateX(-50%);
  width: 43px;
  height: 43px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, var(--chip-core, #3c3c3c) 0 62%, transparent 62% 100%),
    repeating-conic-gradient(
      from -10deg,
      var(--chip-stripe, rgba(255,255,255,0.92)) 0deg 14deg,
      var(--chip-stripe-gap, var(--chip-edge, #1f1f1f)) 14deg 30deg
    ),
    radial-gradient(circle at 50% 50%, var(--chip-edge, #1f1f1f) 0 100%);
  box-shadow:
    inset 0 1px 4px rgba(255,255,255,0.14),
    inset 0 -4px 6px rgba(0,0,0,0.2),
    0 3px 8px rgba(0,0,0,0.25);
}


.bj-chip-tray {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 22px;
  margin-bottom: 10px;
  padding-left: 5px;
  align-items: center;
}

.bj-chip-tray[hidden] {
  display: none;
}

.bj-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  min-width: 72px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background:
    radial-gradient(circle at 50% 50%, var(--chip-core, #3c3c3c) 0 62%, transparent 62% 100%),
    repeating-conic-gradient(
      from -10deg,
      var(--chip-stripe, rgba(255,255,255,0.92)) 0deg 14deg,
      var(--chip-stripe-gap, var(--chip-edge, #1f1f1f)) 14deg 30deg
    ),
    radial-gradient(circle at 50% 50%, var(--chip-edge, #1f1f1f) 0 100%);
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
  box-shadow:
    inset 0 2px 10px rgba(255,255,255,0.16),
    inset 0 -10px 18px rgba(0,0,0,0.24),
    0 8px 18px rgba(0,0,0,0.28);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}

.bj-actions button.bj-chip {
  width: 72px;
  height: 72px;
  min-width: 72px;
  padding: 0;
  border-radius: 999px;
  flex: 0 0 72px;
}

.bj-chip:hover:not(:disabled) {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.bj-chip.is-active {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    inset 0 2px 10px rgba(255,255,255,0.22),
    inset 0 -10px 18px rgba(0,0,0,0.24),
    0 0 0 2px #202020,
    0 0 0 7px #f1f1f1,
    0 10px 22px rgba(0,0,0,0.34);
}

.bj-chip-action {
  width: auto;
  min-width: 82px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(210,162,190,0.28);
  background: rgba(255,255,255,0.06);
  color: #f1f1f1;
  box-shadow: none;
  text-shadow: none;
}

.bj-actions button.bj-chip-action {
  width: auto;
  height: 46px;
  min-width: 82px;
  padding: 0 18px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.bj-chip-action.is-active {
  transform: none;
  box-shadow: none;
}

.bj-chip[data-chip-value="1"] {
  --chip-core: #d3bc76;
  --chip-edge: #d37676;
  --chip-stripe: #d3bc76;
  --chip-stripe-gap: #d37676;
  color: #111111;
  text-shadow: none;
}

.bj-chip[data-chip-value="5"] {
  --chip-core: #93d376;
  --chip-edge: #d3885c;
  --chip-stripe: #93d376;
  --chip-stripe-gap: #d3885c;
}

.bj-chip[data-chip-value="10"] {
  --chip-core: #d37676;
  --chip-edge: #f1f1f1;
  --chip-stripe: #d37676;
  --chip-stripe-gap: #f1f1f1;
  color: #f1f1f1;
}

.bj-chip[data-chip-value="25"] {
  --chip-core: #2a2a2a;
  --chip-edge: #242424;
  --chip-stripe: #8ec9ff;
  --chip-stripe-gap: #242424;
  color: #8ec9ff;
}

.bj-chip[data-chip-value="100"] {
  --chip-core: #d37690;
  --chip-edge: #d37676;
  --chip-stripe: #d37676;
  --chip-stripe-gap: #e5a0b2;
  color: #111111;
}

.bj-chip[data-chip-value="1000"] {
  --chip-core: #d3b15c;
  --chip-edge: #1f1f1f;
  --chip-stripe: #d3b15c;
  --chip-stripe-gap: #1f1f1f;
}

.bj-chip::before {
  display: none;
}

.bj-chip::after {
  display: none;
}

.bj-chip-action::before,
.bj-chip-action::after {
  display: none;
}

.bj-action-buttons button:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.2);
}

.bj-action-buttons button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

#bj-new-round {
  background: #d2a2be;
  color: #202020;
  min-width: 110px;
  padding-left: 100px;
  padding-right: 100px;
}

#bj-hit {
  background: #93d376;
  color: #202020;
}

#bj-double {
  background: #d2a2be;
  color: #202020;
}

#bj-split {
  background: #d3c476;
  color: #202020;
}

#bj-stand {
  background: #d37676;
  color: #202020;
}

#bj-add-credit {
  background: #93d376;
  color: #202020;
}

.bj-result-modal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: transparent;
  z-index: 20;
}

.bj-result-modal[hidden] {
  display: none;
}

.bj-help-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 12, 7, 0.72);
  z-index: 25;
}

.bj-help-modal[hidden] {
  display: none;
}

.bj-help-card {
  width: min(520px, 100%);
  padding: 30px 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(210,162,190,0.16), transparent 34%),
    linear-gradient(180deg, #242424 0%, #1a1a1a 100%);
  border: 1px solid rgba(210,162,190,0.32);
  color: #f1f1f1;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.bj-help-title {
  font-size: 30px;
  font-weight: 800;
  color: #d2a2be;
  margin-bottom: 6px;
}

.bj-help-intro {
  font-size: 15px;
  color: rgba(241,241,241,0.74);
  margin-bottom: 18px;
}

.bj-help-group {
  margin-top: 14px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(210,162,190,0.14);
}

.bj-help-copy {
  font-size: 15px;
  line-height: 1.45;
}

.bj-help-section {
  margin-bottom: 10px;
  font-weight: 800;
  color: #d2a2be;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 12px;
}

.bj-help-rule {
  position: relative;
  padding-left: 16px;
  margin-top: 8px;
}

.bj-help-rule::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #93d376;
}

.bj-help-close {
  margin-top: 22px;
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  background: #d2a2be;
  color: #202020;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  min-width: 120px;
}

.bj-sidebet-modal {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: transparent;
  z-index: 22;
  pointer-events: none;
}

.bj-sidebet-modal[hidden] {
  display: none;
}

.bj-sidebet-card {
  width: min(540px, 100%);
  padding: 24px 22px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(211,196,118,0.16), transparent 34%),
    linear-gradient(180deg, #242424 0%, #1a1a1a 100%);
  border: 1px solid rgba(211,196,118,0.42);
  color: #f1f1f1;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.36);
}

.bj-sidebet-wins {
  display: grid;
  gap: 16px;
}

.bj-sidebet-win {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(211,196,118,0.18);
  text-align: center;
}

.bj-sidebet-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(211,196,118,0.92);
}

.bj-sidebet-title {
  margin-top: 6px;
  font-size: 28px;
  font-weight: 800;
  color: #d3c476;
  text-transform: uppercase;
  line-height: 1.06;
}

.bj-sidebet-amount {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 800;
}

.bj-sidebet-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.bj-sidebet-cards .bj-card {
  width: 86px;
  height: 121px;
}

.bj-sidebet-total {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(211,196,118,0.2);
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #d3c476;
}

.bj-result-card {
  width: min(360px, 100%);
  padding: 28px 24px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(210,162,190,0.12), transparent 34%),
    linear-gradient(180deg, #242424 0%, #1a1a1a 100%);
  border: 1px solid rgba(210,162,190,0.28);
  color: #f1f1f1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.bj-result-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f1f1f1;
}

.bj-result-amount {
  margin-top: 10px;
  font-size: 27px;
  font-weight: 800;
  color: #f1f1f1;
}

.bj-result-modal.is-win .bj-result-card {
  border-color: rgba(147,211,118,0.42);
}

.bj-result-modal.is-win .bj-result-title {
  color: #93d376;
}

.bj-result-modal.is-loss .bj-result-card {
  border-color: rgba(211,118,118,0.42);
}

.bj-result-modal.is-loss .bj-result-title {
  color: #d37676;
}

.bj-result-modal.is-push .bj-result-title {
  color: #d3c476;
}

.bj-result-modal.is-push .bj-result-card {
  border-color: rgba(211, 196, 118, 0.42);
}

@media (max-width: 640px) {
  .bj-header h2 {
    font-size: 28px;
  }

  .bj-player-hands.has-split {
    grid-template-columns: 1fr;
  }

  .bj-hand-body {
    display: block;
  }

  .bj-betting-grid {
    grid-template-columns: 1fr;
  }

  .bj-betting-box {
    min-height: 126px;
  }

  .bj-dealer-hand .bj-hand-body {
    display: flex;
    align-items: center;
  }

  .bj-player-hands.has-split .bj-cards {
    grid-template-columns: repeat(5, 58px);
    min-height: 84px;
  }

  .bj-player-hands.has-split .bj-card {
    width: 58px;
    height: 84px;
  }

  .bj-hand-header {
    min-height: 118px;
  }

  .bj-card {
    width: 64px;
    height: 118px;
  }

  .bj-cards {
    min-height: 118px;
  }

  .bj-deck-stack {
    flex-basis: 76px;
    width: 76px;
    min-height: 102px;
  }

  .bj-deck-card {
    width: 64px;
    height: 90px;
  }

  .bj-chip {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 11px;
  }

  .bj-actions button.bj-chip {
    width: 60px;
    height: 60px;
    min-width: 60px;
    flex-basis: 60px;
  }

  .bj-chip-action {
    width: auto;
    min-width: 72px;
    height: 42px;
    padding: 0 14px;
    font-size: 12px;
  }

  .bj-actions button.bj-chip-action {
    width: auto;
    min-width: 72px;
    height: 42px;
    padding: 0 14px;
  }

  .bj-sidebet-card {
    padding: 18px 16px;
  }

  .bj-sidebet-title {
    font-size: 22px;
  }

  .bj-sidebet-amount,
  .bj-sidebet-total {
    font-size: 20px;
  }

  .bj-sidebet-cards .bj-card {
    width: 64px;
    height: 90px;
  }
}
