/*
Theme Name: Games Chamber
Theme URI: https://games-chamber.net
Author: GitHub Copilot
Description: Purple and pink gaming landing page theme scaffold for games-chamber.net.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Text Domain: games-chamber
*/

:root {
    --gc-bg: #040107;
    --gc-bg-deep: #0b0113;
    --gc-panel: rgba(14, 5, 24, 0.86);
    --gc-panel-strong: rgba(24, 7, 40, 0.94);
    --gc-text: #f7ebff;
    --gc-muted: #b696d3;
    --gc-pink: #ff47bf;
    --gc-purple: #7a39ff;
    --gc-purple-deep: #42108f;
    --gc-cyan: #67f4ff;
    --gc-acid: #b9ff77;
    --gc-line: rgba(255, 255, 255, 0.1);
    --gc-shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
    --gc-radius-xl: 30px;
    --gc-radius-lg: 24px;
    --gc-radius-md: 18px;
    --gc-container: min(1180px, calc(100vw - 2.4rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
    color: var(--gc-text);
    background:
        radial-gradient(circle at 14% 14%, rgba(255, 71, 191, 0.2), transparent 22%),
        radial-gradient(circle at 84% 12%, rgba(122, 57, 255, 0.24), transparent 28%),
        radial-gradient(circle at 50% 74%, rgba(103, 244, 255, 0.08), transparent 22%),
        linear-gradient(180deg, #0f0218 0%, var(--gc-bg-deep) 32%, var(--gc-bg) 74%, #010003 100%);
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
}

body::before {
    background:
        linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 88%);
}

body::after {
    background:
        repeating-linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.02) 0,
            rgba(255, 255, 255, 0.02) 1px,
            transparent 1px,
            transparent 4px
        ),
        linear-gradient(180deg, transparent, rgba(255, 71, 191, 0.04), transparent 72%);
    mix-blend-mode: screen;
    opacity: 0.55;
    animation: gcPulse 9s ease-in-out infinite;
}

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

.gc-site-shell {
    position: relative;
}

.gc-site-shell::before {
    content: "";
    position: fixed;
    right: -10rem;
    bottom: 8vh;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 57, 255, 0.18), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
    z-index: -1;
}

.gc-header,
.gc-section,
.gc-footer {
    width: var(--gc-container);
    margin: 0 auto;
}

.gc-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.55rem;
    margin: 0.4rem auto 0;
    padding: 0.42rem 0.65rem;
    position: sticky;
    top: 0.3rem;
    z-index: 80;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(10, 4, 18, 0.72);
    backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 0 10px 18px rgba(1, 0, 6, 0.24);
}

.admin-bar .gc-header {
    top: calc(32px + 0.15rem);
}

.gc-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
}

.gc-brand-mark {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gc-pink), var(--gc-purple));
    box-shadow:
        0 0 0 0.22rem rgba(255, 82, 200, 0.14),
        0 0 14px rgba(143, 71, 255, 0.34);
}

.gc-brand-stack {
    display: block;
}

.gc-brand-stack strong {
    font-family: "Oxanium", sans-serif;
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gc-brand-stack span {
    display: none;
}

.gc-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
}

.gc-nav::-webkit-scrollbar {
    display: none;
}

.gc-nav a {
    white-space: nowrap;
    font-size: 0.88rem;
}

.gc-nav a,
.gc-panel-subtitle,
.gc-lead,
.gc-stat-row span,
.gc-section-heading p,
.gc-glow-card p,
.gc-bento p,
.gc-proof-card p,
.gc-footer,
.gc-enter-card p {
    color: var(--gc-muted);
}

.gc-nav a:hover,
.gc-button-link:hover {
    color: var(--gc-text);
}

.gc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gc-button:hover {
    transform: translateY(-2px);
}

.gc-button:disabled,
.gc-button.is-disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
    box-shadow: none;
}

.gc-button-solid {
    color: #fff4ff;
    background: linear-gradient(135deg, var(--gc-pink), var(--gc-purple) 62%, var(--gc-cyan));
    box-shadow: 0 18px 40px rgba(122, 57, 255, 0.34);
}

.gc-button-ghost {
    border-color: var(--gc-line);
    background: rgba(14, 5, 24, 0.7);
    color: var(--gc-text);
}

.gc-button-ghost:hover,
.gc-button-ghost:focus-visible {
    color: #fff;
}

.gc-header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.35rem;
}

.gc-header-actions .gc-button {
    min-height: 0;
    padding: 0.38rem 0.62rem;
    font-size: 0.74rem;
    line-height: 1.1;
    width: auto;
}

.gc-header-account-menu {
    position: relative;
}

.gc-header-account-menu summary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(14, 5, 24, 0.7);
    cursor: pointer;
    list-style: none;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.gc-header-account-menu summary::-webkit-details-marker {
    display: none;
}

.gc-header-account-menu summary:hover,
.gc-header-account-menu[open] summary {
    transform: translateY(-1px);
    border-color: rgba(103, 244, 255, 0.24);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.gc-header-avatar-image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.gc-header-account-dropdown {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    min-width: 9.5rem;
    display: grid;
    gap: 0.2rem;
    padding: 0.45rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(10, 4, 18, 0.94);
    backdrop-filter: blur(22px) saturate(150%);
    box-shadow: 0 18px 30px rgba(1, 0, 6, 0.32);
    z-index: 90;
}

.gc-header-account-dropdown a {
    padding: 0.62rem 0.78rem;
    border-radius: 0.8rem;
    color: var(--gc-text);
    font-size: 0.88rem;
}

.gc-header-account-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.gc-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.2rem;
    width: 2.2rem;
    height: 2.2rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--gc-text);
    cursor: pointer;
}

