﻿/* Bootstrap breakpoint guide:
   xs: 0, sm: 36rem, md: 48rem, lg: 62rem, xl: 75rem.
   Keep game screen-size overrides to md and below: @media (max-width: 48rem). */

.game-2026 {
    --bs-heading-color: #fff;
    --game-yellow: #ffd633;
    --game-gold: #ffba0a;
    --game-gold-deep: #de9d00;
    --game-red: #d81c27;
    --game-red-deep: #841322;
    --game-blue: #1d4bbe;
    --game-blue-deep: #1d3162;
    --game-green: #43b67b;
    --game-bg-green: #28c76f;
    --game-bg-blue: #00a2e8;
    --game-bg-secondary: #b8c2cc;
    --game-header-border: #133a8b;
    --game-header-shadow: #06112b;
    --game-header-shadow-2: #bf8900;
    --game-card-background: linear-gradient(180deg, #ffd845 0%, #ffbf15 100%);
    --game-action-primary-text: #de0909;
    --game-progress-percent: 0%;
    --game-page-background:
        linear-gradient(
            180deg,
            #8b0a1a 0%,
            #c0122a 3%,
            #1a1f8f 12%,
            #0a1560 35%,
            #050d3a 60%,
            #1a0a1a 80%,
            #3d0a12 100%
        );
}

.game-2026,
.game-2026 * {
    box-sizing: border-box;
}

body.game-2026 {
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    color: #fff;
    font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        url('/images/game/footer.png') center bottom / 100% auto no-repeat,
        var(--game-page-background);
}

body.game-2026.d-flex.flex-column.min-vh-100 {
    padding: 0 1.875rem 0;
}

.game-2026 main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.game-2026 .game-page-shell {
    width: 100%;
    margin: 0 auto;
}

.game-2026 .game-header-box,
.game-2026 .game-hero {
    position: relative;
    overflow: hidden;
    border: 0.0625rem solid var(--game-header-border);
    border-top-width: 0;
    border-bottom-width: 0.25rem;
    border-radius: 0 0 2.125rem 2.125rem;
    background: linear-gradient(90deg, rgba(15, 44, 124, 0.96) 0%, rgba(7, 29, 82, 0.96) 38%, rgba(12, 33, 94, 0.94) 65%, rgba(90, 17, 56, 0.9) 100%);
}

.game-2026 .game-hero {
    box-shadow: 0 0.5rem 0 var(--game-header-shadow);
}

.game-2026 .game-header-box {
    box-shadow: 0 0.625rem 0 var(--game-header-shadow);
}

.game-2026 .game-header-box.game-header-box--max-tier {
    border-color: var(--game-gold);
    border-left-width: 0.25rem;
    border-right-width: 0.25rem;
    box-shadow: 0 0.625rem 0 var(--game-gold-deep);
}

.game-2026 .game-header-box,
.game-2026 .game-header-box__inner {
    min-height: clamp(7rem, 10vh, 8.5rem);
}

.game-2026 .game-header-box__inner {
    background: transparent;
}

.game-2026 .game-header-box__content,
.game-2026 header {
    position: relative;
    z-index: 1;
    min-height: clamp(7rem, 10vh, 8.5rem);
    padding: clamp(0.4rem, 0.8vh, 0.75rem) clamp(0.7rem, 1.4vw, 1.1rem);
}

.game-2026 .game-header-box__content > .row {
    justify-content: space-between;
}

.game-2026 .game-header-main-col {
    text-align: start;
}

.game-2026 .game-header-logo-col {
    text-align: end;
}

.game-2026 .game-avatar-ring {
    width: clamp(4.6rem, 6.2vw, 5.5rem);
    height: clamp(4.6rem, 6.2vw, 5.5rem);
    padding: 0.25rem;
    border: 0.3125rem solid #e9a801;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, #fffad9 0%, #ffc528 60%, #d68f00 100%);
    box-shadow: 0 0.5rem 1.125rem rgba(0, 0, 0, 0.22);
}

.game-2026 .game-avatar-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.12);
}

.game-2026 .game-rank-pill {
    position: absolute;
    left: 50%;
    bottom: -0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.1875rem 0.5rem;
    border: 0.0625rem solid #fe0500;
    border-radius: 1rem;
    background: #ffb603;
    color: #031034;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    transform: translateX(-50%);
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.18);
}

.game-2026 .game-rank-pill img,
.game-2026 .game-lang-flag {
    width: 1.5rem;
    height: 1.5rem;
}

.game-2026 .game-rank-pill img {
    width: 0.8125rem;
    height: 0.95rem;
}

.game-2026 .game-display-name {
    margin: 0 0 0.875rem;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: 700;
    line-height: 1;
}

.game-2026 .game-progress-stage {
    position: relative;
    width: 100%;
    max-width: 35rem;
    padding-top: 1.125rem;
    margin: 0 auto;
}

.game-2026 .game-progress-wrapper {
    width: 100%;
}

.game-2026 .game-progress-need-more-wrap {
    position: absolute;
    left: 50%;
    top: 100%;
    width: fit-content;
    margin: 0;
    padding-bottom: 0.1563rem;
    border-radius: 0 0 0.6875rem 0.6875rem;
    background: #691518;
    transform: translateX(-50%);
    z-index: 2;
}

.game-2026 .game-progress-need-more {
    padding: 0.3125rem 1.125rem;
    border: 0.0313rem solid #ffd633;
    border-top: 0;
    border-radius: 0 0 0.6875rem 0.6875rem;
    background: linear-gradient(180deg, #d81c27 0%, #841322 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.game-2026 .game-progress-track {
    height: 1.3125rem;
    border-radius: 62.4375rem;
}

.game-2026 .game-progress-row {
    --bs-gutter-x: 0.75rem;
}

.game-2026 .game-progress-tier-gem {
    display: block;
    width: 3.6rem;
    height: 3rem;
}

.game-2026 img.game-progress-tier-gem {
    object-fit: contain;
    object-position: center;
}


.game-2026 .game-progress-icon {
    position: absolute;
    top: 50%;
    left: clamp(1.125rem, var(--game-progress-percent), calc(100% - 1.125rem));
    z-index: 10;
    width: 2.25rem;
    height: 1.9375rem;
    object-fit: contain;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0.375rem 0.625rem rgba(0, 0, 0, 0.24));
}

.game-2026 .game-progress-max-tier {
    position: relative;
    gap: 1rem;
    min-height: 4.75rem;
    background: transparent;
}

.game-2026 .game-progress-max-tier__badge-wrap {
    position: relative;
    width: clamp(6.2rem, 8.3vw, 7.8rem);
    height: clamp(6.2rem, 8.3vw, 7.8rem);
    flex: 0 0 auto;
}

.game-2026 .game-progress-max-tier__badge-wrap::before {
    content: '';
    position: absolute;
    left: 49%;
    top: 45%;
    width: 175%;
    height: 175%;
    transform: translate(-50%, -50%);
    background-image: url('/images/game/tier-max-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.game-2026 .game-progress-max-tier__badge {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    position: relative;
    z-index: 1;
}

.game-2026 .game-progress-max-tier__content {
    width: auto;
    align-items: center;
    justify-content: center;
}

.game-2026 .game-progress-max-tier__title {
    color: #ffb603;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.35rem;
}

.game-2026 .game-progress-max-tier .game-pill-shared {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.875rem;
    padding: 0.25rem 1rem;
    border: 0.125rem solid #ffb603;
    border-radius: 1.875rem;
    background: #9e131f;
}

.game-2026 .game-progress-max-tier__pill span {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1;
}


.game-2026 .game-logo {
    width: clamp(6.5rem, 9vw, 8rem);
    max-width: 100%;
    height: auto;
}

.game-2026 .game-card-shell {
    padding-bottom: 0.625rem;
    border-radius: 2.625rem;
    background: var(--game-gold-deep);
}

.game-2026 .game-feature-card {
    border: 0.0625rem solid rgba(255, 255, 255, 0.95);
    border-radius: 2.625rem;
    background: var(--game-card-background);
}

.game-2026 .game-feature-card {
    overflow: hidden;
}

.game-2026 .game-score-card__header {
    padding: 0.5rem 0.75rem;
    border: 0.125rem solid #fff;
    border-bottom: 0;
    border-radius: 1.875rem 1.875rem 0 0;
    background: #274bb2;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
}

.game-2026 .game-score-row {
    overflow: hidden;
    border: 0.0625rem solid #d3d8ef;
}

.game-2026 .game-score-row + .game-score-row {
    border-top: 0;
}

.game-2026 .game-score-row:last-of-type {
    border-radius: 0 0 1.25rem 1.25rem;
}

.game-2026 .game-score-row__label,
.game-2026 .game-score-row__value {
    min-height: 2.625rem;
    padding: 0.5625rem 0.875rem;
    font-size: 0.875rem;
    line-height: 1.15;
}

.game-2026 .game-score-row__label {
    background: #b30f23;
    color: #fff;
    font-weight: 500;
}

.game-2026 .game-score-row__value {
    background: #fff;
    color: #1e4fb5;
    font-weight: 700;
}

.game-2026 .game-footer-home {
    color: #fff;
    text-decoration: none;
}

.game-2026 .game-lang-toggle {
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    box-shadow: none;
}

.game-2026 .game-lang-toggle::after {
    margin-left: 0.25rem;
    vertical-align: middle;
}

.game-2026 .game-lang-toggle:hover,
.game-2026 .game-lang-toggle:focus,
.game-2026 .game-lang-toggle:active {
    color: #fff;
    background: transparent;
    box-shadow: none;
}

.game-2026 .game-lang-current,
.game-2026 .game-lang-short {
    font-weight: 700;
}

.game-2026 .game-lang-menu {
    min-width: 11.25rem;
    padding: 0.4rem;
    margin-bottom: 0.75rem;
    border: 0.0625rem solid rgba(255, 214, 51, 0.45);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(18, 6, 28, 0.96) 0%, rgba(90, 12, 24, 0.96) 100%);
}

.game-2026 .game-lang-menu .dropdown-item {
    border-radius: 0.625rem;
    color: #fff;
    font-size: 0.875rem;
    padding: 0.55rem 0.7rem;
}

.game-2026 .game-lang-menu .dropdown-item:hover,
.game-2026 .game-lang-menu .dropdown-item:focus,
.game-2026 .game-lang-menu .dropdown-item.active {
    color: #031034;
    background: var(--game-yellow);
}

