@font-face {
    font-family: "XFG Condensed";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../media/fonts/xfg-condensed.woff2") format("woff2");
}

@font-face {
    font-family: "XFG Condensed";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../media/fonts/xfg-condensed.woff2") format("woff2");
}

:root {
    --ink: #070608;
    --ink-soft: #0e0b0d;
    --panel: rgba(20, 14, 16, 0.84);
    --panel-solid: #161012;
    --line: rgba(255, 255, 255, 0.1);
    --line-hot: rgba(255, 70, 70, 0.38);
    --white: #fff8f2;
    --muted: #b5a9a5;
    --red: #f20d25;
    --red-bright: #ff3048;
    --red-dark: #85000d;
    --gold: #f2b544;
    --gold-pale: #ffd989;
    --green: #39db82;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
    --shell: min(1180px, calc(100% - 40px));
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--white);
    background:
        linear-gradient(rgba(7, 6, 8, 0.88), rgba(7, 6, 8, 0.94)),
        url("../media/xfg/xfg-page.png") center top / cover fixed,
        var(--ink);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    content: "";
    opacity: 0.14;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    color: #fff;
    background: var(--red);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: #090608;
    background: var(--gold);
    border-radius: 8px;
    font-weight: 800;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.network-strip {
    position: relative;
    z-index: 101;
    border-bottom: 1px solid rgba(242, 181, 68, 0.2);
    color: #d9cfca;
    background: linear-gradient(90deg, #16070a, #090708 50%, #16070a);
    font-size: 0.75rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.network-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    gap: 10px;
}

.network-strip strong,
.network-strip a {
    color: var(--gold-pale);
}

.network-strip a:hover,
.network-strip a:focus-visible {
    color: #fff;
}

.network-strip__divider {
    width: 1px;
    height: 13px;
    margin-inline: 8px;
    background: rgba(255, 255, 255, 0.2);
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(57, 219, 130, 0.12), 0 0 12px rgba(57, 219, 130, 0.85);
    animation: status-pulse 2s ease-in-out infinite;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid transparent;
    background: linear-gradient(to bottom, rgba(7, 6, 8, 0.94), rgba(7, 6, 8, 0.74));
    backdrop-filter: blur(16px);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(7, 6, 8, 0.94);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
}

.brand__mark img {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 3px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 8px rgba(242, 13, 37, 0.28));
}

.brand__wordmark {
    display: grid;
    grid-template-columns: auto auto;
    align-items: baseline;
    column-gap: 4px;
    line-height: 1;
}

.brand__wordmark strong,
.brand__wordmark em {
    font-size: 1.14rem;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 900;
}

.brand__wordmark em {
    color: var(--red-bright);
}

.brand__wordmark small {
    grid-column: 1 / -1;
    margin-top: 5px;
    color: #988e8b;
    font-size: 0.53rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.2vw, 34px);
}

.primary-nav > a {
    position: relative;
    color: #c8bdba;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    transition: color 160ms ease;
}

.primary-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible {
    color: #fff;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 11px 16px;
    color: #fff !important;
    border: 1px solid rgba(255, 70, 72, 0.52);
    background: linear-gradient(135deg, rgba(242, 13, 37, 0.24), rgba(242, 181, 68, 0.08));
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.nav-cta span {
    color: var(--gold-pale);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    display: grid;
    min-height: calc(100svh - 114px);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    isolation: isolate;
}

.hero::before {
    position: absolute;
    z-index: -3;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(5, 4, 5, 0.97) 0%, rgba(5, 4, 5, 0.82) 38%, rgba(5, 4, 5, 0.35) 76%, rgba(5, 4, 5, 0.62) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1), #070608 98%),
        url("../media/xfg/xfg-hero.png") center / cover no-repeat;
}

.hero::after {
    position: absolute;
    z-index: -1;
    right: -8vw;
    bottom: 11%;
    left: -8vw;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 48, 72, 0.5), rgba(242, 181, 68, 0.5), transparent);
    transform: rotate(-3deg);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.91fr) minmax(430px, 1.09fr);
    align-items: center;
    gap: clamp(44px, 6vw, 90px);
    padding-block: clamp(70px, 9vw, 128px) 100px;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    margin: 0 0 19px;
    color: #a89d99;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow span {
    color: var(--gold-pale);
}

.hero h1,
.section h2,
.community h2 {
    margin: 0;
    font-family: Impact, "Arial Black", "Segoe UI", sans-serif;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 0.93;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3.25rem, 6.2vw, 6.75rem);
}

.hero h1 > span,
.section h2 > span,
.community h2 > span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 81, 91, 0.86);
    text-shadow: 0 0 40px rgba(242, 13, 37, 0.15);
}

.hero__lede {
    max-width: 620px;
    margin: 28px 0 0;
    color: #c7bbb7;
    font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.hero__actions,
.community__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--red), #a90015);
    box-shadow: 0 14px 35px rgba(242, 13, 37, 0.28), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
    box-shadow: 0 18px 42px rgba(242, 13, 37, 0.42), inset 0 1px rgba(255, 255, 255, 0.24);
}

.button--ghost,
.button--glass {
    color: #eee5e1;
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(8px);
}

.button--ghost:hover,
.button--ghost:focus-visible,
.button--glass:hover,
.button--glass:focus-visible {
    border-color: rgba(242, 181, 68, 0.5);
    background: rgba(242, 181, 68, 0.08);
}

.hero__signals {
    display: flex;
    margin-top: 46px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.hero__signals > div {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 15px 18px 15px 0;
}

.hero__signals > div + div {
    padding-left: 18px;
    border-left: 1px solid var(--line);
}

.hero__signals strong {
    color: var(--gold-pale);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.hero__signals span {
    color: #928683;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__visual {
    position: relative;
    z-index: 1;
    padding: 18px;
}

.hero__frame {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    border: 1px solid rgba(242, 181, 68, 0.38);
    background: #050405;
    clip-path: polygon(32px 0, 100% 0, 100% calc(100% - 32px), calc(100% - 32px) 100%, 0 100%, 0 32px);
    box-shadow: var(--shadow), 0 0 0 9px rgba(255, 255, 255, 0.025), inset 0 0 70px rgba(242, 13, 37, 0.16);
}

.hero__frame::before,
.hero__frame::after {
    position: absolute;
    z-index: 3;
    width: 90px;
    height: 2px;
    content: "";
    background: var(--gold);
    box-shadow: 0 0 20px rgba(242, 181, 68, 0.6);
}

.hero__frame::before {
    top: 0;
    left: 42px;
}

.hero__frame::after {
    right: 42px;
    bottom: 0;
}

.hero__frame video {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    object-position: center;
}

.hero__frame-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 58%, rgba(4, 3, 4, 0.9));
    pointer-events: none;
}

.hero__frame-status {
    position: absolute;
    right: 24px;
    bottom: 20px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #c4b9b5;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__frame-status span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero__frame-status i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red-bright);
    box-shadow: 0 0 12px var(--red-bright);
}

.hero__frame-status strong {
    color: var(--gold-pale);
}

.hero__tag {
    position: absolute;
    z-index: 4;
    padding: 9px 15px;
    color: #fff;
    border: 1px solid var(--line-hot);
    background: rgba(16, 8, 10, 0.88);
    backdrop-filter: blur(8px);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.hero__tag--top {
    top: 0;
    right: -8px;
}

.hero__tag--bottom {
    bottom: 0;
    left: -8px;
}

.hero__glow {
    position: absolute;
    z-index: -2;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    opacity: 0.28;
    filter: blur(100px);
    pointer-events: none;
}

.hero__glow--one {
    top: 12%;
    left: -250px;
    background: var(--red);
}

.hero__glow--two {
    right: 2%;
    bottom: -260px;
    background: var(--gold);
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 24px;
    left: 50%;
    display: grid;
    place-items: center;
    gap: 8px;
    color: #9c908c;
    font-size: 0.56rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-cue i {
    display: block;
    width: 1px;
    height: 28px;
    background: linear-gradient(var(--red-bright), transparent);
}

.section {
    position: relative;
    padding-block: clamp(88px, 10vw, 150px);
}

.section--network {
    background: linear-gradient(to bottom, rgba(7, 6, 8, 0.94), rgba(14, 9, 11, 0.93));
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 440px);
    align-items: end;
    gap: 60px;
    margin-bottom: 48px;
}

.section-heading h2,
.play-copy h2,
.about-copy h2,
.connect-panel h2 {
    font-size: clamp(2.55rem, 5vw, 5rem);
}

.section-heading > p,
.play-copy > p,
.about-copy > p,
.connect-panel > div > p {
    margin: 0;
    color: var(--muted);
}

.network-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.91fr 0.91fr;
    gap: 16px;
}

.network-card {
    position: relative;
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--line);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
        var(--panel);
    clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.network-card::after {
    position: absolute;
    right: -50px;
    bottom: -80px;
    width: 190px;
    height: 190px;
    content: "";
    border-radius: 50%;
    background: rgba(242, 13, 37, 0.13);
    filter: blur(45px);
    pointer-events: none;
}

.network-card:hover {
    z-index: 2;
    border-color: var(--line-hot);
    background:
        linear-gradient(150deg, rgba(242, 13, 37, 0.09), rgba(255, 255, 255, 0.015)),
        var(--panel-solid);
    transform: translateY(-7px);
}

.network-card--featured {
    background:
        linear-gradient(to top, rgba(9, 5, 6, 0.98), rgba(9, 5, 6, 0.38)),
        url("../media/xfg/xfg-hero.png") 68% center / cover;
}

.network-card__topline {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #7f7471;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    color: #b7f6d1;
    border: 1px solid rgba(57, 219, 130, 0.28);
    background: rgba(57, 219, 130, 0.08);
    text-transform: uppercase;
}

.status-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 9px var(--green);
}

.card-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 36px;
    color: var(--gold-pale);
    border: 1px solid rgba(242, 181, 68, 0.28);
    background: rgba(242, 181, 68, 0.06);
    font-size: 0.65rem;
}

.network-card__kicker {
    margin: 0 0 10px;
    color: var(--red-bright) !important;
    font-size: 0.63rem !important;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.network-card h3 {
    margin: 0;
    font-size: clamp(1.55rem, 2vw, 2.25rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.network-card p {
    color: var(--muted);
    font-size: 0.92rem;
}

.network-card > a,
.text-link {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 16px;
    color: var(--gold-pale);
    border-top: 1px solid var(--line);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.network-card > a span,
.text-link span {
    transition: transform 160ms ease;
}

.network-card > a:hover span,
.network-card > a:focus-visible span,
.text-link:hover span,
.text-link:focus-visible span {
    transform: translateX(5px);
}

.section--play {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 12% 30%, rgba(242, 13, 37, 0.12), transparent 30%),
        linear-gradient(120deg, rgba(7, 6, 8, 0.98), rgba(15, 10, 12, 0.94));
}

.play-grid {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    align-items: center;
    gap: clamp(60px, 8vw, 118px);
}

.play-copy > p {
    max-width: 550px;
    margin-top: 24px;
}

.play-copy .text-link {
    width: fit-content;
    margin-top: 34px;
}

.play-lanes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.lane {
    display: flex;
    min-height: 190px;
    padding: 25px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    gap: 20px;
    transition: background 180ms ease;
}

.lane:hover {
    background: linear-gradient(135deg, rgba(242, 13, 37, 0.09), rgba(242, 181, 68, 0.025));
}

.lane__number {
    color: var(--red-bright);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.lane h3 {
    margin: 0 0 8px;
    font-size: 1.12rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lane p {
    margin: 0;
    color: #9e928e;
    font-size: 0.86rem;
}

.community {
    position: relative;
    display: grid;
    min-height: 700px;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.community__backdrop {
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 4, 5, 0.9), rgba(5, 4, 5, 0.48) 52%, rgba(5, 4, 5, 0.82)),
        linear-gradient(to bottom, #080608, transparent 25%, transparent 72%, #080608),
        url("../media/xfg/xfg-page.png") center / cover no-repeat;
    transform: scale(1.03);
}

.community::after {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(700px, 90vw);
    content: "";
    background: radial-gradient(circle, rgba(242, 13, 37, 0.13), transparent 68%);
    transform: translateX(-50%);
}

.community__content {
    display: flex;
    max-width: 920px;
    flex-direction: column;
    align-items: center;
    padding-block: 100px;
    text-align: center;
}

.community h2 {
    font-size: clamp(3.2rem, 8vw, 7.5rem);
}

.community__content > p:not(.eyebrow) {
    max-width: 670px;
    margin: 25px auto 0;
    color: #c7bbb7;
    font-size: 1.04rem;
}

.community__links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.community__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    color: #c8bdba;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 160ms ease, background 160ms ease;
}

.community__links a + a {
    border-left: 1px solid var(--line);
}

.community__links a:hover,
.community__links a:focus-visible {
    color: #fff;
    background: rgba(242, 13, 37, 0.09);
}

.community__links i {
    color: var(--gold-pale);
    font-style: normal;
}

.section--about {
    background:
        radial-gradient(circle at 74% 30%, rgba(242, 181, 68, 0.055), transparent 32%),
        rgba(7, 6, 8, 0.96);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
    align-items: center;
    gap: clamp(55px, 8vw, 120px);
}

.about-emblem {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #050405;
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
}

.about-emblem::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(5, 4, 5, 0.95), transparent 68%);
}

.about-emblem img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: contain;
    padding: clamp(28px, 5vw, 64px);
    background: radial-gradient(circle, rgba(121, 0, 14, 0.44), transparent 68%);
    filter: saturate(0.98) contrast(1.06);
}

.about-emblem span {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 8px;
    color: rgba(255, 255, 255, 0.12);
    font-family: Impact, "Arial Black", sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 1;
    text-transform: uppercase;
}

.about-copy > p:not(.eyebrow) {
    margin-top: 24px;
}

.values {
    display: grid;
    margin-top: 36px;
    border-top: 1px solid var(--line);
}

.values > div {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 22px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.values strong {
    color: var(--gold-pale);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.values span {
    color: #948985;
    font-size: 0.88rem;
}

.section--connect {
    padding-top: 0;
    background: rgba(7, 6, 8, 0.96);
}

.connect-panel {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 60px;
    padding: clamp(32px, 5vw, 60px);
    border: 1px solid var(--line-hot);
    background:
        linear-gradient(110deg, rgba(242, 13, 37, 0.13), transparent 44%),
        rgba(21, 13, 16, 0.88);
    clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
    box-shadow: var(--shadow);
}

.connect-panel h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.connect-panel > div > p:not(.eyebrow) {
    margin-top: 14px;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(70px, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.social-links a {
    display: grid;
    min-height: 112px;
    place-items: center;
    gap: 9px;
    padding: 15px 8px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #9e928e;
    background: rgba(255, 255, 255, 0.018);
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 160ms ease, background 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    color: #fff;
    background: rgba(242, 13, 37, 0.09);
}

.social-links img {
    width: 29px;
    height: 29px;
    object-fit: contain;
    filter: grayscale(0.35);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: #060506;
}

.network-strip--footer {
    border-top: 1px solid rgba(242, 181, 68, 0.2);
    border-bottom: 0;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer__legal {
    padding-block: 42px 38px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 13px 30px;
}

.footer-legal-links a {
    position: relative;
    color: #b8aeaa;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1.5;
    text-transform: uppercase;
    transition: color 160ms ease;
}

.footer-legal-links a + a::before {
    position: absolute;
    top: 50%;
    left: -16px;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(242, 181, 68, 0.65);
    content: "";
    transform: translateY(-50%);
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
    color: var(--gold-pale);
}

.footer-social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 27px;
}

.footer-social-icons a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    transition: opacity 160ms ease, transform 160ms ease;
}

.footer-social-icons a:hover,
.footer-social-icons a:focus-visible {
    opacity: 0.78;
    transform: translateY(-2px);
}

.footer-social-icons img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.footer-utilities {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    padding-block: 24px 34px;
}

.footer-cookie-setting {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 34px;
    padding: 0 17px;
    border: 1px solid #827d7b;
    color: #f3efed;
    background: #0b0a0b;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    font: inherit;
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.footer-cookie-setting:hover,
.footer-cookie-setting:focus-visible {
    color: #fff;
    border-color: #fff;
    background: #171517;
}

.footer-region {
    position: relative;
    display: grid;
    place-items: center;
}

.footer-region-trigger {
    display: grid;
    place-items: center;
    width: 30px;
    height: 20px;
    padding: 2px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    transition: border-color 150ms ease, background 150ms ease;
}

.footer-region-trigger:hover,
.footer-region-trigger:focus-visible,
.footer-region-trigger[aria-expanded="true"] {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.05);
}

.footer-region-trigger img {
    width: 20px;
    height: 13px;
    object-fit: cover;
}

.footer-region-menu[hidden] {
    display: none;
}

.footer-region-menu {
    position: absolute;
    bottom: calc(100% + 11px);
    left: 50%;
    z-index: 20;
    width: min(330px, calc(100vw - 28px));
    overflow: hidden;
    border: 1px solid #5a5657;
    color: #fff;
    background: #444244;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.55);
    transform: translateX(-50%);
}

.footer-region-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 8px 10px 7px 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    font-size: 0.59rem;
    letter-spacing: 0.04em;
}

.footer-region-menu__header button {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    color: #fff;
    background: transparent;
    font: inherit;
    font-size: 1.05rem;
    cursor: pointer;
}

.footer-region-menu__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 10px;
    max-height: min(400px, 68vh);
    padding: 8px 10px 11px;
    overflow-y: auto;
}

.footer-region-menu a {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr) 8px;
    align-items: center;
    gap: 7px;
    min-width: 0;
    min-height: 27px;
    padding: 3px 4px;
    color: #f4f1f0;
    background: transparent;
    transition: color 120ms ease, background 120ms ease;
}

.footer-region-menu a:hover,
.footer-region-menu a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.footer-region-menu a::after {
    justify-self: end;
    color: transparent;
    content: "●";
    font-size: 0.48rem;
}

.footer-region-menu a.is-selected::after {
    color: #fff;
}

.footer-region-menu img {
    width: 18px;
    height: 12px;
    object-fit: cover;
}

.footer-region-menu strong {
    overflow: hidden;
    font-size: 0.55rem;
    font-weight: 650;
    letter-spacing: 0.01em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-footer__bottom {
    min-height: 58px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    color: #706764;
    border-top: 1px solid var(--line);
    font-size: 0.68rem;
    text-align: center;
}

.site-footer__bottom a {
    color: #a99d98;
}

.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal[data-delay="1"] {
    transition-delay: 100ms;
}

.js .reveal[data-delay="2"] {
    transition-delay: 200ms;
}

.js .reveal[data-delay="3"] {
    transition-delay: 300ms;
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes status-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.86); }
}

