[x-cloak] {
    display: none !important;
}

.trophy-case-shell {
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(16, 24, 40, .92), rgba(25, 43, 67, .86)),
        radial-gradient(circle at 80% 20%, rgba(237, 195, 5, .32), transparent 36%);
    color: #fff;
    overflow: hidden;
}

.trophy-case-hero {
    min-height: 190px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.trophy-kicker {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08rem;
    color: rgba(255, 255, 255, .72);
    margin-bottom: .35rem;
}

.trophy-case-hero h2 {
    color: #fff;
    font-size: 2.4rem;
    margin: 0;
}

.trophy-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: .9rem;
    color: rgba(255, 255, 255, .82);
}

.trophy-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.trophy-hero-emblem {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    flex: 0 0 auto;
}

.trophy-hero-emblem i {
    color: #edc305;
    font-size: 4.3rem;
}

.trophy-summary-card {
    min-height: 6.25rem;
    height: 100%;
    border: 1px solid var(--falcon-border-color);
    border-radius: 8px;
    background: var(--falcon-card-bg);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.trophy-summary-card span {
    color: var(--falcon-600);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .04rem;
}

.trophy-summary-card strong {
    font-size: 1.65rem;
    line-height: 1.15;
    color: var(--falcon-900);
}

.trophy-summary-card .trophy-summary-text {
    font-size: 1rem;
    overflow-wrap: anywhere;
}

.trophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
    gap: 1rem;
}

.trophy-card {
    position: relative;
    min-height: 21rem;
    border: 1px solid var(--falcon-border-color);
    border-radius: 8px;
    background: var(--falcon-card-bg);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    box-shadow: 0 .25rem 1rem rgba(16, 24, 40, .06);
}

.trophy-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: .28rem;
    border-radius: 8px 8px 0 0;
    background: #b7791f;
}

.trophy-card.is-silver::before {
    background: #8a95a3;
}

.trophy-card.is-gold::before {
    background: #d69e2e;
}

.trophy-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

.trophy-icon {
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff4dc;
    color: #9c5d12;
}

.trophy-card.is-silver .trophy-icon {
    background: #eef2f7;
    color: #596579;
}

.trophy-card.is-gold .trophy-icon {
    background: #fff4bf;
    color: #aa6b00;
}

.trophy-icon i {
    font-size: 1.55rem;
}

.trophy-level {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .1rem;
    min-width: 4.5rem;
}

.trophy-level span {
    font-size: .72rem;
    color: var(--falcon-600);
}

.trophy-level strong {
    color: var(--falcon-900);
}

.trophy-card h3 {
    font-size: 1.05rem;
    margin: .2rem 0 0;
    color: var(--falcon-900);
}

.trophy-card p {
    color: var(--falcon-700);
    margin: 0;
    line-height: 1.45;
}

.trophy-meta-stack {
    display: grid;
    gap: .45rem;
    margin-top: auto;
}

.trophy-meta-stack div {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    color: var(--falcon-700);
}

.trophy-meta-stack i {
    color: var(--falcon-primary);
    margin-top: .08rem;
}

.trophy-card-footer {
    border-top: 1px solid var(--falcon-border-color);
    padding-top: .75rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .4rem;
    color: var(--falcon-600);
    font-size: .8rem;
}

@media (max-width: 575.98px) {
    .trophy-case-hero {
        min-height: 170px;
        padding: 1.25rem;
    }

    .trophy-case-hero h2 {
        font-size: 1.85rem;
    }

    .trophy-hero-emblem {
        width: 4.75rem;
        height: 4.75rem;
    }

    .trophy-hero-emblem i {
        font-size: 2.6rem;
    }

    .trophy-grid {
        grid-template-columns: 1fr;
    }
}
