.bug-hunt-page {
  --bh-bg: #070b12;
  --bh-panel: rgba(16, 23, 34, 0.88);
  --bh-panel-solid: #101722;
  --bh-panel-2: #151e2c;
  --bh-border: rgba(255, 255, 255, 0.10);
  --bh-border-strong: rgba(255, 255, 255, 0.18);
  --bh-text: #f5f7fb;
  --bh-muted: #98a5b8;
  --bh-accent: #665bd5;
  --bh-accent-2: #8174e7;
  --bh-good: #8174e7;
  --bh-danger: #ff7d8b;
  --bh-warning: #ffd166;
  --bh-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  position: relative;
  color: var(--bh-text);
  overflow: hidden;
}

html[data-theme="light"] .bug-hunt-page {
  --bh-bg: #f4f7fb;
  --bh-panel: rgba(255, 255, 255, 0.92);
  --bh-panel-solid: #ffffff;
  --bh-panel-2: #edf2f7;
  --bh-border: rgba(18, 31, 48, 0.10);
  --bh-border-strong: rgba(18, 31, 48, 0.18);
  --bh-text: #121f30;
  --bh-muted: #617083;
  --bh-accent: #6557d9;
  --bh-accent-2: #7566e8;
  --bh-good: #6557d9;
  --bh-danger: #c33e50;
  --bh-warning: #a96f00;
  --bh-shadow: 0 30px 70px rgba(20, 38, 60, 0.12);
}

.bug-hunt-page *, .bug-hunt-page *::before, .bug-hunt-page *::after { box-sizing: border-box; }
.bug-hunt-page a { text-decoration: none; }
.bug-hunt-page button, .bug-hunt-page input { font: inherit; }

.bh-hero,
.bh-page-hero,
.bh-level-hero,
.bh-result-hero,
.bh-play-top,
.bh-play-main,
.bh-section {
  position: relative;
  background: var(--bh-bg);
}

.bh-hero::before,
.bh-page-hero::before,
.bh-level-hero::before,
.bh-result-hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -160px;
  top: -180px;
  background: radial-gradient(circle, rgba(117, 102, 232, 0.16), transparent 66%);
  pointer-events: none;
}

.bh-hero { padding: 150px 0 90px; min-height: 760px; display: flex; align-items: center; }
.bh-hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr); gap: 70px; align-items: center; }
.bh-hero-copy h1,
.bh-page-hero h1,
.bh-level-hero h1,
.bh-result-hero h1 {
  color: var(--bh-text);
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 18px 0 26px;
  font-weight: 800;
}
.bh-hero-copy h1 em { color: var(--bh-accent-2); font-style: normal; }
.bh-hero-copy > p,
.bh-page-hero > .container > p,
.bh-level-hero-grid > div:first-child > p,
.bh-result-hero > .container > p {
  color: var(--bh-muted);
  font-size: 19px;
  line-height: 1.75;
  max-width: 760px;
  margin: 0;
}

.bh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--bh-accent-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bh-hero-actions, .bh-result-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; align-items: center; }
.bh-btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 11px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 750;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease;
}
.bh-btn:hover { transform: translateY(-2px); }
.bh-btn:disabled { opacity: .65; cursor: wait; transform: none; }
.bh-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--bh-accent-2), var(--bh-accent));
  box-shadow: 0 14px 30px rgba(117, 102, 232, 0.22); }
.bh-btn-ghost { color: var(--bh-text); border-color: var(--bh-border-strong); background: rgba(255,255,255,.025); }
.bh-btn-level { width: 100%; color: var(--bh-text); border-color: var(--bh-border-strong); background: rgba(255,255,255,.025); margin-top: 22px; }
.bh-text-link { color: var(--bh-accent-2); font-weight: 750; display: inline-flex; align-items: center; gap: 8px; }
.bh-back-link { color: var(--bh-muted); display: inline-flex; gap: 8px; align-items: center; margin-bottom: 30px; font-weight: 700; }