@media (max-width: 1050px) {
    .hero__grid {
        grid-template-columns: 1fr;
        max-width: 850px;
    }

    .hero__content {
        max-width: 730px;
    }

    .hero__visual {
        width: min(760px, 100%);
        margin-inline: auto;
    }

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

    .network-card--featured {
        grid-column: 1 / -1;
    }

    .play-grid,
    .about-grid,
    .connect-panel {
        grid-template-columns: 1fr;
    }

    .play-copy,
    .about-copy {
        max-width: 780px;
    }

    .about-emblem {
        min-height: 420px;
    }

    .about-emblem img {
        min-height: 420px;
    }
}

@media (max-width: 840px) {
    :root {
        --shell: min(100% - 30px, 720px);
    }

    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: grid;
        padding: 18px max(15px, calc((100% - min(100% - 30px, 720px)) / 2));
        border-bottom: 1px solid var(--line);
        background: rgba(7, 6, 8, 0.98);
        box-shadow: 0 24px 40px rgba(0, 0, 0, 0.4);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .primary-nav.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .primary-nav > a {
        padding: 11px 6px;
    }

    .nav-cta {
        margin-top: 4px;
        text-align: center;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading > p {
        max-width: 620px;
    }

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

    .community__links a + a {
        border-top: 1px solid var(--line);
        border-left: 0;
    }

}

@media (max-width: 640px) {
    :root {
        --shell: calc(100% - 24px);
        --radius: 18px;
    }

    .network-strip__divider {
        display: none;
    }

    .network-strip__inner {
        min-height: 54px;
        flex-wrap: wrap;
        padding-block: 9px;
        line-height: 1.35;
        text-align: center;
    }

    .site-header__inner {
        min-height: 68px;
    }

    .brand__mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .brand__wordmark strong,
    .brand__wordmark em {
        font-size: 0.94rem;
    }

    .hero {
        min-height: auto;
    }

    .hero__grid {
        gap: 48px;
        padding-block: 62px 92px;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 15vw, 4.7rem);
    }

    .hero__actions,
    .community__actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero__signals {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero__signals > div {
        padding: 12px 8px;
    }

    .hero__signals > div + div {
        padding-left: 8px;
    }

    .hero__signals strong {
        font-size: 1rem;
    }

    .hero__signals span {
        font-size: 0.48rem;
    }

    .hero__visual {
        padding: 8px;
    }

    .hero__frame,
    .hero__frame video {
        min-height: 260px;
    }

    .hero__frame-status {
        right: 15px;
        bottom: 14px;
        left: 15px;
        font-size: 0.52rem;
    }

    .hero__tag {
        display: none;
    }

    .section {
        padding-block: 82px;
    }

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

    .network-card--featured {
        grid-column: auto;
    }

    .network-card {
        min-height: 370px;
    }

    .play-lanes {
        grid-template-columns: 1fr;
    }

    .lane {
        min-height: 150px;
    }

    .community {
        min-height: 650px;
    }

    .community__content {
        padding-block: 80px;
    }

    .about-emblem,
    .about-emblem img {
        min-height: 330px;
    }

    .values > div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .connect-panel {
        gap: 34px;
        padding: 28px 18px;
    }

    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-links a:last-child {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .site-footer__legal {
        padding-block: 30px;
    }

    .footer-legal-links {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }

    .footer-legal-links a {
        padding-block: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        text-align: center;
    }

    .footer-legal-links a + a::before {
        display: none;
    }

    .site-footer__bottom {
        min-height: 90px;
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Full-width XFG hero with a video-inspired feature panel. */
.site-header {
    position: absolute;
    width: 100%;
    border-bottom-color: rgba(255, 255, 255, 0.12);
    background: rgba(5, 5, 6, 0.88);
    backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
    position: fixed;
    background: rgba(5, 5, 6, 0.96);
}

.site-header__inner {
    min-height: 64px;
}

.brand {
    gap: 10px;
}

.brand__mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
}

.brand__wordmark {
    display: inline-flex;
    gap: 4px;
}

.brand__wordmark strong,
.brand__wordmark em {
    font-size: 1.05rem;
}

.primary-nav {
    gap: clamp(16px, 2vw, 30px);
}

.primary-nav > a {
    font-size: 0.7rem;
}

.nav-cta {
    padding: 10px 18px;
    color: #090607 !important;
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--gold-pale), var(--gold));
    clip-path: none;
}

.nav-cta span {
    color: #090607;
}

.hero {
    display: grid;
    min-height: 100svh;
    padding-top: 64px;
    border-bottom-color: rgba(242, 181, 68, 0.26);
}

.hero::before {
    background:
        linear-gradient(90deg, rgba(2, 2, 3, 0.18) 0%, rgba(2, 2, 3, 0.08) 48%, rgba(2, 2, 3, 0.24) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 54%, rgba(5, 4, 5, 0.74) 100%),
        url("../media/xfg/xfg-hero.png") center / cover no-repeat;
}

.hero::after,
.hero__glow,
.hero__tag {
    display: none;
}

.hero__stage {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-block: clamp(58px, 8vw, 104px) 92px;
}

.hero__feature-card {
    width: min(540px, 48vw);
    padding: clamp(30px, 3.7vw, 52px);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, rgba(4, 4, 5, 0.92), rgba(11, 7, 9, 0.84));
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.52), inset 0 1px rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.hero__feature-card::before {
    display: block;
    width: 70px;
    height: 3px;
    margin: 0 auto 22px;
    content: "";
    background: linear-gradient(90deg, var(--red), var(--gold));
    box-shadow: 0 0 18px rgba(242, 13, 37, 0.5);
}

.hero__feature-logo {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: screen;
}

.hero__feature-card h1 {
    max-width: none;
    font-size: clamp(2.1rem, 3.2vw, 3.45rem);
    line-height: 0.98;
}

.hero__feature-card h1 > span {
    color: var(--gold-pale);
    -webkit-text-stroke: 0;
    text-shadow: 0 0 28px rgba(242, 181, 68, 0.14);
}

.hero__feature-card .hero__lede {
    max-width: 420px;
    margin: 20px auto 0;
    color: #d8cfcb;
    font-size: clamp(0.9rem, 1.12vw, 1.02rem);
    line-height: 1.55;
}

.hero__feature-card .hero__actions {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.hero__feature-card .button {
    width: 100%;
    min-height: 46px;
    clip-path: none;
}

.hero__feature-card .button--primary {
    color: #130607;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold));
    box-shadow: 0 12px 28px rgba(242, 181, 68, 0.24);
}

.hero__feature-card .button--primary:hover,
.hero__feature-card .button--primary:focus-visible {
    box-shadow: 0 16px 36px rgba(242, 181, 68, 0.38);
}

.hero__feature-card .button--ghost {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 840px) {
    .site-header {
        position: absolute;
    }

    .site-header.is-scrolled {
        position: fixed;
    }

    .primary-nav {
        background: rgba(5, 5, 6, 0.98);
    }

    .hero__stage {
        justify-content: center;
    }

    .hero__feature-card {
        width: min(560px, 86vw);
    }
}

@media (max-width: 640px) {
    .site-header__inner {
        min-height: 64px;
    }

    .brand__mark {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .brand__wordmark strong,
    .brand__wordmark em {
        font-size: 0.92rem;
    }

    .hero {
        min-height: 100svh;
        padding-top: 64px;
    }

    .hero::before {
        background:
            linear-gradient(to bottom, rgba(3, 3, 4, 0.18), rgba(3, 3, 4, 0.52)),
            url("../media/xfg/xfg-hero.png") 64% center / cover no-repeat;
    }

    .hero__stage {
        padding-block: 44px 78px;
    }

    .hero__feature-card {
        width: 100%;
        padding: 28px 20px;
    }

    .hero__feature-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 16px;
    }

    .hero__feature-card h1 {
        font-size: clamp(2rem, 10.5vw, 3rem);
    }

    .hero__feature-card .hero__actions {
        margin-top: 24px;
    }
}

/* Header menu and flatter ATVI-style feature panel correction. */
.site-header__inner {
    justify-content: flex-start;
    gap: 12px;
}

.site-menu {
    position: relative;
    flex: 0 0 auto;
}

.menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0 11px;
    place-content: center;
    border: 0;
    background: transparent;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
    color: var(--gold-pale);
    background: rgba(255, 255, 255, 0.07);
}

.menu-toggle > span:not(.sr-only) {
    width: 20px;
}

.site-menu-panel {
    position: absolute;
    top: calc(100% + 11px);
    left: 0;
    display: grid;
    width: 226px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(9, 9, 10, 0.98);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.52);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.site-menu-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.site-menu-panel a {
    padding: 10px 12px;
    color: #c9c2bf;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.site-menu-panel a:last-child {
    color: var(--gold-pale);
    border-bottom: 0;
}

.site-menu-panel a:hover,
.site-menu-panel a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.brand {
    margin-right: 18px;
}

.primary-nav {
    margin-left: auto;
}

.hero::before {
    background:
        linear-gradient(90deg, rgba(2, 2, 3, 0.12) 0%, rgba(2, 2, 3, 0.05) 48%, rgba(2, 2, 3, 0.2) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 54%, rgba(5, 4, 5, 0.68) 100%),
        url("../media/xfg/xfg-tournament-ranked-team-hero-2026.png") 60% center / cover no-repeat;
}

.hero__feature-card {
    width: min(480px, 41vw);
    padding: clamp(34px, 3.2vw, 46px) clamp(36px, 4vw, 58px);
    border: 0;
    border-radius: 3px;
    background: rgba(5, 5, 6, 0.76);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(4px);
}

.hero__feature-card::before,
.hero__feature-logo {
    display: none;
}

.hero__feature-card h1 {
    font-size: clamp(2rem, 2.75vw, 2.95rem);
    line-height: 1;
}

.hero__feature-card h1 > span {
    color: #fff8f2;
    text-shadow: none;
}

.hero__feature-card .hero__lede {
    max-width: 390px;
    margin-top: 17px;
    color: #ded8d5;
    font-size: clamp(0.88rem, 1vw, 0.98rem);
    line-height: 1.5;
}

.hero__feature-card .hero__actions {
    gap: 7px;
    margin-top: 24px;
}

.hero__feature-card .button {
    min-height: 42px;
    font-size: 0.68rem;
}

.hero__feature-card .button--ghost {
    min-height: 30px;
    padding: 0;
    border: 0;
    background: transparent;
}

.hero__feature-card .button--ghost:hover,
.hero__feature-card .button--ghost:focus-visible {
    color: var(--gold-pale);
    background: transparent;
}

@media (max-width: 840px) {
    .primary-nav {
        display: none;
    }

    .site-menu-panel {
        top: calc(100% + 11px);
    }

    .hero__feature-card {
        width: min(480px, 88vw);
    }
}

@media (max-width: 640px) {
    .site-header__inner {
        gap: 8px;
    }

    .brand {
        margin-right: 0;
    }

    .hero::before {
        background:
            linear-gradient(to bottom, rgba(3, 3, 4, 0.15), rgba(3, 3, 4, 0.48)),
            url("../media/xfg/xfg-tournament-ranked-team-hero-2026.png") 70% center / cover no-repeat;
    }

    .hero__feature-card {
        width: 100%;
        padding: 32px 22px;
    }
}

/* Three-card XFG merchandise collection. */
.section--merch {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 76% 18%, rgba(242, 13, 37, 0.12), transparent 30%),
        linear-gradient(180deg, rgba(6, 5, 6, 0.98), rgba(13, 9, 11, 0.98));
}

.merch-heading {
    margin-bottom: 34px;
}

.merch-heading .eyebrow {
    margin-bottom: 14px;
}

.merch-heading h2 {
    margin: 0;
    font-family: Impact, "Arial Black", "Segoe UI", sans-serif;
    font-size: clamp(3rem, 5.4vw, 5.4rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 0.94;
    text-transform: uppercase;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.merch-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: #110e10;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.merch-card:hover {
    border-color: rgba(242, 181, 68, 0.44);
    box-shadow: 0 28px 58px rgba(0, 0, 0, 0.34);
    transform: translateY(-6px);
}

.merch-card__media {
    position: relative;
    height: clamp(230px, 24vw, 310px);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #070607;
}

.merch-card__media--hoodies {
    display: grid;
    place-items: center;
    background:
        linear-gradient(145deg, rgba(5, 4, 5, 0.26), rgba(5, 4, 5, 0.82)),
        url("../media/xfg/xfg-hero-flipped-2026.png") 28% center / cover no-repeat;
}

.merch-card__media--hoodies::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgba(5, 4, 5, 0.86), transparent 58%);
}

.merch-card__media--hoodies img {
    position: relative;
    z-index: 2;
    width: min(47%, 168px);
    filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.48));
}

.merch-card__ghost-text {
    position: absolute;
    z-index: 1;
    color: rgba(255, 255, 255, 0.07);
    font-family: Impact, "Arial Black", sans-serif;
    font-size: clamp(7rem, 12vw, 11rem);
    letter-spacing: -0.08em;
    line-height: 1;
}

.merch-card__media--controllers {
    background:
        radial-gradient(circle at 20% 28%, rgba(177, 255, 18, 0.16), transparent 36%),
        radial-gradient(circle at 78% 72%, rgba(242, 13, 37, 0.2), transparent 38%),
        #050505;
}

.controller {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.55));
}

.controller--xbox {
    top: 7%;
    left: -7%;
    width: 69%;
    transform: rotate(-7deg);
}

.controller--ps5 {
    right: -4%;
    bottom: 5%;
    z-index: 2;
    width: 67%;
    transform: rotate(7deg);
}

.merch-card__media--overlays {
    display: grid;
    place-items: center;
    background:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        radial-gradient(circle at 50% 45%, rgba(242, 13, 37, 0.18), transparent 48%),
        #070607;
    background-size: 32px 32px, 32px 32px, auto, auto;
}

.overlay-preview {
    width: 78%;
    padding: 9px;
    border: 2px solid rgba(242, 181, 68, 0.78);
    background: rgba(7, 6, 8, 0.94);
    box-shadow: 0 0 0 5px rgba(242, 13, 37, 0.14), 0 20px 40px rgba(0, 0, 0, 0.44);
    transform: perspective(700px) rotateY(-7deg) rotateX(2deg);
}

.overlay-preview__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 25px;
    padding: 0 8px;
    color: var(--gold-pale);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.48rem;
    letter-spacing: 0.12em;
}

.overlay-preview__top i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-bright);
    box-shadow: 0 0 10px var(--red-bright);
}

.overlay-preview__screen {
    height: 112px;
    padding: 8px;
    background:
        linear-gradient(145deg, rgba(242, 13, 37, 0.16), rgba(242, 181, 68, 0.04)),
        #0b090b;
}

.overlay-preview__screen span {
    display: block;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent);
}

.overlay-preview__panels {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 5px;
    margin-top: 6px;
}

.overlay-preview__panels span {
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(242, 13, 37, 0.08);
}

.merch-card__content {
    min-height: 245px;
    padding: 25px;
}

