.bcr-dashboard {
  --bcr-bg: #f5f6f1;
  --bcr-panel: #ffffff;
  --bcr-panel-soft: #fbfbf7;
  --bcr-text: #151515;
  --bcr-muted: #666b63;
  --bcr-line: rgba(21, 21, 21, 0.08);
  --bcr-accent: #ffbb3a;
  --bcr-accent-2: #f3a600;
  --bcr-green: #a5dc5c;
  --bcr-green-2: #8eca3f;
  --bcr-white: #ffffff;
  --bcr-shadow: 0 18px 45px rgba(22, 24, 20, 0.08);
  --bcr-shadow-soft: 0 10px 28px rgba(22, 24, 20, 0.05);
  --bcr-radius-xl: 28px;
  --bcr-radius-lg: 22px;
  --bcr-radius-md: 16px;
  color: var(--bcr-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bcr-dashboard * { box-sizing: border-box; }
.bcr-dashboard .muted { color: var(--bcr-muted); }
.bcr-dashboard .small { font-size: 13px; }
.bcr-dashboard h1,
.bcr-dashboard h2,
.bcr-dashboard h3,
.bcr-dashboard h4,
.bcr-dashboard p { margin-top: 0; }
.bcr-dashboard p { margin-bottom: 0; }

.bcr-layout {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 100vh;
  transition: grid-template-columns .28s ease;
}

.bcr-layout--expanded { grid-template-columns: 280px 1fr; }

.bcr-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: linear-gradient(180deg,#fff 0%,#fbfbf6 100%);
  border-right: 1px solid var(--bcr-line);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  box-shadow: 6px 0 28px rgba(0,0,0,.03);
  z-index: 5;
}

.bcr-sidebar-header {
  display:flex;
  align-items:center;
  gap:12px;
  min-height:54px;
  padding:4px 6px 18px;
  border-bottom:1px solid rgba(21,21,21,.06);
}

.bcr-menu-toggle {
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid rgba(21,21,21,.06);
  background:var(--bcr-white);
  cursor:pointer;
  display:grid;
  place-items:center;
  box-shadow:var(--bcr-shadow-soft);
  transition:.22s ease;
  flex:0 0 auto;
  padding:0;
}

.bcr-menu-toggle:hover { transform: translateY(-1px); }

.bcr-menu-toggle span {
  display:block;
  width:18px;
  height:2px;
  border-radius:999px;
  background:var(--bcr-text);
  margin:3px 0;
}

.bcr-brand-copy,
.bcr-nav-labels {
  opacity:0;
  transform:translateX(-8px);
  transition:.24s ease;
  white-space:nowrap;
  pointer-events:none;
}

.bcr-layout--expanded .bcr-brand-copy,
.bcr-layout--expanded .bcr-nav-labels,
.bcr-layout--expanded .bcr-sidebar-footer {
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}

.bcr-brand-copy h1 {
  margin:0;
  font-size:22px;
  letter-spacing:.04em;
  line-height:1;
}

.bcr-brand-copy p {
  margin-top:6px;
  font-size:12px;
  color:var(--bcr-muted);
}

.bcr-nav {
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:6px;
}

.bcr-nav-item {
  width:100%;
  border:0;
  background:transparent;
  padding:12px;
  min-height:58px;
  border-radius:18px;
  transition:.24s ease;
  cursor:pointer;
  text-align:left;
  display:flex;
  align-items:center;
  gap:14px;
  border:1px solid transparent;
}

.bcr-nav-item:hover,
.bcr-nav-item.active {
  background: linear-gradient(135deg, rgba(255,187,58,.15), rgba(165,220,92,.16));
  border-color: rgba(165,220,92,.22);
  box-shadow: var(--bcr-shadow-soft);
}

.bcr-nav-icon {
  width:40px;
  height:40px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:#f6f7f1;
  flex:0 0 auto;
  font-size:18px;
}

.bcr-nav-title {
  display:block;
  font-size:15px;
  font-weight:700;
  color:var(--bcr-text);
  line-height:1.2;
}

.bcr-nav-sub {
  display:block;
  font-size:12px;
  color:var(--bcr-muted);
  margin-top:4px;
}

.bcr-sidebar-footer {
  margin-top:auto;
  padding:16px;
  border-radius:20px;
  background:linear-gradient(135deg, rgba(255,187,58,.16), rgba(165,220,92,.18));
  border:1px solid rgba(165,220,92,.2);
  opacity:0;
  transform:translateY(10px);
  transition:.24s ease;
}

.bcr-sidebar-footer h3 {
  margin:0 0 6px;
  font-size:15px;
}

.bcr-sidebar-footer p {
  font-size:12px;
  color:var(--bcr-muted);
  line-height:1.6;
}

.bcr-content {
  padding:24px;
  padding-bottom:24px;
  display:flex;
  flex-direction:column;
  gap:22px;
}

.bcr-topbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:24px 26px;
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.98));
  border:1px solid rgba(21,21,21,.06);
  border-radius:var(--bcr-radius-xl);
  box-shadow:var(--bcr-shadow);
}

