/* ============================================================
   BBM ANALYTICS – bbm.css (WHITE THEME)
   Modern Nepal Business Intelligence Dashboard
============================================================ */

/* ---- PAGE BASE ---- */
.bbm-page {
  background: #ffffff;
}

.bbm-page .navbar {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bbm-page .navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.bbm-page .nav-links a { color: rgba(0, 0, 0, 0.65); }
.bbm-page .nav-links a:hover,
.bbm-page .nav-links a.active { color: #C1121F; background: rgba(193, 18, 31, 0.1); }
.bbm-page .nav-hamburger span { background: rgba(0, 0, 0, 0.7); }

/* ============================================================
   HERO
============================================================ */
.bbm-hero {
  min-height: 50vh;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 40%, #f0f1f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 3rem 2rem 2rem;
}

.bbm-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bbm-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(193, 18, 31, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 18, 31, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.bbm-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  animation: bbmFloat 10s ease-in-out infinite;
}

.bbm-blob.b1 { width: 600px; height: 600px; background: #C1121F; top: -200px; right: -100px; animation-delay: 0s; }
.bbm-blob.b2 { width: 400px; height: 400px; background: #2a9d8f; bottom: -100px; left: -50px; animation-delay: 4s; }
.bbm-blob.b3 { width: 300px; height: 300px; background: #e9c46a; top: 40%; left: 45%; animation-delay: 8s; }

@keyframes bbmFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-40px) scale(1.05); }
  66% { transform: translate(-30px,30px) scale(0.95); }
}

.bbm-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}

.bbm-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border-radius: 50px;
  background: rgba(193, 18, 31, 0.1);
  border: 1px solid rgba(193, 18, 31, 0.25);
  color: #C1121F;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bbm-badge-dot {
  width: 8px;
  height: 8px;
  background: #C1121F;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

.bbm-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: #0d1117;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.bbm-gradient-text {
  background: linear-gradient(135deg, #C1121F, #e63946);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bbm-hero-subtitle {
  color: rgba(0, 0, 0, 0.6);
  font-size: clamp(0.9rem, 2vw, 1rem);
  max-width: 550px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.bbm-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.bbm-hero-stat { text-align: center; }
.bbm-stat-val {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #C1121F;
}
.bbm-stat-lbl {
  font-size: 0.7rem;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.bbm-hero-stat-divider {
  width: 1px;
  height: 35px;
  background: rgba(0, 0, 0, 0.1);
}

/* ============================================================
   PROGRESS SECTION
============================================================ */
.bbm-progress-section {
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 70px;
  z-index: 99;
  padding: 1rem 2rem;
}

.bbm-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 0.8rem;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
}

.bbm-progress-bar-wrap {
  max-width: 1100px;
  margin: 0 auto;
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.bbm-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #C1121F, #e63946);
  width: 0%;
  transition: width 0.3s ease;
  border-radius: 3px;
}

/* ============================================================
   PROGRESS STEPS (DOTS)
============================================================ */
#progressSteps {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.bbm-progress-step {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.bbm-progress-step.done {
  background: #2a9d8f;
  transform: scale(1.1);
}

.bbm-progress-step.current {
  background: #C1121F;
  transform: scale(1.3);
  box-shadow: 0 0 0 3px rgba(193, 18, 31, 0.2);
}

/* ============================================================
   DASHBOARD LAYOUT
============================================================ */
.bbm-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.bbm-map-panel, .bbm-chart-panel {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.2rem;
}

.bbm-map-panel {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

#nepalMapWrap {
  width: 100%;
  height: 200px;
  position: relative;
  margin-bottom: 0.8rem;
}

.nepal-province {
  fill: #e9c46a;
  stroke: #0d1117;
  stroke-width: 1.5;
  opacity: 0.7;
  cursor: pointer;
  transition: all 0.25s ease;
}

.nepal-province:hover {
  opacity: 1;
  stroke-width: 2;
  filter: brightness(1.15);
}

.nepal-province.highlighted {
  fill: #C1121F;
  opacity: 1;
}

.nepal-province.secondary {
  fill: #e63946;
  opacity: 0.9;
}

.nepal-province.tertiary {
  fill: #ff6b81;
  opacity: 0.75;
}

.nepal-province.muted {
  fill: #d0d0d0;
  opacity: 0.4;
}

.bbm-map-tooltip {
  position: absolute;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.75rem;
  color: #0d1117;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  white-space: nowrap;
  z-index: 1000;
  pointer-events: none;
}

.bbm-map-tooltip.visible {
  opacity: 1;
  visibility: visible;
}

.bbm-map-tooltip-title {
  font-weight: 700;
  color: #C1121F;
  margin-bottom: 6px;
  font-size: 0.8rem;
}

.bbm-map-tooltip-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.bbm-map-tooltip-label {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.7rem;
}

.bbm-map-tooltip-value {
  color: #0d1117;
  font-weight: 600;
}

#mapLegend {
  display: flex;
  gap: 1rem;
  font-size: 0.7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.bbm-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(0, 0, 0, 0.6);
}