.gc-nav-toggle span {
    width: 0.95rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.gc-header.is-nav-open .gc-nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.gc-header.is-nav-open .gc-nav-toggle span:nth-child(2) {
    opacity: 0;
}

.gc-header.is-nav-open .gc-nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.gc-button-link {
    color: var(--gc-cyan);
    padding-left: 0;
    padding-right: 0;
}

.gc-section {
    padding: 5.5rem 0;
}

.gc-front-promo {
    padding-top: 0.95rem;
    padding-bottom: 0.8rem;
}

.gc-front-opening {
    min-height: calc(100svh - 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gc-front-promo-shell {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 0.95rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--gc-radius-lg);
    background:
        radial-gradient(circle at top left, rgba(185, 255, 119, 0.24), transparent 20%),
        radial-gradient(circle at 82% 20%, rgba(103, 244, 255, 0.14), transparent 24%),
        linear-gradient(135deg, rgba(168, 255, 59, 0.14), rgba(255, 71, 191, 0.1), rgba(122, 57, 255, 0.18), rgba(10, 3, 18, 0.94));
    backdrop-filter: blur(18px);
    box-shadow:
        var(--gc-shadow),
        0 0 0 1px rgba(185, 255, 119, 0.08),
        0 0 42px rgba(185, 255, 119, 0.12);
    overflow: hidden;
}

.gc-front-promo-shell::before {
    content: "";
    position: absolute;
    inset: -18% auto -18% 56%;
    width: 18rem;
    background: radial-gradient(circle, rgba(185, 255, 119, 0.24), transparent 70%);
    filter: blur(18px);
    pointer-events: none;
    animation: gcPulse 7s ease-in-out infinite;
}

.gc-front-promo-shell::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(185, 255, 119, 0.26);
    pointer-events: none;
}

.gc-front-promo-copy,
.gc-front-promo-side {
    position: relative;
    z-index: 1;
}

.gc-front-promo-copy h2 {
    max-width: 24ch;
    margin: 0.4rem 0 0.45rem;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    color: #f4ffd8;
    text-shadow:
        0 0 20px rgba(185, 255, 119, 0.14),
        0 0 42px rgba(185, 255, 119, 0.08);
}

.gc-front-promo-copy p {
    max-width: 68ch;
    font-size: 0.94rem;
}

.gc-front-promo-copy .gc-kicker {
    color: #d9ff8f;
    text-shadow: 0 0 12px rgba(185, 255, 119, 0.22);
}

.gc-front-promo-side {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem 1rem;
}

.gc-front-promo-meta {
    margin-top: 0;
    justify-content: flex-start;
}

.gc-front-promo-meta span {
    background: rgba(185, 255, 119, 0.1);
    border: 1px solid rgba(185, 255, 119, 0.18);
    color: #efffd2;
    box-shadow: inset 0 0 0 1px rgba(185, 255, 119, 0.06);
    padding: 0.36rem 0.62rem;
    font-size: 0.74rem;
}

.gc-front-promo-side .gc-actions {
    margin-top: 0;
    justify-content: flex-end;
    gap: 0.75rem;
}

.gc-front-promo-shell .gc-button {
    padding: 0.74rem 1rem;
    font-size: 0.88rem;
}

.gc-front-promo-shell .gc-button-solid,
.gc-sanctum-marquee .gc-button-solid {
    color: #081004;
    background: linear-gradient(135deg, #e6ff71, #b9ff77 45%, #67f4ff 100%);
    box-shadow:
        0 20px 44px rgba(185, 255, 119, 0.28),
        0 0 24px rgba(103, 244, 255, 0.14);
}

.gc-front-promo-shell .gc-button-ghost,
.gc-sanctum-marquee .gc-button-ghost {
    border-color: rgba(185, 255, 119, 0.26);
    background: rgba(17, 27, 7, 0.38);
    box-shadow: inset 0 0 0 1px rgba(185, 255, 119, 0.06);
}

.gc-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 18rem);
    gap: 1.1rem;
    align-items: start;
    padding-top: 1.1rem;
}

.gc-hero-copy {
    max-width: 36rem;
}

.gc-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2rem, 3.2vw, 3rem);
    margin-top: 0.45rem;
}

.gc-hero .gc-lead {
    max-width: 52ch;
    margin-top: 0.7rem;
    font-size: 0.95rem;
}

.gc-hero .gc-actions {
    margin-top: 1rem;
    gap: 0.65rem;
}

.gc-hero .gc-button {
    padding: 0.74rem 1rem;
    font-size: 0.9rem;
}

.gc-hero-card {
    justify-self: end;
    width: min(100%, 18rem);
    display: grid;
    gap: 0.7rem;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(185, 255, 119, 0.14);
    border-radius: var(--gc-radius-md);
    background:
        radial-gradient(circle at top left, rgba(185, 255, 119, 0.1), transparent 28%),
        linear-gradient(145deg, rgba(16, 7, 27, 0.95), rgba(9, 3, 16, 0.94));
    box-shadow:
        var(--gc-shadow),
        0 0 0 1px rgba(185, 255, 119, 0.06),
        0 0 22px rgba(185, 255, 119, 0.07);
}

.gc-hero-card .gc-panel-top {
    gap: 0.65rem;
}

.gc-hero-card .gc-badge {
    background: rgba(103, 244, 255, 0.08);
    color: #dcfcff;
}

.gc-hero-card-copy {
    display: grid;
    gap: 0.4rem;
}

.gc-hero-card-copy h2 {
    margin: 0;
    max-width: 11ch;
    font-size: clamp(1.15rem, 1.75vw, 1.45rem);
    color: #f4ffd8;
}

.gc-hero-card-copy p {
    color: var(--gc-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.gc-hero-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.gc-hero-card-tags span {
    display: inline-flex;
    align-items: center;
    padding: 0.36rem 0.58rem;
    border-radius: 999px;
    background: rgba(185, 255, 119, 0.08);
    border: 1px solid rgba(185, 255, 119, 0.12);
    color: #efffd2;
    font-size: 0.74rem;
}

.gc-member-lane {
    padding-top: 0.35rem;
    padding-bottom: 2.6rem;
}

.gc-member-lane .gc-section-heading {
    max-width: 56rem;
}

.gc-member-lane-grid {
    margin-top: 1.55rem;
}

.gc-member-lane-grid .gc-glow-card {
    background:
        linear-gradient(180deg, rgba(185, 255, 119, 0.08), transparent 38%),
        var(--gc-panel);
}

.gc-member-lane-grid .gc-glow-card p {
    color: var(--gc-muted);
}

.gc-kicker,
.gc-proof-card span,
.gc-card-title,
.gc-meter span,
.gc-quote span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 700;
}

.gc-kicker,
.gc-card-title,
.gc-proof-card span,
.gc-quote span {
    color: #ff88dc;
}

h1,
h2,
h3,
.gc-quote p {
    margin: 0;
    font-family: "Oxanium", sans-serif;
    letter-spacing: -0.03em;
    line-height: 0.96;
}

h1 {
    font-size: clamp(2.8rem, 5.4vw, 4.9rem);
    margin-top: 1rem;
    max-width: 12.5ch;
    line-height: 0.98;
    text-shadow: 0 0 34px rgba(122, 57, 255, 0.2);
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    margin: 0.85rem 0 1rem;
    max-width: 15ch;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin: 0;
    line-height: 1.65;
}

.gc-lead {
    max-width: 58ch;
    margin-top: 1.35rem;
    font-size: 1.08rem;
}

.gc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.gc-stat-row,
.gc-card-grid,
.gc-bento-grid,
.gc-proof-grid {
    display: grid;
    gap: 1rem;
}

.gc-stat-row {
    list-style: none;
    padding: 0;
    margin: 2.6rem 0 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-stat-row li,
.gc-hero-panel,
.gc-glow-card,
.gc-bento,
.gc-quote,
.gc-proof-card,
.gc-enter-card {
    border: 1px solid var(--gc-line);
    border-radius: var(--gc-radius-lg);
    background: var(--gc-panel);
    backdrop-filter: blur(18px);
    box-shadow: var(--gc-shadow);
}

.gc-stat-row li,
.gc-glow-card,
.gc-bento,
.gc-proof-card {
    padding: 1.45rem;
}

.gc-stat-row strong,
.gc-proof-card strong {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 1.38rem;
    font-family: "Oxanium", sans-serif;
}

.gc-hero-panel {
    padding: 1.35rem;
    position: relative;
    overflow: hidden;
}

.gc-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 71, 191, 0.16), rgba(122, 57, 255, 0.22), rgba(103, 244, 255, 0.05));
    pointer-events: none;
}