.bcr-welcome h2 {
  margin-bottom:8px;
  font-size:34px;
  line-height:1.08;
}

.bcr-welcome p {
  color:var(--bcr-muted);
  font-size:15px;
  line-height:1.6;
  max-width:680px;
}

.bcr-stats {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.bcr-pill {
  min-width:165px;
  padding:14px 16px;
  border-radius:18px;
  background:var(--bcr-white);
  border:1px solid rgba(21,21,21,.06);
  box-shadow:var(--bcr-shadow-soft);
}

.bcr-pill .label {
  font-size:12px;
  color:var(--bcr-muted);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.bcr-pill .value {
  margin-top:8px;
  font-size:24px;
  font-weight:800;
}

.bcr-mobile-profile {
  display:none;
  background:linear-gradient(135deg, rgba(255,187,58,.22), rgba(165,220,92,.18));
  border:1px solid rgba(21,21,21,.06);
  border-radius:26px;
  box-shadow:var(--bcr-shadow);
  padding:18px;
  position:relative;
  overflow:hidden;
}

.bcr-mobile-profile:before {
  content:"";
  position:absolute;
  right:-30px;
  top:-30px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:rgba(255,255,255,.35);
}

.bcr-mobile-profile-top {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  position:relative;
  z-index:1;
}

.bcr-profile-meta {
  display:flex;
  gap:12px;
  align-items:center;
}

.bcr-avatar {
  width:46px;
  height:46px;
  border-radius:50%;
  background:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.bcr-profile-meta small,
.bcr-profile-chips small {
  display:block;
  font-size:11px;
  color:rgba(21,21,21,.58);
  margin-bottom:4px;
}

.bcr-profile-meta strong,
.bcr-profile-chips strong {
  display:block;
  font-size:16px;
}

.bcr-profile-chips { text-align:right; }

.bcr-mobile-quick-actions {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-top:16px;
  position:relative;
  z-index:1;
}

.bcr-quick-action {
  background:rgba(255,255,255,.7);
  border:1px solid rgba(21,21,21,.06);
  border-radius:18px;
  padding:12px 8px;
  text-align:center;
  box-shadow:var(--bcr-shadow-soft);
  cursor:pointer;
}

.bcr-quick-action .icon {
  width:34px;
  height:34px;
  border-radius:12px;
  background:#fff;
  display:grid;
  place-items:center;
  margin:0 auto 8px;
  font-size:18px;
}

.bcr-quick-action span:last-child {
  font-size:11px;
  font-weight:700;
  line-height:1.25;
  display:block;
}

.bcr-screen { display:none; }
.bcr-screen.is-active { display:block; }

.bcr-grid { display:grid; gap:22px; }
.bcr-grid-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }
.bcr-grid-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.bcr-gap-22 { gap:22px; }

.bcr-card {
  background:var(--bcr-panel);
  border:1px solid rgba(21,21,21,.06);
  border-radius:var(--bcr-radius-lg);
  box-shadow:var(--bcr-shadow);
  padding:22px;
  position:relative;
  overflow:hidden;
}

.bcr-card-soft { background:linear-gradient(180deg, #fffef9 0%, #fff 100%); }

.bcr-card:before {
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(255,187,58,.10), transparent 28%);
  pointer-events:none;
}

.bcr-action-card {
  min-height:220px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.bcr-card-icon {
  width:62px;
  height:62px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:28px;
  background:linear-gradient(135deg, rgba(255,187,58,.22), rgba(165,220,92,.22));
  margin-bottom:18px;
}

.bcr-action-card h3 {
  margin-bottom:10px;
  font-size:24px;
}

.bcr-action-card p,
.bcr-copy {
  color:var(--bcr-muted);
  line-height:1.75;
}

.bcr-section-title {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}

.bcr-section-title h3 {
  margin-bottom:0;
  font-size:22px;
}

.bcr-btn {
  border:0;
  border-radius:16px;
  padding:14px 18px;
  font-weight:800;
  cursor:pointer;
  transition:.2s ease;
  font-size:14px;
}

.bcr-btn:hover { transform:translateY(-2px); }

.bcr-btn-primary {
  background:linear-gradient(135deg,var(--bcr-green),var(--bcr-green-2));
  color:#132008;
  box-shadow:0 10px 24px rgba(165,220,92,.28);
}

.bcr-btn-accent {
  background:linear-gradient(135deg,var(--bcr-accent),var(--bcr-accent-2));
  color:#2a1900;
  box-shadow:0 10px 24px rgba(255,187,58,.26);
}

.bcr-btn-light {
  background:#fff;
  color:var(--bcr-text);
  border:1px solid rgba(21,21,21,.08);
  box-shadow:var(--bcr-shadow-soft);
}

.bcr-tag {
  padding:10px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  white-space:nowrap;
  border:1px solid transparent;
  background:rgba(165,220,92,.18);
  color:#4a6d18;
}

.bcr-tag.gold {
  background:rgba(255,187,58,.20);
  color:#8e5b00;
}

.bcr-inline-tag {
  display:inline-flex;
  margin-bottom:16px;
}

.bcr-progress-wrap { display:grid; gap:12px; }

.bcr-progress-bar {
  width:100%;
  height:16px;
  background:#f1f3eb;
  border-radius:999px;
  overflow:hidden;
  border:1px solid rgba(21,21,21,.05);
}

.bcr-progress-fill {
  height:100%;
  background:linear-gradient(90deg,var(--bcr-green),var(--bcr-accent));
  border-radius:inherit;
}

.bcr-list,
.bcr-odds-table,
.bcr-coupon-grid { display:grid; gap:14px; }

.bcr-list-item,
.bcr-row,
.bcr-coupon,
.bcr-mini-stat,
.bcr-result-box,
.bcr-mobile-more-btn {
  border:1px solid rgba(21,21,21,.06);
}

.bcr-list-item {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 18px;
  border-radius:18px;
  background:var(--bcr-panel-soft);
}

.bcr-list-item h4 {
  margin-bottom:6px;
  font-size:16px;
}

.bcr-list-item p {
  color:var(--bcr-muted);
  font-size:13px;
  line-height:1.6;
}

.bcr-tag-sm {
  padding:10px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  background:rgba(255,187,58,.20);
  color:#8e5b00;
}

.bcr-tag-sm.green {
  background:rgba(165,220,92,.18);
  color:#4a6d18;
}

.bcr-game-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  align-items: start;
}

.bcr-wheel-wrap,
.bcr-box-wrap,
.bcr-double-wrap {
  min-height: 620px;
  position: relative;
}

.bcr-dashboard .bcr-box-wrap {
  max-width: 100%;
}

.bcr-dashboard .bcr-box-wrap,
.bcr-dashboard .bcr-mystery-shell {
  overflow-x: hidden;
}

.bcr-wheel-wrap,
.bcr-double-wrap {
  overflow: hidden;
}

.bcr-box-wrap {
  overflow: visible;
}

.bcr-wheel-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 28px 22px 22px;
}

.bcr-box-wrap,
.bcr-double-wrap {
  display: grid;
  place-items: center;
}

.bcr-box-wrap {
  padding: 0;
}

.bcr-wheel-wrap:before,
.bcr-box-wrap:before,
.bcr-double-wrap:before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,187,58,.18), transparent 68%);
  filter: blur(12px);
}