.bbm-legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

/* ============================================================
   CHART PANEL
============================================================ */
#graphTabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0.8rem;
}

.bbm-graph-tab {
  padding: 0.5rem 0.8rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.bbm-graph-tab:hover {
  border-color: #C1121F;
  color: #C1121F;
}

.bbm-graph-tab.active {
  background: #C1121F;
  color: white;
  border-color: #C1121F;
}

#chartCanvas {
  width: 100%;
  height: 200px;
}

#kpiRow {
  display: flex;
  gap: 0.6rem;
  justify-content: space-around;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.bbm-kpi {
  text-align: center;
  flex: 1;
  min-width: 70px;
}

.bbm-kpi-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0d1117;
  display: block;
  margin-bottom: 0.2rem;
}

.bbm-kpi-val.up { color: #2a9d8f; }
.bbm-kpi-val.down { color: #e63946; }
.bbm-kpi-val.gold { color: #e9c46a; }

.bbm-kpi-label {
  font-size: 0.65rem;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   TOPIC & HINT
============================================================ */
.bbm-topic-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(193, 18, 31, 0.1);
  color: #C1121F;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.bbm-hint-text {
  background: rgba(74, 222, 128, 0.08);
  border-left: 3px solid #2a9d8f;
  padding: 0.6rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 1rem;
}

/* ============================================================
   QUESTION & OPTIONS
============================================================ */
.bbm-quiz-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

#questionText {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0d1117;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

#optionsGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.bbm-option-btn {
  padding: 1rem;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0d1117;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.25s ease;
  position: relative;
}

.bbm-option-btn:hover:not(:disabled) {
  border-color: #C1121F;
  background: rgba(193, 18, 31, 0.05);
  transform: translateY(-2px);
}

.bbm-option-btn:disabled {
  cursor: not-allowed;
}

.bbm-option-btn.correct {
  border-color: #2a9d8f;
  background: rgba(42, 157, 143, 0.1);
  color: #2a9d8f;
}

.bbm-option-btn.wrong {
  border-color: #e63946;
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
}

.bbm-option-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(193, 18, 31, 0.15);
  color: #C1121F;
  border-radius: 6px;
  font-weight: 700;
  flex-shrink: 0;
}

.bbm-option-btn.correct .bbm-option-key {
  background: rgba(42, 157, 143, 0.2);
  color: #2a9d8f;
}

.bbm-option-btn.wrong .bbm-option-key {
  background: rgba(230, 57, 70, 0.2);
  color: #e63946;
}

/* ============================================================
   EXPLANATION BOX
============================================================ */
#explanationBox {
  background: rgba(233, 196, 106, 0.1);
  border-left: 4px solid #e9c46a;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  display: none;
}

#explanationText {
  font-size: 0.9rem;
  color: #0d1117;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   ACTION BUTTONS
============================================================ */
.bbm-quiz-actions,
.bbm-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  justify-content: space-between;
  position: sticky;
  bottom: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 0.8rem;
}

#prevBtn, #nextBtn, #submitBtn {
  padding: 0.85rem 1.35rem;
  background: #C1121F;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

#prevBtn {
  background: rgba(0, 0, 0, 0.08);
  color: #0d1117;
}

#prevBtn:hover {
  background: rgba(0, 0, 0, 0.12);
}

#nextBtn:hover, #submitBtn:hover {
  background: #a00515;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(193, 18, 31, 0.3);
}

/* ============================================================
   RESULT SECTION
============================================================ */
#resultSection {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.result-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.1), rgba(42, 157, 143, 0.1));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(193, 18, 31, 0.2);
}

#finalScore {
  font-size: 3rem;
  font-weight: 800;
  color: #C1121F;
}

.result-score-total {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.5);
}

#resultTitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0d1117;
  margin-bottom: 0.5rem;
}

#resultSubtitle {
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.result-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.result-badge {
  background: rgba(0, 0, 0, 0.04);
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  flex: 1;
  min-width: 80px;
}

#correctCount {
  color: #2a9d8f;
  font-size: 1.8rem;
  font-weight: 700;
}

#wrongCount {
  color: #e63946;
  font-size: 1.8rem;
  font-weight: 700;
}

#accuracyPercent {
  color: #C1121F;
  font-size: 1.8rem;
  font-weight: 700;
}