.game-2026 .game-link-hint {
    color: #af1726;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.game-2026 .game-menu-button,
.game-2026 .game-quest-button,
.game-2026 .game-action-primary,
.game-2026 .game-action-secondary,
.game-2026 .game-footer-home,
.game-2026 .game-sound-toggle,
.game-2026 .game-action-arrow-back {
    border-radius: 62.4375rem;
}

.game-2026 .game-menu-button,
.game-2026 .game-quest-button {
    min-height: 3.375rem;
    border: 0.0625rem solid var(--game-yellow);
    background-color: var(--game-blue-deep);
    background-image: linear-gradient(180deg, var(--game-blue) 0%, var(--game-blue-deep) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #fff;
    box-shadow: none;
}

.game-2026 .game-menu-button--accent,
.game-2026 .game-menu-button--accentbtn,
.game-2026 .game-quest-button--accent,
.game-2026 .game-action-secondary {
    background-color: var(--game-red-deep);
    background-image: linear-gradient(180deg, var(--game-red) 0%, var(--game-red-deep) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.game-2026 .game-action-secondary,
.game-2026 .game-action-secondary:hover,
.game-2026 .game-action-secondary:focus {
    color: #fff4a8;
}

.game-2026 .game-action-primary {
    background: linear-gradient(180deg, #ffe258 0%, #ffba0a 100%);
    color: var(--game-action-primary-text);
    border: 0;
}

.game-2026 .game-action-arrow,
.game-2026 .game-action-arrow-back,
.game-2026 .game-sound-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 0.0625rem solid var(--game-yellow);
    border-radius: 62.4375rem;
    background: linear-gradient(180deg, #fe0601 0%, #00193b 100%);
    color: #fff;
}

.game-2026 .game-back-dashboard-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.2;
}

.game-2026 .game-menu-icon,
.game-2026 .game-quest-icon,
.game-2026 .game-inline-icon,
.game-2026 .game-arrow-icon,
.game-2026 .game-footer-icon,
.game-2026 .game-sound-icon,
.game-2026 .game-home-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.game-2026 .game-menu-icon,
.game-2026 .game-quest-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.game-2026 .game-arrow-icon,
.game-2026 .game-footer-icon,
.game-2026 .game-sound-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.game-2026 .game-footer-bar {
    min-height: clamp(2.35rem, 4.5vh, 2.9rem);
    padding: clamp(0.28rem, 0.8vh, 0.5rem) clamp(0.9rem, 1.8vw, 1.35rem);
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.5);
    border-left: 0.0625rem solid rgba(255, 255, 255, 0.5);
    border-right: 0.0625rem solid rgba(255, 255, 255, 0.5);
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    background-color: rgba(26, 1, 5, 0.5);
    background-image: linear-gradient(180deg, rgba(128, 5, 25, 0.5) 0%, rgba(26, 1, 5, 0.5) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    box-shadow: none;
}

.game-2026 .game-divider {
    width: 0.0625rem;
    height: 2.1875rem;
    background: rgba(255, 255, 255, 0.5);
}

.game-2026 .game-cost {
    font-size: 1rem;
}

.game-2026 .game-feature-card.card {
    box-shadow: none;
}

.game-2026 .game-feature-card .card-body {
    padding: 1rem;
}

.game-2026 .game-menu-button:hover,
.game-2026 .game-menu-button:focus,
.game-2026 .game-quest-button:hover,
.game-2026 .game-quest-button:focus,
.game-2026 .game-footer-home:hover {
    color: #fff;
}

.game-2026 .game-2026-index .btn {
    transition: transform 0.16s ease, filter 0.16s ease;
}

.game-2026 .game-2026-index .btn:hover {
    transform: translateY(-0.0625rem);
    filter: brightness(1.015);
}

.game-2026 .game-2026-index .btn:active {
    transform: translateY(0);
    filter: brightness(0.99);
}

.game-2026 .game-2026-index .game-index-action-strip {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.game-2026 .game-2026-index .game-index-action-strip.d-md-none {
    justify-content: center;
}

.game-2026 .game-2026-index .game-index-action-btn {
    min-height: 3.25rem;
    white-space: nowrap;
    box-shadow: 0 0.5rem 0 rgba(100, 10, 25, 0.95);
}

.game-2026 .game-2026-index .game-action-primary.game-index-action-btn {
    box-shadow: 0 0.5rem 0 rgba(186, 134, 0, 0.95);
}

.game-2026 .game-special-events {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 0.625rem;
    border-radius: 2.5625rem;
    background: var(--game-gold-deep);
}

.game-2026 .game-special-events__title {
    position: absolute;
    top: -0.875rem;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    padding: 0.125rem 0.75rem;
    border: 0.0625rem solid #fff;
    border-radius: 3.125rem;
    background: linear-gradient(180deg, var(--game-red) 0%, var(--game-red-deep) 100%);
    color: var(--game-yellow);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.game-2026 .game-special-events__track {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.75rem 1rem 0.5rem;
    border: 0.0625rem solid #fff;
    border-radius: 2.5625rem;
    background: linear-gradient(180deg, #ffd845 0%, #ffbf15 100%);
}

.game-2026 .game-special-event-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: 4.1875rem;
    gap: 0.1875rem;
}

.game-2026 .game-special-event-item__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.125rem;
    height: 3.125rem;
    padding: 0.3125rem;
    border: 0.125rem solid #d81c27;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff4be 0%, #ffd845 65%, #ffbf15 100%);
}

.game-2026 .game-special-event-item__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.game-2026 .game-special-event-item__name {
    color: #9e131f;
    font-size: 0.5313rem;
    font-weight: 700;
    line-height: 1;
}

.game-2026 .game-special-event-item__timer {
    min-width: 3.375rem;
    padding: 0.0625rem 0.375rem;
    border: 0.0625rem solid #ffd744;
    border-radius: 1.25rem;
    background: #031034;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.game-2026 .game-menu-icon svg,
.game-2026 .game-menu-icon img,
.game-2026 .game-menu-icon i,
.game-2026 .game-quest-icon svg,
.game-2026 .game-quest-icon img,
.game-2026 .game-quest-icon i,
.game-2026 .game-inline-icon svg,
.game-2026 .game-arrow-icon svg,
.game-2026 .game-footer-icon svg,
.game-2026 .game-sound-icon svg,
.game-2026 .game-home-icon svg {
    width: 100%;
    height: 100%;
}

.game-2026 .game-progress-stage .progress-bar {
    background: linear-gradient(90deg, #ffca0b 0%, #f1b100 100%);
    box-shadow: 0 0 1rem rgba(255, 221, 65, 0.35);
}

.game-2026 .f12 { font-size: 0.75rem; }
.game-2026 .f14 { font-size: 0.875rem; }
.game-2026 .f18 { font-size: 1.125rem; }
.game-2026 .f16 { font-size: 1rem; }
.game-2026 .f20 { font-size: clamp(0.98rem, 1.1vw, 1.15rem); }
.game-2026 .f28 { font-size: clamp(1.2rem, 1.5vw, 1.5rem); }
.game-2026 .f48 { font-size: clamp(2rem, 2.2vw, 2.4rem); }
.game-2026 .img-32 { width: 2rem; height: 2rem; }

.game-2026 .icon-20,
.game-2026 .icon-24,
.game-2026 .icon-32 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.game-2026 .icon-20 {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.25rem;
}

.game-2026 .icon-24 {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
}

.game-2026 .icon-32 {
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
}

.game-2026 .custom-tooltip {
    --bs-tooltip-bg: #ffffff;
    --bs-tooltip-color: #b3182b;
    --bs-tooltip-border-radius: 62.4375rem;
    --bs-tooltip-opacity: 1;
    --bs-tooltip-padding-x: 0.875rem;
    --bs-tooltip-padding-y: 0.4375rem;
    --bs-tooltip-arrow-width: 1rem;
    --bs-tooltip-arrow-height: 0.5rem;
    --bs-tooltip-max-width: none;
    --bs-tooltip-font-size: 1rem;
}

.game-2026 .custom-tooltip .tooltip-inner {
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.0125rem;
    box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.18);
}

.game-2026 .game-2026-tier .game-action-arrow-back i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.25rem;
}

.game-2026 .game-2026-tier h1.f48 {
    font-weight: 700;
    color: rgba(255, 214, 51, 1);
}

.game-2026 .game-2026-tier .card.game-card {
    background-color: #ffffff1a;
    border-radius: 2.625rem;
    border: 0.0625rem solid #fff;
}

.game-2026 .game-2026-tier .tier-img {
    width: auto;
    height: auto;
    max-height: clamp(5.5rem, 10vh, 8rem);
    opacity: 1;
}

.game-2026 .game-2026-tier .tier-title {
    font-weight: 700;
    font-size: clamp(2.1rem, 3.1vw, 3rem);
    line-height: 1.1;
    text-align: center;
    color: #ffd633;
}

.game-2026 .game-2026-tier .game-action-prev-arrow,
.game-2026 .game-2026-tier .game-action-next-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(2.9rem, 5.1vw, 3.8rem);
    height: clamp(2.9rem, 5.1vw, 3.8rem);
    border: 0.0625rem solid var(--game-yellow);
    border-radius: 50%;
    background: linear-gradient(180deg, #fe0601 0%, #00193b 100%);
    color: #fff;
    box-shadow: inset 0 0.0625rem 0 rgba(255, 255, 255, 0.14);
    text-decoration: none;
}

.game-2026 .game-2026-tier .game-action-prev-arrow:hover,
.game-2026 .game-2026-tier .game-action-next-arrow:hover {
    background: linear-gradient(180deg, #ffe156 0%, #b48200 100%);
    color: #af1726;
}

.game-2026 .game-2026-tier .game-action-prev-arrow.is-disabled,
.game-2026 .game-2026-tier .game-action-next-arrow.is-disabled {
    opacity: 0.45;
    pointer-events: none;
    cursor: default;
}

.game-2026 .game-2026-tier .game-action-prev-arrow i,
.game-2026 .game-2026-tier .game-action-next-arrow i {
    font-size: clamp(1.55rem, 2.5vw, 2.2rem);
    line-height: 1;
}

.game-2026 .game-2026-tier .tier-range-badge {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 0;
    min-width: 10.5625rem;
    height: clamp(2rem, 3.8vh, 2.45rem);
    background: transparent;
}

.game-2026 .game-2026-tier .tier-range-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    min-width: 3.5rem;
    padding: 0 0.75rem;
    background: #ffd633;
    border-radius: 1.875rem 0 0 1.875rem;
}

.game-2026 .game-2026-tier .tier-range-badge .ruby-icon {
    width: 2rem;
    height: 2rem;
}

.game-2026 .game-2026-tier .tier-range-badge .range-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    align-self: stretch;
    padding: 0 1rem;
    background: #fff;
    border: 0;
    border-radius: 0 1.875rem 1.875rem 0;
    height: auto;
    font-family: Poppins, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(0.92rem, 1vw, 1.1rem);
    line-height: 1.875rem;
    color: #031034;
}

.game-2026 .game-2026-tier .tier-range-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    width: auto;
    min-width: max-content;
}

.game-2026 .game-2026-tier .card.game-card-inside > .card-header {
    background: #9e131f;
    border-radius: 1.5625rem 1.5625rem 0 0;
    padding: 0.75rem 1.25rem;
}

.game-2026 .game-2026-tier .card.game-card-inside {
    border: 0.25rem solid var(--game-yellow);
    width: clamp(11.75rem, 21vw, 14.5rem);
    height: clamp(8.4rem, 16vh, 10.2rem);
    border-radius: 1.875rem;
    border-width: 0.25rem;
    display: flex;
    flex-direction: column;
}

.game-2026 .game-2026-tier .card.game-card-inside > .card-body {
    flex: 1 1 auto;
}

.game-2026 .game-2026-tier .tier-status-body {
    width: 100%;
    min-height: 0;
    padding: 0.5rem 0.75rem;
}

.game-2026 .game-2026-tier .tier-status-icon {
    display: block;
    margin: 0 auto;
    width: clamp(5.5rem, 9vw, 7.25rem) !important;
    max-width: 100%;
    height: auto;
}

.game-2026 .game-2026-tier .card-game-title {
    color: #ffd633;
    font-weight: 700;
    font-size: clamp(0.95rem, 1.1vw, 1.2rem);
    line-height: 100%;
    letter-spacing: 0.025rem;
    text-align: center;
}

.game-2026 .game-2026-tier .f40 {
    font-size: clamp(1.4rem, 1.9vw, 1.9rem);
    font-weight: 700;
}

.game-2026 .game-2026-tier .tier-header-separator {
    padding-top: clamp(1rem, 2.4vh, 1.75rem);
    padding-bottom: clamp(0.9rem, 2vh, 1.4rem);
}

.game-2026 .game-2026-tier .game-tier-slide-viewport {
    overflow: hidden;
}

.game-2026 .game-2026-tier .game-tier-slide-pane {
    width: 100%;
    will-change: transform, opacity;
}

.game-2026 .game-2026-tier .game-tier-reward-tooltip {
    width: 3.25rem;
    height: 3.25rem;
    padding: 0.625rem;
    border: 0.0313rem solid rgba(255, 255, 255, 0.8);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    cursor: help;
}

.game-2026 .game-2026-tier button.game-tier-reward-tooltip {
    color: inherit;
}

.game-2026 .game-2026-tier .game-tier-reward-tooltip.is-claimable {
    cursor: pointer;
}

.game-2026 .game-2026-tier .game-tier-reward-tooltip.is-claiming {
    opacity: 0.7;
    pointer-events: none;
}

.game-2026 .game-2026-tier .game-tier-reward-tooltip.is-locked {
    opacity: 0.45;
    filter: grayscale(1);
}

.game-2026 .game-2026-tier .game-tier-reward-tooltip.is-locked img {
    filter: grayscale(1);
}

.game-2026 .game-tier-reward-tooltip-popover {
    --bs-tooltip-padding-x: 0.625rem;
    --bs-tooltip-padding-y: 0.25rem;
    --bs-tooltip-arrow-width: 0.75rem;
    --bs-tooltip-arrow-height: 0.375rem;
    --bs-tooltip-font-size: 0.8125rem;
}

.game-2026 .game-2026-tier .game-tier-slide-pane.is-sliding-next {
    animation: game-tier-slide-next 260ms ease-out;
}

.game-2026 .game-2026-tier .game-tier-slide-pane.is-sliding-prev {
    animation: game-tier-slide-prev 260ms ease-out;
}

@keyframes game-tier-slide-next {
    from {
        opacity: 0;
        transform: translateX(2.25rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes game-tier-slide-prev {
    from {
        opacity: 0;
        transform: translateX(-2.25rem);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.game-2026 .game-2026-index section.my-3 {
    margin-top: clamp(2.25rem, 5vh, 4rem) !important;
    margin-bottom: clamp(0.35rem, 0.8vh, 0.75rem) !important;
    padding: clamp(0.45rem, 0.9vh, 0.85rem) !important;
}

.game-2026 .game-2026-index {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 100%;
    position: relative;
    z-index: 0;
}

.game-2026 .game-index-bg-video {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.game-2026 .game-index-bg-video video,
.game-2026 .game-index-bg-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
}

.game-2026 .game-index-bg-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
}

.game-2026 .game-2026-index .game-index-actions {
    margin-top: auto;
}

.game-2026 .game-2026-index section.pt-5 {
    padding-top: clamp(0.6rem, 1vh, 1rem) !important;
    padding-bottom: clamp(1.2rem, 2.5vh, 2rem) !important;
}

.game-2026 .game-2026-index .game-special-events {
    margin: 0 auto;
}

.game-2026 .game-2026-index .game-index-special-events {
    width: 100%;
    margin-top: clamp(1.75rem, 3.5vh, 2.75rem);
}

.game-2026 .game-2026-index .game-index-special-events .game-special-events__track {
    width: 100%;
    justify-content: center;
}

.game-2026 .game-2026-index .game-index-panels {
    flex-wrap: wrap;
    align-items: stretch;
}



.game-2026 .game-2026-index .game-index-tab-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.game-2026 .game-2026-index .game-index-tabs {
    width: 100%;
    border-bottom: 0;
    gap: 0.25rem;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    z-index: 2;
    transform: translateY(-0.525rem);
}

.game-2026 .game-2026-index .game-index-tabs .nav-item {
    flex: 1 1 0;
    min-width: 0;
}

.game-2026 .game-2026-index .game-index-tabs .nav-link {
    width: 100%;
    min-height: clamp(2.5rem, 5vh, 3rem);
    border: 0;
    border-radius: 1.5rem 1.5rem 0 0;
    background: transparent;
    color: #fff;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    font-weight: 800;
    line-height: 1.15;
    white-space: normal;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.game-2026 .game-2026-index .game-index-tabs .nav-link.active {
    background: var(--game-card-background);
    box-shadow: none;
}

.game-2026 .game-2026-index .game-index-tabs .nav-link.active,
.game-2026 .game-2026-index .game-index-tabs .nav-link:hover,
.game-2026 .game-2026-index .game-index-tabs .nav-link:focus {
    color: var(--game-action-primary-text);
}

.game-2026 .game-2026-index .game-index-tab-panel .tab-content,
.game-2026 .game-2026-index .game-index-tab-panel .tab-pane,
.game-2026 .game-2026-index .game-index-tab-panel .game-feature-card {
    width: 100%;
}

.game-2026 .game-2026-index .game-card-shell {
    flex: 1 1 0;
    max-width: clamp(18rem, 32vw, 26rem);
    width: 100%;
    min-width: 0;
}

.game-2026 .game-2026-index .game-index-desktop .game-card-shell {
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
}

.game-2026 .game-2026-index .game-stats-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.game-2026 .game-2026-index .game-stats-panel__tab {
    position: relative;
    z-index: 2;
    align-self: flex-start;
    min-width: 10.25rem;
    margin-bottom: -0.0625rem;
    padding: 0.25rem 1rem 0;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.95);
    border-left: 0.0625rem solid rgba(255, 255, 255, 0.95);
    border-right: 0.0625rem solid rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem 1.5rem 0 0;
    background: linear-gradient(180deg, #ffd743 6.452%, #ffc017 100%);
}

.game-2026 .game-2026-index .game-stats-panel__tab-label {
    display: block;
    padding: 0.3125rem 0.75rem 0.5625rem;
    border-bottom: 0.0625rem dashed #ffb603;
    color: #af1726;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.game-2026 .game-2026-index .game-stats-panel--right .game-stats-panel__tab {
    align-self: flex-end;
}

.game-2026 .game-2026-index .game-stats-panel__shell {
    padding-bottom: 0.625rem;
    border-radius: 2.625rem;
    background: #de9d00;
}

.game-2026 .game-2026-index .game-stats-panel__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-height: 100%;
    padding: 1rem 1.25rem 1.125rem;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.95);
    border-left: 0.0625rem solid rgba(255, 255, 255, 0.95);
    border-right: 0.0625rem solid rgba(255, 255, 255, 0.95);
    border-radius: 0 2.625rem 2.625rem 2.625rem;
    background: linear-gradient(180deg, #ffd845 0%, #ffbf15 100%);
}

.game-2026 .game-2026-index .game-stats-panel--right .game-stats-panel__body {
    border-radius: 2.625rem 0 2.625rem 2.625rem;
}

.game-2026 .game-2026-index .game-stats-panel__cards {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    width: 100%;
}

.game-2026 .game-2026-index .game-stats-panel__card {
    width: 100%;
}

.game-2026 .game-2026-index .game-stats-panel__card-title {
    padding: 0.5rem 1rem;
    border: 0.125rem solid #fff;
    border-bottom: 0;
    border-radius: 1.875rem 1.875rem 0 0;
    background: #133b9f;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.025rem;
    line-height: 1.1;
    text-align: center;
}

.game-2026 .game-2026-index .game-stats-panel__rows {
    border: 0.125rem solid #fff;
    border-radius: 0 0 1.875rem 1.875rem;
    overflow: hidden;
}

.game-2026 .game-2026-index .game-stats-panel__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 8.8125rem;
}

.game-2026 .game-2026-index .game-stats-panel__row + .game-stats-panel__row {
    border-top: 0.0625rem solid #d3d8ef;
}

.game-2026 .game-2026-index .game-stats-panel__label,
.game-2026 .game-2026-index .game-stats-panel__value {
    display: flex;
    align-items: center;
    min-height: 4.125rem;
    padding: 0.75rem 1.25rem;
    font-size: 1.125rem;
    letter-spacing: 0.025rem;
    line-height: 1.05;
}

.game-2026 .game-2026-index .game-stats-panel__label {
    background: #9e131f;
    color: #fff;
    font-weight: 500;
}

.game-2026 .game-2026-index .game-stats-panel__value {
    justify-content: center;
    background: #fff;
    color: #133b9f;
    font-weight: 700;
    border-left: 0.0625rem solid #d3d8ef;
}

.game-2026 .game-2026-index .game-stats-panel__hint {
    padding: 0;
    border: 0;
    background: transparent;
    color: #af1726;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: underline;
}


.game-2026 .game-2026-index .game-index-mobile .game-card-shell {
    max-width: none;
    margin-top: -0.5rem;
}

.game-2026 .game-2026-index .game-index-tab-panel--first-active .game-card-shell,
.game-2026 .game-2026-index .game-index-tab-panel--first-active .game-feature-card {
    border-top-left-radius: 0;
}

.game-2026 .game-2026-index .game-index-tab-panel--last-active .game-card-shell,
.game-2026 .game-2026-index .game-index-tab-panel--last-active .game-feature-card {
    border-top-right-radius: 0;
}

.game-2026 .game-2026-index .game-feature-card--score {
    min-width: clamp(16rem, 30vw, 20.625rem);
    width: 100%;
}

.game-2026 .game-2026-index .game-index-desktop .game-feature-card--score {
    min-width: 0;
}

.game-2026 .game-2026-index .game-feature-card .card-body {
    padding: clamp(0.6rem, 1.2vh, 1rem);
}

.game-2026 .game-2026-index .game-index-panels .game-feature-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.game-2026 .game-2026-index .game-index-tab-panel .game-feature-card .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.game-2026 .game-2026-index .game-menu-button,
.game-2026 .game-2026-index .game-quest-button {
    min-height: clamp(2.35rem, 4.7vh, 3rem);
    padding-top: clamp(0.42rem, 0.9vh, 0.65rem) !important;
    padding-bottom: clamp(0.42rem, 0.9vh, 0.65rem) !important;
}

.game-2026 .game-2026-index .game-quest-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.625rem, 1.4vw, 1rem);
}

.game-2026 .game-2026-index #game-quest-panel .game-quest-button:not(.game-quest-final-button) {
    min-height: clamp(6.25rem, 13vh, 8rem);
    border-radius: clamp(1.25rem, 2vw, 1.75rem);
    gap: clamp(0.45rem, 1vh, 0.75rem);
}

.game-2026 .game-2026-index #game-quest-panel .game-quest-icon,
.game-2026 .game-2026-index #game-quest-panel .game-quest-final-icon {
    width: clamp(2rem, 4vw, 3rem);
    height: clamp(2rem, 4vw, 3rem);
    flex: 0 0 auto;
}

.game-2026 .game-2026-index #game-quest-panel .game-quest-icon.img-32 img,
.game-2026 .game-2026-index #game-quest-panel .game-quest-final-icon.img-32 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.game-2026 .game-2026-index .game-score-row__label,
.game-2026 .game-2026-index .game-score-row__value {
    min-height: clamp(2rem, 4.2vh, 2.5rem);
    padding-top: clamp(0.3rem, 0.7vh, 0.48rem);
    padding-bottom: clamp(0.3rem, 0.7vh, 0.48rem);
}

.game-2026 .game-2026-tier {
    margin-top: clamp(2rem, 4.5vh, 3.75rem) !important;
    margin-bottom: clamp(1.2rem, 2.5vh, 2rem) !important;
}

.game-2026 .game-2026-tier > .d-flex {
    gap: clamp(0.7rem, 1.2vw, 1.35rem) !important;
    align-items: stretch !important;
}

.game-2026 .game-2026-tier .game-tier-main-row {
    align-items: stretch !important;
}

.game-2026 .game-2026-tier .game-tier-persona-space {
    width: clamp(14rem, 20rem, 24rem) !important;
    min-height: 1px;
    align-self: stretch !important;
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    margin-left: -3rem;
    margin-right: -3rem;
}

.game-2026 .game-2026-tier .game-tier-persona-image {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    display: block;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0.2) 78%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 45%, rgba(0, 0, 0, 0.2) 78%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.game-2026 .game-2026-tier .game-tier-persona-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
}

.game-2026 .game-2026-tier .game-tier-profile-dropdown {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 4;
}

.game-2026 .game-2026-tier .game-tier-profile-dropdown__toggle {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    box-shadow: none;
    text-decoration: none !important;
}

.game-2026 .game-2026-tier .game-tier-profile-dropdown__toggle i {
    font-size: 1.25rem;
    line-height: 1;
}

.game-2026 .game-2026-tier .game-tier-profile-dropdown__toggle:hover,
.game-2026 .game-2026-tier .game-tier-profile-dropdown__toggle:focus,
.game-2026 .game-2026-tier .game-tier-profile-dropdown__toggle:active {
    text-decoration: none !important;
    box-shadow: none !important;
}

.game-2026 .game-2026-tier .game-tier-profile-tooltip {
    position: absolute;
    top: calc(100% + 0.25rem);
    right: 0;
    z-index: 20;
    min-width: 12.5rem;
    padding: 0.5rem 0.875rem;
    border: 0.0625rem solid rgba(255, 255, 255, 0.3);
    border-radius: 0.375rem;
    background: rgba(16, 32, 86, 0.95);
    -webkit-backdrop-filter: blur(0.125rem);
    backdrop-filter: blur(0.125rem);
}

.game-2026 .game-2026-tier .game-tier-profile-tooltip .form-check-label {
    color: #fff;
}

.game-2026 .game-2026-tier .card.d-block.flex-fill.game-card > .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(0.55rem, 1vh, 0.9rem);
    padding-bottom: clamp(0.65rem, 1.2vh, 1rem);
}

