@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&family=Share+Tech+Mono&display=swap');
@keyframes bp-scan {
  0%   { transform: translateY(-100%); opacity: .6; }
  100% { transform: translateY(100vh); opacity: 0; }
}
@keyframes bp-shimmer {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}
@keyframes bp-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(111,160,184,.5), 0 0 0 0 rgba(169,207,221,.2); }
  70%  { box-shadow: 0 0 0 10px rgba(111,160,184,0), 0 0 0 22px rgba(169,207,221,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,160,184,0); }
}
@keyframes bp-float {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}
@keyframes bp-glow-breathe {
  0%,100% { opacity: .5; }
  50%      { opacity: 1; }
}
@keyframes bp-tier-in {
  from { opacity: 0; transform: translateY(32px) scale(.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes bp-xp-fill {
  from { width: 0%; }
}
@keyframes bp-holo {
  0%   { background-position: 0% 50%; filter: hue-rotate(0deg); }
  50%  { background-position: 100% 50%; filter: hue-rotate(30deg); }
  100% { background-position: 0% 50%; filter: hue-rotate(0deg); }
}
@keyframes bp-claimed-pop {
  0%   { transform: scale(.5) rotate(-10deg); opacity: 0; }
  60%  { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes bp-particle {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(0) translateY(-60px); opacity: 0; }
}
@keyframes bp-bg-drift {
  0%   { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}
@keyframes bp-line-march {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}
@keyframes bp-banner-reveal {
  from { clip-path: inset(0 100% 0 0); opacity: 0; }
  to   { clip-path: inset(0 0% 0 0); opacity: 1; }
}
@keyframes bp-xp-tick {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.6); color: #E8622C; }
  100% { transform: scale(1); }
}
@keyframes bp-crown-glow {
  0%,100% { filter: drop-shadow(0 0 6px #E8622C) drop-shadow(0 0 12px rgba(246,180,19,.4)); }
  50%      { filter: drop-shadow(0 0 18px #E8622C) drop-shadow(0 0 36px rgba(246,180,19,.7)); }
}
@keyframes bp-counter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bp-progress-shine {
  0%   { left: -100%; }
  100% { left: 200%; }
}
.bp-shell {
  --bp-gold:   #E8622C;
  --bp-gold2:  #F0A868;
  --bp-purple: #6FA0B8;
  --bp-blue:   #6FA0B8;
  --bp-green:  #4ade80;
  --bp-dark:   #06070e;
  --bp-font-h: 'Barlow Condensed', sans-serif;
  --bp-font-b: 'Barlow', sans-serif;
  --bp-font-m: 'Share Tech Mono', monospace;
  font-family: var(--bp-font-b);
  padding: 0 0 8rem;
  position: relative;
  background: transparent;
}
.bp-hero {
  position: relative;
  min-height: 260px;
  margin-bottom: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6,7,14,.97) 0%, rgba(12,36,40,.9) 40%, rgba(6,7,14,.95) 100%);
  border: 1px solid rgba(111,160,184,.15);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 32px 80px -20px rgba(0,0,0,.8),
    0 0 80px rgba(111,160,184,.06);
}
.bp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,160,184,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,160,184,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: bp-line-march 4s linear infinite;
  pointer-events: none;
}
.bp-hero::after {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(111,160,184,.12) 0%, transparent 70%);
  pointer-events: none;
}
.bp-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 2.5rem 2rem;
}
.bp-season-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .3rem .9rem;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(111,160,184,.2), rgba(111,160,184,.08));
  border: 1px solid rgba(111,160,184,.45);
  font-family: var(--bp-font-m);
  font-size: .6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bp-purple);
  margin-bottom: 1rem;
  width: fit-content;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.bp-season-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(111,160,184,.15), transparent);
  background-size: 300% 100%;
  animation: bp-shimmer 2.5s ease infinite;
}
.bp-season-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bp-purple);
  box-shadow: 0 0 8px var(--bp-purple);
  animation: bp-glow-breathe 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