.result-badge-label {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* ============================================================
   CONFETTI
============================================================ */
.confetti-piece {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  animation: confettiFall linear forwards;
}

@keyframes confettiFall {
  0% {
    top: 0;
    opacity: 1;
    transform: translateX(0) rotateZ(0deg);
  }
  100% {
    top: 100vh;
    opacity: 0;
    transform: translateX(var(--drift, 100px)) rotateZ(360deg);
  }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 768px) {
  .bbm-hero { min-height: 40vh; padding: 2rem 1rem; }
  .bbm-hero-title { font-size: 1.8rem; }
  .bbm-dashboard { grid-template-columns: 1fr; gap: 1rem; }
  .bbm-map-panel, .bbm-chart-panel { padding: 1rem; }
  #nepalMapWrap { height: 150px; }
  #chartCanvas { height: 150px; }
  #optionsGrid { grid-template-columns: 1fr; gap: 0.6rem; }
  .bbm-option-btn { padding: 0.8rem; }
  #progressSteps { gap: 0.3rem; }
  .bbm-progress-step { width: 8px; height: 8px; }
  #resultSection { margin: 1rem; padding: 1.5rem; }
}

@media (max-width: 480px) {
  .bbm-hero-stats { gap: 0.8rem; }
  .bbm-stat-val { font-size: 1.2rem; }
  #kpiRow { gap: 0.4rem; }
  .bbm-kpi { min-width: 60px; }
  .bbm-kpi-val { font-size: 0.8rem; }
}

/* ============================================================
   LAYOUT COMPATIBILITY (Match bbm.html structure)
============================================================ */
.bbm-progress-bar-wrap {
  position: sticky;
  top: 70px;
  z-index: 99;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.9rem 1.2rem;
  height: auto;
  max-width: none;
  margin: 0;
}

.bbm-progress-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px 1fr 120px;
  align-items: center;
  gap: 1rem;
}

.bbm-progress-left,
.bbm-progress-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bbm-progress-label,
.bbm-score-label {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.bbm-progress-qnum,
.bbm-score-val {
  font-weight: 800;
  color: #C1121F;
  font-family: 'Outfit', sans-serif;
}

.bbm-progress-track-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bbm-progress-steps {
  display: flex;
  gap: 0.45rem;
  justify-content: center;
  flex-wrap: wrap;
}

.bbm-progress-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 99px;
  height: 8px;
  overflow: hidden;
}

.bbm-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #C1121F, #e63946);
  transition: width 0.35s ease;
}

.bbm-quiz-wrap {
  max-width: 1100px;
  margin: 1.25rem auto 0;
  padding: 0 1.2rem 1.5rem;
}

.bbm-topic-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.bbm-question-num-label {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 600;
}

.bbm-question-text {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.45;
  color: #0d1117;
  font-weight: 700;
}

.bbm-hint-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.bbm-hint-icon {
  margin-top: 2px;
}

.bbm-nepal-map-wrap {
  width: 100%;
  height: 200px;
  position: relative;
}

.bbm-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.65rem;
}

.bbm-panel-title {
  font-weight: 700;
  color: #0d1117;
}

.bbm-panel-badge {
  font-size: 0.72rem;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(193, 18, 31, 0.1);
  color: #C1121F;
  border: 1px solid rgba(193, 18, 31, 0.2);
}

.bbm-chart-container {
  min-height: 220px;
}

.bbm-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1rem;
}

.bbm-explanation-box {
  display: none;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.1rem;
  background: rgba(233, 196, 106, 0.1);
  border-left: 4px solid #e9c46a;
  border-radius: 10px;
  padding: 0.9rem 1rem;
}

.bbm-exp-icon {
  font-size: 1rem;
}

.bbm-exp-title {
  font-size: 0.8rem;
  color: #C1121F;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.bbm-exp-text {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.55;
}

.bbm-result-wrap {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 2.5rem;
}

.bbm-result-card {
  width: 100%;
  max-width: 760px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  padding: 1.6rem;
  text-align: center;
}

.bbm-result-circle {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto 1rem;
}

.bbm-result-ring {
  width: 100%;
  height: 100%;
}

.bbm-result-score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bbm-result-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #0d1117;
  line-height: 1;
}

.bbm-result-denom {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 600;
}

.bbm-result-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #0d1117;
  margin-bottom: 0.45rem;
}

.bbm-result-subtitle {
  font-size: 0.98rem;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 1rem;
}

.bbm-result-stats {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.bbm-result-stat {
  min-width: 120px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
}

.bbm-result-stat-val {
  font-size: 1.55rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

.bbm-result-stat-val.green { color: #2a9d8f; }
.bbm-result-stat-val.red { color: #e63946; }
.bbm-result-stat-val.gold { color: #C1121F; }

.bbm-result-stat-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.5);
}

.bbm-result-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.bbm-result-actions .btn-outline {
  border-color: rgba(193, 18, 31, 0.38);
  color: #C1121F;
  background: #ffffff;
}

.bbm-result-actions .btn-outline:hover {
  border-color: #C1121F;
}

.bbm-actions .btn {
  padding: 11px 18px;
}

@media (max-width: 768px) {
  .bbm-progress-inner {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .bbm-options-grid {
    grid-template-columns: 1fr;
  }

  .bbm-result-card {
    padding: 1.2rem;
  }
}