.game-2026 .game-2026-tier .d-flex.justify-content-center.my-4.gap-4 {
    margin-top: clamp(1rem, 2.2vh, 1.8rem) !important;
    margin-bottom: clamp(0.55rem, 1vh, 0.95rem) !important;
    gap: clamp(0.65rem, 1.2vw, 1.1rem) !important;
}

.game-2026 .game-2026-tier .game-tier-progress-wrap {
    padding-top: clamp(0.15rem, 0.45vh, 0.35rem) !important;
    padding-bottom: clamp(0.35rem, 0.75vh, 0.55rem) !important;
}

.game-2026 .game-tier-ruby-count {
    color: #133b9f;
}

.game-2026 .game-tier-progress-track,
.game-2026 .game-tier-progress-fill {
    top: 28%;
    z-index: 0;
    height: 1.3125rem;
    border-radius: 0.4375rem;
    transform: translateY(-50%);
}

.game-2026 .game-tier-progress-track {
    background: #3b0008;
}

.game-2026 .game-tier-progress-fill {
    background: linear-gradient(90deg, #f0b429, #e69c00);
}

.game-2026 .game-tier-milestones {
    z-index: 1;
}

.game-2026 .game-tier-milestone {
    gap: 0.625rem;
}

.game-2026 .game-tier-milestone-gem {
    position: relative;
    top: 0.3125rem;
    left: 0.125rem;
    width: 2.75rem;
    height: 2.5rem;
    border-radius: 0.0625rem;
}

.game-2026 .game-tier-milestone-placeholder {
    width: 3.125rem;
    height: 2.875rem;
}

.game-2026 .game-tier-reward-check {
    top: -0.375rem;
    right: -0.375rem;
    width: 1.125rem;
    height: 1.125rem;
}

.game-2026 .game-tier-reward-check-icon {
    color: rgb(51, 255, 129);
}

.game-2026 .game-2026-tier .game-tier-reward-tooltip > img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

/* 2026 leaderboard standalone page */
body.game-2026.game-2026-leaderboard-page {
    padding: 0;
    background:
        url('/images/game/footer.png') center bottom / 100% auto no-repeat,
        linear-gradient(
            180deg,
            #8b0a1a 0%,
            #c0122a 5%,
            #1a1f8f 20%,
            #0a1560 35%,
            #050d3a 60%,
            #1a0a1a 80%,
            #3d0a12 100%
        );
}

body.game-2026.game-2026-leaderboard-page header {
    height: 100%;
    min-height: 8.25rem;
    padding: 1.5rem 1.625rem 1rem;
}

body.game-2026.game-2026-leaderboard-page .leaderboard-tabs {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

body.game-2026.game-2026-leaderboard-page .game-action-arrow-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    border: 0.0625rem solid #ffe685;
    border-radius: 50%;
    background: linear-gradient(180deg, #fe0601 0%, #00193b 100%);
    color: #fff;
    box-shadow: inset 0 0.0625rem 0 rgba(255, 255, 255, 0.14);
}

body.game-2026.game-2026-leaderboard-page .game-action-arrow-back i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 1.25rem;
}

body.game-2026.game-2026-leaderboard-page .table-custom > thead > tr > th {
    background: #fff !important;
    color: #000 !important;
}

body.game-2026.game-2026-leaderboard-page .table-custom > tbody > tr > td:not(.dataTables_empty) {
    --bs-table-bg-type: #fff;
    --bs-table-accent-bg: #fff;
    background: #fff;
    box-shadow: none;
}

body.game-2026.game-2026-leaderboard-page .table-custom > tbody > tr.row-gold > td:not(.dataTables_empty) {
    background: #fff2c9 !important;
}

body.game-2026.game-2026-leaderboard-page .table-custom > tbody > tr.row-silver > td:not(.dataTables_empty) {
    background: #ebebf7 !important;
}

body.game-2026.game-2026-leaderboard-page .table-custom > tbody > tr.row-bronze > td:not(.dataTables_empty) {
    background: #f9dfc6 !important;
}

body.game-2026.game-2026-leaderboard-page .table-custom > tbody > tr.row-auth > td:not(.dataTables_empty) {
    background: #c3efd7 !important;
}

body.game-2026.game-2026-leaderboard-page .table-custom > tbody > tr.row-auth-side > td:not(.dataTables_empty) {
    background: #e8fbf1 !important;
}

body.game-2026.game-2026-leaderboard-page .btn-yellow {
    --bs-btn-color: #ffe685;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: #ffe685;
    --bs-btn-hover-color: #031034;
    --bs-btn-hover-bg: #ffe685;
    --bs-btn-hover-border-color: #ffe685;
    --bs-btn-focus-shadow-rgb: 255, 230, 133;
    --bs-btn-active-color: #031034;
    --bs-btn-active-bg: #ffd633;
    --bs-btn-active-border-color: #ffe685;
    --bs-btn-disabled-color: #ffe685;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffe685;
    border-radius: 0.3125rem;
    background-color: transparent;
    color: #ffe685;
    border: 0.125rem solid #ffe685 !important;
    font-weight: 700;
}

body.game-2026.game-2026-leaderboard-page .btn-yellow:hover,
body.game-2026.game-2026-leaderboard-page .btn-yellow.active:hover {
    background-color: #ffe685;
    color: #031034;
}

body.game-2026.game-2026-leaderboard-page .btn-yellow:active,
body.game-2026.game-2026-leaderboard-page .btn-yellow.active {
    background-color: #ffd633;
    color: #031034;
    border-color: #ffe685 !important;
    font-weight: 700;
}

body.game-2026.game-2026-leaderboard-page .leaderboard-heading {
    color: #fff;
}

body.game-2026.game-2026-leaderboard-page .game-2026-leaderboard {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0.75rem 0 2rem;
}

body.game-2026.game-2026-leaderboard-page .game-2026-leaderboard .leaderboard-panel {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

body.game-2026.game-2026-leaderboard-page .leaderboard-table-title {
    color: #fff;
    font-weight: 700;
    text-align: center;
}

body.game-2026.game-2026-leaderboard-page .game-2026-leaderboard .table-responsive,
body.game-2026.game-2026-leaderboard-page .game-2026-leaderboard table.dataTable {
    width: 100% !important;
}

body.game-2026.game-2026-leaderboard-page .game-2026-leaderboard .table-custom > :is(thead, tbody) > tr > :last-child {
    padding-right: 1rem !important;
}

body.game-2026.game-2026-leaderboard-page .game-2026-leaderboard .leaderboard-rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    font-weight: 700;
}

body.game-2026.game-2026-leaderboard-page .game-2026-leaderboard .leaderboard-avatar {
    width: 2rem;
    height: 2rem;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 0.5rem;
}

body.game-2026.game-2026-leaderboard-page .game-2026-leaderboard .dataTables_wrapper {
    color: #fff;
}

body.game-2026.game-grand-final-page .game-header-box {
    border: 0.0625rem solid #fff;
    background: radial-gradient(ellipse at bottom, #ffd633 0%, #ffa500 60%, #e07800 100%);
    box-shadow: 0 0.625rem 0 var(--game-header-shadow-2);
}

body.game-2026.game-grand-final-page h1.f48 {
    color: #133b9f;
    font-weight: 700;
}

body.game-2026.game-grand-final-page p.f20 {
    color: #9e131f;
    font-weight: 600;
}

body.game-2026.game-grand-final-page .card.border-yellow {
    padding: 0.875rem;
    border: 0.0625rem solid #ff9f43;
    border-radius: 0.4375rem;
}

body.game-2026.game-grand-final-page .btn-primary {
    --bs-btn-padding-y: 0.25rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.75rem;
    --bs-btn-bg: var(--game-bg-green);
    --bs-btn-color: #fff;
    --bs-btn-border-color: var(--game-bg-green);
}

body.game-2026.game-grand-final-page .btn-primary:disabled {
    opacity: 0.25;
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: var(--game-bg-green);
    border-color: var(--game-bg-green);
}

body.game-2026.game-grand-final-page .badge {
    border-radius: 8.75rem;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 400;
    line-height: 0.7rem;
    letter-spacing: 0.0088rem;
    text-align: center;
    vertical-align: middle;
}

body.game-2026.game-grand-final-page .font-primary {
    color: var(--game-bg-green);
}

body.game-2026.game-grand-final-page .bg-primary {
    background-color: var(--game-bg-green) !important;
}

body.game-2026.game-grand-final-page .badge.bg-blue {
    background-color: var(--game-bg-blue) !important;
}

body.game-2026.game-grand-final-page .badge.bg-secondary {
    background-color: var(--game-bg-secondary) !important;
}

body.game-2026.game-grand-final-page .badge.bg-primary {
    background-color: var(--game-bg-green) !important;
}

body.game-2026.game-grand-final-page .progress,
body.game-2026.game-grand-final-page .progress-stacked {
    height: 0.3119rem;
}

body.game-2026.game-grand-final-page .game-grand-final-points {
    padding: 0.125rem;
    border-radius: 1.875rem;
    background: linear-gradient(180deg, #ffb603 0%, #d99c02 100%);
}

body.game-2026.game-grand-final-page .game-grand-final-points__inner {
    border-radius: 1.75rem;
}

body.game-2026.game-grand-final-page .game-grand-final-points__label,
body.game-2026.game-grand-final-page .game-grand-final-points__value {
    display: flex;
    align-items: center;
    height: 2.6875rem;
    padding: 0.5rem 1.25rem;
}

body.game-2026.game-grand-final-page .game-grand-final-points__label {
    background: #9e131f;
}

body.game-2026.game-grand-final-page .game-grand-final-points__label span {
    color: var(--game-yellow);
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

body.game-2026.game-grand-final-page .game-grand-final-points__value {
    justify-content: center;
    min-width: 4.6875rem;
    background: #133b9f;
}

body.game-2026.game-grand-final-page .game-grand-final-points__value span {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

body.game-2026.game-grand-final-page .game-grand-final-card {
    padding: 1.25rem;
    border: 0.0625rem solid var(--game-yellow);
    border-radius: 1rem;
}

body.game-2026.game-grand-final-page .game-grand-final-quest-row {
    gap: 0.625rem;
}

body.game-2026.game-grand-final-page .game-grand-final-quest-content {
    min-width: 0;
}

body.game-2026.game-grand-final-page .game-grand-final-quest-title {
    font-weight: 700;
}

body.game-2026.game-grand-final-page .game-grand-final-quest-status {
    color: #b8c2cc;
    font-size: 0.875rem;
}

body.game-2026.game-grand-final-page .game-grand-final-quest-reward {
    color: #626262;
}

body.game-2026.game-grand-final-page .game-grand-final-progress-bar {
    width: var(--game-grand-final-progress, 0%);
}

/* 2026 info modals */
.game-2026 .game-info-modal__dialog,
.game-2026 .game-info-modal__content {
    overflow: visible;
}

.game-2026 .modal-content.game-info-modal__content {
    --game-info-modal-radius: 1.25rem;
    --game-info-modal-border-width: 0.1875rem;
    --game-info-modal-inner-radius: calc(var(--game-info-modal-radius) - var(--game-info-modal-border-width));
    border: var(--game-info-modal-border-width) solid #ffd633;
    border-radius: var(--game-info-modal-radius);
}

.game-2026 .game-info-modal__close {
    position: absolute;
    top: -1rem;
    right: -1rem;
    z-index: 1060;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 0.125rem solid #ffd633;
    border-radius: 50%;
    background: linear-gradient(180deg, #fe0601 0%, #00193b 100%);
    color: #fff;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}

.game-2026 .game-info-modal__header {
    padding: 1.25rem 3rem;
    border-radius: var(--game-info-modal-inner-radius) var(--game-info-modal-inner-radius) 0 0;
    background: #8b0a1a;
}

.game-2026 .game-info-modal__title {
    color: #ffd633;
    font-size: 1.25rem;
}

.game-2026 .game-info-modal__body {
    border-radius: 0 0 var(--game-info-modal-inner-radius) var(--game-info-modal-inner-radius);
    background: #fff;
}

.game-2026 .game-info-modal__icon-wrap {
    margin-bottom: 0.875rem;
}

.game-2026 .game-info-modal__icon-error,
.game-2026 .game-info-modal__icon-success {
    display: none;
}

.game-2026 .game-info-modal__icon--error .game-info-modal__icon-error,
.game-2026 .game-info-modal__icon--success .game-info-modal__icon-success {
    display: block;
}

.game-2026 .game-info-modal__icon-error {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto;
    border: 0.25rem solid #f27474;
    border-radius: 50%;
    box-sizing: content-box;
}

.game-2026 .game-info-modal__icon-error-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.625rem;
    height: 0.3125rem;
    border-radius: 0.125rem;
    background: #f27474;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.game-2026 .game-info-modal__icon-error-line--left {
    -webkit-transform: translate(-50%, -50%) rotate(45deg) scaleX(0);
    transform: translate(-50%, -50%) rotate(45deg) scaleX(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: game-info-modal-error-left 0.35s ease-out 0.2s forwards;
    animation: game-info-modal-error-left 0.35s ease-out 0.2s forwards;
}

.game-2026 .game-info-modal__icon-error-line--right {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg) scaleX(0);
    transform: translate(-50%, -50%) rotate(-45deg) scaleX(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation: game-info-modal-error-right 0.35s ease-out 0.2s forwards;
    animation: game-info-modal-error-right 0.35s ease-out 0.2s forwards;
}

@-webkit-keyframes game-info-modal-error-left {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(45deg) scaleX(0);
        transform: translate(-50%, -50%) rotate(45deg) scaleX(0);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
        transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
    }
}

@keyframes game-info-modal-error-left {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(45deg) scaleX(0);
        transform: translate(-50%, -50%) rotate(45deg) scaleX(0);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
        transform: translate(-50%, -50%) rotate(45deg) scaleX(1);
    }
}

@-webkit-keyframes game-info-modal-error-right {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(-45deg) scaleX(0);
        transform: translate(-50%, -50%) rotate(-45deg) scaleX(0);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
        transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
    }
}

@keyframes game-info-modal-error-right {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(-45deg) scaleX(0);
        transform: translate(-50%, -50%) rotate(-45deg) scaleX(0);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
        transform: translate(-50%, -50%) rotate(-45deg) scaleX(1);
    }
}

.game-2026 .game-info-modal__icon-success {
    position: relative;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto;
    border: 0.25rem solid #a5dc86;
    border-radius: 50%;
    box-sizing: content-box;
}

.game-2026 .game-info-modal__icon-success-line {
    position: absolute;
    display: block;
    height: 0.3125rem;
    border-radius: 0.125rem;
    background: #a5dc86;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

.game-2026 .game-info-modal__icon-success-line--left {
    top: 2.2rem;
    left: 1.2rem;
    width: 1.2rem;
    -webkit-transform: rotate(45deg) scaleX(0);
    transform: rotate(45deg) scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-animation: game-info-modal-success-left 0.25s ease-out 0.18s forwards;
    animation: game-info-modal-success-left 0.25s ease-out 0.18s forwards;
}

.game-2026 .game-info-modal__icon-success-line--right {
    top: 2.85rem;
    left: 2rem;
    width: 2rem;
    -webkit-transform: rotate(-45deg) scaleX(0);
    transform: rotate(-45deg) scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-animation: game-info-modal-success-right 0.35s ease-out 0.34s forwards;
    animation: game-info-modal-success-right 0.35s ease-out 0.34s forwards;
}

@-webkit-keyframes game-info-modal-success-left {
    0% {
        -webkit-transform: rotate(45deg) scaleX(0);
        transform: rotate(45deg) scaleX(0);
    }

    100% {
        -webkit-transform: rotate(45deg) scaleX(1);
        transform: rotate(45deg) scaleX(1);
    }
}

@keyframes game-info-modal-success-left {
    0% {
        -webkit-transform: rotate(45deg) scaleX(0);
        transform: rotate(45deg) scaleX(0);
    }

    100% {
        -webkit-transform: rotate(45deg) scaleX(1);
        transform: rotate(45deg) scaleX(1);
    }
}

@-webkit-keyframes game-info-modal-success-right {
    0% {
        -webkit-transform: rotate(-45deg) scaleX(0);
        transform: rotate(-45deg) scaleX(0);
    }

    100% {
        -webkit-transform: rotate(-45deg) scaleX(1);
        transform: rotate(-45deg) scaleX(1);
    }
}

@keyframes game-info-modal-success-right {
    0% {
        -webkit-transform: rotate(-45deg) scaleX(0);
        transform: rotate(-45deg) scaleX(0);
    }

    100% {
        -webkit-transform: rotate(-45deg) scaleX(1);
        transform: rotate(-45deg) scaleX(1);
    }
}

.game-2026 .game-info-modal__body--scroll {
    max-height: 24.3125rem;
    overflow-y: auto;
}

.game-2026 .game-info-modal__copy {
    color: #555;
}

.game-2026 .game-info-modal__emphasis {
    color: #8b0a1a;
}

.game-2026 .game-history-table-wrap {
    border: 0.0625rem solid rgba(139, 10, 26, 0.18);
    border-radius: 0.75rem;
}

.game-2026 .game-history-table {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(139, 10, 26, 0.04);
    --bs-table-striped-color: #2d2d2d;
    margin-bottom: 0;
}

.game-2026 .game-history-table > :not(caption) > * > * {
    padding: 0.55rem 0.65rem;
    border-bottom-color: rgba(139, 10, 26, 0.12);
    vertical-align: middle;
}

.game-2026 .game-history-table thead th {
    color: #8b0a1a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

.game-2026 .game-history-table tbody td {
    color: #2d2d2d;
    font-size: 0.875rem;
}

/* 2026 modal rewards */
.game-2026-score-claimed .modal-dialog,
.game-2026-tier-updated .modal-dialog {
    max-width: 37rem;
}

.game-2026-score-claimed .modal-content,
.game-2026-tier-updated .modal-content {
    padding: 0.625rem;
    border: 0;
    border-bottom: 1.0625rem solid var(--game-gold-deep);
    border-radius: 3.125rem;
    background: var(--game-yellow);
}

.game-2026-score-claimed__panel,
.game-2026-tier-updated__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding: 2rem;
    border-radius: 3.125rem;
    background:
        linear-gradient(180deg, rgba(19, 59, 159, 0.98) 0%, rgba(30, 58, 154, 0.98) 58%, rgba(178, 0, 29, 0.96) 100%),
        url('/images/game/footer.png') center bottom / 100% auto no-repeat;
    box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.1);
}

.game-2026-score-claimed__panel {
    gap: 1.5rem;
}

.game-2026-tier-updated__panel {
    gap: 1.25rem;
}

.game-2026-score-claimed__panel::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 34%;
    pointer-events: none;
    background:
        linear-gradient(160deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 49%, transparent 50%),
        linear-gradient(20deg, transparent 0 46%, rgba(255, 255, 255, 0.1) 47%, transparent 48%);
    opacity: 0.35;
}

.game-2026-score-claimed__panel > * {
    position: relative;
    z-index: 1;
}

.game-2026-score-claimed__pbot {
    width: min(19.5rem, 100%);
    height: 12.5rem;
    margin-bottom: -0.75rem;
}

.game-2026-score-claimed__title {
    margin: 0;
    color: #43b67b;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.game-2026-score-claimed__label {
    margin: 0;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
}

.game-2026-score-claimed__claimed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    border-radius: 0.5rem;
    filter: drop-shadow(0 0.25rem 0.625rem rgba(0, 0, 0, 0.1));
}

.game-2026-score-claimed__value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 5.1875rem;
    width: 100%;
    padding: 0.875rem;
    border-radius: 0.5rem;
    color: #43b67b;
    font-size: clamp(2.5rem, 7vw, 2.8125rem);
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.game-2026-score-claimed__value img {
    width: 3.125rem;
    height: 3.125rem;
    object-fit: contain;
}

.game-2026-score-claimed__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: 100%;
}