.bcr-wheel {
  width: 400px;
  height: 400px;
  margin-top: 86px;
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow:
    0 0 0 10px rgba(255,187,58,.15),
    0 18px 42px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
  transition: transform 5.3s cubic-bezier(.12,.9,.08,1);
  background: conic-gradient(
    #a5dc5c 0deg 51.428deg,
    #ffbb3a 51.428deg 102.856deg,
    #fff 102.856deg 154.284deg,
    #a5dc5c 154.284deg 205.712deg,
    #ffbb3a 205.712deg 257.14deg,
    #fff 257.14deg 308.568deg,
    #a5dc5c 308.568deg 360deg
  );
}

.bcr-wheel-center {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  border: 6px solid rgba(21,21,21,.06);
  display: grid;
  place-items: center;
  z-index: 2;
  font-weight: 900;
  letter-spacing: .04em;
  font-size: 14px;
  line-height: 1.15;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  text-align: center;
}

.bcr-pointer {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 32px solid #151515;
  z-index: 3;
  filter: drop-shadow(0 10px 10px rgba(0,0,0,.14));
}

.bcr-wheel-label {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 104px;
  text-align: center;
  transform-origin: 0 0;
  font-size: 13px;
  font-weight: 900;
  color: #1b1b1b;
  letter-spacing: .01em;
  line-height: 1;
}