.gc-hero-panel::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    border: 1px solid rgba(103, 244, 255, 0.08);
    pointer-events: none;
}

.gc-panel-top,
.gc-feature-card,
.gc-meter,
.gc-chip-grid {
    position: relative;
    z-index: 1;
}

.gc-panel-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.gc-panel-subtitle {
    margin-top: 0.3rem;
    color: var(--gc-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.gc-badge {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(185, 255, 119, 0.08);
    color: var(--gc-acid);
    font-size: 0.78rem;
}

.gc-badge-member {
    background: rgba(185, 255, 119, 0.16);
    border: 1px solid rgba(185, 255, 119, 0.22);
    color: #f3ffd9;
    box-shadow:
        0 0 24px rgba(185, 255, 119, 0.1),
        inset 0 0 16px rgba(185, 255, 119, 0.06);
}

.gc-feature-card {
    margin: 1.5rem 0;
    padding: 1.2rem;
    border-radius: var(--gc-radius-md);
    background: rgba(11, 3, 19, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gc-meter {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 0.8rem;
    align-items: center;
    margin-top: 0.9rem;
}

.gc-meter div {
    height: 0.72rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.gc-meter i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gc-pink), var(--gc-purple), var(--gc-cyan));
    animation: gcSweep 2s ease;
}

.gc-chip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.gc-chip-grid span {
    display: inline-flex;
    justify-content: center;
    padding: 0.75rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffd8fb;
    font-size: 0.86rem;
}

.gc-section-heading {
    display: grid;
    gap: 0.45rem;
}

.gc-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.gc-glow-card {
    background:
        linear-gradient(180deg, rgba(255, 71, 191, 0.1), transparent 42%),
        var(--gc-panel);
}

.gc-glow-card,
.gc-bento,
.gc-proof-card {
    position: relative;
    overflow: hidden;
}

.gc-glow-card::after,
.gc-bento::after,
.gc-proof-card::after {
    content: "";
    position: absolute;
    inset: auto -10% -40% 40%;
    height: 12rem;
    background: radial-gradient(circle, rgba(122, 57, 255, 0.18), transparent 70%);
    pointer-events: none;
}

.gc-vault .gc-section-heading,
.gc-community {
    margin-bottom: 2rem;
}

.gc-bento-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
}

.gc-bento-large {
    grid-row: span 2;
    min-height: 100%;
}

.gc-quote {
    padding: 2rem;
    margin-bottom: 1rem;
}

.gc-quote p {
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    max-width: 24ch;
    line-height: 1.08;
}

.gc-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-enter-card {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    background:
        linear-gradient(135deg, rgba(255, 71, 191, 0.12), rgba(122, 57, 255, 0.18), rgba(103, 244, 255, 0.06)),
        rgba(14, 5, 24, 0.92);
}

.gc-membership-shell,
.gc-sanctum-perks-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
    gap: 1.5rem;
    align-items: start;
}

.gc-membership-proof {
    margin-top: 1.3rem;
}

.gc-membership-panel .gc-feature-card {
    margin-bottom: 1.2rem;
}

.gc-registration-promo {
    padding-top: 1rem;
    padding-bottom: 2.3rem;
}

.gc-sanctum-marquee {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 1.5rem;
    padding: 1.8rem;
    background:
        radial-gradient(circle at top left, rgba(185, 255, 119, 0.22), transparent 18%),
        radial-gradient(circle at right center, rgba(103, 244, 255, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(168, 255, 59, 0.12), rgba(255, 71, 191, 0.14), rgba(122, 57, 255, 0.22), rgba(9, 3, 16, 0.96));
    box-shadow:
        var(--gc-shadow),
        0 0 0 1px rgba(185, 255, 119, 0.08),
        0 0 38px rgba(185, 255, 119, 0.08);
}

.gc-sanctum-marquee-copy,
.gc-sanctum-marquee-panel {
    position: relative;
    z-index: 1;
}

.gc-sanctum-marquee-copy {
    display: grid;
    align-content: start;
}

.gc-sanctum-marquee-copy h2 {
    max-width: 10ch;
    margin-top: 1.1rem;
    color: #f4ffd8;
    text-shadow: 0 0 26px rgba(185, 255, 119, 0.12);
}

.gc-sanctum-marquee-copy > p {
    max-width: 58ch;
}

.gc-sanctum-hero-panel {
    padding: 1.05rem;
    box-shadow:
        var(--gc-shadow),
        0 0 0 1px rgba(185, 255, 119, 0.08),
        0 0 34px rgba(185, 255, 119, 0.08);
}

.gc-sanctum-hero-panel::before {
    background: linear-gradient(135deg, rgba(185, 255, 119, 0.18), rgba(255, 71, 191, 0.14), rgba(122, 57, 255, 0.2));
}

.gc-sanctum-hero-panel .gc-feature-card .gc-actions {
    margin-top: 1.2rem;
}

.gc-sanctum-hero-panel .gc-feature-card {
    margin: 1rem 0;
    padding: 1rem;
}

.gc-sanctum-hero-panel .gc-feature-card h2 {
    max-width: 13ch;
    margin: 0.6rem 0 0.7rem;
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.gc-sanctum-hero-panel .gc-feature-card p {
    font-size: 0.96rem;
    line-height: 1.55;
}

.gc-sanctum-hero-panel .gc-meter {
    grid-template-columns: 5.2rem 1fr;
    gap: 0.65rem;
    margin-top: 0.7rem;
}

.gc-sanctum-hero-panel .gc-chip-grid {
    gap: 0.6rem;
    margin-top: 1rem;
}

.gc-sanctum-marquee-panel {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.gc-sanctum-marquee-panel .gc-feature-card {
    margin: 0;
}

.gc-sanctum-proof-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.gc-sanctum-proof-item {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--gc-radius-md);
    background:
        linear-gradient(180deg, rgba(185, 255, 119, 0.06), transparent 55%),
        rgba(11, 3, 19, 0.76);
}

.gc-sanctum-proof-item span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ff88dc;
}

.gc-sanctum-proof-item strong {
    display: block;
    margin: 0.35rem 0 0.45rem;
    font-size: 1.04rem;
    font-family: "Oxanium", sans-serif;
    line-height: 1.1;
}

.gc-sanctum-proof-item p {
    color: var(--gc-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.gc-sanctum-hero-panel .gc-chip-grid span,
.gc-sanctum-marquee .gc-chip-grid span {
    background: rgba(185, 255, 119, 0.08);
    border: 1px solid rgba(185, 255, 119, 0.12);
    color: #efffd2;
}

.gc-sanctum-hero-panel .gc-chip-grid span {
    padding: 0.58rem 0.7rem;
    font-size: 0.78rem;
}

.gc-play-main {
    padding-bottom: 2rem;
}

.gc-play-search {
    padding-top: 2.4rem;
    padding-bottom: 1.2rem;
}

.gc-play-search-shell {
    padding: 1.7rem;
    border: 1px solid var(--gc-line);
    border-radius: var(--gc-radius-xl);
    background:
        radial-gradient(circle at top left, rgba(255, 71, 191, 0.14), transparent 24%),
        radial-gradient(circle at right center, rgba(103, 244, 255, 0.08), transparent 28%),
        rgba(14, 5, 24, 0.88);
    backdrop-filter: blur(20px);
    box-shadow: var(--gc-shadow);
}

.gc-play-search-copy {
    max-width: 42rem;
}

.gc-play-search-copy h2 {
    max-width: 14ch;
}

.gc-play-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.gc-play-search-input {
    flex: 1 1 22rem;
    min-width: min(100%, 22rem);
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(4, 1, 7, 0.72);
    color: var(--gc-text);
    font: inherit;
}

.gc-play-search-input::placeholder {
    color: rgba(182, 150, 211, 0.88);
}

.gc-play-search-input:focus {
    outline: none;
    border-color: rgba(103, 244, 255, 0.42);
    box-shadow: 0 0 0 0.22rem rgba(103, 244, 255, 0.14);
}

.gc-play-search-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.gc-play-search-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gc-muted);
    font-size: 0.8rem;
}

.gc-play-search-results {
    padding-top: 1.25rem;
}

.gc-play-hero,
.gc-tax-hero,
.gc-game-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    padding-top: 3rem;
    padding-bottom: 1.75rem;
    gap: 2rem;
    align-items: start;
}

