

.bp-wrap {
  max-width: 100%;
  padding: 1.25rem;
  gap: 10px;
}

/* Header */
.bp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
}
.bp-season {
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 2px;
}
.bp-title {
  color: #fff;
}
.bp-expires {
  color: #f0b429;
  margin-top: 4px;
}
.bp-level-big {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
}
.bp-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.bp-icon-sm {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* XP */
.bp-xp-wrap {
  padding: 12px 16px;
}
.bp-xp-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.bp-xp-label {
  color: #888;
}
.bp-xp-value {
  color: #fff;
}
.bp-xp-track {
  height: 6px;
  border-radius: 99px;
  background: #2a2a3a;
  overflow: hidden;
}
.bp-xp-fill {
  height: 100%;
  border-radius: 99px;
  background: #7F77DD;
  transition: width 0.5s ease;
}

/* Section label */
.bp-section-label {
  text-transform: uppercase;
  color: #555;
  padding-bottom: 4px;
  border-bottom: 0.5px solid #2a2a3a;
  margin-top: 4px;
}

/* Rewards grid */
.bp-rewards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.bp-reward {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  text-align: center;
  position: relative;
}

.bp-reward-level {
  color: #666;
  text-transform: uppercase;
}
.bp-reward-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.bp-reward-name {
  font-size: 12px;
  font-weight: 500;
  color: #ccc;
  line-height: 1.3;
}
.bp-reward-status {
  color: #555;
}

/* States */
.bp-reward--claimed .bp-reward-icon { opacity: 0.5; }
.bp-reward--claimed .bp-reward-name  { color: #555; }
.bp-reward--claimed .bp-reward-status { color: #1D9E75; }

.bp-reward--current { outline: 1.5px solid #7F77DD; }
.bp-reward--current .bp-reward-status { color: #7F77DD; }

.bp-reward--locked .bp-reward-icon { opacity: 0.25; filter: grayscale(1); }
.bp-reward--locked .bp-reward-name  { color: #444; }

/* Button */
.bp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  color: #f0b429;
  background: #1e1800;
  border: none;
  cursor: pointer;
  margin-top: 4px;
}
.bp-btn:hover {
  background: #2a2200;
}