.rank-medal {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255,209,92,.12);
    border: 1px solid rgba(255,209,92,.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 900;
}
.profile-hero {
    min-height: 250px;
    border-radius: 30px;
    background:
      linear-gradient(90deg, rgba(5,7,12,.96), rgba(5,7,12,.42)),
      radial-gradient(circle at 80% 30%, rgba(255,209,92,.25), transparent 28%);
    border: 1px solid var(--border);
}
.stat-box {
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    padding: 20px;
}
.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
}
.vip-tier {
    min-height: 250px;
    position: relative;
    overflow: hidden;
}
.vip-tier::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
    border-radius: 50%;
    background: rgba(255,209,92,.10);
}