.gc-play-hero-copy {
    max-width: 48rem;
}

.gc-play-hero-panel .gc-feature-card .gc-actions {
    margin-top: 1.3rem;
}

.gc-category-rail,
.gc-play-grid {
    display: grid;
    gap: 1rem;
}

.gc-category-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 2rem;
}

.gc-category-pill,
.gc-play-card,
.gc-play-empty,
.gc-game-stage,
.gc-game-copy {
    border: 1px solid var(--gc-line);
    border-radius: var(--gc-radius-lg);
    background: var(--gc-panel);
    backdrop-filter: blur(18px);
    box-shadow: var(--gc-shadow);
}

.gc-category-pill {
    display: grid;
    gap: 0.75rem;
    padding: 1.4rem;
    min-height: 100%;
    transition: transform 180ms ease, border-color 180ms ease;
}

.gc-category-pill:hover,
.gc-play-card:hover {
    transform: translateY(-4px);
    border-color: rgba(103, 244, 255, 0.24);
}

.gc-category-pill-title {
    font-family: "Oxanium", sans-serif;
    font-size: 1.18rem;
}

.gc-category-pill-copy {
    color: var(--gc-muted);
    line-height: 1.55;
}

.gc-category-pill strong {
    color: #ffd8fb;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gc-play-shelves {
    display: grid;
    gap: 2.4rem;
}

.gc-front-stats {
    padding-top: 1.1rem;
    padding-bottom: 1.2rem;
}

.gc-front-stat-row {
    margin-top: 0;
}

.gc-front-stat-row li {
    display: grid;
    gap: 0.45rem;
    min-height: 100%;
}

.gc-front-stat-row p {
    color: var(--gc-muted);
}

.gc-front-game-shelf {
    padding-top: 1.45rem;
}

.gc-front-game-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 8.75rem));
    justify-content: center;
    column-gap: 2.1rem;
    row-gap: 1.65rem;
    margin-top: 1rem;
}

.gc-front-game-grid .gc-play-card {
    border-radius: 1rem;
}

.gc-front-game-grid .gc-play-card-media.is-square {
    aspect-ratio: 1 / 1;
}

.gc-front-game-grid .gc-play-card-overlay {
    inset: 0.65rem 0.65rem auto 0.65rem;
    gap: 0.45rem;
}

.gc-front-game-grid .gc-badge,
.gc-front-game-grid .gc-play-rating {
    padding: 0.28rem 0.5rem;
    font-size: 0.66rem;
}

.gc-front-game-grid .gc-play-card-placeholder {
    padding: 1rem;
}

.gc-play-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.6rem;
}

.gc-play-grid-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gc-play-card {
    position: relative;
    overflow: hidden;
}

.gc-play-card-favorite {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 3;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    margin: 0;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(8, 2, 14, 0.82);
    font: inherit;
    line-height: 1;
    color: rgba(255, 247, 255, 0.92);
    -webkit-text-fill-color: rgba(255, 247, 255, 0.92);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition:
        color 0.15s ease,
        border-color 0.15s ease,
        background 0.15s ease,
        transform 0.15s ease,
        -webkit-text-fill-color 0.15s ease;
}

.gc-play-card-favorite:hover,
.gc-play-card-favorite:focus-visible {
    color: #ffe8a8;
    -webkit-text-fill-color: #ffe8a8;
    border-color: rgba(255, 216, 116, 0.55);
    transform: scale(1.04);
}

.gc-play-card-favorite.is-favorited {
    color: #ffd080;
    -webkit-text-fill-color: #ffd080;
    border-color: rgba(255, 176, 32, 0.65);
    background: rgba(40, 18, 0, 0.92);
}

.gc-play-card-favorite:disabled {
    opacity: 0.65;
    cursor: wait;
}

.gc-play-card-favorite-icon {
    font-size: 1.15rem;
    line-height: 1;
}

.gc-game-favorite-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
    margin-top: 1.25rem;
}

.gc-game-favorite-button.gc-button-ghost {
    color: var(--gc-text);
    -webkit-text-fill-color: var(--gc-text);
}