.game-2026-score-claimed__stat {
    overflow: hidden;
    min-height: 6.25rem;
    border: 0.1611rem solid #ffe156;
    border-radius: 1.2081rem;
    background: #fff;
}

.game-2026-score-claimed__stat-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.625rem;
    padding: 0.5rem 0.75rem;
    background: #9e131f;
    color: #ffd633;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}

.game-2026-score-claimed__stat-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4375rem;
    min-height: 3.5rem;
    padding: 0.75rem;
    color: #43b67b;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.game-2026-score-claimed__stat-value img {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.game-2026-score-claimed__continue,
.game-2026-tier-updated__continue {
    min-width: 13rem;
    min-height: 3.25rem;
    white-space: nowrap;
    box-shadow: 0 0.5rem 0 rgba(186, 134, 0, 0.95);
}

/* 2026 tier updated modal */
.game-2026-tier-updated__title {
    margin: 0;
    color: #ffd633;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.game-2026-tier-updated__badge {
    width: min(15.0625rem, 100%);
    height: 12.5rem;
    object-fit: contain;
}

.game-2026-tier-updated__copy {
    text-align: center;
    color: #fff;
    line-height: 1.1;
}

.game-2026-tier-updated__copy-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.game-2026-tier-updated__copy-subtitle {
    margin: 0.25rem 0 0;
    font-size: 1.5rem;
    font-weight: 500;
}