.bh-trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: var(--bh-muted); font-size: 13px; }
.bh-trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.bh-trust-row i { color: var(--bh-accent); }

.bh-hero-card,
.bh-level-card,
.bh-board-card,
.bh-mission-card,
.bh-report-card,
.bh-sim-card {
  border: 1px solid var(--bh-border);
  background: var(--bh-panel);
  box-shadow: var(--bh-shadow);
  backdrop-filter: blur(18px);
}
.bh-hero-card { border-radius: 24px; padding: 28px; position: relative; overflow: hidden; }
.bh-hero-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -90px; bottom: -100px; border-radius: 50%; background: rgba(117,102,232,.12); filter: blur(30px); }
.bh-live-line { color: var(--bh-muted); font-size: 11px; font-weight: 800; letter-spacing: .14em; display: flex; align-items: center; gap: 8px; }
.bh-live-line span { width: 8px; height: 8px; border-radius: 50%; background: var(--bh-accent); box-shadow: 0 0 0 5px rgba(117,102,232,.12); }
.bh-versus-display { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 44px 0 30px; text-align: center; }
.bh-versus-display > div { padding: 24px 12px; border: 1px solid var(--bh-border); border-radius: 18px; background: rgba(255,255,255,.025); }
.bh-versus-display small { display: block; color: var(--bh-muted); letter-spacing: .14em; font-weight: 800; }
.bh-versus-display strong { display: block; font-size: 64px; line-height: 1; margin: 12px 0; color: var(--bh-text); }
.bh-versus-display .axqa strong { color: var(--bh-accent-2); }
.bh-versus-display span { color: var(--bh-muted); font-size: 12px; }
.bh-versus-display > b { color: var(--bh-muted); font-size: 13px; }
.bh-hero-meter { height: 6px; border-radius: 99px; background: rgba(255,255,255,.08); overflow: hidden; }
.bh-hero-meter span { display: block; height: 100%; width: 74%; background: linear-gradient(90deg, var(--bh-accent), var(--bh-accent-2)); border-radius: inherit; }
.bh-hero-card > p { color: var(--bh-muted); font-size: 12px; line-height: 1.65; margin: 20px 0 0; }

.bh-section { padding: 90px 0; }
.bh-section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.bh-section-head h2, .bh-result-board-grid h2 { color: var(--bh-text); font-size: clamp(34px, 4vw, 54px); line-height: 1.06; letter-spacing: -.04em; margin: 10px 0 0; }

.bh-level-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bh-level-card { border-radius: 20px; padding: 28px; transition: transform .2s ease, border-color .2s ease; }
.bh-level-card:hover { transform: translateY(-5px); border-color: rgba(117,102,232,.34); }
.bh-level-top { display: flex; justify-content: space-between; align-items: center; }
.bh-level-icon { width: 48px; height: 48px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: rgba(117,102,232,.11); color: var(--bh-accent-2); font-size: 20px; }
.bh-level-number { color: rgba(255,255,255,.12); font-size: 42px; font-weight: 900; line-height: 1; }
html[data-theme="light"] .bh-level-number { color: rgba(18,31,48,.10); }
.bh-level-label { display: block; color: var(--bh-accent-2); margin-top: 24px; font-size: 11px; letter-spacing: .12em; font-weight: 800; text-transform: uppercase; }
.bh-level-card h3 { color: var(--bh-text); font-size: 26px; margin: 9px 0 12px; letter-spacing: -.03em; }
.bh-level-card > p { color: var(--bh-muted); line-height: 1.65; min-height: 78px; }
.bh-level-meta { display: flex; gap: 18px; padding: 18px 0; margin-top: 15px; border-top: 1px solid var(--bh-border); border-bottom: 1px solid var(--bh-border); color: var(--bh-muted); font-size: 12px; }
.bh-level-meta strong { color: var(--bh-text); }
.bh-mini-board { padding-top: 18px; }
.bh-mini-board > small { color: var(--bh-muted); font-size: 10px; letter-spacing: .12em; font-weight: 800; }
.bh-mini-board > div { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px dashed var(--bh-border); font-size: 12px; }
.bh-mini-board > div span { color: var(--bh-muted); display: flex; gap: 9px; }
.bh-mini-board > div b { color: var(--bh-accent-2); width: 16px; }
.bh-mini-board > div strong { color: var(--bh-text); }