.merch-card__kicker {
    margin: 0 0 9px;
    color: var(--gold-pale);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.merch-card h3 {
    margin: 0;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.merch-card__content > p:not(.merch-card__kicker) {
    margin: 15px 0 0;
    color: #aaa09c;
    font-size: 0.88rem;
}

.merch-card__meta {
    display: block;
    margin-top: 22px;
    padding-top: 14px;
    color: #d0c6c2;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .merch-grid {
        grid-template-columns: 1fr;
        width: min(680px, 100%);
        margin-inline: auto;
    }

    .merch-card__media {
        height: clamp(260px, 56vw, 390px);
    }

    .merch-card__content {
        min-height: auto;
    }
}

@media (max-width: 520px) {
    .merch-card__media {
        height: 245px;
    }

    .merch-card__content {
        padding: 22px 20px;
    }

    .overlay-preview {
        width: 86%;
    }
}

/* Left-aligned dropdown navigation and scroll-away header. */
.site-header,
.site-header.is-scrolled {
    position: fixed;
    width: 100%;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 220ms ease, transform 220ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.site-header__inner {
    justify-content: flex-start;
    gap: 12px;
}

.brand {
    margin-right: 14px;
}

.primary-nav {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    gap: 2px;
    margin-left: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 100%;
    gap: 6px;
    padding: 0 12px;
    border: 0;
    color: #c8bdba;
    background: transparent;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.085em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 160ms ease, background 160ms ease;
}

.nav-dropdown-toggle span {
    color: var(--gold-pale);
    transition: transform 160ms ease;
}

.nav-item.is-open .nav-dropdown-toggle,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
}

.nav-item.is-open .nav-dropdown-toggle span {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    display: grid;
    width: 286px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 7, 8, 0.98);
    box-shadow: 0 26px 58px rgba(0, 0, 0, 0.52);
    opacity: 0;
    transform: translateY(-9px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu--right {
    right: 0;
    left: auto;
}

.nav-item.is-open .nav-dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu a {
    display: grid;
    gap: 2px;
    padding: 11px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transition: background 160ms ease;
}

.nav-dropdown-menu a:last-child {
    border-bottom: 0;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(242, 181, 68, 0.08);
}

.nav-dropdown-menu strong {
    color: #f8f1ed;
    font-size: 0.67rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-dropdown-menu span {
    color: #8f8581;
    font-size: 0.68rem;
    line-height: 1.35;
}

.site-header__inner > .nav-cta {
    flex: 0 0 auto;
    margin-left: auto;
}

/* Dedicated section pages. */
.section-page main {
    min-height: 70vh;
}

.page-hero {
    position: relative;
    display: grid;
    min-height: 480px;
    place-items: end start;
    overflow: hidden;
    padding-block: 170px 92px;
    border-bottom: 1px solid rgba(242, 181, 68, 0.25);
    background:
        linear-gradient(90deg, rgba(5, 4, 5, 0.94), rgba(5, 4, 5, 0.35)),
        linear-gradient(to bottom, transparent, rgba(5, 4, 5, 0.72)),
        url("../media/xfg/xfg-hero-flipped-2026.png") center / cover no-repeat;
}

.page-hero h1 {
    max-width: 880px;
    margin: 0;
    font-family: Impact, "Arial Black", "Segoe UI", sans-serif;
    font-size: clamp(3.6rem, 7.4vw, 7.4rem);
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 0.92;
    text-transform: uppercase;
}

.page-hero p:last-child {
    max-width: 680px;
    margin: 25px 0 0;
    color: #cfc5c1;
    font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.connect-directory {
    background: linear-gradient(180deg, rgba(6, 5, 6, 0.98), rgba(14, 10, 12, 0.98));
}

.connect-directory__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.connect-directory__grid > a {
    display: flex;
    min-height: 150px;
    align-items: center;
    gap: 18px;
    padding: 26px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    transition: background 160ms ease, transform 160ms ease;
}

.connect-directory__grid > a:hover,
.connect-directory__grid > a:focus-visible {
    z-index: 1;
    background: rgba(242, 13, 37, 0.09);
    transform: translateY(-3px);
}

.connect-directory__grid img,
.connect-directory__contact {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    object-fit: contain;
}

.connect-directory__contact {
    color: var(--gold-pale);
    border: 1px solid rgba(242, 181, 68, 0.4);
    font-size: 0.62rem;
    font-weight: 900;
}

.connect-directory__grid div {
    display: grid;
    gap: 4px;
}

.connect-directory__grid strong {
    font-size: 0.9rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.connect-directory__grid span {
    color: #9f9591;
    font-size: 0.76rem;
}

@media (max-width: 1080px) {
    .primary-nav {
        display: none;
    }

    .brand {
        margin-right: 0;
    }

    .site-header__inner > .nav-cta {
        margin-left: auto;
    }
}

@media (max-width: 760px) {
    .page-hero {
        min-height: 410px;
        padding-block: 145px 72px;
        background-position: 58% center;
    }

    .page-hero h1 {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .connect-directory__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .site-header__inner > .nav-cta {
        padding-inline: 11px;
        font-size: 0.61rem;
    }

    .brand__wordmark strong,
    .brand__wordmark em {
        font-size: 0.82rem;
    }
}

/* Contained glass header and slower hover dropdown motion. */
.site-header,
.site-header.is-scrolled {
    padding-top: 10px;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.site-header__inner {
    min-height: 62px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    background: rgba(8, 7, 8, 0.7);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled .site-header__inner {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(8, 7, 8, 0.78);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.38);
}

.menu-toggle {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-menu-panel,
.nav-dropdown-menu {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(10, 9, 10, 0.74);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(20px) saturate(125%);
    -webkit-backdrop-filter: blur(20px) saturate(125%);
    transform: translateY(-14px);
    transition: opacity 310ms ease, transform 310ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu-panel.is-open,
.nav-item.is-open .nav-dropdown-menu,
.nav-item:hover .nav-dropdown-menu,
.nav-item:focus-within .nav-dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-item:hover .nav-dropdown-toggle,
.nav-item:focus-within .nav-dropdown-toggle {
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
}

.nav-item:hover .nav-dropdown-toggle span,
.nav-item:focus-within .nav-dropdown-toggle span,
.nav-item.is-open .nav-dropdown-toggle span {
    transform: rotate(180deg);
}

.site-menu-panel a,
.nav-dropdown-menu a {
    position: relative;
    padding-right: 38px;
}

.site-menu-panel a::after,
.nav-dropdown-menu a::after {
    position: absolute;
    top: 50%;
    right: 13px;
    color: var(--gold-pale);
    content: "+";
    opacity: 0.55;
    transform: translate(-5px, -50%);
    transition: opacity 180ms ease, transform 180ms ease;
}

.site-menu-panel a:hover::after,
.site-menu-panel a:focus-visible::after,
.nav-dropdown-menu a:hover::after,
.nav-dropdown-menu a:focus-visible::after {
    opacity: 1;
    transform: translate(0, -50%);
}

.site-header__inner > .nav-cta {
    align-self: center;
    margin-right: 0;
}

@media (max-width: 640px) {
    .site-header,
    .site-header.is-scrolled {
        padding-top: 7px;
    }

    .site-header__inner {
        min-height: 58px;
        padding: 4px 6px;
    }

    .site-menu-panel {
        top: calc(100% + 10px);
        width: min(250px, calc(100vw - 30px));
    }
}

/* Cleaner menu boxes with plus expand controls. */
.menu-toggle {
    border-color: transparent;
}

.site-menu-panel,
.nav-dropdown-menu {
    padding: 8px;
}

.site-menu-panel a,
.site-menu-panel a:last-child,
.nav-dropdown-menu a,
.nav-dropdown-menu a:last-child {
    margin: 1px 0;
    border-bottom: 0;
    border-radius: 2px;
}

.site-menu-panel a::after,
.nav-dropdown-menu a::after {
    content: "+";
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-50%);
    transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-menu-panel a:hover::after,
.site-menu-panel a:focus-visible::after,
.nav-dropdown-menu a:hover::after,
.nav-dropdown-menu a:focus-visible::after {
    color: #fff;
    transform: translateY(-50%) rotate(90deg);
}

/* Compact XFG navigation based on the supplied menu reference. */
.site-header,
.site-header.is-scrolled {
    padding-top: 8px;
}

.site-header__inner,
.site-header.is-scrolled .site-header__inner {
    min-height: 56px;
    padding: 0;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1px;
    background: rgba(67, 65, 66, 0.76);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px) saturate(115%);
    -webkit-backdrop-filter: blur(18px) saturate(115%);
}

.site-header.is-scrolled .site-header__inner {
    background: rgba(52, 50, 51, 0.84);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

.site-menu {
    align-self: stretch;
}

.menu-toggle {
    width: 56px;
    height: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 0;
    background: rgba(19, 18, 19, 0.66);
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"] {
    background: rgba(13, 12, 13, 0.9);
}

.brand {
    min-height: 54px;
    margin: 0;
    padding: 0 19px;
}

.primary-nav {
    align-self: stretch;
    gap: 0;
    margin-left: 0;
}

.nav-dropdown-toggle {
    min-height: 54px;
    gap: 8px;
    padding: 0 13px;
    color: #f2eeee;
    font-size: 0.65rem;
    letter-spacing: 0.075em;
}

.nav-dropdown-toggle span {
    color: #fff;
    font-size: 0.84rem;
    font-weight: 500;
    transform: none !important;
}

.nav-item.is-open .nav-dropdown-toggle,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-item:hover .nav-dropdown-toggle,
.nav-item:focus-within .nav-dropdown-toggle {
    color: #fff;
    background: rgba(17, 16, 17, 0.34);
}

.site-header__inner > .nav-cta {
    align-self: stretch;
    min-height: 54px;
    margin-left: auto;
    border-radius: 0;
}

.site-menu-panel,
.nav-dropdown-menu {
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0;
    background: rgba(72, 70, 71, 0.78);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px) saturate(110%);
    -webkit-backdrop-filter: blur(18px) saturate(110%);
    transform: translateY(-10px);
    transition: opacity 290ms ease, transform 290ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu-panel {
    top: calc(100% + 1px);
    left: 0;
    display: block;
    width: 214px;
    max-height: calc(100vh - 82px);
    overflow-x: hidden;
    overflow-y: auto;
}

.nav-dropdown-menu,
.nav-dropdown-menu--right {
    top: calc(100% + 1px);
    right: auto;
    left: 0;
    display: block;
    width: 218px;
}

.site-menu-panel.is-open,
.nav-item.is-open .nav-dropdown-menu,
.nav-item:hover .nav-dropdown-menu,
.nav-item:focus-within .nav-dropdown-menu {
    transform: translateY(0);
}

.site-menu-group {
    margin: 0;
    border: 0;
}

.site-menu-expand {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border: 0;
    color: #f6f2f2;
    background: transparent;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease;
}

.site-menu-expand:hover,
.site-menu-expand:focus-visible,
.site-menu-group.is-open > .site-menu-expand {
    color: #fff;
    background: rgba(15, 14, 15, 0.38);
}

.site-menu-expand span {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 260ms ease;
}

.site-menu-group.is-open > .site-menu-expand span {
    transform: rotate(45deg);
}

.site-menu-submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: max-height 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-menu-group.is-open > .site-menu-submenu {
    max-height: 290px;
    opacity: 1;
    transform: translateY(0);
}

.site-menu-panel a,
.site-menu-panel a:last-child,
.nav-dropdown-menu a,
.nav-dropdown-menu a:last-child {
    display: block;
    margin: 0;
    padding: 11px 14px;
    border: 0;
    border-radius: 0;
    color: #f0ebeb;
    background: transparent;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1.3;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease, padding-left 220ms ease;
}

.site-menu-submenu a,
.site-menu-submenu a:last-child {
    padding: 9px 14px 9px 25px;
    color: #ddd7d7;
    font-size: 0.62rem;
    font-weight: 700;
}

.site-menu-panel a:hover,
.site-menu-panel a:focus-visible,
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    color: #fff;
    background: rgba(15, 14, 15, 0.38);
}

.site-menu-submenu a:hover,
.site-menu-submenu a:focus-visible {
    padding-left: 29px;
}

.site-menu-panel > .site-menu-link,
.site-menu-panel > .site-menu-link:last-child {
    color: var(--gold-pale);
}

.site-menu-panel a::after,
.nav-dropdown-menu a::after {
    content: none;
}

@media (max-width: 980px) {
    .nav-dropdown-toggle {
        padding-inline: 9px;
        font-size: 0.61rem;
    }

    .brand {
        padding-inline: 14px;
    }
}

@media (max-width: 840px) {
    .site-menu-panel {
        top: calc(100% + 1px);
    }
}

@media (max-width: 640px) {
    .site-header,
    .site-header.is-scrolled {
        padding-top: 6px;
    }

    .site-header__inner,
    .site-header.is-scrolled .site-header__inner {
        min-height: 52px;
        padding: 0;
    }

    .menu-toggle {
        width: 50px;
        min-height: 50px;
    }

    .brand {
        min-height: 50px;
        padding-inline: 12px;
    }

    .site-header__inner > .nav-cta {
        min-height: 50px;
    }

    .site-menu-panel {
        top: calc(100% + 1px);
        width: min(226px, calc(100vw - 30px));
    }
}

/* Tighter centered header proportions from the second supplied video. */
.site-header,
.site-header.is-scrolled {
    padding-top: 8px;
}

.site-header__inner,
.site-header.is-scrolled .site-header__inner {
    width: min(900px, calc(100% - 32px));
    min-height: 44px;
    background: rgba(76, 74, 74, 0.78);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.32);
}

.site-header.is-scrolled .site-header__inner {
    background: rgba(54, 52, 53, 0.86);
}

.menu-toggle {
    width: 44px;
    min-height: 42px;
    padding-inline: 12px;
}

.menu-toggle > span:not(.sr-only) {
    width: 18px;
    height: 1px;
    margin: 4px 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-5px) rotate(-45deg);
}

.brand {
    min-height: 42px;
    padding-inline: 13px;
}

.brand__wordmark strong,
.brand__wordmark em {
    font-size: 0.91rem;
}

.nav-dropdown-toggle {
    min-height: 42px;
    gap: 6px;
    padding-inline: 10px;
    font-size: 0.61rem;
    letter-spacing: 0.065em;
}

.nav-dropdown-toggle span {
    font-size: 0.76rem;
}

.site-header__inner > .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.61rem;
}

.site-menu-panel {
    width: 178px;
}

.nav-dropdown-menu,
.nav-dropdown-menu--right {
    width: 194px;
}

.site-menu-expand {
    min-height: 32px;
    padding: 7px 10px;
    font-size: 0.61rem;
    letter-spacing: 0.065em;
}

.site-menu-expand span {
    font-size: 0.82rem;
}

.site-menu-panel a,
.site-menu-panel a:last-child,
.nav-dropdown-menu a,
.nav-dropdown-menu a:last-child {
    padding: 8px 10px;
    font-size: 0.61rem;
    letter-spacing: 0.06em;
}

.site-menu-submenu a,
.site-menu-submenu a:last-child {
    padding: 7px 10px 7px 20px;
    font-size: 0.58rem;
}

.site-menu-submenu a:hover,
.site-menu-submenu a:focus-visible {
    padding-left: 24px;
}

@media (max-width: 840px) {
    .site-header__inner,
    .site-header.is-scrolled .site-header__inner {
        width: min(100% - 30px, 720px);
    }
}

@media (max-width: 640px) {
    .site-header,
    .site-header.is-scrolled {
        padding-top: 6px;
    }

    .site-header__inner,
    .site-header.is-scrolled .site-header__inner {
        width: calc(100% - 24px);
        min-height: 48px;
    }

    .menu-toggle {
        width: 48px;
        min-height: 46px;
    }

    .brand {
        min-height: 46px;
    }

    .site-header__inner > .nav-cta {
        min-height: 46px;
    }

    .site-menu-panel {
        width: min(190px, calc(100vw - 30px));
    }
}

/* Header control polish requested from the third reference clip. */
html {
    scrollbar-gutter: stable;
}

body.site-menu-open {
    overflow: hidden;
    overscroll-behavior: none;
}

.menu-toggle,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: transparent;
}

.menu-toggle[aria-expanded="true"],
.menu-toggle[aria-expanded="true"]:hover,
.menu-toggle[aria-expanded="true"]:focus-visible {
    background: rgba(13, 12, 13, 0.9);
}

.site-menu-expand {
    justify-content: flex-start;
    gap: 5px;
}

.site-menu-expand span {
    flex: 0 0 auto;
}

.site-header__inner > .nav-cta {
    align-self: center;
    min-height: 34px;
    margin: 4px 6px 4px auto;
    padding: 0 16px;
    border-radius: 4px;
    clip-path: none;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.055em;
    line-height: 1;
}

@media (max-width: 640px) {
    .site-header__inner > .nav-cta {
        min-height: 36px;
        margin-right: 5px;
        padding-inline: 13px;
        border-radius: 4px;
        font-size: 0.68rem;
    }
}

/* Final forum button alignment and corner adjustment. */
.site-header__inner > .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    line-height: 1.1;
    text-align: center;
}

@media (max-width: 640px) {
    .site-header__inner > .nav-cta {
        border-radius: 2px;
    }
}

/* Transparent gray glass header and a centered, unclipped X animation. */
.site-header__inner,
.site-header.is-scrolled .site-header__inner {
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(90deg, rgba(92, 92, 96, 0.24), rgba(56, 56, 60, 0.18));
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px) saturate(118%);
    -webkit-backdrop-filter: blur(18px) saturate(118%);
}

.site-header.is-scrolled .site-header__inner {
    background: linear-gradient(90deg, rgba(78, 78, 82, 0.34), rgba(45, 45, 49, 0.28));
}

.menu-toggle {
    position: relative;
    overflow: visible;
}

.menu-toggle,
.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"],
.menu-toggle[aria-expanded="true"]:hover,
.menu-toggle[aria-expanded="true"]:focus-visible {
    color: #fff;
}

.menu-toggle > span:not(.sr-only) {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 18px;
    height: 2px;
    margin: 0;
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle > span:nth-child(2) {
    transform: translate(-50%, -7px);
}

.menu-toggle > span:nth-child(3) {
    transform: translate(-50%, -50%);
}

.menu-toggle > span:nth-child(4) {
    transform: translate(-50%, 5px);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
    transform: translate(-50%, -50%);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Matching glass dropdowns and slightly larger desktop header labels. */
.site-menu-panel,
.nav-dropdown-menu {
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(90deg, rgba(92, 92, 96, 0.3), rgba(56, 56, 60, 0.24));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(18px) saturate(118%);
    -webkit-backdrop-filter: blur(18px) saturate(118%);
}

@media (min-width: 841px) {
    .site-header__inner,
    .site-header.is-scrolled .site-header__inner {
        width: min(980px, calc(100% - 32px));
    }

    .brand {
        padding-inline: 15px;
    }

    .brand__wordmark strong,
    .brand__wordmark em {
        font-size: 1.03rem;
    }

    .nav-dropdown-toggle {
        padding-inline: 11px;
        font-size: 0.68rem;
        letter-spacing: 0.065em;
    }

    .nav-dropdown-toggle span {
        font-size: 0.82rem;
    }
}

/* Reference-style dropdown motion and compact blurred hero card. */
.site-menu-panel,
.nav-dropdown-menu {
    transform: translateY(-7px) scale(0.985);
    transform-origin: top left;
    transition: opacity 240ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-dropdown-menu--right {
    transform-origin: top right;
}

.site-menu-panel.is-open,
.nav-item.is-open .nav-dropdown-menu,
.nav-item:hover .nav-dropdown-menu,
.nav-item:focus-within .nav-dropdown-menu {
    transform: translateY(0) scale(1);
}

.site-menu-expand:hover,
.site-menu-expand:focus-visible,
.site-menu-group.is-open > .site-menu-expand,
.site-menu-panel a:hover,
.site-menu-panel a:focus-visible,
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(12, 12, 14, 0.34);
}

.hero__feature-card {
    width: min(500px, 42vw);
    padding: clamp(38px, 3.6vw, 50px) clamp(36px, 3.8vw, 52px) clamp(34px, 3.2vw, 44px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background:
        radial-gradient(circle at 78% 16%, rgba(242, 181, 68, 0.09), transparent 32%),
        linear-gradient(135deg, rgba(7, 7, 8, 0.84), rgba(14, 12, 14, 0.68));
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.46), inset 0 1px rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(14px) saturate(112%);
    -webkit-backdrop-filter: blur(14px) saturate(112%);
}

.hero__feature-card h1 {
    font-size: clamp(2.15rem, 3vw, 3.2rem);
    letter-spacing: -0.015em;
    line-height: 0.96;
}

.hero__feature-card .hero__lede {
    max-width: 410px;
    margin: 19px auto 0;
    line-height: 1.48;
}

.hero__feature-card .hero__actions {
    gap: 8px;
    margin-top: 26px;
}

.hero__feature-card .button--primary {
    border-radius: 2px;
}

.hero__feature-card .button--ghost {
    color: #f5efec;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.48);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

@media (max-width: 840px) {
    .hero__feature-card {
        width: min(500px, 88vw);
    }
}

@media (max-width: 640px) {
    .hero__feature-card {
        width: 100%;
        padding: 32px 22px 28px;
        border-radius: 9px;
    }
}

/* Compact XFG storefront cards based on the supplied reference. */
.section--merch {
    padding-block: clamp(60px, 7vw, 88px) clamp(54px, 6vw, 74px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 0;
    background:
        radial-gradient(circle at 76% 18%, rgba(242, 13, 37, 0.08), transparent 31%),
        #181718;
}

.section--merch .shell {
    width: min(100% - 40px, 980px);
}

.merch-heading {
    margin-bottom: 20px;
}

.merch-heading .eyebrow {
    display: none;
}

.merch-heading h2 {
    color: #fff;
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    letter-spacing: -0.015em;
    line-height: 1;
}

.merch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.merch-card {
    border-color: rgba(255, 255, 255, 0.1);
    background: #202021;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.merch-card:hover {
    border-color: rgba(242, 181, 68, 0.52);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38);
    transform: translateY(-4px);
}

.merch-card__media {
    height: auto;
    aspect-ratio: 4 / 3;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.merch-card__media::before {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    content: "";
    background: linear-gradient(to top, rgba(9, 8, 9, 0.5), transparent 36%);
}

.merch-card__content {
    display: flex;
    min-height: 148px;
    padding: 16px 17px 15px;
    flex-direction: column;
}

.merch-card__kicker {
    margin-bottom: 6px;
    font-size: 0.53rem;
}

.merch-card h3 {
    font-size: clamp(1.06rem, 1.6vw, 1.4rem);
    line-height: 1;
}

.merch-card__content > p:not(.merch-card__kicker) {
    display: -webkit-box;
    margin-top: 9px;
    overflow: hidden;
    color: #aaa5a3;
    font-size: 0.72rem;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.merch-card__meta {
    margin-top: auto;
    padding-top: 12px;
    color: #d8d2cf;
    border-top: 0;
    font-size: 0.52rem;
}

.merch-store-action {
    display: flex;
    justify-content: center;
    margin-top: 31px;
}

.merch-store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 164px;
    min-height: 34px;
    padding: 8px 17px;
    color: #f5f2f0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 1px;
    background: rgba(7, 7, 8, 0.28);
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.merch-store-button:hover,
.merch-store-button:focus-visible {
    color: #100d0a;
    border-color: var(--gold);
    background: var(--gold);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .section--merch .shell {
        width: min(100% - 34px, 680px);
    }

    .merch-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .merch-card__media {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .merch-card__content {
        min-height: 142px;
    }
}

@media (max-width: 520px) {
    .section--merch .shell {
        width: min(100% - 28px, 680px);
    }

    .merch-card__media {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .merch-card__content {
        padding: 16px;
    }
}

/* Four-card cover layout matching the latest supplied storefront reference. */
.section--merch {
    padding-block: clamp(58px, 6vw, 74px) clamp(68px, 7vw, 92px);
    background: #191919;
}

.section--merch .shell {
    width: min(100% - 40px, 840px);
}

.merch-heading {
    margin-bottom: 17px;
}

.merch-heading h2 {
    font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.merch-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.merch-card {
    background: #232323;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.merch-card__media {
    aspect-ratio: 4 / 5;
}

.merch-card__media--controller-xbox,
.merch-card__media--controller-ps5 {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(242, 181, 68, 0.12), transparent 36%),
        linear-gradient(145deg, #080808, #151313);
}

.merch-card__media--controller-xbox {
    background:
        radial-gradient(circle at 50% 42%, rgba(176, 255, 18, 0.18), transparent 39%),
        linear-gradient(145deg, #060706, #111510);
}

.merch-card__media--controller-xbox .controller--single,
.merch-card__media--controller-ps5 .controller--single {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 2;
    width: 92%;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.55));
}

.merch-card__media--controller-xbox .controller--single {
    transform: rotate(-5deg) scale(1.03);
}

.merch-card__media--controller-ps5 .controller--single {
    transform: rotate(4deg) scale(1.04);
}

.merch-card__content {
    min-height: 122px;
    padding: 13px 14px 12px;
}

.merch-card__kicker {
    margin-bottom: 5px;
    font-size: 0.48rem;
}

.merch-card h3 {
    font-size: clamp(0.92rem, 1.3vw, 1.12rem);
}

.merch-card__content > p:not(.merch-card__kicker) {
    margin-top: 7px;
    font-size: 0.63rem;
    line-height: 1.36;
}

.merch-card__meta {
    padding-top: 8px;
    font-size: 0.47rem;
}

.merch-store-action {
    margin-top: 24px;
}

.merch-store-button {
    min-width: 142px;
    min-height: 29px;
    padding: 7px 14px;
    border-color: rgba(255, 255, 255, 0.34);
    font-size: 0.48rem;
}

@media (max-width: 900px) {
    .section--merch .shell {
        width: min(100% - 34px, 680px);
    }

    .merch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .merch-card__media {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 520px) {
    .section--merch .shell {
        width: min(100% - 28px, 360px);
    }

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

    .merch-card__media {
        aspect-ratio: 4 / 5;
    }
}

/* COD-inspired product and store-button hover motion from the supplied clip. */
.merch-card {
    position: relative;
    isolation: isolate;
    transition:
        border-color 320ms ease,
        box-shadow 420ms ease,
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.merch-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 6;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.merch-card:hover,
.merch-card:focus-within {
    border-color: rgba(242, 181, 68, 0.7);
    box-shadow: 0 27px 48px rgba(0, 0, 0, 0.48);
    transform: translateY(-10px) scale(1.012);
}

.merch-card:hover::after,
.merch-card:focus-within::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.merch-card__media {
    isolation: isolate;
}

.merch-card__media::before {
    transition: opacity 420ms ease;
}

.merch-card:hover .merch-card__media::before,
.merch-card:focus-within .merch-card__media::before {
    opacity: 0.35;
}

.merch-card__media--hoodies img,
.merch-card__media--hoodies .merch-card__ghost-text,
.merch-card__media--controller-xbox .controller--single,
.merch-card__media--controller-ps5 .controller--single,
.merch-card__media--overlays .overlay-preview {
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.merch-card:hover .merch-card__media--hoodies img,
.merch-card:focus-within .merch-card__media--hoodies img {
    filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.62));
    transform: scale(1.1) rotate(-2deg);
}

.merch-card:hover .merch-card__media--hoodies .merch-card__ghost-text,
.merch-card:focus-within .merch-card__media--hoodies .merch-card__ghost-text {
    transform: scale(1.07);
}

.merch-card:hover .merch-card__media--controller-xbox .controller--single,
.merch-card:focus-within .merch-card__media--controller-xbox .controller--single {
    filter: drop-shadow(0 22px 30px rgba(145, 223, 0, 0.22));
    transform: rotate(-2deg) scale(1.13);
}

.merch-card:hover .merch-card__media--controller-ps5 .controller--single,
.merch-card:focus-within .merch-card__media--controller-ps5 .controller--single {
    filter: drop-shadow(0 22px 30px rgba(242, 13, 37, 0.22));
    transform: rotate(2deg) scale(1.14);
}

.merch-card:hover .merch-card__media--overlays .overlay-preview,
.merch-card:focus-within .merch-card__media--overlays .overlay-preview {
    filter: drop-shadow(0 20px 30px rgba(242, 13, 37, 0.23));
    transform: scale(1.08);
}

.merch-card h3 {
    transition: color 260ms ease, transform 320ms ease;
}

.merch-card:hover h3,
.merch-card:focus-within h3 {
    color: var(--gold-pale);
    transform: translateX(3px);
}

.merch-store-action {
    display: grid;
    grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
    align-items: center;
    gap: 15px;
    margin-top: 19px;
}

.merch-store-action::before,
.merch-store-action::after {
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.12);
}

.merch-store-button {
    position: relative;
    isolation: isolate;
    min-width: 150px;
    min-height: 30px;
    gap: 7px;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.48);
    background: #191919;
    transform: none;
    transition:
        color 260ms ease,
        border-color 260ms ease,
        box-shadow 360ms ease,
        transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.merch-store-button::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(100deg, #f6f2ef 0 72%, var(--gold) 100%);
    transform: translateX(-104%);
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.merch-store-button span,
.merch-store-button i {
    position: relative;
    z-index: 1;
}

.merch-store-button i {
    font-size: 0.9rem;
    font-style: normal;
    line-height: 0;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.merch-store-button:hover,
.merch-store-button:focus-visible {
    color: #111;
    border-color: #f6f2ef;
    background: #191919;
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.36);
    transform: translateY(-3px);
}

.merch-store-button:hover::before,
.merch-store-button:focus-visible::before {
    transform: translateX(0);
}

.merch-store-button:hover i,
.merch-store-button:focus-visible i {
    transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
    .merch-card,
    .merch-card::after,
    .merch-card__media::before,
    .merch-card__media img,
    .merch-card__ghost-text,
    .overlay-preview,
    .merch-card h3,
    .merch-store-button,
    .merch-store-button::before,
    .merch-store-button i {
        transition-duration: 0.01ms !important;
    }
}

/* Stronger storefront depth and one continuous gray lower-page surface. */
.section--merch {
    overflow: visible;
}

.merch-grid {
    padding: 8px 6px;
    perspective: 1100px;
}

.merch-card {
    z-index: 1;
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.11),
        0 15px 21px rgba(0, 0, 0, 0.58),
        0 34px 54px rgba(0, 0, 0, 0.34);
}

.merch-card:hover,
.merch-card:focus-within {
    z-index: 5;
    border-color: rgba(242, 181, 68, 0.78);
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.18),
        0 24px 30px rgba(0, 0, 0, 0.74),
        0 50px 82px rgba(0, 0, 0, 0.52),
        0 0 30px rgba(242, 181, 68, 0.12);
    transform: translateY(-14px) scale(1.022);
}

.merch-store-action {
    margin-top: 11px;
}

.site-footer,
.site-footer__legal,
.site-footer__bottom,
.footer-utilities,
.network-strip--footer {
    background: #191919;
}

.site-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.site-footer__bottom,
.network-strip--footer {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Mobile storefront and footer proportions from the supplied phone recording. */
@media (max-width: 520px) {
    .section--merch {
        padding-block: 48px 56px;
    }

    .section--merch .shell {
        width: min(100% - 22px, 430px);
    }

    .merch-heading {
        margin-bottom: 14px;
    }

    .merch-heading h2 {
        font-size: 1.45rem;
    }

    .merch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 11px;
        padding: 5px 0 8px;
    }

    .merch-card__media {
        aspect-ratio: 4 / 5;
    }

    .merch-card__content {
        min-height: 98px;
        padding: 10px 10px 9px;
    }

    .merch-card__kicker {
        margin-bottom: 4px;
        font-size: 0.41rem;
        letter-spacing: 0.1em;
    }

    .merch-card h3 {
        font-size: clamp(0.74rem, 3.7vw, 0.9rem);
        line-height: 1.05;
    }

    .merch-card__content > p:not(.merch-card__kicker) {
        display: none;
    }

    .merch-card__meta {
        margin-top: auto;
        padding-top: 7px;
        font-size: 0.4rem;
        letter-spacing: 0.08em;
    }

    .merch-store-action {
        grid-template-columns: minmax(16px, 1fr) auto minmax(16px, 1fr);
        gap: 10px;
        margin-top: 13px;
    }

    .merch-store-button {
        min-width: 134px;
        min-height: 31px;
        padding-inline: 12px;
        font-size: 0.45rem;
    }

    .site-footer__legal {
        padding-block: 27px 22px;
    }

    .footer-legal-links a {
        min-height: 38px;
        padding-block: 11px;
        font-size: 0.59rem;
    }

    .footer-social-icons {
        gap: 11px;
        margin-top: 20px;
    }

    .footer-social-icons a {
        width: 31px;
        height: 31px;
    }

    .footer-social-icons img {
        width: 24px;
        height: 24px;
    }

    .site-footer__bottom {
        min-height: 78px;
        padding-block: 18px;
        line-height: 1.5;
    }

    .footer-utilities {
        gap: 10px;
        padding-block: 18px 27px;
    }

    .network-strip--footer .network-strip__inner {
        min-height: 52px;
        gap: 5px 9px;
        padding: 9px 12px;
        font-size: 0.62rem;
    }
}

/* Clearer hero glass and a matching glass Learn More action. */
.hero__feature-card {
    --xfg-hero-glass: linear-gradient(135deg, rgba(72, 72, 78, 0.25), rgba(0, 0, 0, 0.43));
    position: relative;
    overflow: hidden;
    border-color: rgba(255, 255, 255, 0.17);
    background: var(--xfg-hero-glass);
    box-shadow:
        0 28px 72px rgba(0, 0, 0, 0.38),
        inset 0 1px rgba(255, 255, 255, 0.13),
        inset 1px 0 rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(22px) saturate(128%);
    -webkit-backdrop-filter: blur(22px) saturate(128%);
}

.hero__feature-card::before {
    position: absolute;
    inset: 0;
    display: block;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 30%),
        radial-gradient(circle at 78% 8%, rgba(242, 181, 68, 0.09), transparent 34%);
}

.hero__feature-card > * {
    position: relative;
    z-index: 1;
}

.hero__feature-card .hero__actions {
    align-items: stretch;
    flex-direction: column;
}

.hero__feature-card .button {
    width: 100%;
}

.hero__feature-card .button--ghost {
    min-height: 38px;
    padding-inline: 18px;
    color: #f8f5f3;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--xfg-hero-glass);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.1),
        0 8px 22px rgba(0, 0, 0, 0.16);
    text-decoration: none;
    backdrop-filter: blur(18px) saturate(128%);
    -webkit-backdrop-filter: blur(18px) saturate(128%);
}

.hero__feature-card .button--ghost:hover,
.hero__feature-card .button--ghost:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: var(--xfg-hero-glass);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.16),
        0 12px 28px rgba(0, 0, 0, 0.24);
}

/* Softer borderless glass silhouette and an unboxed Learn More link. */
.hero__feature-card {
    border: 0;
    border-radius: 20px;
    box-shadow: 0 30px 76px rgba(0, 0, 0, 0.4);
}

.hero__feature-card .button--ghost {
    min-height: 32px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.72);
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero__feature-card .button--ghost:hover,
.hero__feature-card .button--ghost:focus-visible {
    color: var(--gold-pale);
    border: 0;
    background: transparent;
    box-shadow: none;
    text-decoration-color: var(--gold-pale);
}

@media (max-width: 640px) {
    .hero__feature-card {
        border-radius: 18px;
    }
}

/* Borderless gray-glass header matched to the supplied desktop reference. */
.site-header,
.site-header.is-scrolled {
    padding-top: 8px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header__inner,
.site-header.is-scrolled .site-header__inner {
    width: min(1180px, calc(100% - 48px));
    min-height: 48px;
    padding: 0;
    gap: 0;
    border: 0;
    border-radius: 1px;
    background: linear-gradient(90deg, rgba(102, 102, 106, 0.7), rgba(55, 54, 58, 0.66));
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px) saturate(116%);
    -webkit-backdrop-filter: blur(20px) saturate(116%);
}

.site-header.is-scrolled .site-header__inner {
    background: linear-gradient(90deg, rgba(86, 86, 90, 0.78), rgba(42, 41, 45, 0.76));
    box-shadow: 0 17px 38px rgba(0, 0, 0, 0.4);
}

.site-menu,
.menu-toggle,
.brand,
.primary-nav,
.nav-item,
.nav-dropdown-toggle {
    min-height: 48px;
}

.menu-toggle {
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.menu-toggle[aria-expanded="true"],
.menu-toggle[aria-expanded="true"]:hover,
.menu-toggle[aria-expanded="true"]:focus-visible {
    background: rgba(12, 12, 14, 0.82);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand {
    min-height: 48px;
    margin: 0;
    padding: 0 14px;
}

.brand__wordmark strong,
.brand__wordmark em {
    font-size: 1.02rem;
    letter-spacing: 0.025em;
}

.primary-nav {
    align-self: stretch;
    gap: 0;
}

.nav-dropdown-toggle {
    min-height: 48px;
    gap: 6px;
    padding: 0 11px;
    color: rgba(255, 255, 255, 0.9);
    font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.065em;
}

.nav-dropdown-toggle span {
    color: #fff;
    font-size: 0.78rem;
}

.nav-item.is-open .nav-dropdown-toggle,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-item:hover .nav-dropdown-toggle,
.nav-item:focus-within .nav-dropdown-toggle {
    background: rgba(20, 20, 22, 0.25);
}

.site-header__inner > .nav-cta {
    align-self: center;
    min-width: 148px;
    min-height: 34px;
    margin: 7px 8px 7px auto;
    padding: 0 18px;
    border: 0;
    border-radius: 1px;
    background: linear-gradient(135deg, #ffdc70, var(--gold));
    box-shadow: inset 0 0 0 1px rgba(59, 37, 0, 0.28), 0 7px 18px rgba(0, 0, 0, 0.2);
    font-size: 0.66rem;
    letter-spacing: 0.065em;
}

.site-header__inner > .nav-cta:hover,
.site-header__inner > .nav-cta:focus-visible {
    background: linear-gradient(135deg, #ffe395, #f6bd4a);
    box-shadow: inset 0 0 0 1px rgba(59, 37, 0, 0.34), 0 10px 22px rgba(0, 0, 0, 0.28);
}

.site-menu-panel,
.nav-dropdown-menu,
.nav-dropdown-menu--right {
    top: 100%;
    width: 186px;
    padding: 0;
    border: 0;
    border-radius: 0 0 2px 2px;
    background: linear-gradient(135deg, rgba(78, 78, 82, 0.82), rgba(45, 44, 48, 0.78));
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(20px) saturate(112%);
    -webkit-backdrop-filter: blur(20px) saturate(112%);
}

.site-menu-panel {
    left: 0;
}

.site-menu-expand,
.site-menu-panel a,
.site-menu-panel a:last-child,
.nav-dropdown-menu a,
.nav-dropdown-menu a:last-child {
    font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
    font-weight: 900;
}

.site-menu-expand:hover,
.site-menu-expand:focus-visible,
.site-menu-group.is-open > .site-menu-expand,
.site-menu-panel a:hover,
.site-menu-panel a:focus-visible,
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(12, 12, 14, 0.3);
}

@media (min-width: 761px) and (max-width: 1080px) {
    .primary-nav {
        display: flex;
    }

    .brand {
        padding-inline: 12px;
    }

    .brand__wordmark strong,
    .brand__wordmark em {
        font-size: 0.92rem;
    }

    .nav-dropdown-toggle {
        padding-inline: 8px;
        font-size: 0.61rem;
    }

    .site-header__inner > .nav-cta {
        min-width: 128px;
        padding-inline: 12px;
        font-size: 0.6rem;
    }
}

@media (max-width: 760px) {
    .site-header,
    .site-header.is-scrolled {
        padding-top: 6px;
    }

    .site-header__inner,
    .site-header.is-scrolled .site-header__inner {
        width: calc(100% - 24px);
        min-height: 48px;
    }

    .primary-nav {
        display: none;
    }

    .site-header__inner > .nav-cta {
        min-width: 0;
        min-height: 34px;
        margin: 7px 7px 7px auto;
        padding-inline: 12px;
        font-size: 0.62rem;
    }

    .site-menu-panel {
        width: min(220px, calc(100vw - 30px));
    }
}

/* Live creator highlights directly above Get The Game. */
.latest-news {
    padding-block: clamp(62px, 7vw, 88px) 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 76% 10%, rgba(242, 181, 68, 0.055), transparent 28%),
        #191919;
}

.latest-news .shell {
    width: min(100% - 40px, 840px);
}

.latest-news__heading {
    margin-bottom: 17px;
}

.latest-news__heading h2 {
    margin: 0;
    color: #fff;
    font-family: Impact, "Arial Black", "Segoe UI", sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1;
    text-transform: uppercase;
}

.latest-news__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    perspective: 1100px;
}

.latest-news__grid[aria-busy="true"] .latest-card {
    opacity: 0.72;
}

.latest-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 3px solid var(--gold);
    border-radius: 1px;
    background: #222;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.09),
        0 14px 22px rgba(0, 0, 0, 0.48),
        0 28px 42px rgba(0, 0, 0, 0.22);
    transition:
        border-color 300ms ease,
        box-shadow 380ms ease,
        opacity 220ms ease,
        transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

.latest-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    pointer-events: none;
    content: "";
    background: linear-gradient(90deg, var(--gold), var(--red));
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.latest-card:hover,
.latest-card:focus-within {
    z-index: 3;
    border-color: rgba(242, 181, 68, 0.72);
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.14),
        0 23px 32px rgba(0, 0, 0, 0.65),
        0 42px 62px rgba(0, 0, 0, 0.38),
        0 0 24px rgba(242, 181, 68, 0.09);
    transform: translateY(-8px) scale(1.012);
}

.latest-card:hover::after,
.latest-card:focus-within::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.latest-card__link {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    color: inherit;
}

.latest-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b0b0c;
}

.latest-card__media::after {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(to top, rgba(8, 8, 9, 0.7), transparent 46%);
}

.latest-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 360ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.latest-card:hover .latest-card__media img,
.latest-card:focus-within .latest-card__media img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.075);
}

.latest-card__play {
    position: absolute;
    z-index: 2;
    right: 11px;
    bottom: 10px;
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    background: rgba(8, 8, 9, 0.56);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 220ms ease, background 220ms ease, transform 300ms ease;
}

.latest-card__play::before {
    width: 0;
    height: 0;
    margin-left: 2px;
    content: "";
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
}

.latest-card:hover .latest-card__play,
.latest-card:focus-within .latest-card__play {
    border-color: var(--gold);
    background: rgba(242, 181, 68, 0.86);
    transform: scale(1.08);
}

.latest-card:hover .latest-card__play::before,
.latest-card:focus-within .latest-card__play::before {
    border-left-color: #14100a;
}

.latest-card__content {
    display: flex;
    min-height: 126px;
    padding: 12px 13px 13px;
    flex: 1;
    flex-direction: column;
}

.latest-card__meta {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #aaa5a3;
    font-size: 0.46rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.latest-card__source {
    display: inline-flex;
    min-height: 15px;
    align-items: center;
    padding: 3px 6px;
    color: #120e08;
    background: var(--gold);
}

.latest-card__source--youtube {
    color: #fff;
    background: #e51d31;
}

.latest-card__source--tiktok {
    color: #fff;
    background: linear-gradient(110deg, #18d6d0, #111 45%, #f24d73);
}

.latest-card__source--forum {
    color: #120e08;
    background: var(--gold);
}

.latest-card h3 {
    margin: 10px 0 0;
    color: #fff;
    font-family: Impact, "Arial Black", "Segoe UI", sans-serif;
    font-size: clamp(0.94rem, 1.35vw, 1.15rem);
    font-weight: 900;
    letter-spacing: 0.005em;
    line-height: 1.02;
    text-transform: uppercase;
    transition: color 240ms ease, transform 300ms ease;
}

.latest-card:hover h3,
.latest-card:focus-within h3 {
    color: var(--gold-pale);
    transform: translateX(2px);
}

.latest-card__byline {
    margin: 8px 0 0;
    overflow: hidden;
    color: #aaa5a3;
    font-size: 0.57rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.latest-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: auto;
    padding-top: 10px;
}

.latest-card__tags span {
    padding: 3px 5px;
    color: #cfc9c6;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.42rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.latest-news__action {
    display: grid;
    grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.latest-news__action::before,
.latest-news__action::after {
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.13);
}

.latest-news__share {
    display: inline-flex;
    min-width: 154px;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    color: #f5f2f0;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 1px;
    background: rgba(8, 8, 9, 0.28);
    font-size: 0.51rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.latest-news__share:hover,
.latest-news__share:focus-visible {
    color: #14100a;
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.latest-news + .section--merch-home {
    padding-top: 42px;
    border-top: 0;
}

@media (max-width: 840px) {
    .latest-news .shell {
        width: min(100% - 34px, 680px);
    }

    .latest-news__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (max-width: 560px) {
    .latest-news {
        padding-block: 48px 25px;
    }

    .latest-news .shell {
        width: min(100% - 24px, 430px);
    }

    .latest-news__grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .latest-card__content {
        min-height: 118px;
    }

    .latest-news__action {
        gap: 10px;
        margin-top: 24px;
    }

    .latest-news__share {
        min-width: 140px;
        padding-inline: 13px;
        font-size: 0.48rem;
    }

    .latest-news + .section--merch-home {
        padding-top: 34px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        border-top: 0;
    }

    .footer-legal-links a:not(:last-child) {
        border-bottom: 0;
    }
}

.site-footer {
    border-top: 0;
}

.section--merch-home {
    padding-bottom: 60px;
}

.site-footer__legal {
    padding-top: 30px;
}

.footer-legal-links a {
    min-height: 24px;
    color: #adabab;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 14.08px;
    font-weight: 400;
    letter-spacing: 0.5632px;
    line-height: 16.8px;
    white-space: nowrap;
}

@media (min-width: 641px) {
    .footer-legal-links {
        gap: 0;
    }

    .footer-legal-links a {
        display: inline-flex;
        min-height: 24px;
        align-items: center;
    }

    .footer-legal-links a + a::before {
        position: static;
        display: inline-flex;
        width: 4.88px;
        height: 24px;
        flex: 0 0 4.88px;
        align-items: center;
        justify-content: center;
        margin-inline: 16px;
        border-radius: 0;
        color: rgba(255, 255, 255, 0.42);
        background: none;
        content: "|";
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        transform: none;
    }
}

@media (max-width: 640px) {
    .section--merch-home {
        padding-bottom: 36px;
    }

    .site-footer__legal {
        padding-top: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .latest-card,
    .latest-card::after,
    .latest-card__media img,
    .latest-card__play,
    .latest-card h3,
    .latest-news__share {
        transition-duration: 0.01ms !important;
    }
}

/* Reference-matched card hover: fixed shell, rising artwork and compact shadow. */
.latest-news {
    overflow: visible;
}

.latest-news .shell {
    width: min(100% - 40px, 1000px);
}

.latest-news__grid {
    gap: 18px;
    overflow: visible;
    margin: -12px -10px -12px;
    padding: 12px 10px 34px;
    perspective: none;
}

.latest-card,
.latest-card:hover,
.latest-card:focus-within {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
    transform: none;
}

.latest-card {
    transition: opacity 220ms ease;
}

.latest-card:hover,
.latest-card:focus-within {
    z-index: 5;
}

.latest-card::after {
    display: none;
}

.latest-card__link {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;
    background: #24252a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.36);
    transform: none;
    transition:
        border-color 300ms ease,
        box-shadow 300ms ease;
}

.latest-card:hover .latest-card__link,
.latest-card:focus-within .latest-card__link {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 4px 7px rgba(0, 0, 0, 0.48),
        0 16px 22px -7px rgba(0, 0, 0, 0.92);
}

.latest-card__media,
.latest-card:hover .latest-card__media,
.latest-card:focus-within .latest-card__media {
    z-index: 2;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    filter: none;
    transform: none;
}

.latest-card__media img {
    filter: none;
    transform: translateY(0) scale(1);
    transform-origin: center center;
    transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.latest-card:hover .latest-card__media img,
.latest-card:focus-within .latest-card__media img {
    filter: none;
    transform: translateY(-2px) scale(1.052);
}

.latest-card__content,
.latest-card:hover .latest-card__content,
.latest-card:focus-within .latest-card__content {
    min-height: 136px;
    margin-top: 0;
    padding: 14px 15px 15px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: #24252a;
    box-shadow: none;
}

.latest-card:hover .latest-card__play,
.latest-card:focus-within .latest-card__play {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(8, 8, 9, 0.56);
    transform: none;
}

.latest-card:hover .latest-card__play::before,
.latest-card:focus-within .latest-card__play::before {
    border-left-color: #fff;
}

.latest-card h3 {
    font-size: clamp(1.02rem, 1.45vw, 1.24rem);
}

.latest-card:hover h3,
.latest-card:focus-within h3 {
    color: #fff;
    transform: none;
}

.latest-news__action {
    margin-top: 34px;
}

@media (max-width: 900px) {
    .latest-news .shell {
        width: min(100% - 34px, 760px);
    }

    .latest-news__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 560px) {
    .latest-news .shell {
        width: min(100% - 24px, 440px);
    }

    .latest-news__grid {
        grid-template-columns: 1fr;
        margin-inline: -6px;
        padding-inline: 6px;
    }

    .latest-card__media,
    .latest-card:hover .latest-card__media,
    .latest-card:focus-within .latest-card__media {
        aspect-ratio: 16 / 9.5;
    }
}

/* Match the XFG Shop cards to the fixed-shell highlight motion, with rounded shop corners only. */
.section--merch .merch-card {
    border-color: rgba(255, 255, 255, 0.14);
    border-radius: 6px;
    background: #24252a;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.36);
    transition:
        opacity 600ms ease,
        transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 300ms ease,
        box-shadow 300ms ease;
}

.section--merch .merch-card:hover,
.section--merch .merch-card:focus-within {
    z-index: 5;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow:
        0 4px 7px rgba(0, 0, 0, 0.48),
        0 16px 22px -7px rgba(0, 0, 0, 0.92);
    transform: none;
}

.section--merch .merch-card::after {
    display: none;
}

.section--merch .merch-card__media::before,
.section--merch .merch-card:hover .merch-card__media::before,
.section--merch .merch-card:focus-within .merch-card__media::before {
    opacity: 1;
}

.section--merch .merch-card__media--hoodies img,
.section--merch .merch-card__media--hoodies .merch-card__ghost-text,
.section--merch .merch-card__media--controller-xbox .controller--single,
.section--merch .merch-card__media--controller-ps5 .controller--single,
.section--merch .merch-card__media--overlays .overlay-preview {
    transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1), filter 300ms ease;
    will-change: transform;
}

.section--merch .merch-card:hover .merch-card__media--hoodies img,
.section--merch .merch-card:focus-within .merch-card__media--hoodies img {
    filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.48));
    transform: translateY(-2px) scale(1.052);
}

.section--merch .merch-card:hover .merch-card__media--hoodies .merch-card__ghost-text,
.section--merch .merch-card:focus-within .merch-card__media--hoodies .merch-card__ghost-text {
    filter: none;
    transform: translateY(-2px) scale(1.052);
}

.section--merch .merch-card:hover .merch-card__media--controller-xbox .controller--single,
.section--merch .merch-card:focus-within .merch-card__media--controller-xbox .controller--single {
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.55));
    transform: translateY(-2px) rotate(-5deg) scale(1.084);
}

.section--merch .merch-card:hover .merch-card__media--controller-ps5 .controller--single,
.section--merch .merch-card:focus-within .merch-card__media--controller-ps5 .controller--single {
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.55));
    transform: translateY(-2px) rotate(4deg) scale(1.094);
}

.section--merch .merch-card:hover .merch-card__media--overlays .overlay-preview,
.section--merch .merch-card:focus-within .merch-card__media--overlays .overlay-preview {
    filter: none;
    transform: perspective(700px) rotateY(-7deg) rotateX(2deg) translateY(-2px) scale(1.052);
}

.section--merch .merch-card:hover h3,
.section--merch .merch-card:focus-within h3 {
    color: #fff;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .latest-card,
    .latest-card__link,
    .latest-card__media img,
    .section--merch .merch-card,
    .section--merch .merch-card__media img,
    .section--merch .merch-card__ghost-text,
    .section--merch .overlay-preview {
        transition-duration: 0.01ms !important;
    }
}

/* Light resting depth only; the existing hover shadow and artwork motion stay unchanged. */
.latest-card__link,
.section--merch .merch-card {
    box-shadow:
        0 3px 7px rgba(0, 0, 0, 0.36),
        0 12px 18px -9px rgba(0, 0, 0, 0.68);
}

/* Reference-matched fixed buttons and softly fading divider lines. */
@media (min-width: 901px) {
    .latest-news .shell,
    .section--merch-home .shell {
        width: min(100% - 40px, 1320px);
    }

    .latest-news__grid {
        gap: 40px;
    }

    .latest-card__link {
        display: grid;
        aspect-ratio: 413.34 / 385.53;
        grid-template-rows: auto minmax(0, 1fr);
    }

    .latest-card__media,
    .latest-card:hover .latest-card__media,
    .latest-card:focus-within .latest-card__media {
        aspect-ratio: 16 / 9;
    }

    .latest-card__content,
    .latest-card:hover .latest-card__content,
    .latest-card:focus-within .latest-card__content {
        min-height: 0;
        padding: 24px;
    }

    .section--merch-home .merch-grid {
        gap: 40px;
        padding-inline: 0;
    }

    .section--merch-home .merch-card {
        display: grid;
        aspect-ratio: 300 / 399.08;
        grid-template-rows: auto minmax(0, 1fr);
    }

    .section--merch-home .merch-card__media {
        aspect-ratio: 1 / 1;
    }

    .section--merch-home .merch-card__content {
        min-height: 0;
    }

    .section--merch-home .merch-card__content > p:not(.merch-card__kicker) {
        display: none;
    }
}

.merch-store-action,
.latest-news__action {
    grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
    gap: 10px;
    width: 100%;
    margin-top: 28px;
}

.latest-news__action::before {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.16) 100%);
}