body.game-2026.game-randomizer-page {
    min-height: 100vh;
    padding: 0;
}

.game-2026 .game-randomizer-back {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
}

.game-2026 .game-randomizer-main {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 2rem;
}

.game-2026 .game-randomizer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    min-height: 0;
}

.game-2026 .game-randomizer-stage {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 1.75rem 0;
}

.game-2026 .game-randomizer-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 25rem;
    margin: 0 auto;
}

.game-2026 .game-randomizer-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    min-height: 25rem;
    padding: 1.5rem 50%;
    will-change: transform;
}

.game-2026 .game-randomizer-card {
    position: relative;
    display: flex;
    flex: 0 0 clamp(18rem, 38vw, 34rem);
    flex-direction: column;
    justify-content: space-between;
    width: clamp(18rem, 38vw, 34rem);
    aspect-ratio: 16 / 9;
    padding: clamp(1.25rem, 2vw, 2rem);
    border: 0.1875rem solid var(--game-yellow);
    border-radius: 0.5rem;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.56) 100%),
        var(--game-card-image, linear-gradient(160deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0) 42%)),
        var(--game-card-color);
    background-position: center;
    background-size: cover;
    color: #fff;
    box-shadow: 0 0.75rem 1.375rem rgba(0, 0, 0, 0.28);
    opacity: 0.46;
    transform: scale(0.68);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.game-2026 .game-randomizer-card.is-selected {
    z-index: 3;
    opacity: 1;
    transform: scale(1);
}