.gc-game-favorite-button.gc-button-ghost:hover,
.gc-game-favorite-button.gc-button-ghost:focus-visible {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.gc-game-favorite-button.is-favorited {
    border-color: rgba(255, 176, 32, 0.45);
    color: #ffe8c4;
    -webkit-text-fill-color: #ffe8c4;
}

.gc-game-favorite-button.is-favorited:hover,
.gc-game-favorite-button.is-favorited:focus-visible {
    color: #fff6e6;
    -webkit-text-fill-color: #fff6e6;
}

.gc-game-favorite-hint {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: rgba(255, 225, 251, 0.78);
}

.gc-game-favorite-hint a {
    color: #89f7ff;
}

.gc-account-favorites {
    margin-top: 2.5rem;
}

.gc-account-favorites.is-highlight-pulse {
    outline: 2px solid rgba(103, 244, 255, 0.35);
    outline-offset: 0.35rem;
    border-radius: 0.35rem;
}

.gc-play-card.is-sanctum {
    border-color: rgba(185, 255, 119, 0.2);
    box-shadow:
        var(--gc-shadow),
        0 0 0 1px rgba(185, 255, 119, 0.08),
        0 0 32px rgba(185, 255, 119, 0.08);
}

.gc-play-card-link {
    display: grid;
    min-height: 100%;
}

.gc-play-card.is-compact .gc-play-card-link {
    grid-template-rows: minmax(0, 1fr);
}

.gc-play-card-media {
    position: relative;
    min-height: 13rem;
    background: linear-gradient(135deg, rgba(255, 71, 191, 0.22), rgba(122, 57, 255, 0.28), rgba(103, 244, 255, 0.12));
}

.gc-play-card-media.is-square {
    min-height: 0;
    aspect-ratio: 1 / 1;
}

.gc-play-card-image,
.gc-game-stage-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gc-play-card-placeholder,
.gc-game-placeholder {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 2rem;
    background:
        radial-gradient(circle at top left, rgba(255, 71, 191, 0.22), transparent 34%),
        radial-gradient(circle at bottom right, rgba(103, 244, 255, 0.12), transparent 30%),
        rgba(11, 3, 19, 0.88);
}

.gc-play-card-placeholder span,
.gc-game-placeholder span {
    font-family: "Oxanium", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffe1fb;
    text-align: center;
}

.gc-play-card-overlay {
    position: absolute;
    inset: 1rem 1rem auto 1rem;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: flex-start;
}

.gc-play-card-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: flex-start;
}

.gc-play-card-compact-body {
    position: absolute;
    inset: auto 0 0 0;
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(4, 1, 7, 0) 0%, rgba(4, 1, 7, 0.76) 42%, rgba(4, 1, 7, 0.96) 100%);
}

.gc-front-game-grid .gc-play-card-compact-body {
    gap: 0.38rem;
    padding: 0.62rem;
}

.gc-play-card-compact-body h3 {
    margin: 0;
    font-size: 1.14rem;
}

.gc-front-game-grid .gc-play-card-compact-body h3 {
    font-size: 0.86rem;
    line-height: 1.02;
}

.gc-play-card-mini-kicker,
.gc-play-card-mini-link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
}

.gc-play-card-mini-kicker {
    color: #ffe1fb;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gc-play-card-mini-link {
    color: var(--gc-cyan);
    font-size: 0.64rem;
    font-weight: 700;
}

.gc-play-rating {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    background: rgba(4, 1, 7, 0.8);
    color: #fff4ff;
    font-size: 0.78rem;
}

.gc-play-card-body {
    display: grid;
    gap: 0.8rem;
    padding: 1.25rem;
}

.gc-play-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.gc-play-card-meta,
.gc-game-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.gc-play-card-meta span,
.gc-game-meta-row span {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gc-muted);
    font-size: 0.8rem;
}

.gc-play-card-body h3 {
    font-size: 1.42rem;
}

.gc-play-count {
    display: inline-flex;
    align-items: baseline;
    gap: 0.36rem;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    background: rgba(4, 1, 7, 0.78);
    color: #fff4ff;
    font-size: 0.78rem;
}

.gc-play-count strong {
    font-family: "Oxanium", sans-serif;
    font-size: 1rem;
    line-height: 1;
}

.gc-play-count-mini {
    width: fit-content;
    padding: 0.2rem 0.45rem;
    font-size: 0.58rem;
    background: rgba(4, 1, 7, 0.84);
}

.gc-play-count-mini strong {
    font-size: 0.72rem;
}

.gc-play-card.is-compact .gc-play-card-meta span {
    background: rgba(255, 255, 255, 0.1);
    color: #fff4ff;
}

.gc-play-card-body p,
.gc-play-library-head p,
.gc-game-copy,
.gc-play-empty p {
    color: var(--gc-muted);
}

.gc-play-card-action {
    color: var(--gc-cyan);
    font-weight: 700;
}

.gc-game-ticker {
    display: grid;
    gap: 0.35rem;
    width: fit-content;
    margin-top: 1.15rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(103, 244, 255, 0.2);
    border-radius: 1rem;
    background: rgba(14, 5, 24, 0.78);
    box-shadow: var(--gc-shadow);
}

.gc-game-ticker span {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gc-muted);
}

.gc-game-ticker strong {
    font-family: "Oxanium", sans-serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 0.9;
}

.gc-game-ticker small {
    color: var(--gc-muted);
    font-size: 0.84rem;
}

.gc-play-library-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-end;
}

.gc-play-empty {
    padding: 1.7rem;
    margin-top: 1.5rem;
}

.gc-play-empty h3 {
    margin-bottom: 0.75rem;
}

.gc-play-shelves {
    padding-top: 1rem;
    gap: 1.75rem;
}

.gc-play-page-title {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    max-width: none;
    margin-top: 0.4rem;
    line-height: 1;
}

.gc-play-shelf .gc-section-heading h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.3rem);
    max-width: 12ch;
    margin-bottom: 0;
}

.gc-play-grid {
    margin-top: 0.95rem;
}

.gc-play-card-media {
    min-height: 11rem;
}

.gc-play-library,
.gc-play-featured,
.gc-play-categories {
    padding-top: 1.75rem;
}

.gc-sanctum-main .gc-play-search-shell {
    background:
        radial-gradient(circle at top left, rgba(185, 255, 119, 0.12), transparent 22%),
        radial-gradient(circle at right center, rgba(103, 244, 255, 0.08), transparent 28%),
        rgba(14, 5, 24, 0.9);
}

.gc-sanctum-perks {
    padding-top: 1.25rem;
}

.gc-sanctum-art-panel {
    display: grid;
    gap: 1rem;
}