.bcr-side-panel {
  display: grid;
  gap: 22px;
  align-content: start;
}

.bcr-result-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--bcr-panel-soft);
  line-height: 1.8;
  min-height: 88px;
}

.bcr-result-box strong {
  font-size: 16px;
}

.bcr-row {
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  padding:14px 0;
  border-width:0 0 1px 0;
  border-style:solid;
  border-color:rgba(21,21,21,.06);
}

.bcr-odds-table .bcr-row:last-child { border-bottom:0; }

.bcr-double-inner {
  text-align:center;
  max-width:580px;
  position:relative;
  z-index:2;
}

.bcr-double-inner h2 {
  font-size:42px;
  margin-bottom:10px;
}

.bcr-double-copy {
  font-size:18px;
  max-width:520px;
  margin:0 auto;
}

.bcr-double-value {
  font-size:74px;
  font-weight:900;
  line-height:1;
  margin:12px 0;
  color:#2d2d2d;
}

.bcr-double-actions,
.bcr-actions-row,
.bcr-modal-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.bcr-double-actions {
  justify-content:center;
  margin-top:22px;
}

.bcr-actions-row { margin-top:18px; }

.bcr-result-box {
  margin-top:18px;
  padding:18px;
  border-radius:18px;
  background:var(--bcr-panel-soft);
  line-height:1.8;
}

.bcr-left { text-align:left; }

.bcr-coupon {
  padding:18px;
  border-radius:20px;
  background:linear-gradient(135deg, rgba(255,187,58,.14), rgba(165,220,92,.16));
  border:1px dashed rgba(21,21,21,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.bcr-coupon strong {
  display:block;
  margin-bottom:6px;
  font-size:20px;
}

.bcr-stat-row {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.bcr-mini-stat {
  padding:18px;
  border-radius:18px;
  background:var(--bcr-panel-soft);
}

.bcr-mini-stat .number {
  font-size:28px;
  font-weight:900;
  margin-top:8px;
}

.bcr-mobile-bottom-nav {
  display:none;
  position:fixed;
  left:14px;
  right:14px;
  bottom:12px;
  height:76px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(21,21,21,.06);
  border-radius:28px;
  box-shadow:0 18px 50px rgba(0,0,0,.10);
  z-index:11;
  padding:8px 10px;
  align-items:flex-end;
  justify-content:space-between;
  backdrop-filter:blur(12px);
}

.bcr-mobile-nav-btn {
  flex:1;
  border:0;
  background:transparent;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  gap:4px;
  color:var(--bcr-muted);
  font-size:11px;
  font-weight:700;
  cursor:pointer;
  padding:4px 4px 6px;
  transition:.22s ease;
}

.bcr-mobile-nav-btn .icon {
  width:34px;
  height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-size:18px;
  transition:.22s ease;
}

.bcr-mobile-nav-btn.is-active {
  color:var(--bcr-text);
  transform:translateY(-12px);
}

.bcr-mobile-nav-btn.is-active .icon {
  width:48px;
  height:48px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--bcr-green),var(--bcr-accent));
  color:#18210e;
  box-shadow:0 14px 26px rgba(165,220,92,.28);
}

.bcr-mobile-center-wrap {
  position:relative;
  width:82px;
  display:flex;
  justify-content:center;
  flex:0 0 82px;
}

.bcr-mobile-center-btn {
  position:absolute;
  bottom:8px;
  width:66px;
  height:66px;
  border-radius:50%;
  border:6px solid #f5f6f1;
  background:linear-gradient(135deg,var(--bcr-green),var(--bcr-accent));
  box-shadow:0 18px 35px rgba(165,220,92,.32);
  display:grid;
  place-items:center;
  cursor:pointer;
  color:#172108;
  font-size:24px;
  transition:.22s ease;
}

.bcr-mobile-center-wrap.is-active .bcr-mobile-center-btn {
  bottom:18px;
  box-shadow:0 22px 38px rgba(255,187,58,.26);
}

.bcr-mobile-center-label {
  position:absolute;
  bottom:-2px;
  font-size:11px;
  font-weight:700;
  color:var(--bcr-muted);
}

.bcr-mobile-center-wrap.is-active .bcr-mobile-center-label {
  color:var(--bcr-text);
}

.bcr-mobile-more-sheet {
  display:none;
  position:fixed;
  left:14px;
  right:14px;
  bottom:96px;
  background:#fff;
  border:1px solid rgba(21,21,21,.06);
  border-radius:24px;
  box-shadow:0 24px 60px rgba(0,0,0,.14);
  padding:14px;
  z-index:12;
}

.bcr-mobile-more-sheet.is-open { display:block; }

.bcr-mobile-more-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.bcr-mobile-more-btn {
  background:#fafbf6;
  border-radius:18px;
  padding:14px 12px;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:var(--bcr-text);
  cursor:pointer;
}

.bcr-mobile-more-btn .icon {
  width:36px;
  height:36px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(255,187,58,.18), rgba(165,220,92,.18));
  display:grid;
  place-items:center;
  font-size:18px;
}