.game-2026 .game-randomizer-card__label {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 2rem);
    min-height: 0;
    color: #fff;
    font-size: clamp(1.125rem, 2.4vw, 2rem);
    font-weight: 800;
    line-height: 1.12;
    text-align: center;
    text-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -50%);
    overflow-wrap: anywhere;
}

.game-2026 .game-randomizer-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* Compatibility fallbacks */
@supports not (gap: 1rem) {
    .game-2026 .game-rank-pill > * + *,
    .game-2026 .game-back-dashboard-link > * + *,
    .game-2026 .game-progress-max-tier > * + * {
        margin-left: 0.5rem;
    }

    .game-2026 .game-2026-index .game-index-header-profile > * + * {
        margin-left: 0.75rem;
    }

    .game-2026 .game-2026-index .game-stats-panel__body > * + * {
        margin-top: 0.75rem;
    }

    .game-2026 .game-2026-index .game-stats-panel__cards > * + * {
        margin-top: 0.875rem;
    }

    .game-2026 .game-2026-index .game-menu-button > * + * {
        margin-left: 0.75rem;
    }

    .game-2026 .game-2026-index .game-quest-button > * + * {
        margin-top: 0.625rem;
    }

    .game-2026 .game-2026-index .game-index-action-btn > * + * {
        margin-left: 0.75rem;
    }

    .game-2026 .game-2026-index .game-index-action-strip > * + * {
        margin-left: 0.75rem;
    }

    .game-2026 .game-2026-index .game-index-menu-stack > * + * {
        margin-top: 1rem;
    }

    .game-2026 .game-2026-index .game-special-events__track > * + * {
        margin-left: 0.625rem;
    }

    .game-2026 .game-2026-index .game-special-event-item > * + * {
        margin-top: 0.1875rem;
    }
}

/* Motion preferences */
@media (prefers-reduced-motion: reduce) {
    .game-2026 .game-2026-index .btn {
        transition: none;
    }

    .game-2026 .game-2026-tier .game-tier-slide-pane.is-sliding-next,
    .game-2026 .game-2026-tier .game-tier-slide-pane.is-sliding-prev {
        animation: none;
    }
}