.latest-news__action::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0%, transparent 100%);
}

.merch-store-action::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.24) 0%, transparent 100%);
}

.merch-store-action::after {
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.24) 100%);
}

.merch-store-button,
.latest-news__share,
.footer-cookie-setting {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    height: 40.078px;
    min-height: 40.078px;
    padding: 12px 24px;
    color: #f5f5f5;
    border: 1px solid #858585;
    border-radius: 2px;
    background: #191919;
    box-shadow: none;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 14.08px;
    font-weight: 700;
    letter-spacing: 0.704px;
    line-height: 14.08px;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transform: none;
    transition:
        color 200ms ease,
        border-color 200ms ease,
        background 200ms ease,
        box-shadow 200ms ease;
}

.merch-store-button {
    width: 182.88px;
    min-width: 182.88px;
}

.latest-news__share {
    width: max-content;
    min-width: 158.53px;
}

.footer-cookie-setting {
    width: 189.73px;
    min-width: 189.73px;
    height: 46px;
    min-height: 46px;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 24px;
}

.merch-store-button::before,
.latest-news__share::before,
.footer-cookie-setting::before,
.merch-store-button i {
    display: none;
}

.merch-store-button:hover,
.merch-store-button:focus-visible,
.latest-news__share:hover,
.latest-news__share:focus-visible,
.footer-cookie-setting:hover,
.footer-cookie-setting:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
    background: #303033;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
    transform: none;
}