.bp-title {
  font-family: var(--bp-font-h);
  font-size: clamp(3.5rem, 9vw, 6rem);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: .88;
  text-transform: uppercase;
  margin-bottom: .6rem;
  animation: bp-banner-reveal .8s cubic-bezier(.16,1,.3,1) .1s both;
}
.bp-title-main {
  display: block;
  background: linear-gradient(160deg,
    #ffffff 0%,
    #ffffff 40%,
    #A9D9F0 65%,
    var(--accent2) 80%,
    var(--bp-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 20px rgba(111,160,184,.25));
}
.bp-title-pass {
  display: block;
  color: rgba(255,255,255,.12);
  -webkit-text-stroke: 1px rgba(111,160,184,.25);
  font-size: 85%;
  letter-spacing: 6px;
  margin-top: -.1em;
}
.bp-subtitle {
  font-family: var(--bp-font-m);
  font-size: .58rem;
  letter-spacing: 4px;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  margin-top: .5rem;
}
.bp-xp-card {
  background: linear-gradient(160deg, rgba(15,15,28,.98) 0%, rgba(10,8,20,.95) 100%);
  border: 1px solid rgba(111,160,184,.25);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  min-width: 270px;
  max-width: 320px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow:
    0 0 0 1px rgba(111,160,184,.08) inset,
    0 20px 60px -20px rgba(0,0,0,.7),
    0 0 40px rgba(111,160,184,.08);
}
.bp-xp-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60px; height: 60px;
  background: linear-gradient(225deg, rgba(111,160,184,.15) 0%, transparent 60%);
  pointer-events: none;
}
.bp-xp-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(111,160,184,.1) 0%, transparent 70%);
  pointer-events: none;
}
.bp-xp-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.bp-xp-rank {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.bp-xp-rank-label {
  font-family: var(--bp-font-m);
  font-size: .48rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.bp-xp-rank-title {
  font-family: var(--bp-font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.5px;
  line-height: 1;
  text-transform: uppercase;
}
.bp-xp-level-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(160deg, rgba(111,160,184,.2), rgba(111,160,184,.05));
  border: 1px solid rgba(111,160,184,.45);
  border-radius: 8px;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.bp-xp-level-num {
  font-family: var(--bp-font-h);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--bp-purple);
  line-height: 1;
  text-shadow: 0 0 12px rgba(111,160,184,.6);
}
.bp-xp-level-label {
  font-family: var(--bp-font-m);
  font-size: .38rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(111,160,184,.6);
}
.bp-xp-bar-wrap { position: relative; z-index: 1; }
.bp-xp-bar-track {
  height: 10px;
  background: rgba(255,255,255,.04);
  border-radius: 2px;
  margin-bottom: .5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.05);
}
.bp-xp-bar-track::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 18px,
    rgba(0,0,0,.3) 18px,
    rgba(0,0,0,.3) 20px
  );
  z-index: 2;
  pointer-events: none;
}
.bp-xp-bar-fill {
  height: 100%;
  background: linear-gradient(90deg,
    #1B4A66 0%,
    #2C7CA6 30%,
    var(--bp-purple) 60%,
    #A9CFDD 85%,
    #A9D9F0 100%
  );
  background-size: 200% 100%;
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(.16,1,.3,1);
  position: relative;
  animation: bp-holo 4s ease infinite;
}
.bp-xp-bar-fill::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: rgba(255,255,255,.3);
  border-radius: 2px;
}
.bp-xp-bar-fill::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  animation: bp-progress-shine 2.5s ease-in-out infinite;
}
.bp-xp-bar-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--bp-font-m);
  font-size: .5rem;
  letter-spacing: .5px;
}
.bp-xp-bar-cur { color: rgba(255,255,255,.5); }
.bp-xp-bar-next { color: var(--bp-purple); font-weight: 700; }
.bp-xp-bar-pct {
  font-size: .42rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}