@media (min-width: 1200px) {
    .game-2026.game-2026-index-page .game-index-header-progress-col {
        transform: translateX(10%);
    }
}

/* Tablet overrides */
@media (min-width: 48rem) and (max-width: 62rem) {
    .game-2026 .game-2026-index .game-index-action-btn {
        min-height: 2.875rem;
        padding: 0.5rem 0.75rem !important;
    }

    .game-2026 .game-2026-index .game-index-action-btn .btn-label-prefooter {
        font-size: 1rem;
    }

    .game-2026 .game-2026-index .game-index-action-btn .icon-32,
    .game-2026 .game-2026-index .game-index-action-btn .img-32 {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1.5rem;
    }

    .game-2026 .game-2026-index .game-index-action-btn .game-action-arrow {
        width: 1.75rem;
        height: 1.75rem;
    }

    .game-2026 .game-2026-index .game-special-events__title {
        top: -0.75rem;
        font-size: 0.8125rem;
    }

    .game-2026 .game-2026-index .game-special-events__track {
        gap: 0.375rem;
        padding: 0.625rem 0.75rem 0.4375rem;
    }

    .game-2026 .game-2026-index .game-special-event-item {
        width: 3.25rem;
    }

    .game-2026 .game-2026-index .game-special-event-item__avatar {
        width: 2.5rem;
        height: 2.5rem;
    }

    .game-2026 .game-2026-index .game-special-event-item__timer {
        min-width: 2.875rem;
        font-size: 0.5625rem;
    }

    .game-2026 .game-2026-index .game-stats-panel__tab {
        min-width: 8.75rem;
        padding: 0.1875rem 0.75rem 0;
    }

    .game-2026 .game-2026-index .game-stats-panel__tab-label {
        padding: 0.25rem 0.5rem 0.4375rem;
        font-size: 0.9375rem;
    }

    .game-2026 .game-2026-index .game-stats-panel__shell {
        padding-bottom: 0.5rem;
        border-radius: 2rem;
    }

    .game-2026 .game-2026-index .game-stats-panel__body {
        gap: 0.625rem;
        padding: 0.75rem 0.875rem 0.875rem;
        border-radius: 0 2rem 2rem 2rem;
    }

    .game-2026 .game-2026-index .game-stats-panel--right .game-stats-panel__body {
        border-radius: 2rem 0 2rem 2rem;
    }

    .game-2026 .game-2026-index .game-stats-panel__cards {
        gap: 0.625rem;
    }

    .game-2026 .game-2026-index .game-stats-panel__card-title {
        padding: 0.375rem 0.75rem;
        border-radius: 1.375rem 1.375rem 0 0;
        font-size: 0.875rem;
    }

    .game-2026 .game-2026-index .game-stats-panel__row {
        grid-template-columns: minmax(0, 1fr) 6.75rem;
    }

    .game-2026 .game-2026-index .game-stats-panel__label,
    .game-2026 .game-2026-index .game-stats-panel__value {
        min-height: 3.25rem;
        padding: 0.5rem 0.625rem;
        font-size: 0.875rem;
        line-height: 1.2;
    }

    .game-2026 .game-2026-index .game-stats-panel__hint {
        font-size: 1rem;
    }

    .game-2026 .game-2026-index .game-stats-panel__action .f20 {
        font-size: 1rem;
    }
}

