:root {
  --bg:      #000;
  --surface: #0f0f0f;
  --card:    #141414;
  --border:  rgba(255,255,255,.08);
  --accent:  #00c853;
  --orange:  #ff6b35;
  --text:    #eaedf2;
  --muted:   #6b7280;
  --sub:     #9ca3af;
  --r:       8px;
}
body, html { background: var(--bg) !important; }
* { -webkit-font-smoothing: antialiased; }
.bp-page { font-family: system-ui,-apple-system,sans-serif; color: var(--text); padding-top: 20px; }
a { text-decoration: none; color: inherit; }

.bp-breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: 12.5px; color: var(--muted); margin-bottom: 18px;
}
.bp-breadcrumb a { color: var(--muted); transition: color .15s; }
.bp-breadcrumb a:hover { color: var(--accent); }
.bp-breadcrumb span.sep { color: rgba(255,255,255,.2); }

.bp-sec-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.bp-sec-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; letter-spacing: -.3px;
  padding-bottom: 10px; margin-bottom: -10px;
  border-bottom: 2px solid var(--accent);
}
.bp-sec-title .bar { width: 4px; height: 22px; background: var(--accent); border-radius: 2px; }
.bp-count {
  font-size: 12px; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 20px;
}

.bp-filter-bar {
  margin-bottom: 24px; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r); padding: 14px 16px;
}
.bp-filter-row { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.bp-filter-select {
  background: var(--card); color: var(--text);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 8px 32px 8px 12px; font-size: 13px; font-weight: 500;
  cursor: pointer; min-width: 130px;
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  transition: border-color .15s;
}
.bp-filter-select:hover, .bp-filter-select:focus { border-color: var(--accent); outline: none; }
.bp-filter-select option { background: #1a1a1a; }
.bp-filter-reset {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: rgba(255,107,53,.1); border: 1px solid rgba(255,107,53,.3);
  border-radius: 6px; font-size: 12px; color: var(--orange); font-weight: 600;
  cursor: pointer; transition: all .15s;
}
.bp-filter-reset:hover { background: rgba(255,107,53,.22); }

.bp-empty { text-align: center; padding: 64px 20px; color: var(--muted); }
.bp-empty i { font-size: 48px; margin-bottom: 16px; display: block; opacity: .3; }

@media(max-width:640px) {
  .bp-filter-select { min-width: 0; flex: 1 1 calc(50% - 6px); font-size: 12px; }
  .bp-sec-title { font-size: 16px; }
}