.gc-sanctum-art {
    position: relative;
    overflow: hidden;
    min-height: 21rem;
    border-radius: var(--gc-radius-md);
    background:
        radial-gradient(circle at top left, rgba(255, 71, 191, 0.2), transparent 28%),
        linear-gradient(135deg, rgba(13, 4, 22, 0.96), rgba(32, 9, 48, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.gc-sanctum-art.is-fallback {
    display: grid;
    align-items: stretch;
}

.gc-sanctum-art-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gc-sanctum-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 1, 7, 0.04), rgba(4, 1, 7, 0.84));
    pointer-events: none;
}

.gc-sanctum-art-fallback {
    display: grid;
    place-items: center;
    min-height: 100%;
    padding: 2rem;
}

.gc-sanctum-art-fallback span {
    font-family: "Oxanium", sans-serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #efffdc;
}

.gc-sanctum-art-copy {
    position: absolute;
    inset: auto 1.2rem 1.2rem 1.2rem;
    z-index: 1;
    display: grid;
    gap: 0.45rem;
}

.gc-sanctum-art-copy h3 {
    max-width: 12ch;
}

.gc-sanctum-art-copy p {
    max-width: 38ch;
    color: #f9eefe;
}

.gc-sanctum-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-member-home-notice {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(185, 255, 119, 0.22);
    border-radius: 1rem;
    background: rgba(185, 255, 119, 0.08);
    color: #efffd2;
}

.gc-member-home-notice strong {
    font-family: "Oxanium", sans-serif;
    font-size: 0.98rem;
}

.gc-member-home-grid .gc-member-perk-card {
    background:
        linear-gradient(180deg, rgba(185, 255, 119, 0.08), transparent 44%),
        var(--gc-panel);
}

.gc-member-home-grid .gc-member-perk-card h3 {
    max-width: 12ch;
}

.gc-sanctum-shelf-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gc-sanctum-info-section {
    padding-top: 1.25rem;
}

.gc-sanctum-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gc-sanctum-panel {
    display: grid;
    gap: 1rem;
    min-height: 100%;
}

.gc-sanctum-panel-head h2 {
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    max-width: 12ch;
    margin-bottom: 0;
}

.gc-sanctum-panel-list {
    display: grid;
    gap: 0.9rem;
}

.gc-sanctum-news-item,
.gc-download-item,
.gc-leaderboard-list li {
    display: grid;
    gap: 0.45rem;
    padding: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    background: rgba(11, 3, 19, 0.72);
}

.gc-sanctum-news-item span,
.gc-download-item span,
.gc-leaderboard-list li > span {
    display: inline-flex;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.68rem;
    font-weight: 700;
    color: #ff88dc;
}

.gc-sanctum-news-item strong,
.gc-download-item strong,
.gc-leaderboard-list strong {
    font-family: "Oxanium", sans-serif;
    font-size: 1.06rem;
    line-height: 1.12;
}

.gc-sanctum-news-item p,
.gc-download-item p,
.gc-leaderboard-list p {
    color: var(--gc-muted);
}

.gc-leaderboard-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.gc-leaderboard-list li {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
}

.gc-download-item {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
}

.gc-download-item .gc-button {
    margin-top: 0;
}

.gc-play-empty.is-inline {
    margin-top: 0;
}

.gc-member-perk-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.gc-member-perk-card {
    display: grid;
    gap: 0.7rem;
    min-height: 100%;
}

.gc-member-perk-card h3 {
    font-size: 1.38rem;
}

.gc-member-perk-card p {
    color: var(--gc-muted);
}

.single-chamber_game .gc-header {
    align-items: center;
    margin-bottom: 0.2rem;
}

.single-chamber_game .gc-brand {
    gap: 0.7rem;
}

.single-chamber_game .gc-brand-mark {
    width: 0.85rem;
    height: 0.85rem;
    box-shadow:
        0 0 0 0.3rem rgba(255, 82, 200, 0.16),
        0 0 22px rgba(143, 71, 255, 0.42);
}

.single-chamber_game .gc-brand-stack {
    gap: 0;
}

.single-chamber_game .gc-brand-stack strong {
    font-size: 0.92rem;
}

.single-chamber_game .gc-brand-stack span {
    display: none;
}

.single-chamber_game .gc-header > .gc-button {
    min-height: 0;
    padding: 0.75rem 1.1rem;
    font-size: 0.92rem;
}

.gc-section.gc-game-stage-section {
    display: grid;
    gap: 0.75rem;
    padding-top: 0;
    padding-bottom: 1rem;
}

.gc-section.gc-game-shell {
    grid-template-columns: 1fr;
    padding-top: 0.5rem;
    padding-bottom: 0;
    gap: 0.35rem;
}

.gc-section.gc-game-shell + .gc-section.gc-game-stage-section {
    padding-top: 0;
}

.gc-game-intro {
    display: grid;
    gap: 0.2rem;
}

.single-chamber_game .gc-game-intro {
    gap: 0.1rem;
}

.gc-game-intro h1 {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    max-width: none;
    margin-top: 0.2rem;
    margin-bottom: 0;
}

.single-chamber_game .gc-game-intro h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.gc-game-stage-actions {
    display: grid;
    gap: 0.75rem;
}

.single-chamber_game .gc-game-stage-section {
    gap: 0.55rem;
}

/* Cabinet embed: desktop uses a clamped stage — tall enough for the board, not full-viewport (room for title + actions). */
.single-chamber_game .gc-game-stage iframe {
    width: 100%;
}

@media (min-width: 769px) {
    .single-chamber_game .gc-game-stage iframe {
        min-height: clamp(26rem, 62vh, 42rem);
    }
}

/* Mobile only: tall enough for board + stacked capture strips; page can still scroll */
@media (max-width: 768px) {
    .single-chamber_game .gc-game-stage iframe {
        min-height: min(88dvh, 42rem);
        height: min(88dvh, 42rem);
        max-height: min(92dvh, 44rem);
    }
}

.single-chamber_game .gc-game-stage-actions {
    gap: 0.5rem;
}

.gc-game-stage-actions .gc-actions {
    margin-top: 0;
}

.gc-game-stage-actions .gc-game-meta-row {
    margin-top: 0;
}

.gc-game-stage iframe {
    display: block;
    width: 100%;
    min-height: 78vh;
    border: 0;
    background: #05010a;
}

.gc-game-stage {
    position: relative;
    overflow: hidden;
}

.gc-game-stage-close {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
}