/* Mobile overrides */
@media (max-width: 48rem) {
    body.game-2026 {
        font-size: 0.9375rem;
    }

    .game-2026 .game-header-box,
    .game-2026 .game-hero {
        border-bottom-width: 0.1875rem;
    }

    .game-2026 .game-header-box.game-header-box--max-tier {
        border-left-width: 0.1875rem;
        border-right-width: 0.1875rem;
        box-shadow: 0 0.5rem 0 var(--game-gold-deep);
    }

    body.game-2026.d-flex.flex-column.min-vh-100,
    body.modal-open {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .game-2026 .game-header-box__content > .row {
        justify-content: space-between;
        row-gap: 1.125rem;
    }

    .game-2026 .game-header-main-col {
        text-align: start;
    }

    .game-2026 .game-header-logo-col {
        text-align: end;
    }

    .game-2026 .game-footer-bar {
        border-radius: 1.75rem 1.75rem 0 0;
    }

    .game-2026 .game-avatar-ring {
        width: 3.6rem;
        height: 3.6rem;
    }

    .game-2026 .game-logo {
        max-width: 3.6rem;
    }

    .game-2026 .game-rank-pill {
        font-size: 0.6875rem;
    }

    .game-2026 .game-display-name {
        margin-bottom: 0.5rem;
        font-size: 1rem;
        line-height: 1.1;
    }

    .game-2026 .game-score-pill {
        border-width: 0.075rem;
    }

    .game-2026 .game-score-pill__label {
        padding: 0.2rem 0.4rem !important;
    }

    .game-2026 .game-score-pill__value {
        /* min-width: 4.5rem; */
        padding: 0.2rem 0.45rem !important;
        font-size: 0.75rem;
        line-height: 1;
    }

    .game-2026 .game-score-pill__copy {
        min-width: 0;
    }

    .game-2026 .game-score-pill__copy strong {
        font-size: 0.5rem;
    }

    .game-2026 .game-score-pill__copy span {
        max-width: 7.25rem;
        overflow: hidden;
        font-size: 0.45rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .game-2026 .game-score-pill__info {
        font-size: 0.75rem;
    }

    .game-2026 .game-header-back-link {
        margin-bottom: 0.5rem !important;
        font-size: 0.75rem;
    }

    .game-2026 .game-header-back-link .game-action-arrow-back {
        width: 1.5rem;
        height: 1.5rem;
        flex: 0 0 1.5rem;
    }

    .game-2026 .game-header-back-link .game-action-arrow-back i {
        width: 1rem;
        height: 1rem;
        font-size: 1rem;
    }

    .game-2026 .game-header-title {
        margin-top: 0.75rem !important;
        font-size: 1.5rem !important;
        line-height: 1.1;
    }

    .game-2026 .game-header-subtitle {
        max-width: 18rem;
        font-size: 0.875rem !important;
        line-height: 1.25;
    }

    .game-2026 .game-header-feature-icon {
        width: 2.75rem;
        height: 3.125rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel {
        font-size: 0.9375rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel .game-index-tabs .nav-link {
        font-size: 1rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel .f20 {
        font-size: 0.9375rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel .f28 {
        font-size: 1.125rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel .game-score-card__header {
        font-size: 0.875rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel .game-score-row__label,
    .game-2026 .game-2026-index .game-index-tab-panel .game-score-row__value {
        font-size: 0.75rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel .game-link-hint {
        font-size: 1rem;
    }

    .game-2026 .game-mobile-video {
        display: block;
        width: 100%;
        height: auto;
        min-height: 11.25rem;
        aspect-ratio: 16 / 9;
        background: transparent;
        border: 0;
    }

    .game-2026 video.game-mobile-video {
        object-fit: cover;
    }

    .game-2026 .game-mobile-video-fade {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 82%, transparent 100%);
    }

    body.game-2026.game-2026-leaderboard-page .leaderboard-table-title {
        font-size: 1.25rem !important;
        line-height: 1.2;
    }

    body.game-2026.game-2026-leaderboard-page .leaderboard-table-title small {
        margin-top: 0.25rem;
        font-size: 0.875rem;
        line-height: 1.25;
    }

    body.game-2026.game-2026-leaderboard-page header {
        min-height: 6.75rem;
        padding: 1rem 1rem 0.625rem;
    }

    body.game-2026.game-2026-leaderboard-page .game-2026-leaderboard {
        padding-top: 0.5rem;
    }

    body.game-2026.game-2026-leaderboard-page .leaderboard-tabs {
        justify-content: center;
        margin-top: 0.75rem !important;
    }

    body.game-2026.game-2026-leaderboard-page .leaderboard-tabs .btn-yellow {
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .game-2026 .game-progress-stage {
        max-width: none;
        padding-top: 0.5rem;
    }

    .game-2026 .game-progress-stage--mobile {
        margin-top: 0.625rem;
    }

    .game-2026 .game-progress-row {
        --bs-gutter-x: 0.5rem;
        justify-content: center;
        flex-wrap: nowrap;
        row-gap: 0;
    }

    .game-2026 .game-progress-row > .col {
        flex: 1 1 auto;
        min-width: 0;
    }

    .game-2026 .game-progress-tier-gem {
        width: 2.75rem;
        height: 2.4rem;
    }

    .game-2026 .game-progress-track {
        height: 0.875rem;
    }

    .game-2026 .game-progress-need-more-wrap {
        top: 100%;
        padding-bottom: 0.125rem;
    }

    .game-2026 .game-progress-need-more {
        padding: 0.25rem 0.875rem;
        font-size: 0.75rem;
    }

    .game-2026 .game-progress-icon {
        left: clamp(1rem, var(--game-progress-percent), calc(100% - 1rem));
        width: 2rem;
        height: 1.75rem;
    }

    .game-2026 .game-progress-max-tier {
        gap: 0.5rem;
        min-height: 3.75rem;
    }

    .game-2026 .game-progress-max-tier__badge-wrap {
        width: 4rem;
        height: 4rem;
    }

    .game-2026 .game-progress-max-tier__content {
        width: auto;
    }

    .game-2026 .game-progress-max-tier__title {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }

    .game-2026 .game-progress-max-tier .game-pill-shared {
        min-height: 1.25rem;
        padding: 0.15rem 0.45rem;
        border-width: 0.0625rem;
    }

    .game-2026 .game-progress-max-tier__pill span {
        font-size: 0.62rem;
    }

    .game-2026 .game-divider {
        height: 1.5rem;
    }

    .game-2026 .game-2026-index .game-index-action-strip {
        justify-content: center;
        align-items: stretch;
        gap: 0.875rem;
    }

    .game-2026 .game-2026-index .game-index-action-btn {
        width: 100%;
        justify-content: center !important;
    }

    .game-2026 .game-2026-index .game-special-events {
        width: 100%;
    }

    .game-2026 .game-2026-index .game-special-events__track {
        width: 100%;
        justify-content: space-between;
        gap: 0.375rem;
        padding-left: 0.625rem;
        padding-right: 0.625rem;
    }

    .game-2026 .game-2026-index .game-index-special-events .game-special-events__track {
        justify-content: center;
    }

    .game-2026 .game-2026-index .game-special-event-item {
        width: 3.625rem;
    }

    .game-2026 .game-2026-index .game-special-event-item__avatar {
        width: 2.625rem;
        height: 2.625rem;
    }

    .game-2026 .game-2026-tier .game-tier-main-row {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center;
        gap: 1rem !important;
    }

    .game-2026 .game-2026-tier .game-tier-persona-space {
        width: 80vw !important;
        min-height: 80vw;
        align-self: center !important;
        order: 0;
        margin-bottom: -10rem;
    }

    .game-2026 .game-2026-tier .game-tier-profile-dropdown {
        top: 0.375rem;
        right: 0.375rem;
    }

    .game-2026 .game-2026-tier .game-tier-profile-dropdown__toggle {
        width: 1.375rem;
        height: 1.375rem;
    }

    .game-2026 .game-2026-tier .game-tier-profile-dropdown__toggle i {
        font-size: 1rem;
    }

    .game-2026 .game-2026-tier .game-tier-persona-image {
        width: 100%;
        height: 100% !important;
    }

    .game-2026 .game-2026-tier .card.d-block.flex-fill.game-card {
        width: 100%;
        max-width: 42rem;
        align-self: center;
        order: 1;
        position: relative;
        z-index: 2;
        margin-top: 0;
    }

    .game-2026 .game-2026-tier .tier-header-separator {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .game-2026 .game-2026-tier .game-action-prev-arrow,
    .game-2026 .game-2026-tier .game-action-next-arrow {
        width: 2.5rem;
        height: 2.5rem;
    }

    .game-2026 .game-2026-tier .game-action-prev-arrow i,
    .game-2026 .game-2026-tier .game-action-next-arrow i {
        font-size: 1.5rem;
    }

    .game-2026 .game-2026-tier .tier-img {
        max-height: 5.25rem;
    }

    .game-2026 .game-2026-tier .tier-title {
        font-size: 1.75rem;
    }

    .game-2026 .game-2026-tier .tier-range-content {
        gap: 0.375rem;
    }

    .game-2026 .game-2026-tier .tier-range-badge {
        min-width: 8.75rem;
        height: 2rem;
    }

    .game-2026 .game-2026-tier .tier-range-icon {
        min-width: 2.875rem;
        padding: 0 0.625rem;
    }

    .game-2026 .game-2026-tier .tier-range-badge .ruby-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .game-2026 .game-2026-tier .tier-range-badge .range-text {
        height: 2rem;
        gap: 0.75rem;
        padding: 0 0.75rem;
        font-size: 0.875rem;
    }

    .game-2026 .game-2026-tier .d-flex.justify-content-center.my-4.gap-4 {
        margin-top: 0.875rem !important;
        margin-bottom: 0.5rem !important;
        gap: 0.625rem !important;
    }

    .game-2026 .game-2026-tier .card.game-card-inside {
        width: min(10rem, 42vw);
        height: 7.25rem;
        border-width: 0.1875rem;
        border-radius: 1.25rem;
    }

    .game-2026 .game-2026-tier .card.game-card-inside > .card-header {
        padding: 0.5rem 0.75rem;
        border-radius: 1rem 1rem 0 0;
    }

    .game-2026 .game-2026-tier .card-game-title {
        font-size: 0.8125rem;
    }

    .game-2026 .game-2026-tier .f40 {
        font-size: 1.25rem;
    }

    .game-2026 .game-2026-tier .tier-status-icon {
        width: 4.75rem !important;
    }

    .game-2026 .game-2026-tier .game-tier-progress-wrap {
        padding-top: 0.125rem !important;
        padding-bottom: 0.25rem !important;
    }

    .game-2026 .game-tier-progress-track,
    .game-2026 .game-tier-progress-fill {
        height: 0.75rem;
        border-radius: 0.3125rem;
    }

    .game-2026 .game-tier-milestone {
        gap: 0.375rem;
    }

    .game-2026 .game-tier-milestone-placeholder {
        width: 2.125rem;
        height: 1.875rem;
    }

    .game-2026 .game-tier-milestone-gem {
        top: 0.125rem;
        width: 2.125rem;
        height: 1.875rem;
    }

    .game-2026 .game-2026-tier .game-tier-reward-tooltip {
        width: 2.5rem;
        height: 2.5rem;
        padding: 0.4375rem;
    }

    .game-2026 .game-2026-tier .game-tier-reward-tooltip > img {
        width: 1.625rem;
        height: 1.625rem;
    }

    .game-2026 .game-tier-reward-check {
        top: -0.25rem;
        right: -0.25rem;
        width: 0.875rem;
        height: 0.875rem;
    }

    .game-2026 .game-tier-reward-check-icon {
        font-size: 0.875rem;
    }

    .game-2026 .game-2026-tier .f24 {
        font-size: 0.875rem;
    }

    .game-2026-score-claimed .modal-dialog,
    .game-2026-tier-updated .modal-dialog {
        margin: 1rem;
    }

    .game-2026-score-claimed .modal-content,
    .game-2026-tier-updated .modal-content,
    .game-2026-score-claimed__panel,
    .game-2026-tier-updated__panel {
        border-radius: 2rem;
    }

    .game-2026-score-claimed__panel,
    .game-2026-tier-updated__panel {
        padding: 1.25rem;
    }

    .game-2026-score-claimed__panel {
        gap: 1rem;
    }

    .game-2026-score-claimed__stats {
        grid-template-columns: 1fr;
    }

    .game-2026-tier-updated__copy-title,
    .game-2026-tier-updated__copy-subtitle {
        font-size: 1.25rem;
    }

    .game-2026 .game-randomizer-main {
        padding: 1rem;
    }

    .game-2026 .game-randomizer-back {
        top: 1rem;
        left: 1rem;
    }

    .game-2026 .game-randomizer {
        gap: 1.5rem;
    }

    .game-2026 .game-randomizer-viewport,
    .game-2026 .game-randomizer-track {
        min-height: 13rem;
    }

    .game-2026 .game-randomizer-track {
        gap: 1rem;
    }

    .game-2026 .game-randomizer-card {
        flex-basis: 17rem;
        width: 17rem;
        height: auto;
        padding: 0.875rem;
    }

    .game-2026 .game-randomizer-card__label {
        min-height: 0;
        font-size: 1rem;
    }

}

/* Small mobile overrides */
@media (max-width: 36rem) {
    body.game-2026 {
        font-size: 0.875rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel {
        font-size: 0.875rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel .game-index-tabs .nav-link {
        font-size: 0.875rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel .f20 {
        font-size: 0.8125rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel .f28 {
        font-size: 1rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel .game-score-card__header {
        font-size: 0.75rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel .game-score-row__label,
    .game-2026 .game-2026-index .game-index-tab-panel .game-score-row__value {
        font-size: 0.6875rem;
    }

    .game-2026 .game-2026-index .game-index-tab-panel .game-link-hint {
        font-size: 0.875rem;
    }

    body.game-2026.game-2026-leaderboard-page .leaderboard-table-title {
        font-size: 1rem !important;
    }

    body.game-2026.game-2026-leaderboard-page .leaderboard-table-title small {
        font-size: 0.75rem;
    }

    body.game-2026.game-2026-leaderboard-page .leaderboard-tabs {
        gap: 0.375rem !important;
        margin-top: 0.5rem !important;
    }

    body.game-2026.game-2026-leaderboard-page .leaderboard-tabs .btn-yellow {
        padding: 0.1875rem 0.375rem;
        font-size: 0.75rem;
    }

    .game-2026 .game-2026-tier .game-action-prev-arrow,
    .game-2026 .game-2026-tier .game-action-next-arrow {
        width: 2.125rem;
        height: 2.125rem;
    }

    .game-2026 .game-2026-tier .game-action-prev-arrow i,
    .game-2026 .game-2026-tier .game-action-next-arrow i {
        font-size: 1.25rem;
    }

    .game-2026 .game-2026-tier .tier-img {
        max-height: 4.25rem;
    }

    .game-2026 .game-2026-tier .tier-title {
        font-size: 1.35rem;
    }

    .game-2026 .game-2026-tier .tier-range-badge {
        min-width: 7.5rem;
        height: 1.75rem;
    }

    .game-2026 .game-2026-tier .tier-range-icon {
        min-width: 2.375rem;
        padding: 0 0.5rem;
    }

    .game-2026 .game-2026-tier .tier-range-badge .ruby-icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    .game-2026 .game-2026-tier .tier-range-badge .range-text {
        height: 1.75rem;
        gap: 0.5rem;
        padding: 0 0.5rem;
        font-size: 0.75rem;
    }

    .game-2026 .game-2026-tier .card.game-card-inside {
        width: min(8.75rem, 42vw);
        height: 6.25rem;
        border-width: 0.125rem;
        border-radius: 1rem;
    }

    .game-2026 .game-2026-tier .card.game-card-inside > .card-header {
        padding: 0.375rem 0.5rem;
        border-radius: 0.8125rem 0.8125rem 0 0;
    }

    .game-2026 .game-2026-tier .card-game-title {
        font-size: 0.6875rem;
    }

    .game-2026 .game-2026-tier .f40 {
        font-size: 1rem;
    }

    .game-2026 .game-2026-tier .tier-status-icon {
        width: 3.75rem !important;
    }

    .game-2026 .game-tier-progress-track,
    .game-2026 .game-tier-progress-fill {
        height: 0.5rem;
        border-radius: 0.25rem;
    }

    .game-2026 .game-tier-milestone-placeholder,
    .game-2026 .game-tier-milestone-gem {
        width: 1.75rem;
        height: 1.5rem;
    }

    .game-2026 .game-tier-milestone-gem {
        top: 0;
    }

    .game-2026 .game-2026-tier .game-tier-reward-tooltip {
        width: 2rem;
        height: 2rem;
        padding: 0.3125rem;
    }

    .game-2026 .game-2026-tier .game-tier-reward-tooltip > img {
        width: 1.25rem;
        height: 1.25rem;
    }

    .game-2026 .game-tier-reward-check {
        top: -0.1875rem;
        right: -0.1875rem;
        width: 0.75rem;
        height: 0.75rem;
    }

    .game-2026 .game-tier-reward-check-icon {
        font-size: 0.75rem;
    }

    .game-2026 .game-2026-tier .f24 {
        font-size: 0.75rem;
    }
}