.merch-store-button:hover::before,
.merch-store-button:focus-visible::before {
    transform: none;
}

.site-footer__bottom {
    min-height: 0;
    padding-block: 22px 8px;
}

.footer-utilities {
    gap: 10px;
    padding-block: 4px 32px;
}

@media (max-width: 520px) {
    .merch-store-action,
    .latest-news__action {
        grid-template-columns: minmax(16px, 1fr) auto minmax(16px, 1fr);
        gap: 10px;
    }

    .site-footer__bottom {
        min-height: 0;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        padding-block: 18px 8px;
        text-align: center;
    }

    .site-footer__bottom > span {
        width: 100%;
        text-align: center;
    }

    .footer-utilities {
        padding-block: 4px 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .latest-card__media,
    .merch-store-button,
    .latest-news__share,
    .footer-cookie-setting {
        transition-duration: 0.01ms !important;
    }
}

/* Exact desktop header geometry and type extracted from the live COD header. */
.menu-toggle,
.menu-toggle:hover,
.menu-toggle:focus-visible {
    width: 48px;
    height: 44px;
    min-height: 44px;
    margin-block: 2px;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    color: #fff;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.menu-toggle[aria-expanded="true"],
.menu-toggle[aria-expanded="true"]:hover,
.menu-toggle[aria-expanded="true"]:focus-visible {
    background: rgba(34, 34, 34, 0.8);
    box-shadow: none;
}

.menu-toggle > span:not(.sr-only) {
    width: 24px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
}

.menu-toggle > span:nth-child(2) {
    transform: translate(-50%, -10px);
}

.menu-toggle > span:nth-child(3) {
    transform: translate(-50%, -1px);
}

.menu-toggle > span:nth-child(4) {
    transform: translate(-50%, 8px);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translate(-50%, -1px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
    transform: translate(-50%, -1px);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translate(-50%, -1px) rotate(-45deg);
}

@media (min-width: 1081px) {
    .site-header,
    .site-header.is-scrolled {
        z-index: 200;
        top: 16px;
        right: 0;
        left: 0;
        width: 100%;
        max-width: 1440px;
        height: 48px;
        margin: 0 auto;
        padding: 0 60px;
    }

    .site-header__inner,
    .site-header.is-scrolled .site-header__inner {
        width: 100%;
        height: 48px;
        min-height: 48px;
        margin: 0;
        padding: 0;
        gap: 0;
        border: 0;
        border-radius: 0;
        background: rgba(51, 51, 51, 0.6);
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .site-menu {
        width: 48px;
        height: 48px;
        min-height: 48px;
        flex: 0 0 48px;
    }

    .brand {
        height: 48px;
        min-height: 48px;
        margin: 0 12px 0 0;
        padding: 0 8px;
    }

    .brand__wordmark {
        gap: 4px;
        white-space: nowrap;
    }

    .brand__wordmark strong,
    .brand__wordmark em {
        font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
        font-size: 16.2px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: 1px;
    }

    .primary-nav {
        height: 48px;
        min-height: 48px;
        gap: 0;
    }

    .nav-item,
    .nav-dropdown-toggle {
        height: 48px;
        min-height: 48px;
    }

    .nav-dropdown-toggle {
        gap: 6px;
        padding: 0 12px;
        color: #fff;
        font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
        font-size: 14.08px;
        font-weight: 400;
        line-height: 14.08px;
        letter-spacing: 1px;
    }

    .nav-dropdown-toggle span {
        color: #fff;
        font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
        font-size: 14.08px;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 0;
    }

    .site-header__inner > .nav-cta {
        width: auto;
        min-width: 148px;
        height: 36px;
        min-height: 36px;
        margin: 6px 8px 6px auto;
        padding: 12px 20px;
        border: 0;
        border-radius: 2px;
        color: #000 !important;
        background: #ffd000;
        box-shadow: none;
        font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
        font-size: 12px;
        font-weight: 700;
        line-height: 12px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .site-header__inner > .nav-cta:hover,
    .site-header__inner > .nav-cta:focus-visible {
        color: #000 !important;
        background: #ffd000;
        box-shadow: none;
    }
}

/* Recording-calibrated translucent grays. The reference places backdrop blur
   on a pseudo-element behind each gray surface, not on the surface itself. */
.site-header__inner,
.site-header.is-scrolled .site-header__inner {
    position: relative;
    isolation: isolate;
    background: rgba(68, 68, 68, 0.60);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-menu-panel,
.nav-dropdown-menu,
.nav-dropdown-menu--right {
    isolation: isolate;
    background: rgba(80, 80, 80, 0.52);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header__inner::before,
.site-menu-panel::before,
.nav-dropdown-menu::before,
.nav-dropdown-menu--right::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    content: "";
    pointer-events: none;
}

.site-header__inner::before,
.site-menu-panel::before {
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.nav-dropdown-menu::before,
.nav-dropdown-menu--right::before {
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
}

/* Reference dropdown detail: a one-pixel highlight that is strongest in the
   center and fades completely at both edges. */
.site-menu-panel::after,
.nav-dropdown-menu::after,
.nav-dropdown-menu--right::after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: linear-gradient(270deg, rgba(217, 217, 217, 0) 0%, rgb(217, 217, 217) 49.48%, rgba(217, 217, 217, 0) 100%);
    pointer-events: none;
}

/* COD uses a translucent black fill for the hovered/open desktop trigger. */
.nav-item.is-open .nav-dropdown-toggle,
.nav-item:hover .nav-dropdown-toggle,
.nav-item:focus-within .nav-dropdown-toggle,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
    background: rgba(0, 0, 0, 0.32);
}

.site-menu-expand:hover,
.site-menu-expand:focus-visible,
.site-menu-group.is-open > .site-menu-expand,
.site-menu-panel > a:hover,
.site-menu-panel > a:focus-visible,
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: rgba(0, 0, 0, 0.40);
}

.site-menu-submenu a:hover,
.site-menu-submenu a:focus-visible {
    background: rgba(0, 0, 0, 0.80);
}

/* The ARIA state is the only open/closed state, including hover-driven menus. */
.primary-nav .nav-item > .nav-dropdown-menu[aria-hidden="true"] {
    opacity: 0 !important;
    transform: translateY(-7px) scale(0.985) !important;
    pointer-events: none !important;
}

.primary-nav .nav-item > .nav-dropdown-menu[aria-hidden="false"] {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
}

.nav-dropdown-toggle,
.site-menu-expand,
.site-menu-panel a,
.site-menu-panel a:last-child,
.site-menu-submenu a,
.site-menu-submenu a:last-child,
.nav-dropdown-menu a,
.nav-dropdown-menu a:last-child {
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 14.08px;
    font-weight: 400;
    line-height: 14.08px;
    letter-spacing: 1px;
}

.site-menu-expand,
.site-menu-panel a,
.site-menu-panel a:last-child,
.nav-dropdown-menu a,
.nav-dropdown-menu a:last-child {
    display: flex;
    min-height: 40px;
    align-items: center;
    padding: 0 12px;
}

.site-menu-submenu a,
.site-menu-submenu a:last-child {
    min-height: 36px;
    padding: 0 12px 0 24px;
}

.nav-dropdown-toggle > span,
.site-menu-expand > span {
    display: inline-grid;
    width: 12px;
    min-width: 12px;
    place-items: center;
    font-size: 0 !important;
    transform: none !important;
}

.nav-dropdown-toggle > span::before,
.site-menu-expand > span::before {
    color: #fff;
    content: "+";
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 14.08px;
    font-weight: 400;
    line-height: 1;
}

.nav-dropdown-toggle[aria-expanded="true"] > span::before,
.site-menu-expand[aria-expanded="true"] > span::before {
    content: "−";
}

/* COD-style spacing and a true slide in both directions, including on devices
   whose reduced-motion setting previously collapsed this transition to 0.01ms. */
.site-header {
    --header-top-gap: 16px;
    top: var(--header-top-gap);
}

.site-header.is-scrolled {
    top: 0;
}

.site-header,
.site-header.is-scrolled {
    padding-top: 0;
    opacity: 1;
    transform: translate3d(0, 0, 0) !important;
    will-change: transform;
    transition: transform 500ms ease !important;
}

.site-header.is-hidden,
.site-header.is-scrolled.is-hidden {
    opacity: 1;
    transform: translate3d(0, -225px, 0) !important;
    pointer-events: none;
}

/* Android can expose the system animation scale as reduced motion. Preserve
   the reference header slide while leaving all unrelated reduced-motion rules. */
@media (prefers-reduced-motion: reduce) {
    .site-header,
    .site-header.is-scrolled {
        transition: transform 500ms ease !important;
    }
}

/* Reference menu motion: four strokes morph into the X while the drawer is
   revealed from its top edge. Keep this after the legacy menu overrides. */
.menu-toggle,
.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle[aria-expanded="true"],
.menu-toggle[aria-expanded="true"]:hover,
.menu-toggle[aria-expanded="true"]:focus-visible {
    transition: all 500ms ease-in-out !important;
}

.menu-toggle > span:not(.sr-only) {
    top: 12px;
    left: 12px;
    width: 24px;
    height: 2px;
    opacity: 1;
    transform: none;
    transform-origin: center;
    transition: all 250ms ease-in-out !important;
}

.menu-toggle > span:nth-child(2) {
    top: 12px;
}

.menu-toggle > span:nth-child(3),
.menu-toggle > span:nth-child(4) {
    top: 21px;
}

.menu-toggle > span:nth-child(5) {
    top: 30px;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2),
.menu-toggle[aria-expanded="true"] > span:nth-child(5) {
    left: 36px;
    width: 0;
    opacity: 1;
    transform: none;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 1;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(4) {
    opacity: 1;
    transform: rotate(-45deg);
}

.site-menu-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    transform: none;
    pointer-events: none;
    will-change: max-height;
    transition: all 500ms ease !important;
}

.site-menu-panel.is-open,
.site-menu-panel[aria-hidden="false"] {
    max-height: calc(100vh - 144px);
    overflow: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
    .menu-toggle,
    .menu-toggle:hover,
    .menu-toggle:focus-visible,
    .menu-toggle[aria-expanded="true"],
    .menu-toggle[aria-expanded="true"]:hover,
    .menu-toggle[aria-expanded="true"]:focus-visible {
        transition: all 500ms ease-in-out !important;
    }

    .menu-toggle > span:not(.sr-only) {
        transition: all 250ms ease-in-out !important;
    }

    .site-menu-panel,
    .site-menu-panel.is-open,
    .site-menu-panel[aria-hidden="false"] {
        transition: all 500ms ease !important;
    }
}

/* Keep page and menu scrolling functional without exposing a scrollbar when
   the X closes the drawer. Keep this after every legacy scrollbar override. */
html {
    scrollbar-gutter: auto;
}

html,
body,
.site-menu-panel {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.site-menu-panel::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* The reference desktop menus render at their final glass color immediately
   below the toolbar. They do not fade or translate upward across it. */
.primary-nav .nav-item > .nav-dropdown-menu {
    top: 100%;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.primary-nav .nav-item > .nav-dropdown-menu[aria-hidden="true"] {
    display: none !important;
    pointer-events: none !important;
}

.primary-nav .nav-item > .nav-dropdown-menu[aria-hidden="false"] {
    display: block !important;
    pointer-events: auto !important;
}

/* Direct toolbar destinations use the same 48px geometry and hover treatment
   as the surrounding dropdown triggers. */
.primary-nav .nav-direct-link {
    white-space: nowrap;
    text-decoration: none;
}

/* XFG Store landing page. Scoped to the store route so the shared header,
   existing page sections and their late cascade remain unchanged. */
.store-page {
    background: #1b1b1b;
}

.store-page::before {
    opacity: 0.05;
}

.store-page main {
    overflow: hidden;
    background: #1b1b1b;
}

.store-subnav {
    position: relative;
    z-index: 80;
    margin-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #111214;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.26);
}

.store-subnav__inner {
    display: flex;
    min-height: 52px;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.store-subnav__inner::-webkit-scrollbar {
    display: none;
}

.store-subnav a {
    display: inline-flex;
    min-width: max-content;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    color: #c8c9ca;
    border-left: 1px solid rgba(255, 255, 255, 0.065);
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease;
}

.store-subnav a:hover,
.store-subnav a:focus-visible,
.store-subnav a[aria-current="page"] {
    color: #fff;
    background: #292a2d;
}

.store-subnav .store-subnav__brand {
    padding-left: 0;
    padding-right: 27px;
    color: #fff;
    border-left: 0;
    font-size: 1.04rem;
    letter-spacing: 0.055em;
}

.store-hero {
    position: relative;
    display: grid;
    min-height: clamp(560px, 62vw, 720px);
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(9, 9, 10, 0.2) 0%, rgba(9, 9, 10, 0.22) 42%, rgba(4, 4, 5, 0.9) 100%),
        linear-gradient(to bottom, rgba(6, 6, 7, 0.04) 56%, #1b1b1b 100%),
        url("../media/mer-bg.jpg") 35% 55% / cover no-repeat;
}

.store-hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        radial-gradient(circle at 82% 42%, rgba(242, 181, 68, 0.1), transparent 33%),
        linear-gradient(115deg, transparent 48%, rgba(242, 13, 37, 0.08) 74%, transparent 100%);
}

.store-hero__stage {
    display: flex;
    min-height: inherit;
    align-items: center;
    justify-content: flex-end;
    padding-block: 58px 82px;
}

.store-hero__content {
    width: min(510px, 44vw);
    padding: clamp(32px, 4vw, 52px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    color: #fff;
    background:
        linear-gradient(145deg, rgba(54, 54, 57, 0.42), rgba(8, 8, 9, 0.74)),
        rgba(28, 28, 31, 0.48);
    box-shadow: 0 30px 78px rgba(0, 0, 0, 0.46), inset 0 1px rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(18px) saturate(122%);
    backdrop-filter: blur(18px) saturate(122%);
}

.store-eyebrow {
    margin: 0;
    color: var(--gold-pale);
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.73rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.store-hero__mark {
    width: 92px;
    height: 92px;
    margin: 22px 0 17px;
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
}

.store-hero h1,
.store-section__heading h2,
.store-drop-cta h2 {
    margin: 0;
    color: #fff;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 0.96;
    text-transform: uppercase;
}

.store-hero h1 {
    max-width: 470px;
    font-size: clamp(2.6rem, 4.1vw, 4.7rem);
}

.store-hero__content > p:not(.store-eyebrow) {
    max-width: 445px;
    margin: 20px 0 0;
    color: #d0d1d2;
    font-size: 0.98rem;
    line-height: 1.6;
}

.store-button {
    display: inline-flex;
    min-width: 190px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.58);
    background: #252629;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.085em;
    line-height: 1;
    text-transform: uppercase;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.store-button--primary {
    margin-top: 28px;
    color: #120d05;
    border-color: var(--gold);
    background: var(--gold);
}

.store-button:hover,
.store-button:focus-visible {
    color: #fff;
    border-color: #fff;
    background: #34363a;
    transform: translateY(-2px);
}

.store-button--primary:hover,
.store-button--primary:focus-visible {
    color: #120d05;
    border-color: var(--gold-pale);
    background: var(--gold-pale);
}

.store-shortcuts {
    position: relative;
    z-index: 4;
    margin-top: -33px;
}

.store-shortcuts__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.store-shortcuts a {
    position: relative;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: #24272a;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 1;
    text-transform: uppercase;
    transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.store-shortcuts a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--red), var(--gold));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 230ms ease;
}

.store-shortcuts a:hover,
.store-shortcuts a:focus-visible {
    border-color: rgba(255, 255, 255, 0.24);
    background: #303337;
    transform: translateY(-2px);
}

.store-shortcuts a:hover::after,
.store-shortcuts a:focus-visible::after {
    transform: scaleX(1);
}

.store-shortcuts i,
.store-feature-card__body i,
.store-gear-card__body i {
    color: var(--gold-pale);
    font-style: normal;
}

.store-section {
    position: relative;
    padding-block: 92px;
}

.store-section--featured {
    padding-top: 104px;
    background:
        radial-gradient(circle at 12% 8%, rgba(242, 13, 37, 0.07), transparent 28%),
        #1b1b1b;
}

.store-section--more {
    border-top: 1px solid rgba(255, 255, 255, 0.085);
    background: #151516;
}

.store-section__heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 410px);
    align-items: end;
    gap: 40px;
    margin-bottom: 38px;
}

.store-section__heading h2,
.store-drop-cta h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 3.5vw, 3.7rem);
}

.store-section__heading > p,
.store-drop-cta__inner > div > p:not(.store-eyebrow) {
    margin: 0;
    color: #adaeb0;
    font-size: 0.92rem;
    line-height: 1.62;
}

.store-feature-grid,
.store-more-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.store-feature-card,
.store-gear-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #24252a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.42), 0 18px 26px -13px rgba(0, 0, 0, 0.9);
    transition: border-color 240ms ease, box-shadow 300ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
    scroll-margin-top: 118px;
}

.store-feature-card:hover,
.store-feature-card:focus-within,
.store-gear-card:hover,
.store-gear-card:focus-within {
    z-index: 2;
    border-color: rgba(242, 181, 68, 0.48);
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.5), 0 24px 34px -12px rgba(0, 0, 0, 0.95);
    transform: translateY(-5px);
}

