/* ============================= */
/* RESET */
/* ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background: #0f4d2d;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #fff;
  overflow: hidden;
}

/* ============================= */
/* PAGE */
/* ============================= */
.bj-page {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(30, 118, 69, 0.34) 0%, rgba(8, 36, 26, 0) 60%),
    linear-gradient(180deg, #115c37 0%, #0f4d2d 42%, #0b3f25 100%);
}

/* ============================= */
/* TOP BAR */
/* ============================= */
.bj-topbar {
  position: absolute;
  inset: 0 0 auto 0;
  min-height: 88px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 40;
  pointer-events: none;
}

.bj-top-left,
.bj-top-center {
  pointer-events: auto;
}

.bj-top-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bj-back-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: all 0.2s ease;
}

.bj-back-btn:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.32);
}

.bj-back-arrow {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}

.bj-balance-box {
  min-width: 150px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.bj-balance-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bj-demo-balance {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.bj-top-center {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  text-align: center;
  width: 360px;
  max-width: calc(100% - 320px);
}

.bj-game-title {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.1;
}

.bj-game-subtitle {
  margin-top: 3px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

/* ============================= */
/* GAME SHELL */
/* ============================= */
.bj-game-shell {
  width: 100%;
  height: 100%;
}

.bj-table-wrap {
  width: 100%;
  height: 100%;
  padding: 95px 20px 24px;
}

.bj-table {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at center, rgba(34, 126, 78, 0.3) 0%, rgba(34, 126, 78, 0.08) 32%, rgba(0, 0, 0, 0) 64%),
    linear-gradient(180deg, rgba(16, 79, 46, 0.96) 0%, rgba(11, 63, 37, 0.98) 100%);
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.03),
    inset 0 0 100px rgba(0, 0, 0, 0.22),
    0 20px 60px rgba(0, 0, 0, 0.25);
}

.bj-table::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(230, 211, 148, 0.22);
  border-radius: 26px;
  pointer-events: none;
}

.bj-table::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 118px;
  transform: translateX(-50%);
  width: 68%;
  height: 185px;
  border: 2px solid rgba(230, 211, 148, 0.18);
  border-top-left-radius: 240px;
  border-top-right-radius: 240px;
  border-bottom: none;
  pointer-events: none;
}

/* ============================= */
/* TABLE HEADER */
/* ============================= */
.bj-table-header {
  position: absolute;
  top: 34px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.bj-table-brand {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
}

.bj-table-rules {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(235, 222, 177, 0.9);
}

/* ============================= */
/* COMMON SEAT */
/* ============================= */
.bj-seat {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
}

.bj-seat-head {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.bj-seat-name {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.bj-seat-score {
  min-width: 38px;
  height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bj-cards-area {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 165px;
}

.bj-card {
  width: 96px;
  height: 138px;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.34);
  margin-left: -12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bj-cards-area .bj-card:first-child {
  margin-left: 0;
}

.bj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.42);
}

.bj-hand-bet {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
}

.active-hand {
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.12));
}

.active-hand .bj-seat-head {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.04);
}

.split-hidden {
  display: none !important;
}

/* ============================= */
/* DEALER + PLAYER LANES */
/* ============================= */
.dealer-seat {
  top: 95px;
  width: 460px;
}

.player-seat {
  width: 460px;
}

#playerHand1Wrap {
  top: 470px;
  left: 50%;
  transform: translateX(-50%);
}

#playerHand2Wrap {
  top: 470px;
  left: 77%;
  transform: translateX(-50%);
}

/* ============================= */
/* LEFT SIDE INFO AREA */
/* ============================= */
.bj-center-zone {
  position: absolute;
  top: 255px;
  left: 42px;
  width: 220px;
  text-align: center;
  z-index: 6;
}

.bj-deck-stack {
  position: relative;
  width: 112px;
  height: 120px;
  margin: 0 auto 18px;
}

.bj-deck-pile {
  position: absolute;
  width: 112px;
  left: 0;
  top: 8px;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.35));
}

.bj-deck-back {
  position: absolute;
  width: 92px;
  left: 10px;
  top: 0;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.28));
}

