/* Goalix Games Section Custom Styles & Micro-Animations */

/* Bootstrap does not ship a 20% background-opacity utility. Game badges use
   this level so their semantic text color stays readable on the dark theme. */
.bg-opacity-20 {
    --bs-bg-opacity: 0.2;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border-glass, rgba(255, 255, 255, 0.1));
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: var(--primary-neon, #6366f1);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.25);
}

.game-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.badge-mode {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-online {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.badge-single {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    border: 1px solid rgba(129, 140, 248, 0.3);
}

.leaderboard-rank {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.rank-1 { background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; box-shadow: 0 0 12px rgba(245, 158, 11, 0.5); }
.rank-2 { background: linear-gradient(135deg, #9ca3af, #6b7280); color: #fff; }
.rank-3 { background: linear-gradient(135deg, #b45309, #78350f); color: #fff; }
.rank-other { background: rgba(255, 255, 255, 0.1); color: #9ca3af; }

/* Higher or Lower Card styles */
.compare-card {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.player-img-lg {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.silhouette-img {
    filter: blur(11px) brightness(0.72) saturate(0.65);
    transition: filter 0.5s ease-in-out;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.silhouette-revealed {
    filter: blur(0) brightness(1) saturate(1) !important;
}

.grid-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 8px;
}

.grid-cell-header {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    font-weight: 700;
    color: #f8fafc;
}

.grid-cell-playable {
    background: rgba(15, 23, 42, 0.6);
    border: 2px dashed rgba(99, 102, 241, 0.4);
    border-radius: 12px;
    height: 110px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: table-cell;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
}

.grid-cell-playable:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: #6366f1;
    transform: scale(1.03);
}

.grid-cell-solved {
    background: rgba(16, 185, 129, 0.15) !important;
    border: 2px solid #10b981 !important;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.badge-online { display: none; }

.game-level-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.game-player-name {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.72);
    font-size: 0.82rem;
    font-weight: 700;
}

@media (max-width: 576px) {
    .game-page-toolbar {
        align-items: flex-start !important;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .game-page-status {
        flex: 1 1 100%;
        flex-wrap: wrap;
        gap: 0.5rem !important;
    }
}

.game-autocomplete-host { position: relative; }

.game-autocomplete-card { overflow: visible !important; }
.game-autocomplete-list {
    position: absolute;
    z-index: 1080;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    max-height: min(340px, calc(100vh - 1.5rem));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: #111827;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.game-autocomplete-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.65rem 0.75rem;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #f8fafc;
    background: transparent;
    text-align: left;
}

.game-autocomplete-option:hover,
.game-autocomplete-option:focus-visible { background: rgba(99, 102, 241, 0.18); }

.game-autocomplete-photo,
.game-autocomplete-photo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
}

.game-autocomplete-photo {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
}

.game-autocomplete-photo img { object-fit: cover; }
.game-autocomplete-copy { display: flex; flex: 1; min-width: 0; flex-direction: column; }
.game-autocomplete-copy small { color: #94a3b8; }
.game-autocomplete-team-logo { width: 30px; height: 30px; object-fit: contain; }
.game-autocomplete-empty { padding: 0.8rem; color: #94a3b8; text-align: center; }


main ::selection,
main input::selection,
main textarea::selection {
    color: #ffffff !important;
    background: #6d4aff !important;
    -webkit-text-fill-color: #ffffff;
}

main input,
main textarea {
    caret-color: #a78bfa;
}

.game-grid-dialog {
    position: fixed;
    inset: 0;
    z-index: 1090;
    box-sizing: border-box;
    width: min(540px, calc(100vw - 2rem));
    max-width: 540px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
}

.game-grid-dialog:not([hidden]) {
    display: grid;
    place-items: center;
    width: 100%;
    max-width: none;
    padding: 1rem;
    background: rgba(3, 7, 18, 0.78);
    backdrop-filter: blur(4px);
}

.game-grid-dialog[hidden] { display: none !important; }
.game-dialog-open { overflow: hidden; }

.game-grid-dialog::backdrop {
    background: rgba(3, 7, 18, 0.78);
    backdrop-filter: blur(4px);
}

.game-grid-dialog .modal-dialog {
    width: 100%;
    max-width: 540px;
    margin: 0;
}

.game-grid-dialog .modal-content {
    overflow: visible;
}

.game-grid-dialog:not([hidden]) {
    animation: game-dialog-in 160ms ease-out;
}

@keyframes game-dialog-in {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 576px) {
    .game-player-name { max-width: 130px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
    .grid-table { border-spacing: 4px; table-layout: fixed; }
    .grid-cell-header { padding: 8px 4px; font-size: 0.72rem; }
    .grid-cell-playable { min-width: 0; height: 82px; padding: 4px; }
    .compare-card { min-height: 320px; padding: 22px; }
}

.grid-player-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #10b981;
}

@media (max-width: 576px) {
    #challengeContainer .rounded-4 { padding: 0.55rem !important; }
    #challengeContainer h4 {
        font-size: 0.72rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.row.g-4.mb-4 .text-center > p.lead:not(.games-current-intro) { display: none; }
.games-current-intro { display: block; }
@media (max-width: 576px) {
    main .col-lg-8 > .d-flex.align-items-center.justify-content-between.mb-4 {
        align-items: flex-start !important;
        flex-wrap: wrap;
        gap: 0.65rem;
    }

    main .col-lg-8 > .d-flex.align-items-center.justify-content-between.mb-4 > .d-flex.align-items-center {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.4rem !important;
    }
}

.game-progress-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.5fr) auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.4rem;
    border: 1px solid rgba(109, 74, 255, 0.34);
    border-radius: 20px;
    background: linear-gradient(125deg, rgba(109, 74, 255, 0.16), rgba(17, 24, 39, 0.92) 48%, rgba(245, 158, 11, 0.08));
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.game-progress-profile { display: flex; align-items: center; gap: 1rem; }
.game-level-orb {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #fff;
    font-size: 1.55rem;
    font-weight: 900;
    background: linear-gradient(145deg, #8b5cf6, #4f46e5);
    box-shadow: 0 10px 26px rgba(109, 74, 255, 0.36);
}

.game-progress-track {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
}
.game-progress-track > span {
    display: block;
    height: 100%;
    min-width: 3px;
    border-radius: inherit;
    background: linear-gradient(90deg, #6d4aff, #a78bfa, #f59e0b);
}
.game-progress-stats { display: flex; flex-wrap: wrap; gap: 0.65rem 1.2rem; color: #94a3b8; font-size: 0.84rem; }
.game-progress-stats strong { color: #f8fafc; }
.game-period-links { display: grid; gap: 0.45rem; }
.game-period-links a {
    min-width: 118px;
    padding: 0.52rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #e2e8f0;
    text-align: center;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
}
.game-period-links a:hover { color: #fff; border-color: #8b5cf6; background: rgba(109, 74, 255, 0.16); }
.game-current-player { background: rgba(109, 74, 255, 0.12) !important; box-shadow: inset 3px 0 #8b5cf6; }
.game-level-chip {
    display: inline-flex;
    padding: 0.18rem 0.48rem;
    border-radius: 999px;
    color: #fff;
    background: rgba(109, 74, 255, 0.35);
    font-size: 0.7rem;
    font-weight: 800;
}
.game-rules-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 1rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(109, 74, 255, 0.28);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(109, 74, 255, 0.09);
    font-size: 0.78rem;
    text-align: left;
}
.game-difficulty-chip {
    flex: 0 0 auto;
    padding: 0.24rem 0.55rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, #6d4aff, #8b5cf6);
    font-weight: 800;
}
.game-team-line { display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem; min-height: 28px; }
.game-team-line img, .game-hint-team-logo { width: 24px; height: 24px; object-fit: contain; }
.grid-cell-header { vertical-align: middle; }
.grid-cell-header .grid-team-logo { display: block; width: 38px; height: 38px; object-fit: contain; margin: 0 auto 0.4rem; }
.game-engagement-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 1rem; }
.game-engagement-panel { padding: 1.25rem; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; background: linear-gradient(145deg, rgba(19, 25, 43, 0.96), rgba(12, 17, 31, 0.96)); box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2); }
.game-engagement-count { flex: 0 0 auto; padding: 0.32rem 0.62rem; border-radius: 999px; color: #ddd6fe; background: rgba(109, 74, 255, 0.18); font-size: 0.78rem; font-weight: 800; }
.game-challenge-list { display: grid; gap: 0.7rem; }
.game-challenge-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.78rem; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 14px; color: #e2e8f0; background: rgba(255, 255, 255, 0.035); }
.game-challenge-item > i { display: grid; flex: 0 0 38px; width: 38px; height: 38px; place-items: center; border-radius: 12px; color: #c4b5fd; background: rgba(109, 74, 255, 0.18); }
.game-challenge-item strong { color: #fff; font-size: 0.88rem; }
.game-challenge-item small { display: block; margin-top: 0.1rem; color: #94a3b8; }
.game-challenge-item.is-complete { border-color: rgba(34, 197, 94, 0.3); background: rgba(34, 197, 94, 0.07); }
.game-challenge-item.is-complete > i { color: #86efac; background: rgba(34, 197, 94, 0.16); }
.game-mini-progress { height: 5px; margin-top: 0.55rem; overflow: hidden; border-radius: 999px; background: rgba(255, 255, 255, 0.09); }
.game-mini-progress > span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #6d4aff, #a78bfa); }
.game-challenge-item.is-complete .game-mini-progress > span { background: #22c55e; }
.game-badge-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
.game-badge-item { display: flex; align-items: center; gap: 0.65rem; min-width: 0; padding: 0.72rem; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 14px; background: rgba(255, 255, 255, 0.035); }
.game-badge-icon { display: grid; flex: 0 0 36px; width: 36px; height: 36px; place-items: center; border-radius: 50%; color: #64748b; background: rgba(100, 116, 139, 0.13); }
.game-badge-item strong, .game-badge-item small, .game-badge-item span { display: block; }
.game-badge-item strong { color: #cbd5e1; font-size: 0.82rem; }
.game-badge-item small { color: #64748b; font-size: 0.68rem; line-height: 1.25; }
.game-badge-item span { margin-top: 0.22rem; color: #94a3b8; font-size: 0.65rem; font-weight: 800; }
.game-badge-item.is-unlocked { border-color: rgba(245, 158, 11, 0.3); background: rgba(245, 158, 11, 0.08); }
.game-badge-item.is-unlocked .game-badge-icon { color: #fbbf24; background: rgba(245, 158, 11, 0.18); box-shadow: 0 0 24px rgba(245, 158, 11, 0.12); }
.game-badge-item.is-unlocked strong { color: #fef3c7; }

.game-reward-xp { color: #fbbf24; font-size: 0.72rem; font-weight: 800; }
.game-badge-item time { display: block; color: #fbbf24; font-size: 0.64rem; }
.game-online-banner { overflow: hidden; border: 1px solid rgba(245,158,11,.28); border-radius: 24px; background: radial-gradient(circle at 85% 20%,rgba(245,158,11,.18),transparent 30%),linear-gradient(145deg,#171328,#0d1220); box-shadow: 0 18px 48px rgba(0,0,0,.25); }
.game-duel-shell { overflow: hidden; border: 1px solid rgba(109,74,255,.32); border-radius: 24px; background: linear-gradient(145deg,#11182a,#0b0f1a); box-shadow: 0 22px 60px rgba(0,0,0,.32); }
.game-duel-header { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.5rem; border-bottom:1px solid rgba(255,255,255,.08); }
.game-room-code { display:flex; align-items:center; gap:.7rem; padding:.55rem .7rem; border:1px solid rgba(245,158,11,.3); border-radius:14px; background:rgba(245,158,11,.08); }
.game-room-code span { color:#94a3b8; font-size:.72rem; text-transform:uppercase; }
.game-room-code strong { color:#fbbf24; letter-spacing:.12em; }
.game-duel-board { display:grid; grid-template-columns:minmax(0,1fr) 280px; gap:1.2rem; padding:1.5rem; }
.game-duel-question { min-width:0; text-align:center; }
.game-duel-question > img { width:220px; height:220px; object-fit:contain; border-radius:22px; }
.game-duel-hints { display:flex; justify-content:center; flex-wrap:wrap; gap:.65rem; margin-top:1rem; }
.game-duel-hints span { display:inline-flex; align-items:center; gap:.4rem; padding:.5rem .7rem; border-radius:999px; color:#cbd5e1; background:rgba(255,255,255,.06); }
.game-duel-participants { display:grid; gap:.7rem; }
.game-duel-player { display:flex; justify-content:space-between; gap:.6rem; padding:.8rem; border:1px solid rgba(255,255,255,.08); border-radius:13px; color:#94a3b8; background:rgba(255,255,255,.035); }
.game-duel-player strong { color:#f8fafc; }
.game-duel-player.is-current { border-color:rgba(109,74,255,.45); }
.game-duel-player.is-winner { border-color:rgba(245,158,11,.55); background:rgba(245,158,11,.1); }
.game-duel-timer { display:flex; align-items:center; justify-content:center; gap:.5rem; margin-top:1rem; padding:.8rem; border-radius:13px; color:#fbbf24; background:rgba(245,158,11,.08); font-size:1.2rem; font-weight:900; }
@media (max-width: 991px) {
    .game-progress-card { grid-template-columns: 1fr; }
    .game-engagement-grid { grid-template-columns: 1fr; }
    .game-duel-board { grid-template-columns: 1fr; }
    .game-period-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .game-period-links a { min-width: 0; }
}

@media (max-width: 576px) {
    .game-progress-card { padding: 1rem; gap: 1rem; }
    .game-engagement-panel { padding: 1rem; }
    .game-badge-grid { grid-template-columns: 1fr; }
    .game-duel-header { align-items: flex-start; flex-direction: column; }
    .game-room-code { width: 100%; flex-wrap: wrap; }
    .game-duel-board { padding: 1rem; }
    .game-duel-question > img { width: 170px; height: 170px; }
    .game-progress-main .d-flex { align-items: flex-start; flex-direction: column; gap: 0.2rem !important; }
    .game-progress-stats { gap: 0.45rem 0.8rem; }
    .game-period-links { gap: 0.3rem; }
    .game-period-links a { padding-inline: 0.35rem; font-size: 0.72rem; }
    .grid-cell-header .grid-team-logo { width: 26px; height: 26px; margin-bottom: 0.2rem; }
    .grid-cell-header h4 { font-size: 0.62rem !important; word-break: keep-all; overflow-wrap: normal; }
    .game-rules-banner { align-items: flex-start; border-radius: 14px; font-size: 0.7rem; }    main .col-lg-9 > .d-flex.align-items-center.justify-content-between.mb-4,
    main .col-lg-7 > .d-flex.align-items-center.justify-content-between.mb-4 {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 0.45rem;
    }
    main .col-lg-9 > .d-flex.align-items-center.justify-content-between.mb-4 .badge,
    main .col-lg-7 > .d-flex.align-items-center.justify-content-between.mb-4 .badge {
        padding: 0.42rem 0.6rem !important;
        font-size: 0.72rem !important;
    }
}
/* Personal game career */
.game-career-page { padding-bottom: 2rem; }
.game-career-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; padding-top: 1rem; }
.game-career-header h1 { margin: 0.35rem 0 0.45rem; color: #fff; font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 900; letter-spacing: -0.045em; }
.game-career-header p { max-width: 680px; margin: 0; color: #94a3b8; font-size: 1rem; }
.game-career-back { display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 1.2rem; color: #cbd5e1; text-decoration: none; font-size: 0.86rem; font-weight: 700; }
.game-career-back:hover { color: #fff; }
.game-career-eyebrow { display: block; color: #a78bfa; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; }

.career-auth-callout { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 1rem; margin-bottom: 1.25rem; padding: 1rem 1.15rem; border: 1px solid rgba(245, 158, 11, 0.28); border-radius: 18px; background: linear-gradient(120deg, rgba(245, 158, 11, 0.12), rgba(15, 23, 42, 0.92)); }
.career-auth-callout strong { color: #fff; }
.career-auth-callout p { margin: 0.2rem 0 0; color: #cbd5e1; font-size: 0.83rem; }
.career-auth-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: #fbbf24; background: rgba(245, 158, 11, 0.16); font-size: 1.25rem; }
.career-auth-actions { display: flex; align-items: center; gap: 0.55rem; }
.career-auth-saved { border-color: rgba(16, 185, 129, 0.25); background: linear-gradient(120deg, rgba(16, 185, 129, 0.12), rgba(15, 23, 42, 0.92)); }
.career-auth-saved .career-auth-icon { color: #34d399; background: rgba(16, 185, 129, 0.16); }

.career-hero-card { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(420px, 1fr); align-items: stretch; gap: 1.25rem; padding: 1.35rem; border: 1px solid rgba(109, 74, 255, 0.35); border-radius: 24px; background: radial-gradient(circle at 12% 20%, rgba(109, 74, 255, 0.24), transparent 34%), linear-gradient(135deg, rgba(17, 24, 39, 0.96), rgba(8, 12, 22, 0.98)); box-shadow: 0 24px 58px rgba(0, 0, 0, 0.25); }
.career-profile-block { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 1.15rem; padding: 0.75rem; }
.career-level-orb { width: 100px; height: 100px; display: grid; place-items: center; align-content: center; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 28px; color: #fff; background: linear-gradient(145deg, #8b5cf6, #4f46e5); box-shadow: 0 16px 36px rgba(109, 74, 255, 0.38); }
.career-level-orb span { font-size: 2.35rem; font-weight: 950; line-height: 1; }
.career-level-orb small { margin-top: 0.35rem; font-size: 0.56rem; font-weight: 900; letter-spacing: 0.15em; }
.career-profile-block h2 { margin: 0.25rem 0 0.85rem; color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; }
.career-progress-copy { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: 0.45rem; color: #94a3b8; font-size: 0.76rem; }
.career-progress-copy strong { color: #f8fafc; }
.career-kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.career-kpi-grid > div { min-width: 0; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 0.65rem; align-content: center; padding: 0.85rem; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 16px; background: rgba(255, 255, 255, 0.035); }
.career-kpi-grid i { grid-row: 1 / 3; align-self: center; color: #a78bfa; font-size: 1.25rem; }
.career-kpi-grid strong { color: #fff; font-size: 1.25rem; }
.career-kpi-grid span { color: #94a3b8; font-size: 0.72rem; }

.career-section { margin-top: 1.25rem; padding: 1.25rem; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 22px; background: rgba(15, 23, 42, 0.72); }
.career-section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.career-section-heading h2 { margin: 0.2rem 0 0; color: #fff; font-size: 1.18rem; font-weight: 850; }
.career-section-heading > p,.career-section-heading > span { margin: 0; color: #94a3b8; font-size: 0.78rem; }
.career-rank-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.career-rank-card { position: relative; display: flex; flex-direction: column; min-width: 0; padding: 1rem; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 17px; color: inherit; background: linear-gradient(135deg, rgba(109, 74, 255, 0.1), rgba(255, 255, 255, 0.025)); text-decoration: none; transition: transform 160ms ease, border-color 160ms ease; }
.career-rank-card:hover { transform: translateY(-3px); border-color: rgba(167, 139, 250, 0.55); }
.career-rank-card > span { color: #a78bfa; font-size: 0.75rem; font-weight: 800; }
.career-rank-card > strong { margin: 0.25rem 0; color: #fff; font-size: 2rem; line-height: 1; }
.career-rank-card > small { color: #94a3b8; }
.career-rank-card > i { position: absolute; top: 1rem; right: 1rem; color: #64748b; }

.career-content-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.8fr); gap: 1.25rem; }
.career-game-list,.career-history-list,.career-badge-list { display: grid; gap: 0.65rem; }
.career-game-stat { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 0.85rem; padding: 0.9rem; border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; background: rgba(255, 255, 255, 0.025); }
.career-game-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: #c4b5fd; background: rgba(109, 74, 255, 0.16); font-size: 1.05rem; }
.career-game-copy { min-width: 0; display: flex; flex-direction: column; }
.career-game-copy strong { color: #f8fafc; }
.career-game-copy span,.career-game-copy small { overflow: hidden; color: #94a3b8; font-size: 0.73rem; text-overflow: ellipsis; white-space: nowrap; }
.career-game-score { display: flex; flex-direction: column; align-items: flex-end; }
.career-game-score strong { color: #fbbf24; font-size: 1.05rem; }
.career-game-score span { color: #64748b; font-size: 0.68rem; }
.career-side-column { display: grid; align-content: start; gap: 1.25rem; margin-top: 1.25rem; }
.career-duel-card,.career-badge-card { padding: 1.25rem; border: 1px solid rgba(255, 255, 255, 0.09); border-radius: 22px; background: rgba(15, 23, 42, 0.72); }
.career-duel-card { background: radial-gradient(circle at 88% 0%, rgba(245, 158, 11, 0.2), transparent 42%), rgba(15, 23, 42, 0.82); }
.career-duel-title { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.career-duel-title h2 { margin: 0.2rem 0 0; color: #fff; font-size: 1.2rem; }
.career-win-rate { width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid rgba(245, 158, 11, 0.3); border-radius: 50%; color: #fbbf24; background: rgba(245, 158, 11, 0.1); font-weight: 900; }
.career-duel-record { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.45rem; margin: 1rem 0; }
.career-duel-record div { display: flex; flex-direction: column; align-items: center; padding: 0.65rem 0.3rem; border-radius: 13px; background: rgba(255, 255, 255, 0.04); }
.career-duel-record strong { color: #fff; font-size: 1.3rem; }
.career-duel-record span { color: #94a3b8; font-size: 0.62rem; }
.career-duel-card > p { color: #94a3b8; font-size: 0.76rem; }
.career-badge-item { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 0.65rem; padding: 0.7rem; border-radius: 13px; color: #64748b; background: rgba(255, 255, 255, 0.025); }
.career-badge-item > i:first-child { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: rgba(255, 255, 255, 0.05); }
.career-badge-item div { display: flex; flex-direction: column; min-width: 0; }
.career-badge-item strong { overflow: hidden; color: #94a3b8; font-size: 0.78rem; text-overflow: ellipsis; white-space: nowrap; }
.career-badge-item span { font-size: 0.65rem; }
.career-badge-item.is-unlocked { color: #fbbf24; background: rgba(245, 158, 11, 0.08); }
.career-badge-item.is-unlocked strong { color: #f8fafc; }
.career-history-item { display: grid; grid-template-columns: auto minmax(170px, 1.4fr) minmax(130px, 0.8fr) auto auto; align-items: center; gap: 0.8rem; padding: 0.8rem; border-bottom: 1px solid rgba(255, 255, 255, 0.07); }
.career-history-item:last-child { border-bottom: 0; }
.career-history-game,.career-opponent { min-width: 0; display: flex; flex-direction: column; }
.career-history-game strong,.career-opponent strong { overflow: hidden; color: #f8fafc; font-size: 0.82rem; text-overflow: ellipsis; white-space: nowrap; }
.career-history-game span,.career-opponent span { color: #64748b; font-size: 0.67rem; }
.career-result { min-width: 78px; padding: 0.3rem 0.55rem; border-radius: 999px; text-align: center; font-size: 0.68rem; font-weight: 850; }
.career-result.is-win { color: #34d399; background: rgba(16, 185, 129, 0.12); }
.career-result.is-loss { color: #fb7185; background: rgba(244, 63, 94, 0.12); }
.career-result.is-draw { color: #fbbf24; background: rgba(245, 158, 11, 0.12); }
.career-result.is-solo { color: #c4b5fd; background: rgba(109, 74, 255, 0.13); }
.career-history-score { color: #fff; font-size: 0.82rem; text-align: right; }
.career-empty { display: grid; place-items: center; min-height: 260px; padding: 2rem; border: 1px dashed rgba(255, 255, 255, 0.13); border-radius: 17px; color: #94a3b8; text-align: center; }
.career-empty > i { color: #8b5cf6; font-size: 2rem; }
.career-empty h3 { margin: 0.5rem 0 0; color: #fff; font-size: 1rem; }
.career-empty p { margin: 0.2rem 0 0.8rem; }
.career-empty-compact { min-height: 100px; }
.game-career-link { color: #fff !important; border-color: rgba(167, 139, 250, 0.5) !important; background: rgba(109, 74, 255, 0.14); }

@media (max-width: 991.98px) {
    .career-hero-card,.career-content-grid { grid-template-columns: 1fr; }
    .career-side-column { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 0; }
    .career-auth-callout { grid-template-columns: auto minmax(0, 1fr); }
    .career-auth-actions { grid-column: 1 / -1; justify-content: flex-end; }
}
@media (max-width: 767.98px) {
    .game-career-header { align-items: flex-start; flex-direction: column; }
    .game-career-header .btn { width: 100%; }
    .career-rank-grid,.career-side-column { grid-template-columns: 1fr; }
    .career-history-item { grid-template-columns: auto minmax(0, 1fr) auto; }
    .career-opponent { grid-column: 2; }
    .career-result { grid-column: 3; grid-row: 1; }
    .career-history-score { grid-column: 3; grid-row: 2; }
}
@media (max-width: 575.98px) {
    .career-auth-callout { grid-template-columns: 1fr; text-align: center; }
    .career-auth-icon { margin: auto; }
    .career-auth-actions { display: grid; width: 100%; }
    .career-hero-card { padding: 0.9rem; }
    .career-profile-block { grid-template-columns: 1fr; text-align: center; }
    .career-level-orb { width: 84px; height: 84px; margin: auto; border-radius: 24px; }
    .career-progress-copy { align-items: center; flex-direction: column; gap: 0.2rem; }
    .career-kpi-grid { grid-template-columns: 1fr 1fr; }
    .career-kpi-grid > div { grid-template-columns: 1fr; grid-template-rows: auto; text-align: center; }
    .career-kpi-grid i { grid-row: auto; }
    .career-section,.career-duel-card,.career-badge-card { padding: 1rem; border-radius: 18px; }
    .career-section-heading { align-items: flex-start; flex-direction: column; }
    .career-game-stat { grid-template-columns: auto minmax(0, 1fr); }
    .career-game-score { grid-column: 2; align-items: flex-start; flex-direction: row; gap: 0.3rem; }
    .career-history-item { grid-template-columns: auto minmax(0, 1fr); }
    .career-result,.career-history-score,.career-opponent { grid-column: 2; grid-row: auto; justify-self: start; text-align: left; }
}
/* Five-round realtime duel */
.game-room-page{padding-top:1.5rem;padding-bottom:4rem}.game-room-topbar{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:1rem}.game-live-badge{display:inline-flex;align-items:center;gap:.4rem;padding:.45rem .7rem;border-radius:999px;font-size:.75rem;font-weight:800;background:rgba(148,163,184,.12);color:#94a3b8}.game-live-badge:before{content:"";width:.5rem;height:.5rem;border-radius:50%;background:currentColor}.game-live-badge.is-connected{color:#34d399;background:rgba(52,211,153,.12)}.game-duel-header h1{margin:.2rem 0;color:#fff}.game-duel-header p{margin:0;color:#94a3b8}.game-room-message{margin:1rem 1.5rem 0;padding:.8rem 1rem;border:1px solid rgba(96,165,250,.18);border-radius:14px;color:#bfdbfe;background:rgba(37,99,235,.08)}.game-round-track{display:grid;grid-template-columns:repeat(5,1fr);gap:.65rem;padding:1rem 1.5rem}.game-round-step{display:flex;align-items:center;gap:.55rem;padding:.65rem;border:1px solid rgba(255,255,255,.08);border-radius:13px;color:#64748b;background:rgba(255,255,255,.025)}.game-round-step b{display:grid;place-items:center;width:1.8rem;height:1.8rem;border-radius:50%;background:rgba(255,255,255,.08);color:#cbd5e1}.game-round-step small{font-weight:700}.game-round-step.is-active{border-color:#6d4aff;color:#c4b5fd;background:rgba(109,74,255,.12)}.game-round-step.is-complete{border-color:rgba(52,211,153,.35);color:#6ee7b7}.game-round-step.is-complete b{background:#059669;color:white}.game-room-panel{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);gap:1.5rem;padding:1.5rem}.game-ready-copy,.game-result-hero{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;padding:1.5rem;border-radius:20px;background:radial-gradient(circle at top left,rgba(109,74,255,.18),transparent 50%),rgba(255,255,255,.025)}.game-ready-copy h2,.game-result-hero h2{color:#fff;margin:.8rem 0 .35rem}.game-ready-copy p,.game-result-hero p{color:#94a3b8;max-width:620px}.game-ready-icon{display:grid;place-items:center;width:3.4rem;height:3.4rem;border-radius:18px;color:#fbbf24;background:rgba(245,158,11,.13);font-size:1.5rem}.game-empty-rival{display:flex;align-items:center;gap:.75rem;min-height:82px;padding:1rem;border:1px dashed rgba(148,163,184,.25);border-radius:14px;color:#64748b}.game-duel-photo{filter:blur(12px);transform:scale(.96);transition:filter .2s;width:220px;height:220px;object-fit:contain;border-radius:22px;background:radial-gradient(circle,rgba(109,74,255,.16),transparent 68%)}.game-round-heading{display:flex;align-items:center;justify-content:space-between;max-width:520px;margin:0 auto 1rem;color:#cbd5e1;font-weight:800}.game-round-heading strong{color:#fbbf24;font-size:1.3rem;font-variant-numeric:tabular-nums}.game-duel-player>div:first-child{display:grid;gap:.25rem}.game-duel-player span{font-size:.78rem}.game-player-meta{display:grid;grid-template-columns:auto auto auto;align-items:center;gap:.5rem}.game-player-meta b{color:#f8fafc;font-size:1.15rem}.game-player-meta small{font-size:.68rem}.game-presence{width:.55rem;height:.55rem;border-radius:50%;background:#64748b}.game-presence.is-online{background:#34d399;box-shadow:0 0 0 4px rgba(52,211,153,.12)}.game-result-actions{grid-column:1/-1;display:flex;justify-content:center;gap:.8rem;flex-wrap:wrap}.game-result-hero{flex-direction:row;align-items:center;gap:1rem}.game-result-hero h2{margin-top:.25rem}
@media(max-width:767.98px){.game-room-page{padding-top:.75rem}.game-room-topbar{align-items:flex-start}.game-duel-header{padding:1rem}.game-room-code{align-items:flex-start}.game-room-code button{width:100%}.game-room-message{margin:.75rem 1rem 0}.game-round-track{gap:.3rem;padding:.8rem 1rem}.game-round-step{justify-content:center;padding:.45rem}.game-round-step small{display:none}.game-room-panel{grid-template-columns:1fr;padding:1rem}.game-ready-copy{padding:1.1rem}.game-duel-photo{width:170px;height:170px}.game-result-hero{align-items:flex-start}.game-result-actions>*{width:100%}}.game-duel-photo.is-revealed{filter:none;transform:scale(1);box-shadow:0 16px 38px rgba(0,0,0,.28)}
.game-round-step.is-reveal{border-color:rgba(245,158,11,.55);color:#fbbf24;background:rgba(245,158,11,.1)}.game-round-step.is-reveal b{background:#d97706;color:#fff}
.game-round-reveal{padding:1rem;border:1px solid rgba(245,158,11,.3);border-radius:18px;background:rgba(245,158,11,.07);text-align:left}.game-round-reveal h2{margin:.25rem 0 .65rem;color:#fff}
.game-reveal-team{display:flex;align-items:center;gap:.55rem;color:#cbd5e1}.game-reveal-team img{width:30px;height:30px;object-fit:contain}
.game-reveal-answers{display:grid;gap:.55rem;margin-top:1rem}.game-reveal-answer{display:flex;align-items:center;justify-content:space-between;gap:.75rem;padding:.7rem .8rem;border-radius:12px;background:rgba(255,255,255,.04);color:#cbd5e1}.game-reveal-answer span{display:grid}.game-reveal-answer small{color:#94a3b8}.game-reveal-answer.is-correct{border:1px solid rgba(52,211,153,.4)}.game-reveal-answer.is-wrong{border:1px solid rgba(248,113,113,.25)}.game-reveal-answer.is-current{background:rgba(109,74,255,.1)}
@media(max-width:767.98px){.game-reveal-answer{align-items:flex-start;flex-direction:column}.game-reveal-answer b{align-self:flex-end}}
/* Competitive matchmaking and seasonal 1v1 */
.competitive-banner-heading{display:flex;align-items:flex-start;justify-content:space-between;gap:1.5rem;margin-bottom:1.5rem}.competitive-banner-heading h2{margin:.25rem 0 .5rem;color:#fff}.competitive-banner-heading p{max-width:720px;margin:0;color:#94a3b8}.competitive-matchmaking-grid{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr);gap:1rem}.matchmaking-card,.manual-room-card,.competitive-panel{border:1px solid rgba(255,255,255,.09);border-radius:20px;background:rgba(10,14,28,.72);padding:1.25rem}.matchmaking-card{position:relative;overflow:hidden}.matchmaking-card:before{content:"";position:absolute;inset:0 auto 0 0;width:4px;background:#a78bfa}.matchmaking-player-rating{display:flex;align-items:center;gap:.8rem;margin-bottom:1.15rem}.matchmaking-player-rating>div{display:grid}.matchmaking-player-rating small{color:#94a3b8}.matchmaking-player-rating strong{color:#fff;font-size:1.15rem}.matchmaking-player-rating>span:last-child{margin-left:auto;color:#fbbf24;font-weight:900}.matchmaking-controls{display:grid;grid-template-columns:minmax(120px,.55fr) minmax(170px,1fr) auto;gap:.7rem}.matchmaking-status{display:flex;align-items:center;gap:.8rem;margin-top:1rem;padding:.85rem 1rem;border:1px solid rgba(251,191,36,.25);border-radius:14px;background:rgba(251,191,36,.07)}.matchmaking-status>div{display:grid}.matchmaking-status strong{color:#fde68a}.matchmaking-status small{color:#94a3b8}.matchmaking-pulse{width:.75rem;height:.75rem;border-radius:50%;background:#fbbf24;box-shadow:0 0 0 0 rgba(251,191,36,.5);animation:matchmaking-pulse 1.4s infinite}@keyframes matchmaking-pulse{70%{box-shadow:0 0 0 10px rgba(251,191,36,0)}100%{box-shadow:0 0 0 0 rgba(251,191,36,0)}}.manual-room-card h3{color:#fff;margin:.25rem 0}.manual-room-card p{color:#94a3b8}.competitive-mini-tier{display:grid;place-items:center;width:2.6rem;height:2.6rem;border-radius:13px;color:#cbd5e1;background:rgba(148,163,184,.13)}.tier-bronze .competitive-mini-tier,.competitive-mini-tier.tier-bronze{color:#d97706;background:rgba(217,119,6,.14)}.tier-silver .competitive-mini-tier,.competitive-mini-tier.tier-silver{color:#cbd5e1;background:rgba(203,213,225,.13)}.tier-gold .competitive-mini-tier,.competitive-mini-tier.tier-gold{color:#fbbf24;background:rgba(251,191,36,.14)}.tier-platinum .competitive-mini-tier,.competitive-mini-tier.tier-platinum{color:#5eead4;background:rgba(94,234,212,.14)}.tier-diamond .competitive-mini-tier,.competitive-mini-tier.tier-diamond{color:#60a5fa;background:rgba(96,165,250,.15)}.tier-champion .competitive-mini-tier,.competitive-mini-tier.tier-champion{color:#c084fc;background:rgba(192,132,252,.16)}
.competitive-page{padding:1.5rem 0 4rem}.competitive-header{display:flex;align-items:flex-end;justify-content:space-between;gap:1.5rem;margin-bottom:1.5rem}.competitive-header h1{margin:.25rem 0;color:#fff}.competitive-header p{margin:0;color:#94a3b8}.competitive-season-clock{display:grid;grid-template-columns:auto auto;align-items:center;gap:.15rem .6rem;min-width:190px;padding:1rem;border:1px solid rgba(251,191,36,.2);border-radius:16px;background:rgba(251,191,36,.07)}.competitive-season-clock i{grid-row:1/3;color:#fbbf24;font-size:1.5rem}.competitive-season-clock span{color:#94a3b8;font-size:.75rem}.competitive-season-clock strong{color:#fff}.competitive-hero{display:grid;grid-template-columns:auto minmax(220px,1fr) minmax(360px,1.25fr) auto;align-items:center;gap:1.5rem;margin-bottom:1.5rem;padding:1.5rem;border:1px solid rgba(167,139,250,.25);border-radius:24px;background:radial-gradient(circle at 10% 20%,rgba(124,58,237,.2),transparent 32%),rgba(15,18,35,.9)}.competitive-tier-emblem{display:grid;place-items:center;width:110px;height:110px;border-radius:28px;background:rgba(167,139,250,.13);color:#c4b5fd}.competitive-tier-emblem i{font-size:3rem}.competitive-tier-emblem span{font-weight:900}.competitive-rating-copy{display:grid}.competitive-rating-copy>span{color:#cbd5e1;font-weight:800}.competitive-rating-copy>strong{font-size:3rem;line-height:1;color:#fff}.competitive-rating-copy>small{color:#8b5cf6;font-weight:900}.competitive-rating-copy p{margin:.45rem 0 0;color:#94a3b8;font-size:.78rem}.competitive-tier-progress{height:.42rem;margin-top:.65rem;border-radius:999px;background:rgba(255,255,255,.08);overflow:hidden}.competitive-tier-progress span{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#7c3aed,#fbbf24)}.competitive-kpis{display:grid;grid-template-columns:repeat(3,1fr);gap:.7rem}.competitive-kpis>div{display:grid;padding:.85rem;border-radius:15px;background:rgba(255,255,255,.035)}.competitive-kpis span,.competitive-kpis small{color:#94a3b8;font-size:.72rem}.competitive-kpis strong{color:#fff;font-size:1.35rem}.competitive-grid{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(340px,.9fr);gap:1.25rem}.competitive-panel-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:1rem;margin-bottom:1rem}.competitive-panel-heading h2{margin:.2rem 0 0;color:#fff;font-size:1.35rem}.competitive-panel-heading>span{color:#64748b;font-size:.75rem}.competitive-leaderboard,.competitive-history{display:grid;gap:.55rem}.competitive-rank-row{display:grid;grid-template-columns:46px 42px minmax(0,1fr) auto 70px;align-items:center;gap:.65rem;padding:.75rem;border:1px solid rgba(255,255,255,.06);border-radius:14px;background:rgba(255,255,255,.025)}.competitive-rank-row.is-current{border-color:rgba(124,58,237,.45);background:rgba(124,58,237,.1)}.competitive-rank{color:#94a3b8;font-weight:900}.competitive-rank-row>div:nth-child(3){display:grid}.competitive-rank-row>div:nth-child(3) strong{color:#fff}.competitive-rank-row small{color:#64748b}.competitive-record{display:flex;gap:.45rem;color:#94a3b8;font-size:.75rem}.competitive-rating{color:#fbbf24;text-align:right}.competitive-history-row{display:grid;grid-template-columns:84px minmax(0,1fr) 70px 54px;align-items:center;gap:.7rem;padding:.8rem;border:1px solid rgba(255,255,255,.06);border-radius:14px;background:rgba(255,255,255,.025)}.competitive-history-row>div{display:grid}.competitive-history-row small,.competitive-history-row span{color:#64748b;font-size:.72rem}.competitive-history-row strong{color:#fff}.competitive-result-mark{font-weight:900}.competitive-history-row.is-win .competitive-result-mark{color:#34d399}.competitive-history-row.is-loss .competitive-result-mark{color:#fb7185}.competitive-history-row.is-draw .competitive-result-mark{color:#fbbf24}.competitive-scoreline{text-align:center}.competitive-rating-change{padding:.3rem .4rem;border-radius:8px;text-align:center;font-weight:900}.competitive-rating-change.is-positive{color:#34d399;background:rgba(52,211,153,.1)}.competitive-rating-change.is-negative{color:#fb7185;background:rgba(251,113,133,.1)}
@media(max-width:991.98px){.competitive-matchmaking-grid,.competitive-grid{grid-template-columns:1fr}.competitive-hero{grid-template-columns:auto 1fr}.competitive-kpis{grid-column:1/-1}.competitive-hero>a{grid-column:1/-1}.competitive-banner-heading,.competitive-header{align-items:flex-start;flex-direction:column}}@media(max-width:575.98px){.competitive-page{padding-top:.75rem}.matchmaking-controls{grid-template-columns:1fr}.competitive-hero{grid-template-columns:1fr;text-align:center}.competitive-tier-emblem{margin:auto}.competitive-kpis{grid-template-columns:1fr}.competitive-rank-row{grid-template-columns:38px 36px minmax(0,1fr) 60px}.competitive-record{display:none}.competitive-history-row{grid-template-columns:72px minmax(0,1fr) 52px}.competitive-rating-change{grid-column:2/4}.competitive-season-clock{width:100%}}