.bp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 2.5rem;
}
.bp-stat {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 1rem .75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.bp-stat:hover {
  border-color: rgba(111,160,184,.25);
  transform: translateY(-3px);
}
.bp-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(111,160,184,.04) 0%, transparent 60%);
  pointer-events: none;
}
.bp-stat-icon {
  font-size: 1.4rem;
  margin-bottom: .4rem;
  display: block;
}
.bp-stat-val {
  font-family: var(--bp-font-h);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent2);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.5px;
  text-shadow: 0 0 16px rgba(169,207,221,.4);
}
.bp-stat-label {
  font-family: var(--bp-font-m);
  font-size: .44rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-top: .25rem;
}
.bp-how {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.bp-how-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 6px;
  font-family: var(--bp-font-m);
  font-size: .54rem;
  letter-spacing: .5px;
  color: rgba(255,255,255,.45);
  transition: all .2s;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  cursor: default;
}
.bp-how-item:hover {
  background: rgba(111,160,184,.08);
  border-color: rgba(111,160,184,.25);
  color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.bp-how-xp {
  font-weight: 700;
  color: var(--accent2);
  margin-left: .1rem;
}
.bp-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.bp-section-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(111,160,184,.3), transparent);
}
.bp-section-title {
  font-family: var(--bp-font-h);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--text);
}
.bp-section-sub {
  font-family: var(--bp-font-m);
  font-size: .5rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
}
.bp-section-badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .25rem .7rem;
  background: rgba(111,160,184,.1);
  border: 1px solid rgba(111,160,184,.3);
  border-radius: 4px;
  font-family: var(--bp-font-m);
  font-size: .48rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent2);
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}
.bp-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.bp-tier {
  position: relative;
  border-radius: 14px;
  padding: 1.6rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
  cursor: default;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  animation: bp-tier-in .55s cubic-bezier(.16,1,.3,1) both;
  animation-delay: calc(var(--bp-i, 0) * 55ms);
  background: linear-gradient(160deg, #0f0f1e 0%, #0a0814 100%);
  border: 1px solid rgba(255,255,255,.06);
}
.bp-tier::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40px; height: 40px;
  background: linear-gradient(225deg, rgba(255,255,255,.04) 0%, transparent 60%);
  pointer-events: none;
}
.bp-tier-watermark {
  position: absolute;
  bottom: -10px;
  right: 8px;
  font-family: var(--bp-font-h);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -4px;
}
.bp-tier-num {
  position: absolute;
  top: 10px; left: 12px;
  font-family: var(--bp-font-m);
  font-size: .42rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  z-index: 2;
}
.bp-tier-icon {
  font-size: 2.4rem;
  line-height: 1;
  position: relative;
  z-index: 2;
  transition: transform .3s;
}
.bp-tier:hover .bp-tier-icon {
  transform: scale(1.2) translateY(-3px);
}
.bp-tier-reward {
  font-family: var(--bp-font-h);
  font-size: .95rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.bp-tier-xp {
  font-family: var(--bp-font-m);
  font-size: .45rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,.25);
  position: relative;
  z-index: 2;
}
.bp-tier-locked {
  opacity: .35;
  filter: saturate(.15) brightness(.7);
}
.bp-tier-unlocked {
  background: linear-gradient(160deg, rgba(15,12,28,.98) 0%, rgba(20,14,36,.95) 100%);
  border-color: rgba(111,160,184,.5);
  box-shadow:
    0 0 0 1px rgba(111,160,184,.15) inset,
    0 8px 40px -8px rgba(111,160,184,.4),
    0 0 24px rgba(111,160,184,.12);
  animation:
    bp-tier-in .55s cubic-bezier(.16,1,.3,1) both,
    bp-pulse-ring 2.5s ease-out infinite;
  animation-delay: calc(var(--bp-i, 0) * 55ms), 0s;
}
.bp-tier-unlocked:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 0 0 1px rgba(111,160,184,.3) inset,
    0 20px 60px -10px rgba(111,160,184,.55),
    0 0 40px rgba(111,160,184,.2);
}
.bp-tier-unlocked::before {
  background: linear-gradient(160deg, rgba(111,160,184,.1) 0%, transparent 50%);
}
.bp-tier-unlocked .bp-tier-num::after {
  content: ' · DISPO';
  color: var(--accent2);
  animation: bp-glow-breathe 1.2s ease-in-out infinite;
}
.bp-tier-unlocked .bp-tier-icon {
  filter: drop-shadow(0 0 12px rgba(111,160,184,.6));
}
.bp-tier-claimed {
  background: linear-gradient(160deg, rgba(10,20,14,.98) 0%, rgba(8,16,12,.95) 100%);
  border-color: rgba(74,222,128,.25);
  box-shadow: 0 4px 20px -4px rgba(74,222,128,.1);
}
.bp-tier-claimed .bp-tier-icon {
  filter: grayscale(.3) brightness(.75);
}
.bp-tier-claimed .bp-tier-num { color: rgba(74,222,128,.4); }
.bp-claim-btn {
  margin-top: .4rem;
  padding: .65rem 1.4rem;
  background: linear-gradient(90deg, #2190B6 0%, var(--bp-purple) 40%, #A9CFDD 75%, #A9D9F0 100%);
  background-size: 200% 100%;
  border: none;
  border-radius: 4px;
  font-family: var(--bp-font-h);
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s, background-position .4s;
  box-shadow:
    0 4px 20px rgba(111,160,184,.45),
    0 0 0 1px rgba(255,255,255,.12) inset;
  z-index: 2;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.bp-claim-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: rgba(255,255,255,.25);
  pointer-events: none;
}
.bp-claim-btn::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 30px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: bp-progress-shine 2s ease-in-out infinite;
}
.bp-claim-btn:hover:not(:disabled) {
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 8px 30px rgba(111,160,184,.65), 0 0 0 1px rgba(255,255,255,.2) inset;
  background-position: 100% 0;
}
.bp-claim-btn:active:not(:disabled) {
  transform: scale(.96);
}
.bp-claim-btn:disabled {
  opacity: .45;
  cursor: default;
  box-shadow: none;
}
.bp-claimed-badge {
  margin-top: .4rem;
  padding: .45rem 1.1rem;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.3);
  border-radius: 4px;
  font-family: var(--bp-font-h);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4ade80;
  animation: bp-claimed-pop .45s cubic-bezier(.16,1,.3,1);
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
}
.bp-locked-badge {
  margin-top: .4rem;
  font-size: 1rem;
  opacity: .2;
  position: relative;
  z-index: 2;
}
.bp-tier[data-tier="50"],
.bp-tier-mythic {
  background: linear-gradient(160deg, rgba(15,5,20,.98) 0%, rgba(25,5,30,.95) 100%);
  border-color: rgba(110,121,255,.3);
}
.bp-tier[data-tier="50"].bp-tier-unlocked,
.bp-tier-mythic.bp-tier-unlocked {
  border-color: rgba(110,121,255,.8);
  background: linear-gradient(160deg, rgba(20,5,28,.98) 0%, rgba(10,2,15,.95) 100%);
  box-shadow:
    0 0 0 1px rgba(110,121,255,.3) inset,
    0 12px 50px -8px rgba(110,121,255,.6),
    0 0 60px rgba(110,121,255,.25);
  animation:
    bp-tier-in .55s cubic-bezier(.16,1,.3,1) both,
    bp-glow-breathe 2s ease-in-out infinite;
}
.bp-tier[data-tier="50"].bp-tier-unlocked .bp-tier-icon,
.bp-tier-mythic.bp-tier-unlocked .bp-tier-icon {
  animation: bp-mythic-glow 2s ease-in-out infinite;
}
.bp-tier[data-tier="50"] .bp-claim-btn,
.bp-tier-mythic .bp-claim-btn {
  background: linear-gradient(90deg, #00336E 0%, #2650D3 40%, #6E79FF 70%, #4673EF 100%);
  box-shadow: 0 6px 24px rgba(110,121,255,.5), 0 0 0 1px rgba(255,255,255,.15) inset;
}
@keyframes bp-mythic-glow {
  0%,100% { filter: drop-shadow(0 0 6px #6E79FF) drop-shadow(0 0 12px rgba(110,121,255,.4)); }
  50%      { filter: drop-shadow(0 0 18px #6E79FF) drop-shadow(0 0 36px rgba(110,121,255,.7)); }
}
.bp-tier-rarity-badge {
  position: absolute;
  top: .55rem;
  right: .6rem;
  font-family: var(--bp-font-m);
  font-size: .38rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .7;
  z-index: 2;
}
.bp-rarity-section {
  margin-bottom: 2.5rem;
}
.bp-rarity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 1.1rem;
  margin-bottom: 1.1rem;
  border-left: 3px solid var(--rc, rgba(255,255,255,.2));
  background: rgba(255,255,255,.03);
  border-radius: 0 8px 8px 0;
}
.bp-rarity-label {
  font-family: var(--bp-font-h);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rc, rgba(255,255,255,.5));
  text-shadow: 0 0 12px var(--rc, transparent);
}
.bp-rarity-count {
  font-family: var(--bp-font-m);
  font-size: .55rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,.3);
}
.bp-season-countdown {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: .9rem;
  padding: .5rem 1rem;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(246,180,19,.2);
  border-radius: 8px;
  width: fit-content;
}
.bp-countdown-label {
  font-family: var(--bp-font-m);
  font-size: .5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.bp-countdown-value {
  font-family: var(--bp-font-m);
  font-size: .65rem;
  letter-spacing: 3px;
  color: var(--bp-gold);
  text-shadow: 0 0 10px rgba(246,180,19,.5);
  min-width: 120px;
  font-weight: 700;
}
.bp-loading {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 5rem 2rem;
}
.bp-spinner {
  width: 48px;
  height: 48px;
  position: relative;
}
.bp-spinner::before,
.bp-spinner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}
.bp-spinner::before {
  border-top-color: var(--bp-purple);
  border-right-color: rgba(111,160,184,.3);
  animation: bp-scan .9s linear infinite;
}
.bp-spinner::after {
  border-bottom-color: var(--bp-purple);
  border-left-color: rgba(111,160,184,.3);
  animation: bp-scan .6s linear infinite reverse;
  inset: 6px;
}
.bp-loading-label {
  font-family: var(--bp-font-m);
  font-size: .56rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
}
@media (max-width: 900px) {
  .bp-hero-inner {
    grid-template-columns: 1fr;
    padding: 1.8rem 1.5rem 1.5rem;
  }
  .bp-xp-card { max-width: 100%; }
  .bp-stats { grid-template-columns: repeat(2, 1fr); }
  .bp-title { font-size: clamp(2.8rem, 10vw, 4rem); }
}
@media (max-width: 600px) {
  .bp-hero { border-radius: 14px; }
  .bp-tiers {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }
  .bp-tier { padding: 1.3rem .8rem 1rem; }
  .bp-tier-icon { font-size: 2rem; }
  .bp-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .bp-how { gap: .4rem; }
  .bp-how-item { padding: .4rem .75rem; font-size: .5rem; }
}
@media (max-width: 380px) {
  .bp-tiers { grid-template-columns: 1fr; }
}

.bp-tier-img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform .3s;
}
.bp-tier:hover .bp-tier-img {
  transform: scale(1.2) translateY(-3px);
}
.bp-booster-pair {
  display: inline-flex;
  gap: .3rem;
  align-items: flex-end;
  justify-content: center;
}
.bp-tier-img--booster {
  width: 2.4rem;
  height: 2.4rem;
  filter: drop-shadow(0 0 8px rgba(111,160,184,.5));
}
.bp-booster-1 {
  animation: bp-booster-bounce 1.2s cubic-bezier(.36,.07,.19,.97) infinite;
}
.bp-booster-2 {
  animation: bp-booster-bounce 1.2s cubic-bezier(.36,.07,.19,.97) infinite;
  animation-delay: .18s;
}
.bp-tier-unlocked .bp-tier-img--booster {
  filter: drop-shadow(0 0 14px rgba(111,160,184,.9));
}
.bp-tier-img--coins {
  filter: drop-shadow(0 0 8px rgba(232,98,44,.5));
  animation: bp-coins-bounce 1.4s cubic-bezier(.36,.07,.19,.97) infinite;
}
.bp-tier-unlocked .bp-tier-img--coins {
  filter: drop-shadow(0 0 14px rgba(232,98,44,.9));
  animation: bp-coins-bounce 1.4s cubic-bezier(.36,.07,.19,.97) infinite;
}
@keyframes bp-booster-bounce {
  0%,100% { transform: translateY(0)     scaleX(1)    scaleY(1);    }
  40%      { transform: translateY(-14px) scaleX(.95) scaleY(1.05); }
  60%      { transform: translateY(-8px)  scaleX(.97) scaleY(1.03); }
  80%      { transform: translateY(-2px)  scaleX(1.02) scaleY(.98); }
}
@keyframes bp-coins-bounce {
  0%,100% { transform: translateY(0)     scaleX(1)    scaleY(1);    filter: drop-shadow(0 0 8px rgba(232,98,44,.5)); }
  40%      { transform: translateY(-14px) scaleX(.95) scaleY(1.05); filter: drop-shadow(0 0 18px rgba(232,98,44,.9)); }
  60%      { transform: translateY(-8px)  scaleX(.97) scaleY(1.03); }
  80%      { transform: translateY(-2px)  scaleX(1.02) scaleY(.98); }
}

.bp-xp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', 'Orbitron', 'Exo 2', var(--bp-font-h, sans-serif);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 2px;
  padding: .18em .55em .12em;
  border-radius: 6px;
  background: linear-gradient(135deg, #1F99A3 0%, #2C7CA6 45%, #A9CFDD 100%);
  color: #fff;
  text-shadow: 0 0 10px rgba(169,207,221,.9), 0 1px 0 rgba(0,0,0,.5);
  box-shadow:
    0 0 0 1.5px rgba(111,160,184,.6),
    0 0 12px rgba(111,160,184,.4),
    inset 0 1px 0 rgba(255,255,255,.15);
  position: relative;
  overflow: hidden;
  animation: bp-xp-bounce 1.3s cubic-bezier(.36,.07,.19,.97) infinite;
}
.bp-xp-badge::before {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transform: skewX(-20deg);
  animation: bp-xp-shine 3s ease-in-out infinite;
}
.bp-tier-unlocked .bp-xp-badge {
  background: linear-gradient(135deg, #1B4A66 0%, #6FA0B8 40%, #A9D9F0 100%);
  box-shadow:
    0 0 0 1.5px rgba(181,248,253,.7),
    0 0 20px rgba(111,160,184,.7),
    inset 0 1px 0 rgba(255,255,255,.2);
  animation: bp-xp-bounce 1.3s cubic-bezier(.36,.07,.19,.97) infinite, bp-xp-pulse 1.5s ease-in-out infinite;
}
@keyframes bp-xp-bounce {
  0%,100% { transform: translateY(0)     scaleX(1)    scaleY(1);    }
  40%      { transform: translateY(-14px) scaleX(.95) scaleY(1.05); }
  60%      { transform: translateY(-8px)  scaleX(.97) scaleY(1.03); }
  80%      { transform: translateY(-2px)  scaleX(1.02) scaleY(.98); }
}
@keyframes bp-xp-shine {
  0%, 70%, 100% { left: -60%; opacity: 0; }
  30%            { left: 120%; opacity: 1; }
}
@keyframes bp-xp-pulse {
  0%, 100% { box-shadow: 0 0 0 1.5px rgba(181,248,253,.7), 0 0 20px rgba(111,160,184,.7), inset 0 1px 0 rgba(255,255,255,.2); }
  50%       { box-shadow: 0 0 0 2px rgba(181,248,253,1),   0 0 32px rgba(111,160,184,1),   inset 0 1px 0 rgba(255,255,255,.3); }
}
@media (max-width: 600px) {
  .bp-tier-img { width: 2.2rem; height: 2.2rem; }
  .bp-tier-img--booster { width: 2.4rem; height: 2.4rem; }
  .bp-xp-badge { font-size: 1.1rem; }
}