.bj-deck-back-1 {
  transform: rotate(-6deg);
}

.bj-deck-back-2 {
  transform: rotate(4deg);
}

.bj-deck-back-3 {
  transform: rotate(-2deg);
}

.bj-result-banner {
  min-width: 210px;
  display: inline-block;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

/* ============================= */
/* BET / CHIPS / BOTTOM BAR */
/* ============================= */
.bj-betting-zone {
  position: absolute;
  left: 50%;
  bottom: 118px;
  transform: translateX(-50%);
  z-index: 7;
}

.bj-bet-spot {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 3px dashed rgba(235, 222, 177, 0.65);
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 45%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 0 0 8px rgba(255, 255, 255, 0.03),
    0 10px 26px rgba(0, 0, 0, 0.14);
  position: relative;
  overflow: hidden;
}

.bj-chip-stack-visual {
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: 74px;
  height: 48px;
  pointer-events: none;
  z-index: 1;
}

.bj-stack-chip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.22);
}

.bj-stack-chip::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.72);
}

.bj-stack-chip-1 {
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f2f2f2 35%, #d5d5d5 100%);
  color: #111;
  border-color: #f8f8f8;
}

.bj-stack-chip-10 {
  background: radial-gradient(circle at 30% 30%, #4ea3ff 0%, #267be0 45%, #0b4ea0 100%);
}

.bj-stack-chip-50 {
  background: radial-gradient(circle at 30% 30%, #ff5a6c 0%, #df2944 45%, #9b1023 100%);
}

.bj-stack-chip-100 {
  background: radial-gradient(circle at 30% 30%, #2ee88f 0%, #12b768 45%, #087441 100%);
}

.bj-stack-chip-500 {
  background: radial-gradient(circle at 30% 30%, #8f66ff 0%, #6640d7 45%, #3f2390 100%);
}

.bj-bet-spot-label,
.bj-bet-spot-amount {
  position: relative;
  z-index: 2;
}

.bj-bet-spot-label {
  margin-top: 34px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 6px;
}

.bj-bet-spot-amount {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
}

.bj-chip-rack {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 8;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.bj-chip {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.96);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.bj-chip:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 20px rgba(0, 0, 0, 0.3);
}

.bj-chip:active {
  transform: translateY(-1px) scale(0.98);
}

.bj-chip::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.7);
}

.bj-chip-1 {
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f2f2f2 35%, #d5d5d5 100%);
  color: #111;
  border-color: #f8f8f8;
}

.bj-chip-10 {
  background: radial-gradient(circle at 30% 30%, #4ea3ff 0%, #267be0 45%, #0b4ea0 100%);
}

.bj-chip-50 {
  background: radial-gradient(circle at 30% 30%, #ff5a6c 0%, #df2944 45%, #9b1023 100%);
}

.bj-chip-100 {
  background: radial-gradient(circle at 30% 30%, #2ee88f 0%, #12b768 45%, #087441 100%);
}

.bj-chip-500 {
  background: radial-gradient(circle at 30% 30%, #8f66ff 0%, #6640d7 45%, #3f2390 100%);
}

.bj-clear-bet-btn {
  height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  display: none;
}

.bj-clear-bet-btn.show {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bj-bottom-bar {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.bj-round-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bj-info-pill {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bj-action-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.bj-main-bet-btn,
.bj-action-btn {
  height: 48px;
  border: none;
  border-radius: 14px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.bj-main-bet-btn {
  background: linear-gradient(180deg, #ffffff 0%, #dce3de 100%);
  color: #0d2d1c;
  min-width: 110px;
}

.bj-action-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 96px;
}

.bj-action-btn:disabled,
.bj-main-bet-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 1300px) {
  .dealer-seat,
  .player-seat {
    width: 400px;
    min-width: 400px;
  }

  .bj-card {
    width: 88px;
    height: 128px;
  }

  #playerHand2Wrap {
    left: 75%;
  }

  .bj-center-zone {
    left: 18px;
    width: 180px;
  }
}

@media (max-width: 991px) {
  html,
  body {
    height: 100dvh;
    overflow: hidden;
  }

  body {
    position: fixed;
    width: 100%;
    height: 100dvh;
    touch-action: manipulation;
  }

  .bj-page {
    height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
  }

  .bj-topbar {
    min-height: 66px;
    padding: 10px 10px;
  }

  .bj-top-left {
    gap: 8px;
    z-index: 3;
  }

  .bj-top-center {
    top: 10px;
    left: 58%;
    width: auto;
    max-width: 150px;
  }

  .bj-game-title {
    font-size: 16px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .bj-game-subtitle {
    display: none;
  }

  .bj-back-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .bj-back-arrow {
    font-size: 20px;
  }

  .bj-balance-box {
    min-width: 104px;
    padding: 6px 9px;
    border-radius: 12px;
  }

  .bj-balance-label {
    font-size: 9px;
  }

  .bj-demo-balance {
    font-size: 15px;
  }

  .bj-table-wrap {
    padding: 66px 6px 6px;
  }

  .bj-table {
    height: calc(100dvh - 72px);
    border-radius: 20px;
  }

  .bj-table::before {
    inset: 8px;
    border-radius: 14px;
  }

  .bj-table::after {
    width: 84%;
    height: 84px;
    bottom: 118px;
  }

  .bj-table-header {
    top: 12px;
  }

  .bj-table-brand {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  .bj-table-rules {
    font-size: 9px;
    margin-top: 2px;
  }

  .dealer-seat {
    top: 70px;
    width: 100%;
    min-width: 0;
  }

  .player-seat {
    width: 100%;
    min-width: 0;
  }

  .bj-seat-head {
    margin-bottom: 18px;
    padding: 7px 12px;
  }

  .bj-seat-name,
  .bj-seat-score {
    font-size: 12px;
  }

  .bj-seat-score {
    min-width: 28px;
    height: 24px;
    padding: 0 8px;
  }

  .bj-cards-area {
    min-height: 106px;
  }

  .bj-card {
    width: 60px;
    height: 88px;
    margin-left: -7px;
    border-radius: 8px;
  }

  .bj-center-zone {
    top: 170px;
    left: 6px;
    width: 84px;
  }

  .bj-deck-stack {
    width: 50px;
    height: 54px;
    margin: 0 auto 8px;
  }

  .bj-deck-pile {
    width: 50px;
    top: 4px;
  }

  .bj-deck-back {
    width: 40px;
    left: 5px;
  }

  .bj-result-banner {
    min-width: 78px;
    width: 78px;
    font-size: 8px;
    padding: 5px 4px;
    line-height: 1.2;
  }

  #playerHand1Wrap {
    top: 285px;
    left: 50%;
  }

  #playerHand2Wrap {
    top: 405px;
    left: 50%;
  }

  .bj-hand-bet {
    margin-top: 8px;
    font-size: 10px;
  }

  .bj-betting-zone {
    bottom: 146px;
  }

  .bj-bet-spot {
    width: 72px;
    height: 72px;
    border-width: 2px;
  }

  .bj-chip-stack-visual {
    top: 7px;
    width: 42px;
    height: 22px;
  }

  .bj-stack-chip {
    width: 20px;
    height: 20px;
    border-width: 2px;
  }

  .bj-stack-chip::before {
    inset: 3px;
  }

  .bj-bet-spot-label {
    margin-top: 14px;
    font-size: 8px;
    margin-bottom: 1px;
  }

  .bj-bet-spot-amount {
    font-size: 12px;
  }

  .bj-chip-rack {
    width: calc(100% - 12px);
    max-width: 320px;
    bottom: 80px;
    padding: 7px 8px;
    gap: 6px;
    border-radius: 14px;
    flex-wrap: nowrap;
    justify-content: center;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 12;
  }

  .bj-chip {
    width: 40px;
    height: 40px;
    font-size: 10px;
    border-width: 3px;
    flex: 0 0 auto;
  }

  .bj-chip::before {
    inset: 4px;
    border-width: 1px;
  }

  .bj-clear-bet-btn {
    height: 30px;
    padding: 0 8px;
    font-size: 8px;
  }

  .bj-bottom-bar {
    width: calc(100% - 12px);
    bottom: 4px;
    padding: 5px;
    gap: 4px;
    border-radius: 12px;
    flex-direction: column;
    align-items: stretch;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 9;
  }

  .bj-round-meta {
    gap: 3px;
    justify-content: center;
  }

  .bj-info-pill {
    min-height: 20px;
    padding: 3px 6px;
    font-size: 8px;
    line-height: 1;
    border-radius: 999px;
  }

  .bj-action-wrap {
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .bj-main-bet-btn,
  .bj-action-btn {
    height: 28px;
    min-width: 0;
    padding: 0 6px;
    font-size: 10px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 4px);
  }
}

@media (max-width: 420px) {
  .bj-topbar {
    padding: 8px 8px;
    min-height: 58px;
  }

  .bj-top-center {
    top: 10px;
    left: 60%;
    max-width: 120px;
  }

  .bj-game-title {
    font-size: 13px;
  }

  .bj-balance-box {
    min-width: 90px;
    padding: 5px 7px;
  }

  .bj-demo-balance {
    font-size: 12px;
  }

  .bj-table-wrap {
    padding: 60px 4px 4px;
  }

  .bj-table {
    height: calc(100dvh - 64px);
  }

  .dealer-seat {
    top: 68px;
  }

  .bj-cards-area {
    min-height: 100px;
  }

  .bj-card {
    width: 56px;
    height: 82px;
    margin-left: -6px;
  }

  .bj-center-zone {
    top: 164px;
    left: 6px;
    width: 78px;
  }

  .bj-deck-stack {
    width: 48px;
    height: 52px;
  }

  .bj-deck-pile {
    width: 48px;
  }

  .bj-deck-back {
    width: 39px;
    left: 4px;
  }

  .bj-result-banner {
    width: 74px;
    min-width: 74px;
    font-size: 8px;
    padding: 4px 4px;
  }

  #playerHand1Wrap {
    top: 272px;
  }

  #playerHand2Wrap {
    top: 388px;
  }

  .bj-betting-zone {
    bottom: 142px;
  }

  .bj-bet-spot {
    width: 68px;
    height: 68px;
  }

  .bj-bet-spot-amount {
    font-size: 11px;
  }

  .bj-chip-rack {
    bottom: 78px;
    max-width: 300px;
    gap: 5px;
    padding: 6px 7px;
  }

  .bj-chip {
    width: 37px;
    height: 37px;
    font-size: 9px;
  }

  .bj-clear-bet-btn {
    height: 28px;
    padding: 0 7px;
    font-size: 8px;
  }

  .bj-bottom-bar {
    bottom: 4px;
    padding: 4px;
  }

  .bj-main-bet-btn,
  .bj-action-btn {
    height: 27px;
    font-size: 9px;
  }

  .bj-info-pill {
    font-size: 7px;
    padding: 3px 5px;
  }
}
/* ============================= */
/* INSURANCE MODAL */
/* ============================= */
.bj-insurance-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
}

.bj-insurance-modal.show {
  display: flex !important;
}

.bj-insurance-card {
  width: min(420px, 100%);
  background: linear-gradient(180deg, rgba(20, 30, 25, 0.98) 0%, rgba(12, 18, 15, 0.98) 100%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  padding: 22px 18px 18px;
  text-align: center;
}

.bj-insurance-title {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}

.bj-insurance-text {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.86);
  margin-bottom: 18px;
}

.bj-insurance-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.bj-insurance-actions .bj-action-btn {
  flex: 1 1 0;
  min-width: 0;
  height: 46px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
}

.bj-insurance-yes {
  background: linear-gradient(180deg, #ffffff 0%, #dce3de 100%);
  color: #0d2d1c;
}

.bj-insurance-no {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.10);
}

@media (max-width: 991px) {
  .bj-insurance-card {
    width: min(360px, 100%);
    padding: 18px 14px 14px;
    border-radius: 16px;
  }

  .bj-insurance-title {
    font-size: 19px;
    margin-bottom: 8px;
  }

  .bj-insurance-text {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .bj-insurance-actions {
    flex-direction: column;
    gap: 8px;
  }

  .bj-insurance-actions .bj-action-btn {
    width: 100%;
    height: 42px;
    font-size: 13px;
  }
}