.store-feature-card__media,
.store-gear-card__media {
    position: relative;
    overflow: hidden;
    background: #131415;
}

.store-feature-card__media {
    aspect-ratio: 1 / 1;
}

.store-feature-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.store-feature-card:hover .store-feature-card__media img,
.store-feature-card:focus-within .store-feature-card__media img {
    filter: saturate(1.05) contrast(1.03);
    transform: scale(1.045);
}

.store-feature-card__body,
.store-gear-card__body {
    display: flex;
    flex-direction: column;
    padding: 22px 24px 24px;
}

.store-feature-card__body > p,
.store-gear-card__body > p {
    margin: 0;
    color: var(--gold-pale);
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.store-feature-card h3,
.store-gear-card h3 {
    margin: 10px 0 0;
    color: #fff;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.store-feature-card__body > span {
    margin-top: 11px;
    color: #98999b;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
}

.store-feature-card__body > a,
.store-gear-card__body > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    padding-top: 14px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.store-feature-card__body > a:hover,
.store-feature-card__body > a:focus-visible,
.store-gear-card__body > a:hover,
.store-gear-card__body > a:focus-visible {
    color: var(--gold-pale);
}

.store-gear-card__media {
    display: grid;
    aspect-ratio: 16 / 10;
    place-items: center;
    background:
        radial-gradient(circle at 50% 45%, rgba(112, 116, 72, 0.28), transparent 42%),
        linear-gradient(145deg, #202126, #0d0e10);
}

.store-gear-card__media img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.55));
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.store-gear-card:hover .store-gear-card__media img,
.store-gear-card:focus-within .store-gear-card__media img {
    transform: translateY(-3px) scale(1.055);
}

