/* ============================================
   URBot Builder v2 — 2-Panel Character Select
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: #0a0a1a;
  color: #e2e8f0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- Header ---- */
.bld-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(15, 15, 35, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 200;
}
.bld-logo {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.bld-title {
  font-size: 16px;
  font-weight: 600;
  color: #94a3b8;
  flex: 1;
}
.bld-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bld-nav-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.bld-nav-link:hover { color: #fff; }
.header-login-btn {
  color: #c4b5fd;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border: 1px solid rgba(196, 181, 253, 0.3);
  border-radius: 16px;
}

/* ---- Layout: 2-panel ---- */
.bld-layout {
  display: flex;
  height: calc(100vh - 49px - 56px); /* header + team bar */
  overflow: hidden;
}

/* ---- LEFT: Bot browser ---- */
.bld-browser {
  width: 420px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 26, 0.95);
}

.bld-search-bar {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bld-search {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #e2e8f0;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}
.bld-search:focus { border-color: rgba(139, 92, 246, 0.5); }
.bld-search::placeholder { color: #64748b; }

.bld-filters {
  padding: 8px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  max-height: 80px;
  overflow-y: auto;
}
.bld-filter {
  padding: 4px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #94a3b8;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: all 0.15s;
}
.bld-filter:hover { border-color: rgba(255, 255, 255, 0.2); color: #e2e8f0; }
.bld-filter.active {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}

.bld-roster {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  align-content: start;
}

/* Bot card in roster */
.bld-bot-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
}
.bld-bot-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.06);
}
.bld-bot-card.selected {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.12);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
}
.bld-bot-card.in-cart::after {
  content: '\2713';
  position: absolute;
  top: 6px;
  right: 8px;
  background: #22c55e;
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.bld-bot-avatar {
  width: 48px;
  height: 48px;
  margin: 0 auto 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.bld-bot-avatar img { width: 40px; height: 40px; }
.bld-bot-name {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bld-bot-score {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}

/* ---- RIGHT: Detail panel ---- */
.bld-detail {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px 80px;
  background: #0f0f23;
}

.bld-detail-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  color: #64748b;
}
.bld-detail-empty-icon { font-size: 64px; margin-bottom: 16px; }
.bld-detail-empty h2 { color: #94a3b8; font-size: 22px; margin-bottom: 8px; }
.bld-detail-empty p { max-width: 300px; }

/* Detail hero */
.bld-detail-hero {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}
.bld-detail-avatar {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.bld-detail-avatar img { width: 68px; height: 68px; }
.bld-detail-name {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}
.bld-detail-tagline {
  color: #94a3b8;
  font-size: 14px;
  margin-top: 4px;
}
.bld-detail-category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 600;
  margin-top: 8px;
}
.bld-detail-score {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  font-size: 11px;
  font-weight: 700;
  margin-top: 8px;
  margin-left: 6px;
}

/* Sections */
.bld-radar-section, .bld-topics-section, .bld-tiers-section, .bld-pairs-section, .bld-add-section, .bld-chat-section {
  margin-bottom: 28px;
}
.bld-radar-section h3, .bld-topics-section h3, .bld-tiers-section h3, .bld-pairs-section h3, .bld-chat-section h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 12px;
}

/* Radar chart */
.bld-radar {
  max-width: 240px;
  margin: 0 auto;
}

/* Knowledge topics */
.bld-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bld-topic-tag {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  font-size: 12px;
  color: #e2e8f0;
}

/* Tier cards */
.bld-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bld-tier-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: inherit;
  color: #e2e8f0;
}
.bld-tier-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
}
.bld-tier-card.active {
  border-color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.15);
}
.bld-tier-name { font-weight: 700; font-size: 14px; color: #fff; }
.bld-tier-price { font-size: 22px; font-weight: 800; color: #a78bfa; }
.bld-tier-desc { font-size: 11px; color: #94a3b8; }

/* Pairs with */
.bld-pairs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bld-pair-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  cursor: pointer;
  transition: border-color 0.15s;
  text-decoration: none;
}
.bld-pair-chip:hover { border-color: rgba(139, 92, 246, 0.4); }
.bld-pair-chip img { width: 20px; height: 20px; border-radius: 6px; }
.bld-pair-chip span { font-size: 13px; color: #e2e8f0; }

/* Add to cart button */
.bld-add-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.1s;
}
.bld-add-btn:hover { opacity: 0.9; }
.bld-add-btn:active { transform: scale(0.98); }
.bld-add-btn.in-cart {
  background: #22c55e;
}

/* ---- Bottom team bar ---- */
.bld-team-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: rgba(15, 15, 35, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 16px;
  z-index: 200;
  backdrop-filter: blur(12px);
}
.bld-team-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 200px;
}
.bld-team-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
}
.bld-team-strength-bar {
  width: 120px;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}