.bcr-overlay {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.22);
  z-index:8;
}

.bcr-overlay.is-show { display:block; }

.bcr-modal {
  position:fixed;
  inset:0;
  background:rgba(22,22,22,.40);
  backdrop-filter:blur(6px);
  display:none;
  place-items:center;
  z-index:50;
  padding:20px;
}

.bcr-modal.is-show { display:grid; }

.bcr-modal-card {
  width:min(560px,100%);
  padding:28px;
  background:#fff;
  border-radius:28px;
  border:1px solid rgba(21,21,21,.06);
  box-shadow:0 30px 80px rgba(0,0,0,.16);
  text-align:center;
}

.bcr-modal-card h3 {
  margin-bottom:10px;
  font-size:34px;
}

.bcr-modal-card p {
  color:var(--bcr-muted);
  line-height:1.7;
}

.bcr-confetti {
  position:fixed;
  inset:0;
  pointer-events:none;
  overflow:hidden;
  z-index:40;
}

.bcr-confetti-piece {
  position:absolute;
  width:10px;
  height:18px;
  border-radius:4px;
  animation:bcrFall 2.8s linear forwards;
}

@keyframes bcrFall {
  0% { transform:translateY(-10vh) rotate(0deg); opacity:1; }
  100% { transform:translateY(110vh) rotate(720deg); opacity:0; }
}

.bcr-mt-22 { margin-top:22px; }

@media (max-width:1240px) {
  .bcr-topbar { flex-direction:column; align-items:flex-start; }
  .bcr-stats { justify-content:flex-start; }
  .bcr-grid-3,
  .bcr-grid-2,
  .bcr-game-layout,
  .bcr-stat-row { grid-template-columns:1fr; }
}

@media (max-width:980px) {
  .bcr-layout,
  .bcr-layout--expanded { grid-template-columns:1fr; }

  .bcr-sidebar { display:none; }

  .bcr-content {
    padding:12px;
    padding-bottom:108px;
  }

  .bcr-topbar {
    padding:18px;
    border-radius:22px;
  }

  .bcr-mobile-profile { display:block; }
  .bcr-mobile-bottom-nav { display:flex; }
}

@media (max-width:720px) {
  .bcr-content {
    padding:12px;
    padding-bottom:108px;
  }

  .bcr-topbar,
  .bcr-card,
  .bcr-modal-card { border-radius:22px; }

  .bcr-welcome h2 { font-size:28px; }

  .bcr-wheel-wrap {
    min-height: auto;
    padding: 18px 10px 14px;
  }

  .bcr-wheel {
    width: 290px;
    height: 290px;
    margin-top: 52px;
  }

  .bcr-wheel-center {
    width: 80px;
    height: 80px;
    font-size: 13px;
    border-width: 5px;
  }

  .bcr-wheel-label {
    width: 82px;
    font-size: 10px;
  }

  .bcr-pointer {
    top: 12px;
    border-left-width: 15px;
    border-right-width: 15px;
    border-top-width: 28px;
  }

  .bcr-double-value { font-size:56px; }
  .bcr-pill { min-width:100%; }
}