.store-gear-card__media--ps5 {
    background:
        radial-gradient(circle at 50% 42%, rgba(157, 63, 39, 0.26), transparent 40%),
        linear-gradient(145deg, #202126, #0d0e10);
}

.store-gear-card__media--creator {
    background:
        radial-gradient(circle at 50% 42%, rgba(242, 13, 37, 0.13), transparent 48%),
        #101113;
}

.store-overlay-preview {
    width: 78%;
    padding: 13px;
    border: 2px solid var(--red);
    background: #09090a;
    box-shadow: 0 0 0 1px rgba(242, 181, 68, 0.36), 0 18px 40px rgba(0, 0, 0, 0.52);
    transform: perspective(700px) rotateY(-6deg) rotateX(2deg);
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.store-gear-card:hover .store-overlay-preview,
.store-gear-card:focus-within .store-overlay-preview {
    transform: perspective(700px) rotateY(-3deg) rotateX(1deg) translateY(-3px) scale(1.035);
}

.store-overlay-preview > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--gold-pale);
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
}

.store-overlay-preview > div i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 10px rgba(242, 13, 37, 0.8);
}

.store-overlay-preview > span {
    display: block;
    aspect-ratio: 16 / 8;
    margin-top: 9px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(135deg, rgba(242, 13, 37, 0.2), transparent 58%),
        #1f2023;
}

.store-overlay-preview > small {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 7px;
}

.store-overlay-preview > small i {
    height: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1b1c1f;
}

.store-drop-cta {
    padding-block: 78px;
    background:
        linear-gradient(110deg, rgba(242, 13, 37, 0.13), transparent 43%),
        linear-gradient(145deg, #1d1d20, #101011);
}

.store-drop-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 52px;
    padding: clamp(30px, 4vw, 52px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(39, 39, 42, 0.64);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.35);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.store-drop-cta__inner > div {
    max-width: 730px;
}

.store-drop-cta__inner > div > p:not(.store-eyebrow) {
    margin-top: 15px;
}

@media (max-width: 900px) {
    .store-hero {
        background-position: 43% center;
    }

    .store-hero__content {
        width: min(540px, 72vw);
    }

    .store-shortcuts__grid {
        gap: 16px;
    }

    .store-feature-grid,
    .store-more-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .store-feature-card:last-child,
    .store-gear-card:last-child {
        grid-column: 1 / -1;
    }

    .store-feature-card:last-child {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    }

    .store-feature-card:last-child .store-feature-card__media {
        aspect-ratio: auto;
    }
}

@media (max-width: 640px) {
    .store-subnav__inner {
        width: 100%;
        padding-inline: 0;
    }

    .store-subnav a {
        min-height: 48px;
        padding-inline: 16px;
        font-size: 0.68rem;
    }

    .store-subnav .store-subnav__brand {
        padding-left: 16px;
        padding-right: 19px;
        font-size: 0.88rem;
    }

    .store-hero {
        min-height: 610px;
        background:
            linear-gradient(to bottom, rgba(6, 6, 7, 0.08) 15%, rgba(5, 5, 6, 0.52) 48%, #1b1b1b 100%),
            url("../media/mer-bg.jpg") 50% center / cover no-repeat;
    }

    .store-hero__stage {
        align-items: flex-end;
        padding-block: 170px 58px;
    }

    .store-hero__content {
        width: 100%;
        padding: 26px 22px 28px;
        background:
            linear-gradient(145deg, rgba(58, 58, 62, 0.38), rgba(8, 8, 9, 0.76)),
            rgba(28, 28, 31, 0.48);
    }

    .store-hero__mark {
        width: 62px;
        height: 62px;
        margin: 16px 0 12px;
    }

    .store-hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.25rem);
    }

    .store-hero__content > p:not(.store-eyebrow) {
        margin-top: 14px;
        font-size: 0.84rem;
    }

    .store-button--primary {
        width: 100%;
        margin-top: 20px;
    }

    .store-shortcuts {
        margin-top: -25px;
    }

    .store-shortcuts__grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .store-shortcuts a {
        min-height: 50px;
        padding-inline: 18px;
        font-size: 0.88rem;
    }

    .store-section,
    .store-section--featured {
        padding-block: 62px;
    }

    .store-section--featured {
        padding-top: 72px;
    }

    .store-section__heading {
        grid-template-columns: 1fr;
        gap: 17px;
        margin-bottom: 26px;
    }

    .store-section__heading h2,
    .store-drop-cta h2 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .store-feature-grid,
    .store-more-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .store-feature-card:last-child,
    .store-gear-card:last-child {
        display: block;
        grid-column: auto;
    }

    .store-feature-card:last-child .store-feature-card__media {
        aspect-ratio: 1 / 1;
    }

    .store-feature-card__body,
    .store-gear-card__body {
        padding: 19px 20px 21px;
    }

    .store-drop-cta {
        padding-block: 58px;
    }

    .store-drop-cta__inner {
        align-items: stretch;
        flex-direction: column;
        gap: 26px;
        padding: 27px 22px;
    }

    .store-drop-cta .store-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .store-button,
    .store-shortcuts a,
    .store-shortcuts a::after,
    .store-feature-card,
    .store-gear-card,
    .store-feature-card__media img,
    .store-gear-card__media img,
    .store-overlay-preview {
        transition-duration: 0.01ms !important;
    }
}

/* XFG Store Hub layout — measured against the Call of Duty storefront at the
   same desktop viewport. This late, route-scoped block intentionally wins
   over the earlier store experiment without changing shared page sections. */
.store-page .store-layout-shell {
    width: min(1145px, calc(100% - 120px));
    margin-inline: auto;
}

.store-page .store-primary-nav {
    display: flex;
    margin-left: 0;
}

.store-page .store-primary-nav .nav-dropdown-toggle {
    padding-inline: 13px;
    font-size: 11.5px;
    letter-spacing: 0.72px;
}

.store-page .store-primary-nav .store-toolbar-title,
.store-page .store-primary-nav .store-toolbar-title:hover,
.store-page .store-primary-nav .store-toolbar-title:focus-visible {
    color: #fff;
    background: rgba(0, 0, 0, 0.32);
    font-size: 13px;
    font-weight: 700;
}

.store-page .store-mobile-menu a[aria-current="page"] {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
}

.store-page .store-hero {
    min-height: 800px;
    background:
        linear-gradient(90deg, rgba(7, 7, 8, 0.18) 0%, rgba(7, 7, 8, 0.2) 43%, rgba(4, 4, 5, 0.88) 100%),
        linear-gradient(to bottom, rgba(5, 5, 6, 0.02) 55%, #1b1b1b 100%),
        url("../media/mer-bg.jpg") 35% 55% / cover no-repeat;
}

.store-page .store-hero__stage {
    padding-block: 82px 92px;
}

.store-page .store-shortcuts {
    margin-top: -33px;
}

.store-page .store-shortcuts__grid {
    gap: 40px;
}

.store-page .store-shortcuts a {
    min-height: 66px;
    background: rgb(36, 39, 42);
}

.gear-promo {
    position: relative;
    padding-top: 60px;
    background:
        radial-gradient(circle at 14% 0%, rgba(242, 13, 37, 0.06), transparent 30%),
        #1b1b1b;
}

.gear-promo__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.gear-promo-card {
    position: relative;
    display: block;
    height: 312px;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: #111214;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.36);
    scroll-margin-top: 82px;
}

.gear-promo-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 360ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gear-promo-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 4, 5, 0.02) 24%, rgba(4, 4, 5, 0.86) 100%);
}

.gear-promo-card__copy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 27px;
}

.gear-promo-card__copy small,
.gear-recommendation__copy small,
.gear-merch-slide small,
.gear-news-list small,
.gear-mini-link span {
    color: var(--gold-pale);
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.15;
    text-transform: uppercase;
}

.gear-promo-card__copy strong {
    margin-top: 8px;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(1.75rem, 2.4vw, 2.7rem);
    line-height: 0.98;
    text-transform: uppercase;
}

.gear-promo-card__copy em,
.gear-recommendation__copy em,
.gear-merch-slide em {
    margin-top: 15px;
    color: #fff;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gear-promo-card:hover > img,
.gear-promo-card:focus-visible > img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.045);
}

.gear-home {
    padding: 44px 0 76px;
    background: #1b1b1b;
}

.gear-home__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.gear-column {
    min-width: 0;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: #24272a;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
    scroll-margin-top: 82px;
}

.gear-column__header {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #191b1d;
}

.gear-column__header h2 {
    margin: 0;
    color: #fff;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1.18rem;
    line-height: 1;
    text-transform: uppercase;
}

.gear-column__header > a {
    flex: 0 0 auto;
    color: #d8d8d8;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-transform: uppercase;
}

.gear-recommendation {
    display: block;
    color: #fff;
    background: #202225;
}

.gear-recommendation__media {
    display: grid;
    height: 250px;
    overflow: hidden;
    place-items: center;
    background:
        radial-gradient(circle at 50% 45%, rgba(157, 63, 39, 0.28), transparent 43%),
        linear-gradient(145deg, #202126, #0d0e10);
}

.gear-recommendation__media img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.55));
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gear-recommendation__copy {
    display: flex;
    min-height: 118px;
    flex-direction: column;
    padding: 17px 19px;
}

.gear-recommendation__copy strong,
.gear-merch-slide strong {
    margin-top: 7px;
    color: #fff;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1.25rem;
    line-height: 1.05;
    text-transform: uppercase;
}

.gear-recommendation__copy em {
    margin-top: auto;
}

.gear-recommendation:hover .gear-recommendation__media img,
.gear-recommendation:focus-visible .gear-recommendation__media img {
    transform: translateY(-3px) scale(1.05);
}

.gear-mini-link {
    position: relative;
    display: grid;
    min-height: 73px;
    align-content: center;
    padding: 12px 46px 12px 19px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #191b1d;
}

.gear-mini-link strong {
    margin-top: 4px;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
}

.gear-mini-link > i {
    position: absolute;
    top: 50%;
    right: 18px;
    color: var(--gold-pale);
    font-style: normal;
    transform: translateY(-50%);
}

.gear-merch-window {
    overflow: hidden;
}

.gear-merch-track {
    display: flex;
    will-change: transform;
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gear-merch-slide {
    display: flex;
    min-width: 100%;
    flex-direction: column;
    color: #fff;
    background: #202225;
}

.gear-merch-slide > img {
    width: 100%;
    height: 286px;
    object-fit: cover;
}

.gear-merch-slide > span {
    display: flex;
    min-height: 120px;
    flex-direction: column;
    padding: 17px 19px;
}

.gear-merch-slide em {
    margin-top: auto;
}

.gear-merch-controls {
    display: grid;
    min-height: 42px;
    grid-template-columns: 46px 1fr 46px;
    align-items: stretch;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #191b1d;
}

.gear-merch-controls button {
    display: grid;
    color: #fff;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    place-items: center;
}

.gear-merch-controls button:hover,
.gear-merch-controls button:focus-visible {
    background: rgba(0, 0, 0, 0.4);
}

.gear-merch-controls span {
    display: grid;
    color: #b6b7b9;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    place-items: center;
    text-transform: uppercase;
}

.gear-news-list {
    display: grid;
}

.gear-news-list > a {
    display: grid;
    min-height: 143px;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: stretch;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: #202225;
    transition: background 180ms ease;
}

.gear-news-list > a:last-child {
    border-bottom: 0;
}

.gear-news-list > a:hover,
.gear-news-list > a:focus-visible {
    background: #2d3033;
}

.gear-news-list img {
    width: 116px;
    height: 100%;
    object-fit: cover;
}

.gear-news-list span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 15px 16px;
}

.gear-news-list strong {
    margin-top: 9px;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.16;
    text-transform: uppercase;
}

@media (min-width: 841px) and (max-width: 1080px) {
    .store-page .store-primary-nav .nav-dropdown-toggle {
        padding-inline: 8px;
        font-size: 10px;
        letter-spacing: 0.4px;
    }

    .store-page .store-primary-nav .store-toolbar-title {
        font-size: 11px;
    }
}

@media (max-width: 840px) {
    .store-page .store-primary-nav {
        display: none;
    }

    .store-page .store-layout-shell {
        width: min(100% - 40px, 720px);
    }

    .store-page .store-hero {
        min-height: 680px;
    }

    .gear-promo__grid,
    .gear-home__grid {
        gap: 24px;
    }

    .gear-home__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gear-column:last-child {
        grid-column: 1 / -1;
    }

    .gear-news-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .gear-news-list > a {
        min-height: 255px;
        grid-template-columns: 1fr;
        grid-template-rows: 145px 1fr;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 0;
    }

    .gear-news-list > a:last-child {
        border-right: 0;
    }

    .gear-news-list img {
        width: 100%;
        height: 145px;
    }
}