.bh-section-board { padding-top: 40px; }
.bh-board-shell { border: 1px solid var(--bh-border); border-radius: 26px; padding: 34px; background: linear-gradient(135deg, rgba(117,102,232,.07), rgba(255,255,255,.02)); display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.bh-board-copy h2 { color: var(--bh-text); font-size: 46px; line-height: 1.05; letter-spacing: -.04em; margin: 11px 0 18px; }
.bh-board-copy p { color: var(--bh-muted); line-height: 1.7; }
.bh-board-rules { display: grid; gap: 12px; margin-top: 25px; color: var(--bh-muted); }
.bh-board-rules span { display: flex; align-items: center; gap: 10px; }
.bh-board-rules i { color: var(--bh-good); }
.bh-board-card { border-radius: 18px; padding: 22px; }
.bh-board-card-large { max-width: 900px; margin: 0 auto 32px; }
.bh-board-title { display: flex; justify-content: space-between; align-items: center; padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid var(--bh-border); color: var(--bh-muted); font-size: 11px; letter-spacing: .12em; font-weight: 800; }
.bh-board-title i { color: var(--bh-accent-2); font-size: 18px; }
.bh-board-table-wrap { overflow-x: auto; }
.bh-board-table { width: 100%; border-collapse: collapse; min-width: 360px; }
.bh-board-table th { color: var(--bh-muted); text-align: left; font-size: 10px; letter-spacing: .11em; text-transform: uppercase; padding: 12px 8px; }
.bh-board-table td { color: var(--bh-text); padding: 13px 8px; border-top: 1px solid var(--bh-border); font-size: 13px; }
.bh-board-table th:last-child, .bh-board-table td:last-child { text-align: right; }
.bh-rank { width: 28px; height: 28px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.06); color: var(--bh-muted); font-weight: 800; }
.bh-rank-1 { background: rgba(255,209,102,.13); color: var(--bh-warning); }
.bh-rank-2, .bh-rank-3 { color: var(--bh-accent-2); }
.bh-time-chip { color: var(--bh-accent-2); font-variant-numeric: tabular-nums; font-weight: 800; }
.bh-empty-row { text-align: center !important; color: var(--bh-muted) !important; padding: 24px !important; }
.bh-board-card > .bh-text-link { margin-top: 16px; font-size: 13px; }
.bh-level-board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.bh-how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bh-how-grid > div { border-top: 1px solid var(--bh-border); padding: 24px 8px 0 0; }
.bh-how-grid > div > span { color: var(--bh-accent-2); font-size: 12px; letter-spacing: .12em; font-weight: 800; }
.bh-how-grid h3 { color: var(--bh-text); font-size: 20px; margin: 12px 0 8px; }
.bh-how-grid p { color: var(--bh-muted); line-height: 1.65; font-size: 14px; }