.bld-team-strength-fill {
  height: 100%;
  border-radius: 4px;
  background: #8b5cf6;
  transition: width 0.5s, background 0.3s;
}
.bld-team-percent {
  font-size: 14px;
  font-weight: 700;
  color: #a78bfa;
  min-width: 36px;
}
.bld-team-synergies {
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
}
.bld-team-syn-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  font-size: 11px;
  color: #c4b5fd;
  white-space: nowrap;
}
.bld-team-syn-badge.complete {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
  color: #86efac;
}
.bld-team-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bld-team-summary {
  font-size: 13px;
  color: #94a3b8;
  white-space: nowrap;
}
.bld-team-checkout {
  padding: 8px 20px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.bld-team-checkout:hover { opacity: 0.9; }

/* ---- Cart review overlay ---- */
.bld-cart-review {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: #0a0a1a;
  overflow-y: auto;
}
.bld-cart-review-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px 24px;
}
.bld-cart-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.bld-cart-review-header h2 { font-size: 24px; color: #fff; }
.bld-cart-review-close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #94a3b8;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-family: inherit;
}
.bld-cart-review-close:hover { color: #fff; border-color: rgba(255, 255, 255, 0.3); }

/* Cart items */
.bld-cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.bld-cart-item-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.bld-cart-item-avatar img { width: 40px; height: 40px; }
.bld-cart-item-info { flex: 1; }
.bld-cart-item-name { font-weight: 600; color: #fff; }
.bld-cart-item-tier select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #e2e8f0;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 13px;
  margin-top: 4px;
  font-family: inherit;
}
.bld-cart-item-price {
  font-weight: 700;
  font-size: 16px;
  color: #a78bfa;
  min-width: 40px;
  text-align: right;
}
.bld-cart-item-remove {
  background: none;
  border: none;
  color: #64748b;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}
.bld-cart-item-remove:hover { color: #ef4444; }

/* Cart footer */
.bld-cart-review-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.bld-cart-review-total {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.bld-cart-email-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #e2e8f0;
  font-size: 15px;
  margin-bottom: 12px;
  outline: none;
  font-family: inherit;
}
.bld-cart-email-input:focus { border-color: rgba(139, 92, 246, 0.5); }
.bld-cart-buy-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
}
.bld-cart-buy-btn:hover { opacity: 0.9; }
.bld-cart-buy-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.bld-cart-status {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  min-height: 20px;
}
.bld-cart-status.error { color: #f87171; }

/* ---- Mobile ---- */
@media (max-width: 768px) {
  .bld-layout {
    flex-direction: column;
    height: auto;
    min-height: calc(100vh - 49px - 56px);
  }
  .bld-browser {
    width: 100%;
    max-height: 50vh;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .bld-roster {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .bld-detail { padding: 20px 16px 120px; }
  .bld-detail-hero { flex-direction: column; text-align: center; }
  .bld-tiers { grid-template-columns: 1fr; }
  .bld-team-bar {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 16px;
    gap: 8px;
  }
  .bld-team-left { min-width: auto; flex: 1; }
  .bld-team-synergies { display: none; }
  .bld-team-right { width: 100%; justify-content: space-between; }
  .bld-title { display: none; }
}

/* ---- Block System ---- */
.bld-blocks-section { margin-bottom: 28px; }
.bld-blocks-section h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 12px;
}
.bld-blocks {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 340px;
}
.bld-block {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.bld-block:first-child { border-radius: 12px 12px 0 0; }
.bld-block:last-child { border-radius: 0 0 12px 12px; }
.bld-block:hover {
  border-color: var(--bld-accent, rgba(139, 92, 246, 0.4));
  background: rgba(255, 255, 255, 0.06);
}
.bld-block.active {
  border-color: var(--bld-accent, #8b5cf6);
  background: rgba(139, 92, 246, 0.08);
}
.bld-block-symbol {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bld-block.rotating .bld-block-symbol {
  transform: rotateY(180deg);
}
.bld-block-info { flex: 1; min-width: 0; }
.bld-block-name {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
}
.bld-block-desc {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bld-block-face {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 10px;
  color: #64748b;
  opacity: 0;
  transition: opacity 0.2s;
}
.bld-block:hover .bld-block-face { opacity: 1; }
.bld-blocks-hint {
  font-size: 11px;
  color: #475569;
  margin-top: 8px;
  text-align: center;
}
/* Energy connector lines between blocks */
.bld-block-connector {
  width: 2px;
  height: 8px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--bld-accent, #8b5cf6), transparent);
  opacity: 0.4;
}

/* ---- Stats Row (radar + power side-by-side) ---- */
.bld-stats-row {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}
.bld-stats-row .bld-radar-section,
.bld-stats-row .bld-power-section {
  flex: 1;
  margin-bottom: 0;
}

/* ---- Power Meters ---- */
.bld-power-section h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 12px;
}
.bld-power-meters {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bld-power-meter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bld-power-label {
  font-size: 12px;
  color: #cbd5e1;
  width: 120px;
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bld-power-bar-bg {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  gap: 2px;
  padding: 1px;
}
.bld-power-segment {
  flex: 1;
  height: 100%;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.4s, box-shadow 0.4s;
}
.bld-power-segment.filled {
  background: var(--bld-accent, #8b5cf6);
  box-shadow: 0 0 6px rgba(139, 92, 246, 0.3);
}
.bld-power-value {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  width: 28px;
  text-align: center;
}
.bld-token-value {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bld-token-label {
  font-size: 12px;
  color: #94a3b8;
}
.bld-token-amount {
  font-size: 16px;
  font-weight: 700;
  color: var(--bld-accent, #a78bfa);
}

/* ---- Skin Customization ---- */
.bld-skin-section { margin-bottom: 28px; }
.bld-skin-section h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  margin-bottom: 12px;
}
.bld-skin-preview {
  display: flex;
  gap: 20px;
  align-items: center;
}
.bld-skin-avatar-wrap {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bld-skin-avatar-wrap img {
  width: 100px;
  height: 100px;
  position: relative;
  z-index: 1;
}
.bld-skin-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  opacity: 0.7;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.bld-skin-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bld-skin-upload-btn {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}
.bld-skin-upload-btn:hover {
  border-color: var(--bld-accent, rgba(139, 92, 246, 0.5));
  background: rgba(139, 92, 246, 0.08);
}
.bld-skin-reset-btn {
  padding: 6px 14px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #94a3b8;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
}
.bld-skin-reset-btn:hover { color: #ef4444; border-color: rgba(239, 68, 68, 0.3); }
.bld-skin-note {
  font-size: 11px;
  color: #475569;
  max-width: 200px;
}

/* ---- Enterprise Transformer badge ---- */
.bld-team-transformer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(239, 68, 68, 0.2));
  border: 1px solid rgba(234, 179, 8, 0.4);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
  color: #fbbf24;
  animation: transformer-glow 2s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes transformer-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(234, 179, 8, 0.1); }
  50% { box-shadow: 0 0 16px rgba(234, 179, 8, 0.3); }
}

/* ---- Mobile adjustments for new sections ---- */
@media (max-width: 768px) {
  .bld-stats-row {
    flex-direction: column;
    gap: 16px;
  }
  .bld-skin-preview {
    flex-direction: column;
    align-items: flex-start;
  }
  .bld-power-label { width: 90px; font-size: 11px; }
}

/* Scrollbar styling */
.bld-roster::-webkit-scrollbar,
.bld-detail::-webkit-scrollbar {
  width: 6px;
}
.bld-roster::-webkit-scrollbar-track,
.bld-detail::-webkit-scrollbar-track {
  background: transparent;
}
.bld-roster::-webkit-scrollbar-thumb,
.bld-detail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.bld-roster::-webkit-scrollbar-thumb:hover,
.bld-detail::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}