@media (max-width: 640px) {
    .store-page .store-layout-shell {
        width: calc(100% - 24px);
    }

    .store-page .store-hero {
        min-height: 525px;
    }

    .store-page .store-hero__stage {
        padding-block: 72px 34px;
    }

    .store-page .store-shortcuts a {
        min-height: 50px;
    }

    .store-page .store-shortcuts__grid,
    .gear-promo__grid,
    .gear-home__grid,
    .gear-news-list {
        grid-template-columns: 1fr;
    }

    .store-page .store-shortcuts__grid {
        gap: 9px;
    }

    .gear-promo {
        padding-top: 52px;
    }

    .gear-promo__grid,
    .gear-home__grid {
        gap: 20px;
    }

    .gear-promo-card {
        height: 290px;
    }

    .gear-home {
        padding: 34px 0 58px;
    }

    .gear-column,
    .gear-column:last-child {
        min-height: 0;
        grid-column: auto;
    }

    .gear-news-list > a {
        min-height: 126px;
        grid-template-columns: 112px minmax(0, 1fr);
        grid-template-rows: 1fr;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .gear-news-list > a:last-child {
        border-bottom: 0;
    }

    .gear-news-list img {
        width: 112px;
        height: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gear-merch-track,
    .gear-promo-card > img,
    .gear-recommendation__media img {
        transition-duration: 0.01ms !important;
    }
}

/* XFG storefront v2. The route uses its own scope so the two retired Store
   experiments above cannot leak into this measured Call of Duty-style layout. */
.storefront-page {
    color: #f3f4f5;
    background: #1b1b1b;
}

.storefront-page::before {
    opacity: 0.025;
}

.storefront-page main {
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.045) 0 0.7px, transparent 0.9px) 0 0 / 5px 5px,
        #1b1b1b;
}

.storefront-page .storefront-shell {
    width: calc(100% - 120px);
    max-width: 1600px;
    margin-inline: auto;
}

.storefront-page .store-primary-nav {
    display: flex;
    margin-left: 0;
}

.storefront-page .store-primary-nav .nav-dropdown-toggle {
    padding-inline: 12px;
    font-size: 11px;
    letter-spacing: 0.55px;
}

.storefront-page .store-primary-nav .store-toolbar-title,
.storefront-page .store-primary-nav .store-toolbar-title:hover,
.storefront-page .store-primary-nav .store-toolbar-title:focus-visible {
    color: #fff;
    background: rgba(0, 0, 0, 0.32);
    font-size: 13px;
    font-weight: 700;
}

.storefront-page .store-mobile-menu a[aria-current="page"] {
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
}

.storefront-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #08090a;
}

.storefront-hero__slides,
.storefront-hero__slide {
    position: absolute;
    inset: 0;
}

.storefront-hero__slide {
    z-index: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 500ms ease;
}

.storefront-hero__slide.is-active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}

.storefront-hero__slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.storefront-hero__slide:nth-child(2) > img {
    object-position: 50% 56%;
}

.storefront-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 4, 5, 0.9) 0%, rgba(4, 4, 5, 0.58) 25%, rgba(4, 4, 5, 0.08) 58%),
        linear-gradient(0deg, rgba(5, 5, 6, 0.62) 0%, transparent 32%);
}

.storefront-hero__shade--strong {
    background:
        linear-gradient(90deg, rgba(4, 4, 5, 0.92) 0%, rgba(4, 4, 5, 0.62) 28%, rgba(4, 4, 5, 0.18) 62%),
        linear-gradient(0deg, rgba(5, 5, 6, 0.68) 0%, transparent 36%);
}

.storefront-hero__content {
    position: absolute;
    top: 50%;
    left: max(60px, 10.4vw);
    display: flex;
    width: min(500px, 40vw);
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-36%);
}

.storefront-hero__content p {
    margin: 0 0 13px;
    color: #f1b83f;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.storefront-hero__content h1,
.storefront-hero__content h2 {
    max-width: 520px;
    margin: 0;
    color: #fff;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(3.4rem, 5vw, 5rem);
    line-height: 0.88;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.storefront-hero__content > span {
    max-width: 430px;
    margin-top: 20px;
    color: #e0e1e3;
    font-size: 1rem;
    line-height: 1.55;
}

.storefront-hero__content > a {
    display: inline-flex;
    min-width: 172px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    padding: 12px 22px;
    color: #101112;
    border: 1px solid #f6bf48;
    background: #f6bf48;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    transition: color 180ms ease, background 180ms ease;
}

.storefront-hero__content > a:hover,
.storefront-hero__content > a:focus-visible {
    color: #fff;
    background: #8d171e;
}

.storefront-hero__controls {
    position: absolute;
    z-index: 3;
    bottom: 30px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
}

.storefront-hero__controls button {
    padding: 0;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(28, 31, 34, 0.86);
    cursor: pointer;
}

.storefront-hero__arrow {
    display: grid;
    width: 38px;
    height: 48px;
    border-radius: 4px;
    font: 400 2rem/1 Arial, sans-serif;
    place-items: center;
}

.storefront-hero__pip {
    width: 112px;
    height: 70px;
    overflow: hidden;
    border-radius: 6px;
    opacity: 0.72;
    transition: border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.storefront-hero__pip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.storefront-hero__pip.is-active,
.storefront-hero__pip:hover,
.storefront-hero__pip:focus-visible {
    border-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.storefront-hero__pip.is-active {
    transform: scale(1.04);
}

.storefront-shortcuts {
    padding-top: 48px;
    background: #1b1b1b;
}

.storefront-shortcuts__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
}

.storefront-shortcuts a {
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    color: #fff;
    border: 1px solid rgb(60, 65, 71);
    border-radius: 8px;
    background: rgb(36, 39, 42);
    box-shadow: 0 7px 15px rgba(0, 0, 0, 0.34);
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.storefront-shortcuts a:hover,
.storefront-shortcuts a:focus-visible {
    border-color: rgba(246, 191, 72, 0.72);
    background: #303438;
    transform: translateY(-2px);
}

.storefront-promos {
    padding-top: 60px;
    background: #1b1b1b;
}

.storefront-promos__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.storefront-promo-card {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    background: #0d0e0f;
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.3);
}

.storefront-promo-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 56%;
    transition: filter 300ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront-promo-card > span {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    min-height: 100px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px 24px 20px;
    background: linear-gradient(transparent, rgba(4, 4, 5, 0.9));
}

.storefront-promo-card small,
.storefront-recommendations small,
.storefront-news small {
    color: #f1b83f;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.63rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.storefront-promo-card strong {
    margin-top: 5px;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: clamp(1.45rem, 2.1vw, 2.2rem);
    line-height: 0.96;
    text-transform: uppercase;
}

.storefront-promo-card:hover > img,
.storefront-promo-card:focus-visible > img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.025);
}

.storefront-columns {
    padding: 46px 0 80px;
}

.storefront-columns__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 40px;
}

.storefront-column {
    min-width: 0;
    scroll-margin-top: 82px;
}

.storefront-column__header {
    display: flex;
    min-height: 30px;
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
}

.storefront-column__header h2 {
    flex: 0 0 auto;
    margin: 0;
    color: #dadde0;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1.06rem;
    line-height: 1;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.storefront-column__header > span {
    height: 1px;
    flex: 1 1 auto;
    background: rgba(218, 221, 224, 0.48);
}

.storefront-column__header > a {
    flex: 0 0 auto;
    padding: 4px 6px 3px;
    color: #1b1b1b;
    background: #dadde0;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 1;
    text-transform: uppercase;
}

.storefront-column__header > a:hover,
.storefront-column__header > a:focus-visible {
    color: #171819;
    background: #f6bf48;
}

.storefront-recommendations {
    display: grid;
    gap: 24px;
}

.storefront-recommendations > a {
    position: relative;
    display: block;
    aspect-ratio: 1.78 / 1;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 7px;
    background: #101112;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.27);
}

.storefront-recommendations img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront-recommendations > a > span,
.storefront-news > a > span {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    flex-direction: column;
    padding: 34px 15px 13px;
    background: linear-gradient(transparent, rgba(4, 4, 5, 0.9));
}

.storefront-recommendations strong,
.storefront-news strong {
    margin-top: 4px;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.96rem;
    line-height: 1.03;
    text-transform: uppercase;
}

.storefront-recommendations > a:hover img,
.storefront-recommendations > a:focus-visible img {
    transform: scale(1.035);
}

.storefront-merch__window {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    background: #24272a;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.27);
}

.storefront-merch__track {
    display: flex;
    will-change: transform;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront-merch__slide {
    display: flex;
    min-width: 100%;
    flex-direction: column;
    color: #fff;
    background: #24272a;
}

.storefront-merch__slide > img {
    width: 100%;
    aspect-ratio: 1.08 / 1;
    object-fit: cover;
}

.storefront-merch__slide > span {
    display: grid;
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 10px 15px;
}

.storefront-merch__slide strong {
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.03;
    text-transform: uppercase;
}

.storefront-merch__slide em {
    color: #f3f4f5;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.68rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.storefront-merch__controls {
    display: grid;
    grid-template-columns: minmax(90px, 1fr) auto 38px 38px;
    align-items: center;
    gap: 10px;
    margin-top: 11px;
}

.storefront-merch__progress {
    position: relative;
    display: block;
    height: 3px;
    overflow: hidden;
    background: #68707a;
}

.storefront-merch__progress i {
    position: absolute;
    inset: 0 auto 0 0;
    display: block;
    width: 33.333%;
    background: #f3f4f5;
    transition: width 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront-merch__count {
    min-width: 47px;
    color: #f3f4f5;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 0.72rem;
    text-align: center;
    text-transform: uppercase;
}

.storefront-merch__controls button {
    display: grid;
    width: 38px;
    height: 38px;
    padding: 0;
    color: #f3f4f5;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 7px;
    background: rgba(36, 39, 42, 0.76);
    cursor: pointer;
    font: 400 1.7rem/1 Arial, sans-serif;
    place-items: center;
}

.storefront-merch__controls button:hover,
.storefront-merch__controls button:focus-visible {
    border-color: #f6bf48;
    background: #303438;
}

.storefront-news {
    display: grid;
    gap: 24px;
}

.storefront-news > a {
    position: relative;
    display: block;
    aspect-ratio: 3.05 / 1;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    background: #101112;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}

.storefront-news img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    transition: filter 240ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront-news > a > span {
    padding: 30px 12px 10px;
}

.storefront-news strong {
    font-size: 0.82rem;
}

.storefront-news > a:hover img,
.storefront-news > a:focus-visible img {
    filter: brightness(1.08);
    transform: scale(1.035);
}

@media (min-width: 841px) and (max-width: 1180px) {
    .storefront-page .store-primary-nav .nav-dropdown-toggle {
        padding-inline: 7px;
        font-size: 9.5px;
        letter-spacing: 0.25px;
    }

    .storefront-page .store-primary-nav .store-toolbar-title {
        font-size: 11px;
    }

    .storefront-page .storefront-shell {
        width: calc(100% - 60px);
    }

    .storefront-shortcuts__grid,
    .storefront-promos__grid,
    .storefront-columns__grid {
        gap: 24px;
    }
}

@media (max-width: 840px) {
    .storefront-page .store-primary-nav {
        display: none;
    }

    .storefront-page .storefront-shell {
        width: calc(100% - 30px);
    }

    .storefront-hero {
        min-height: 465px;
    }

    .storefront-hero__slide > img {
        object-position: 53% 50%;
    }

    .storefront-hero__slide:nth-child(2) > img {
        object-position: 50% 54%;
    }

    .storefront-hero__shade,
    .storefront-hero__shade--strong {
        background:
            linear-gradient(0deg, rgba(4, 4, 5, 0.85) 0%, rgba(4, 4, 5, 0.08) 58%),
            linear-gradient(90deg, rgba(4, 4, 5, 0.22), rgba(4, 4, 5, 0.08), rgba(4, 4, 5, 0.22));
    }

    .storefront-hero__content {
        top: auto;
        right: 24px;
        bottom: 45px;
        left: 24px;
        width: auto;
        align-items: center;
        text-align: center;
        transform: none;
    }

    .storefront-hero__content p {
        margin-bottom: 7px;
        font-size: 0.68rem;
    }

    .storefront-hero__content h1,
    .storefront-hero__content h2 {
        font-size: clamp(2.4rem, 12vw, 3.3rem);
        line-height: 0.9;
    }

    .storefront-hero__content > span {
        display: none;
    }

    .storefront-hero__content > a {
        min-width: 168px;
        min-height: 40px;
        margin-top: 14px;
        padding: 10px 17px;
        font-size: 0.72rem;
    }

    .storefront-hero__controls {
        bottom: 16px;
        gap: 7px;
    }

    .storefront-hero__arrow {
        display: none;
    }

    .storefront-hero__pip {
        width: 30px;
        height: 4px;
        border: 0 !important;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.45) !important;
        opacity: 1;
        transform: none !important;
    }

    .storefront-hero__pip img {
        display: none;
    }

    .storefront-hero__pip.is-active {
        background: #fff !important;
    }

    .storefront-shortcuts {
        padding-top: 14px;
    }

    .storefront-shortcuts__grid,
    .storefront-promos__grid,
    .storefront-columns__grid {
        grid-template-columns: 1fr;
    }

    .storefront-shortcuts__grid {
        gap: 14px;
    }

    .storefront-shortcuts a {
        min-height: 50px;
        padding: 14px 18px;
        border-radius: 7px;
        font-size: 1.05rem;
    }

    .storefront-promos {
        padding-top: 14px;
    }

    .storefront-promos__grid {
        gap: 14px;
    }

    .storefront-promo-card {
        aspect-ratio: 1.78 / 1;
    }

    .storefront-promo-card > span {
        min-height: 78px;
        padding: 28px 17px 14px;
    }

    .storefront-promo-card strong {
        font-size: 1.35rem;
    }

    .storefront-columns {
        padding: 32px 0 58px;
    }

    .storefront-columns__grid {
        gap: 42px;
    }

    .storefront-column__header {
        margin-bottom: 12px;
    }

    .storefront-column__header h2 {
        font-size: 1rem;
    }

    .storefront-recommendations {
        gap: 16px;
    }

    .storefront-recommendations > a {
        aspect-ratio: 1.65 / 1;
    }

    .storefront-merch__slide > img {
        aspect-ratio: 1 / 1;
    }

    .storefront-merch__slide > span {
        min-height: 55px;
        padding-inline: 13px;
    }

    .storefront-merch__controls {
        grid-template-columns: minmax(70px, 1fr) auto 38px 38px;
        gap: 8px;
    }

    .storefront-news {
        gap: 16px;
    }

    .storefront-news > a {
        aspect-ratio: 1.78 / 1;
        border-radius: 6px;
    }

    .storefront-news > a > span {
        padding: 48px 15px 13px;
    }

    .storefront-news strong {
        font-size: 0.95rem;
    }
}

@media (max-width: 430px) {
    .storefront-hero {
        min-height: 455px;
    }

    .storefront-hero__content h1,
    .storefront-hero__content h2 {
        font-size: 2.55rem;
    }

    .storefront-column__header {
        gap: 6px;
    }

    .storefront-column__header h2 {
        font-size: 0.92rem;
    }

    .storefront-column__header > a {
        font-size: 0.56rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .storefront-hero__slide,
    .storefront-hero__content > a,
    .storefront-hero__pip,
    .storefront-shortcuts a,
    .storefront-promo-card > img,
    .storefront-recommendations img,
    .storefront-merch__track,
    .storefront-merch__progress i,
    .storefront-news img {
        transition-duration: 0.01ms !important;
    }
}

/* Ranked tournament and shop image placements. */
.merch-card__media--ranked {
    background: #08090a;
}

.merch-card__media--ranked img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 58%;
    transition: transform 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.section--merch .merch-card:hover .merch-card__media--ranked img,
.section--merch .merch-card:focus-within .merch-card__media--ranked img {
    transform: scale(1.02);
}

.gear-promo-card--ranked > img {
    object-position: 50% 58%;
}

.gear-promo-card--ranked:hover > img,
.gear-promo-card--ranked:focus-visible > img {
    transform: scale(1.02);
}

/* LAST-CASCADE: COD-style paired account and Forums actions. */
.site-header__inner > .header-account-link {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-self: center;
    align-items: center;
    justify-content: center;
    height: 20px;
    min-height: 20px;
    margin-left: auto;
    padding: 0 20px 0 30px;
    color: #fff;
    font-family: "XFG Condensed", "Arial Narrow", Arial, sans-serif;
    font-size: 14.08px;
    font-weight: 400;
    line-height: 14.08px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-header__inner > .header-account-link:hover,
.site-header__inner > .header-account-link:focus-visible {
    color: #ffd000;
}

.site-header__inner > .header-account-link + .nav-cta {
    margin-left: 0;
}

@media (min-width: 761px) and (max-width: 1080px) {
    .site-header__inner > .header-account-link {
        padding-inline: 8px;
        font-size: 0.61rem;
    }
}

@media (max-width: 760px) {
    .site-header__inner > .header-account-link {
        padding-inline: 8px;
        font-size: 0.61rem;
    }

    .site-header__inner > .header-account-link + .nav-cta {
        margin-left: 0;
    }
}

@media (max-width: 430px) {
    .site-header__inner > .header-account-link {
        padding-inline: 6px;
        font-size: 0.58rem;
    }
}
