/* ── Battle Pass Page ── */

/* Activate button */
.bp-btn-activate {
    background: linear-gradient(135deg, #ff6f91 0%, #ff9671 50%, #ffc75f 100%);
    color: #1a1025;
    font-weight: 700;
    border: none;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 17px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(255, 111, 145, 0.3);
}

.bp-btn-activate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 145, 0.4);
    color: #1a1025;
}

/* Season icon */
.bp-season-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Badges */
.bp-badge-premium {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #3a2600;
    font-weight: 700;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 6px;
}

.bp-badge-free {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(245, 243, 255, 0.6);
    font-weight: 600;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 6px;
}

/* Progress bar */
.bp-progress-section {
    padding: 4px 0;
}

.bp-level-label {
    color: #ffc75f;
    font-size: 15px;
    font-weight: 600;
}

.bp-xp-label {
    color: rgba(245, 243, 255, 0.6);
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}

.bp-progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    overflow: hidden;
}

.bp-progress-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6f91, #ffc75f);
    border-radius: 6px;
    transition: width 0.5s ease;
    min-width: 2px;
}

/* Upgrade button */
.bp-btn-upgrade {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #3a2600;
    font-weight: 700;
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.25);
}

.bp-btn-upgrade:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 16px rgba(255, 215, 0, 0.35);
    color: #3a2600;
}

/* ── Rewards Track ── */
.bp-track-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    padding: 20px 16px 24px;
    -webkit-overflow-scrolling: touch;
}

.bp-track {
    display: flex;
    gap: 0;
    min-width: max-content;
    position: relative;
}

/* Level column */
.bp-level-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    position: relative;
}

/* Level number */
.bp-level-num {
    font-size: 14px;
    font-weight: 800;
    color: rgba(245, 243, 255, 0.4);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.bp-level-col--reached .bp-level-num {
    color: #ffc75f;
}

.bp-level-col--current .bp-level-num {
    color: #ff6f91;
    font-size: 15px;
}

/* Reward card */
.bp-reward {
    width: 104px;
    padding: 12px 8px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    cursor: default;
    transition: all 0.2s ease;
    margin-bottom: 6px;
}

.bp-reward--free {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.bp-reward--premium {
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.02) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.bp-reward--locked {
    opacity: 0.45;
}

.bp-reward--claimable {
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 0 12px rgba(76, 175, 80, 0.15);
    cursor: pointer;
}

.bp-reward--claimable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.25);
}

.bp-reward--claimed {
    opacity: 0.65;
}

/* Reward icon */
.bp-reward__icon {
    font-size: 32px;
    margin-bottom: 4px;
    display: block;
}

.bp-reward__icon--character { color: #bb86fc; }
.bp-reward__icon--currency { color: #ffc75f; }
.bp-reward__icon--item { color: #64b5f6; }

/* Reward label */
.bp-reward__label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(245, 243, 255, 0.7);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.bp-reward__amount {
    font-size: 15px;
    font-weight: 800;
    color: #f5f3ff;
    margin-top: 2px;
}

/* Claimed check */
.bp-reward__claimed {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.4);
}

/* Claim button */
.bp-reward__claim-btn {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: #fff;
    border: none;
    padding: 3px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
    cursor: pointer;
    white-space: nowrap;
}

.bp-reward__claim-btn:hover {
    background: #66bb6a;
}

/* Premium lock */
.bp-reward__lock {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    background: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #3a2600;
}

/* Track connector line */
.bp-level-col::after {
    content: '';
    position: absolute;
    top: 8px;
    right: -1px;
    width: calc(100%);
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 0;
}

.bp-level-col:last-child::after {
    display: none;
}

.bp-level-col--reached::after {
    background: rgba(255, 199, 95, 0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .bp-level-col {
        min-width: 105px;
    }

    .bp-reward {
        width: 92px;
        padding: 10px 6px;
    }

    .bp-reward__icon {
        font-size: 28px;
    }

    .bp-reward__label {
        font-size: 12px;
    }
}
