/* DVP "Leaderboard Standings" panel — four period cards (This Stream / Week / Month
   / All Time), sits directly above Credit Multipliers. Mirrors support-credit-multipliers.css. */

.dvp-standing-panel {
    border-color: rgba(126, 223, 255, 0.24) !important;
    background:
        radial-gradient(circle at 12% 12%, rgba(126, 223, 255, 0.10), transparent 26%),
        linear-gradient(135deg, rgba(8, 24, 45, 0.76), rgba(5, 15, 31, 0.74)) !important;
    contain: layout paint;
}

.dvp-standing-panel > .panel-title {
    margin-bottom: 9px !important;
}

.dvp-standing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.dvp-standing-card {
    min-width: 0;
    min-height: 74px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    padding: 9px;
    border: 1px solid rgba(93, 210, 255, 0.18);
    border-radius: 14px;
    background: rgba(5, 15, 31, 0.42);
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.dvp-standing-card:hover,
.dvp-standing-card:focus-visible {
    border-color: rgba(126, 223, 255, 0.56);
    background: linear-gradient(135deg, rgba(18, 51, 84, 0.72), rgba(5, 15, 31, 0.52));
    box-shadow: 0 0 18px rgba(35, 180, 255, 0.14), inset 0 0 14px rgba(126, 223, 255, 0.045);
    outline: none;
    transform: translateY(-1px);
}

.dvp-standing-label {
    color: rgba(126, 223, 255, 0.82);
    font-size: 9px;
    font-weight: 950;
    letter-spacing: 0.105em;
    line-height: 1.15;
    text-transform: uppercase;
}

.dvp-standing-value {
    margin-top: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--text);
    font-size: clamp(16px, 1.3vw, 21px);
    font-weight: 950;
    white-space: nowrap;
}

.dvp-standing-value .dvp-standing-medal img {
    width: 19px;
    height: 19px;
}

.dvp-standing-detail {
    margin-top: 4px;
    color: rgba(199, 218, 236, 0.66);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

/* Podium accents (match the header standing pill treatment). */
.dvp-standing-card.standing-gold {
    border-color: rgba(255, 211, 126, 0.5);
    background: rgba(255, 211, 126, 0.07);
}
.dvp-standing-card.standing-gold .dvp-standing-value { color: var(--warning); }

.dvp-standing-card.standing-silver {
    border-color: rgba(190, 225, 255, 0.44);
    background: rgba(190, 225, 255, 0.06);
}
.dvp-standing-card.standing-silver .dvp-standing-value { color: #d8efff; }

.dvp-standing-card.standing-bronze {
    border-color: rgba(255, 170, 105, 0.4);
    background: rgba(255, 170, 105, 0.06);
}
.dvp-standing-card.standing-bronze .dvp-standing-value { color: #ffbd86; }

/* Not ranked in this period. */
.dvp-standing-card.unranked {
    border-color: rgba(199, 218, 236, 0.12);
    background: rgba(199, 218, 236, 0.035);
}
.dvp-standing-card.unranked .dvp-standing-label { color: rgba(199, 218, 236, 0.46); }
.dvp-standing-card.unranked .dvp-standing-value { color: rgba(199, 218, 236, 0.6); font-size: clamp(12px, 0.95vw, 14px); letter-spacing: 0.02em; }
.dvp-standing-card.unranked .dvp-standing-detail { color: rgba(199, 218, 236, 0.4); }

@media (max-width: 760px) {
    .dvp-standing-panel > .panel-title {
        margin-bottom: 6px !important;
    }

    .dvp-standing-grid {
        gap: 6px;
    }

    .dvp-standing-card {
        min-height: 60px;
        padding: 6px 7px;
        border-radius: 12px;
    }

    .dvp-standing-label {
        font-size: 8px;
        letter-spacing: 0.09em;
        line-height: 1.05;
    }

    .dvp-standing-value {
        margin-top: 3px;
        font-size: clamp(14px, 4.4vw, 18px);
    }

    .dvp-standing-detail {
        font-size: 9px;
    }
}

@media (max-width: 340px) {
    .dvp-standing-grid {
        grid-template-columns: 1fr;
    }
}