.gc-game-stage .gc-game-stage-close.gc-button-ghost {
    color: var(--gc-text);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

body.gc-stage-overlay-active {
    overflow: hidden;
}

.gc-game-stage.is-stage-overlay {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    width: 100vw;
    height: 100vh;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #05010a;
}

.gc-game-stage.is-stage-overlay iframe,
.gc-game-stage.is-stage-overlay .gc-game-stage-image,
.gc-game-stage.is-stage-overlay .gc-game-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.gc-game-stage.is-stage-overlay .gc-game-stage-close {
    display: inline-flex;
}

/* Embedded HTML5: desktop uses this control; mobile hides it (768px — matches chess MOBILE_CAPTURE_MQ). */
@media (max-width: 768px) {
    .gc-game-stage.is-stage-overlay .gc-game-stage-close--embed-desktop-only,
    .gc-game-stage:fullscreen .gc-game-stage-close--embed-desktop-only,
    .gc-game-stage:-webkit-full-screen .gc-game-stage-close--embed-desktop-only {
        display: none !important;
    }
}

.gc-game-stage:fullscreen .gc-game-stage-close,
.gc-game-stage:-webkit-full-screen .gc-game-stage-close {
    display: inline-flex;
}

.gc-game-stage:fullscreen,
.gc-game-stage:-webkit-full-screen,
.gc-game-stage:-ms-fullscreen {
    width: 100vw;
    height: 100vh;
    max-width: none;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #05010a;
}

.gc-game-stage:fullscreen iframe,
.gc-game-stage:fullscreen .gc-game-stage-image,
.gc-game-stage:-webkit-full-screen iframe,
.gc-game-stage:-webkit-full-screen .gc-game-stage-image,
.gc-game-stage:-ms-fullscreen iframe,
.gc-game-stage:-ms-fullscreen .gc-game-stage-image {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.gc-game-copy {
    padding: 1.6rem;
}

.gc-game-copy > :first-child {
    margin-top: 0;
}

.gc-game-copy > :last-child {
    margin-bottom: 0;
}

.gc-game-copy p,
.gc-game-copy li,
.gc-game-copy ul,
.gc-game-copy ol {
    color: var(--gc-text);
}

.gc-footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 0 2rem;
    font-size: 0.92rem;
}

.js .gc-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes gcPulse {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes gcSweep {
    from {
        width: 0;
    }
}

@media (max-width: 1240px) {
    .gc-front-game-grid {
        grid-template-columns: repeat(4, minmax(0, 8.75rem));
    }
}

@media (max-width: 1100px) {
    .gc-header {
        grid-template-columns: auto minmax(0, 1fr) auto auto;
    }

    .gc-nav-toggle {
        display: inline-flex;
    }

    .gc-header-actions {
        gap: 0.3rem;
    }

    .gc-nav {
        display: none;
    }

    .gc-header.is-nav-open {
        border-radius: 1.05rem;
    }

    .gc-header.is-nav-open .gc-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 0;
        right: 0;
        padding: 0.45rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 1rem;
        background: rgba(10, 4, 18, 0.92);
        backdrop-filter: blur(22px) saturate(150%);
        box-shadow: 0 18px 30px rgba(1, 0, 6, 0.32);
        overflow: hidden;
        white-space: normal;
    }

    .gc-header.is-nav-open .gc-nav a {
        padding: 0.62rem 0.78rem;
        border-radius: 0.8rem;
    }

    .gc-header.is-nav-open .gc-nav a:hover {
        background: rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 980px) {
    .gc-header,
    .gc-card-grid,
    .gc-bento-grid,
    .gc-proof-grid,
    .gc-enter-card,
    .gc-membership-shell,
    .gc-sanctum-marquee,
    .gc-sanctum-perks-shell,
    .gc-sanctum-info-grid,
    .gc-sanctum-proof-list,
    .gc-member-perk-grid,
    .gc-stat-row,
    .gc-category-rail,
    .gc-play-grid,
    .gc-play-grid-compact,
    .gc-play-hero,
    .gc-tax-hero,
    .gc-game-shell {
        grid-template-columns: 1fr;
    }

    .gc-header {
        grid-template-columns: auto minmax(0, 1fr) auto auto;
        gap: 0.45rem;
        border-radius: 0.95rem;
        padding: 0.4rem 0.55rem;
    }

    .gc-hero {
        grid-template-columns: minmax(0, 1fr) minmax(210px, 17rem);
        gap: 0.95rem;
        padding-top: 1rem;
    }

    .gc-hero-card {
        width: min(100%, 17rem);
    }

    .gc-bento-large {
        grid-row: auto;
    }

    .gc-play-library-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .gc-play-search-copy h2 {
        max-width: none;
    }

    .gc-footer {
        flex-direction: column;
    }
}

@media (max-width: 1180px) {
    .gc-sanctum-shelf-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .gc-front-promo-side {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .gc-front-promo-side .gc-actions {
        justify-content: flex-start;
    }

    .gc-hero {
        grid-template-columns: 1fr;
    }

    .gc-hero-card {
        justify-self: stretch;
        width: 100%;
    }

    .gc-front-game-grid {
        grid-template-columns: repeat(2, minmax(0, 8.75rem));
    }

    .gc-sanctum-shelf-grid,
    .gc-download-item,
    .gc-leaderboard-list li {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .gc-section {
        padding: 4rem 0;
    }

    .gc-front-promo {
        padding-top: 0.85rem;
        padding-bottom: 0.75rem;
    }

    .gc-front-opening {
        min-height: auto;
    }

    .gc-front-promo-shell {
        padding: 1.1rem;
    }

    .gc-registration-promo {
        padding-top: 0.5rem;
    }

    .gc-front-game-grid {
        grid-template-columns: repeat(2, minmax(0, 8.1rem));
    }

    .admin-bar .gc-header {
        top: calc(46px + 0.15rem);
    }

    .gc-header {
        grid-template-columns: minmax(0, 1fr) auto auto;
        align-items: center;
        justify-items: stretch;
        gap: 0.4rem;
        padding: 0.36rem 0.45rem;
        border-radius: 0.9rem;
    }

    .gc-brand {
        align-items: center;
        gap: 0.48rem;
        min-width: 0;
        justify-self: start;
        align-self: center;
    }

    .gc-brand-mark {
        flex-shrink: 0;
    }

    .gc-brand-stack {
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 1;
        min-width: 0;
    }

    .gc-brand-stack strong {
        display: block;
        font-size: 0.76rem;
        line-height: 1.2;
        letter-spacing: 0.07em;
        padding-top: 0.06em;
    }

    .gc-fullscreen-trigger {
        touch-action: manipulation;
    }

    .gc-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gc-button,
    .gc-button-link {
        width: 100%;
    }

    .gc-header-actions {
        gap: 0.25rem;
    }

    .gc-header-actions .gc-button {
        width: auto;
        padding: 0.38rem 0.54rem;
        font-size: 0.7rem;
    }

    .gc-header-account-menu summary {
        width: 2rem;
        height: 2rem;
    }

    .gc-nav-toggle {
        width: 2rem;
        height: 2rem;
    }

    .gc-chip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gc-sanctum-marquee {
        padding: 1.4rem;
    }

    /* Was 22rem — far too short for embedded HTML5 games on phones */
    .gc-game-stage iframe {
        min-height: min(82dvh, 48rem);
        height: min(78dvh, 46rem);
    }

    .gc-play-search-input {
        min-width: 100%;
    }

    h1 {
        max-width: 8ch;
    }
}

@media (max-width: 420px) {
    .gc-front-game-grid {
        grid-template-columns: minmax(0, 10.5rem);
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

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

.gc-account-main {
    padding-bottom: 2rem;
}

.gc-account-shell {
    padding-top: 2.5rem;
}

.gc-account-hero,
.gc-profile-grid,
.gc-account-panels {
    display: grid;
    gap: 1rem;
}

.gc-account-hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    align-items: start;
}

.gc-account-copy h1 {
    max-width: 12ch;
}

.gc-account-copy .gc-lead {
    max-width: 54ch;
}

.gc-account-pills {
    margin-top: 1.25rem;
}

.gc-account-sidebar,
.gc-account-card,
.gc-account-notice,
.gc-account-errors {
    border: 1px solid var(--gc-line);
    border-radius: var(--gc-radius-lg);
    background: var(--gc-panel);
    backdrop-filter: blur(18px);
    box-shadow: var(--gc-shadow);
}

.gc-account-sidebar,
.gc-account-card,
.gc-account-notice,
.gc-account-errors {
    padding: 1.4rem;
}

.gc-account-sidebar {
    display: grid;
    gap: 1rem;
}

.gc-account-avatar-wrap {
    display: flex;
    justify-content: flex-start;
}

.gc-account-avatar {
    display: block;
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    border: 2px solid rgba(103, 244, 255, 0.24);
    box-shadow: 0 0 0 0.4rem rgba(255, 71, 191, 0.08);
}

.gc-account-sidebar-copy {
    display: grid;
    gap: 0.5rem;
}

.gc-account-sidebar-copy h2,
.gc-account-card h2 {
    max-width: 13ch;
}

.gc-account-sidebar-copy p {
    color: var(--gc-muted);
}

.gc-account-sidebar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gc-account-notice {
    margin-top: 1rem;
    background:
        linear-gradient(135deg, rgba(185, 255, 119, 0.12), rgba(103, 244, 255, 0.08)),
        var(--gc-panel);
}

.gc-account-notice p,
.gc-account-errors p {
    color: var(--gc-text);
}

.gc-account-errors {
    margin-top: 1rem;
    background:
        linear-gradient(135deg, rgba(255, 71, 191, 0.12), rgba(122, 57, 255, 0.1)),
        var(--gc-panel);
}

.gc-account-errors ul {
    margin: 0.75rem 0 0;
    padding-left: 1.2rem;
    color: #ffd8fb;
}

.gc-account-panels,
.gc-profile-grid {
    margin-top: 1.4rem;
}

.gc-account-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gc-profile-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    align-items: start;
}

.gc-account-card {
    display: grid;
    gap: 1.2rem;
}

.gc-account-card.is-active {
    border-color: rgba(103, 244, 255, 0.24);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.gc-account-form {
    display: grid;
    gap: 1rem;
}

.gc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.gc-field {
    display: grid;
    gap: 0.45rem;
}

.gc-field-full {
    grid-column: 1 / -1;
}

.gc-field span,
.gc-check span {
    color: var(--gc-muted);
    font-size: 0.9rem;
}

.gc-field-hint {
    color: var(--gc-muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

.gc-avatar-upload-progress[hidden] {
    display: none;
}

.gc-avatar-upload-progress {
    display: grid;
    gap: 0.65rem;
    padding: 0.9rem 1rem;
    border: 1px solid rgba(185, 255, 119, 0.18);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(185, 255, 119, 0.12), rgba(103, 244, 255, 0.04));
}

.gc-avatar-upload-progress-track {
    position: relative;
    overflow: hidden;
    height: 0.8rem;
    border-radius: 999px;
    background: rgba(185, 255, 119, 0.12);
    box-shadow: inset 0 0 0 1px rgba(185, 255, 119, 0.16);
}

.gc-avatar-upload-progress-fill {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #43d66b 0%, var(--gc-acid) 52%, #89ffb0 100%);
    box-shadow: 0 0 24px rgba(67, 214, 107, 0.4);
    transition: width 0.25s ease;
}

.gc-avatar-upload-progress-copy {
    display: grid;
    gap: 0.25rem;
}

.gc-avatar-upload-progress-copy strong {
    color: #efffdc;
    font-size: 0.92rem;
}

.gc-avatar-upload-progress-copy span {
    color: var(--gc-text);
    font-size: 0.82rem;
    opacity: 0.82;
}

.gc-avatar-upload-progress.is-error {
    border-color: rgba(255, 71, 191, 0.28);
    background: linear-gradient(180deg, rgba(255, 71, 191, 0.12), rgba(122, 57, 255, 0.08));
}

.gc-avatar-upload-progress.is-error .gc-avatar-upload-progress-track {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 71, 191, 0.18);
}

.gc-avatar-upload-progress.is-error .gc-avatar-upload-progress-fill {
    background: linear-gradient(90deg, rgba(255, 71, 191, 0.94), rgba(122, 57, 255, 0.84));
    box-shadow: 0 0 24px rgba(255, 71, 191, 0.34);
}

.gc-field input,
.gc-field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: rgba(4, 1, 7, 0.72);
    color: var(--gc-text);
    font: inherit;
}

.gc-field textarea {
    min-height: 9rem;
    resize: vertical;
}

.gc-field input[type="file"] {
    padding: 0.65rem 0.75rem;
}

.gc-field input[type="file"]::file-selector-button {
    margin-right: 0.85rem;
    padding: 0.55rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gc-text);
    font: inherit;
    cursor: pointer;
}

.gc-field input:focus,
.gc-field textarea:focus {
    outline: none;
    border-color: rgba(103, 244, 255, 0.42);
    box-shadow: 0 0 0 0.22rem rgba(103, 244, 255, 0.14);
}

.gc-check {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.gc-check input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--gc-pink);
}

.gc-account-sidecard h3 {
    font-size: 1.45rem;
}

.gc-account-stat-list {
    display: grid;
    gap: 1rem;
}

.gc-account-stat-list div {
    display: grid;
    gap: 0.2rem;
}

.gc-account-stat-list strong {
    font-family: "Oxanium", sans-serif;
    font-size: 0.92rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffd8fb;
}

.gc-account-stat-list span {
    color: var(--gc-muted);
}

@media (max-width: 980px) {
    .gc-account-hero,
    .gc-profile-grid,
    .gc-account-panels,
    .gc-form-grid {
        grid-template-columns: 1fr;
    }

    .gc-account-copy h1,
    .gc-account-sidebar-copy h2,
    .gc-account-card h2 {
        max-width: none;
    }
}