.bh-page-hero, .bh-level-hero { padding: 150px 0 65px; }
.bh-page-hero h1, .bh-level-hero h1 { font-size: clamp(44px, 5vw, 70px); }
.bh-level-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .78fr); gap: 60px; align-items: start; }
.bh-level-rules { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.bh-level-rules span { color: var(--bh-muted); border: 1px solid var(--bh-border); border-radius: 99px; padding: 9px 12px; font-size: 12px; }
.bh-level-rules i { color: var(--bh-accent); margin-right: 5px; }
.bh-inline-form { display: inline-block; margin: 0; }
.bh-personal-best { margin-top: 16px; display: flex; gap: 10px; align-items: baseline; color: var(--bh-muted); }
.bh-personal-best strong { color: var(--bh-accent-2); }

.bh-challenge-list { display: grid; gap: 10px; }
.bh-challenge-list-item { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--bh-border); border-radius: 14px; background: rgba(255,255,255,.02); }
.bh-challenge-num { width: 44px; height: 44px; border-radius: 12px; background: rgba(117,102,232,.08); color: var(--bh-accent-2); display: flex; align-items: center; justify-content: center; font-weight: 850; }
.bh-challenge-list-item small { color: var(--bh-accent-2); text-transform: uppercase; letter-spacing: .08em; font-size: 10px; }
.bh-challenge-list-item strong { display: block; color: var(--bh-text); margin-top: 3px; }
.bh-challenge-list-item p { margin: 3px 0 0; color: var(--bh-muted); font-size: 13px; }
.bh-challenge-list-item > i { color: var(--bh-muted); }
.bh-lock-note { margin: 18px 0 0; color: var(--bh-muted); font-size: 12px; }
.bh-lock-note i { color: var(--bh-accent); }

.bh-play-top { padding: 118px 0 18px; border-bottom: 1px solid var(--bh-border); position: sticky; top: 0; z-index: 5; }
.bh-play-bar { display: grid; grid-template-columns: 170px 1fr 170px; gap: 22px; align-items: center; }
.bh-play-level span, .bh-live-timer small { display: block; color: var(--bh-accent-2); font-size: 10px; letter-spacing: .12em; font-weight: 800; }
.bh-play-level strong { color: var(--bh-text); display: block; margin-top: 3px; }
.bh-play-progress > div:first-child { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 9px; }
.bh-play-progress span { color: var(--bh-muted); font-size: 11px; }
.bh-play-progress strong { color: var(--bh-text); font-size: 12px; }
.bh-progress-track { height: 5px; border-radius: 99px; overflow: hidden; background: rgba(255,255,255,.07); }
.bh-progress-track > span { height: 100%; display: block; border-radius: inherit; background: linear-gradient(90deg,var(--bh-accent),var(--bh-accent-2)); }
.bh-progress-1 { width: 0%; } .bh-progress-2 { width: 5%; } .bh-progress-3 { width: 10%; } .bh-progress-4 { width: 15%; } .bh-progress-5 { width: 20%; }
.bh-progress-6 { width: 25%; } .bh-progress-7 { width: 30%; } .bh-progress-8 { width: 35%; } .bh-progress-9 { width: 40%; } .bh-progress-10 { width: 45%; }
.bh-progress-11 { width: 50%; } .bh-progress-12 { width: 55%; } .bh-progress-13 { width: 60%; } .bh-progress-14 { width: 65%; } .bh-progress-15 { width: 70%; }
.bh-progress-16 { width: 75%; } .bh-progress-17 { width: 80%; } .bh-progress-18 { width: 85%; } .bh-progress-19 { width: 90%; } .bh-progress-20 { width: 95%; }
.bh-live-timer { text-align: right; }
.bh-live-timer strong { display: block; color: var(--bh-text); font-size: 24px; font-variant-numeric: tabular-nums; }
.bh-live-timer > span { color: var(--bh-muted); font-size: 10px; }
.bh-play-main { padding: 38px 0 90px; min-height: 760px; }
.bh-play-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr); gap: 26px; align-items: start; }
.bh-mission-card, .bh-report-card { border-radius: 20px; padding: 28px; }
.bh-mission-head { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.bh-mission-card h1 { color: var(--bh-text); font-size: 34px; letter-spacing: -.04em; margin: 8px 0 0; }
.bh-mission-card > p, .bh-report-card > p { color: var(--bh-muted); line-height: 1.65; }
.bh-difficulty { padding: 7px 10px; border-radius: 99px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border: 1px solid var(--bh-border); }
.bh-difficulty.easy { color: var(--bh-good); } .bh-difficulty.medium { color: var(--bh-warning); } .bh-difficulty.hard { color: var(--bh-danger); }
.bh-mission-instruction { display: flex; gap: 14px; align-items: center; padding: 16px; border-radius: 14px; background: rgba(117,102,232,.07); border: 1px solid rgba(117,102,232,.15); margin: 22px 0; }
.bh-mission-instruction > i { color: var(--bh-accent-2); font-size: 18px; }
.bh-mission-instruction small { color: var(--bh-muted); font-size: 9px; letter-spacing: .12em; font-weight: 800; }
.bh-mission-instruction strong { display: block; color: var(--bh-text); font-size: 13px; margin-top: 2px; }

.bh-aut { border: 1px solid var(--bh-border); border-radius: 16px; overflow: hidden; background: #0b111b; color: #eef4fb; }
html[data-theme="light"] .bh-aut { background: #111925; color: #eef4fb; }
.bh-aut-bar { min-height: 46px; padding: 0 14px; display: grid; grid-template-columns: 90px 1fr 70px; align-items: center; gap: 10px; background: #121c29; border-bottom: 1px solid rgba(255,255,255,.08); }
.bh-window-dots { display: flex; gap: 6px; }.bh-window-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.16); }
.bh-aut-title { text-align: center; color: #8fa0b5; font-size: 11px; }
.bh-aut-bar > span { color: #7566e8; font-size: 9px; font-weight: 850; text-align: right; letter-spacing: .1em; }
.bh-form-stage, .bh-commerce-stage, .bh-data-stage, .bh-api-stage, .bh-mobile-stage { padding: 28px; min-height: 310px; display: flex; flex-direction: column; justify-content: center; }
.bh-form-stage label { color: #9aa9ba; font-size: 11px; }
.bh-form-stage input { width: 100%; margin-top: 8px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: #111b29; color: #f4f7fb; padding: 13px; }
.bh-aut-action {
  margin-top: 18px;
  border: 0;
  min-height: 46px;
  border-radius: 10px;
  background: #7566e8;
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
}
.bh-aut-action.is-complete { background: #304052; color: #c8d3df; }
.bh-aut-observed, .bh-api-response { margin-top: 18px; padding: 14px; border-radius: 10px; border: 1px solid rgba(255,125,139,.24); background: rgba(255,125,139,.07); }
.bh-aut-observed small, .bh-api-response span { display: block; color: #ff9da8; font-size: 9px; font-weight: 850; letter-spacing: .12em; margin-bottom: 5px; }
.bh-aut-observed strong { color: #f6f8fb; font-size: 13px; line-height: 1.55; }
.bh-commerce-row { display: flex; justify-content: space-between; gap: 20px; padding: 20px; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; }
.bh-commerce-row small { display: block; color: #8fa0b5; }.bh-commerce-row strong { display: block; margin-top: 4px; color: #f4f7fb; }.bh-commerce-row > span { color: #7566e8; font-size: 10px; }
.bh-data-toolbar { display: flex; justify-content: space-between; gap: 18px; align-items: center; color: #f4f7fb; }.bh-data-toolbar span { color: #8fa0b5; font-size: 11px; }
.bh-data-rows { display: grid; gap: 8px; margin: 20px 0 2px; }.bh-data-rows span { display: block; height: 30px; border-radius: 7px; background: linear-gradient(90deg,#152232 0 38%,#101a27 38% 70%,#152232 70%); border: 1px solid rgba(255,255,255,.04); }
.bh-api-line, .bh-api-response { padding: 14px; border-radius: 10px; background: #0a121d; border: 1px solid rgba(255,255,255,.08); }
.bh-api-line span { display: block; color: #7566e8; font-size: 9px; letter-spacing: .12em; font-weight: 850; margin-bottom: 8px; }
.bh-api-line code, .bh-api-response code { color: #d3dfec; white-space: normal; overflow-wrap: anywhere; }
.bh-mobile-stage { align-items: center; }
.bh-phone-frame { width: 260px; min-height: 430px; border: 8px solid #263446; border-radius: 34px; background: #08101a; position: relative; padding: 18px 12px 12px; box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.bh-phone-notch { position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 86px; height: 16px; border-radius: 99px; background: #263446; }
.bh-phone-screen { padding: 22px 8px 8px; }.bh-phone-screen > small { color: #7566e8; font-size: 8px; letter-spacing: .12em; }.bh-phone-screen h3 { color: #f4f7fb; font-size: 21px; margin: 9px 0 18px; }.bh-mobile-card { padding: 14px; border-radius: 12px; background: #111c2a; border: 1px solid rgba(255,255,255,.08); }.bh-mobile-card span { color: #8fa0b5; font-size: 10px; }.bh-mobile-card strong { display: block; color: #f4f7fb; margin-top: 6px; font-size: 12px; }

.bh-report-card { position: sticky; top: 230px; }
.bh-report-card h2 { color: var(--bh-text); font-size: 26px; letter-spacing: -.035em; margin: 9px 0 10px; }
.bh-report-locked { padding: 18px; border: 1px dashed var(--bh-border-strong); border-radius: 12px; color: var(--bh-muted); display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.bh-report-locked i { color: var(--bh-accent); }
.bh-finding-form { margin-top: 18px; }
.bh-finding-options { display: grid; gap: 9px; }
.bh-finding-options label { display: block; cursor: pointer; margin: 0; }
.bh-finding-options input { position: absolute; opacity: 0; pointer-events: none; }
.bh-finding-options label > span { min-height: 58px; display: grid; grid-template-columns: 34px 1fr; align-items: center; gap: 10px; padding: 11px; border: 1px solid var(--bh-border); border-radius: 11px; color: var(--bh-muted); font-size: 12px; line-height: 1.45; transition: border-color .16s ease, background .16s ease, color .16s ease; }
.bh-finding-options label > span b { width: 30px; height: 30px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.04); color: var(--bh-muted); font-size: 10px; }
.bh-finding-options input:checked + span { border-color: rgba(117,102,232,.55); background: rgba(117,102,232,.08); color: var(--bh-text); }
.bh-finding-options label.is-wrong > span { opacity: .45; text-decoration: line-through; border-color: rgba(255,125,139,.25); }
.bh-submit-finding { width: 100%; margin-top: 14px; }
.bh-report-feedback { min-height: 24px; margin-top: 12px; color: var(--bh-muted); font-size: 12px; }
.bh-report-feedback.success { color: var(--bh-good); }.bh-report-feedback.error { color: var(--bh-danger); }
.bh-score-line { display: flex; justify-content: space-between; gap: 10px; border-top: 1px solid var(--bh-border); padding-top: 14px; margin-top: 10px; color: var(--bh-muted); font-size: 12px; }.bh-score-line strong { color: var(--bh-accent-2); }

.bh-result-hero { padding: 150px 0 70px; text-align: center; }
.bh-result-hero > .container > p { margin-left: auto; margin-right: auto; }
.bh-result-score-grid { display: grid; grid-template-columns: 1fr 70px 1fr; gap: 18px; align-items: center; max-width: 860px; margin: 42px auto 24px; }
.bh-result-score { padding: 28px; border: 1px solid var(--bh-border); border-radius: 18px; background: var(--bh-panel); }
.bh-result-score small { color: var(--bh-muted); letter-spacing: .12em; font-weight: 800; }
.bh-result-score strong { display: block; color: var(--bh-text); font-size: 48px; font-variant-numeric: tabular-nums; line-height: 1; margin: 12px 0; }
.bh-result-score.axqa strong { color: var(--bh-accent-2); }
.bh-result-score span { color: var(--bh-muted); font-size: 11px; }
.bh-result-vs { color: var(--bh-muted); font-weight: 850; }
.bh-sim-card { max-width: 980px; margin: 24px auto 0; border-radius: 20px; padding: 24px; text-align: left; }
.bh-sim-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.bh-sim-head span { color: var(--bh-accent-2); font-size: 10px; letter-spacing: .12em; font-weight: 850; }.bh-sim-head strong { display: block; color: var(--bh-text); margin-top: 5px; }
.bh-sim-steps { display: grid; gap: 8px; margin-top: 20px; }.bh-sim-steps > div { display: grid; grid-template-columns: 24px 1fr auto; gap: 10px; align-items: center; padding: 12px; border: 1px solid var(--bh-border); border-radius: 10px; color: var(--bh-muted); font-size: 12px; }.bh-sim-steps > div.done {
  color: var(--bh-text);
  border-color: rgba(117,102,232,.22); }.bh-sim-steps > div.done i, .bh-sim-steps > div.done strong { color: var(--bh-good); }.bh-sim-steps strong { color: var(--bh-muted); font-size: 10px; }
.bh-sim-disclosure { display: flex; gap: 9px; align-items: start; color: var(--bh-muted); font-size: 11px; margin-top: 18px; line-height: 1.6; }.bh-sim-disclosure i { color: var(--bh-accent); margin-top: 2px; }
.bh-result-actions { justify-content: center; }
.bh-result-board-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }.bh-result-board-grid > div:first-child > p { color: var(--bh-muted); line-height: 1.7; }

.bh-btn.is-loading { position: relative; }
.bh-btn.is-loading::after { content: ""; width: 13px; height: 13px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: bhSpin .65s linear infinite; }
@keyframes bhSpin { to { transform: rotate(360deg); } }

@media (max-width: 1199px) {
  .bh-hero-grid, .bh-level-hero-grid { gap: 36px; }
  .bh-level-grid, .bh-level-board-grid { grid-template-columns: repeat(2, 1fr); }
  .bh-level-card:last-child, .bh-level-board-grid > :last-child { grid-column: 1 / -1; }
  .bh-how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .bh-hero { padding-top: 125px; min-height: auto; }
  .bh-hero-grid, .bh-level-hero-grid, .bh-board-shell, .bh-play-grid, .bh-result-board-grid { grid-template-columns: 1fr; }
  .bh-hero-card { max-width: 680px; }
  .bh-play-top { position: relative; padding-top: 105px; }
  .bh-play-bar { grid-template-columns: 1fr 1fr; }
  .bh-play-progress { order: 3; grid-column: 1 / -1; }
  .bh-report-card { position: static; }
  .bh-result-score-grid { grid-template-columns: 1fr; max-width: 620px; }
  .bh-result-vs { padding: 0; }
}

@media (max-width: 767px) {
  .bh-hero, .bh-page-hero, .bh-level-hero, .bh-result-hero { padding-top: 112px; }
  .bh-hero { padding-bottom: 65px; }
  .bh-section { padding: 64px 0; }
  .bh-section-head { align-items: start; flex-direction: column; }
  .bh-level-grid, .bh-level-board-grid, .bh-how-grid { grid-template-columns: 1fr; }
  .bh-level-card:last-child, .bh-level-board-grid > :last-child { grid-column: auto; }
  .bh-board-shell { padding: 22px; }
  .bh-board-copy h2 { font-size: 36px; }
  .bh-versus-display { grid-template-columns: 1fr; }.bh-versus-display > b { padding: 2px; }
  .bh-level-meta { flex-direction: column; gap: 6px; }
  .bh-challenge-list-item { grid-template-columns: 45px 1fr; }.bh-challenge-list-item > i { display: none; }.bh-challenge-list-item p { display: none; }
  .bh-play-bar { grid-template-columns: 1fr auto; }.bh-play-level { display: none; }.bh-play-progress { grid-column: 1 / -1; }.bh-live-timer { grid-column: 2; grid-row: 1; }
  .bh-mission-card, .bh-report-card { padding: 20px; }
  .bh-mission-head { flex-direction: column; }
  .bh-aut-bar { grid-template-columns: 70px 1fr 48px; }
  .bh-form-stage, .bh-commerce-stage, .bh-data-stage, .bh-api-stage, .bh-mobile-stage { padding: 18px; }
  .bh-phone-frame { width: min(260px, 100%); }
  .bh-sim-head { flex-direction: column; align-items: stretch; }
  .bh-result-score strong { font-size: 40px; }
}
