@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root, [data-theme="light"] {

    --bg:             #FFFFFF;
    --bg-soft:        #F8FAFC;
    --bg-muted:       #F1F5F9;
    --bg-tint:        #E2E8F0;
    --bg-nav:         #FFFFFF;
    --nav-bg:         rgba(255,255,255,0.85);
    --hero-tint:      rgba(37,99,235,0.04);

    --border:         #E5E7EB;
    --border-strong:  #CBD5E1;
    --border-subtle:  #F1F5F9;

    --ink:            #0F172A;
    --ink-secondary:  #475569;
    --ink-muted:      #94A3B8;
    --ink-disabled:   #CBD5E1;

    --brand:          #2563EB;
    --brand-hover:    #1D4ED8;
    --brand-deep:     #1E40AF;
    --brand-soft:     #DBEAFE;
    --brand-tint:     #EFF6FF;

    --success:        #10B981;
    --success-soft:   #D1FAE5;
    --success-tint:   #ECFDF5;
    --danger:         #DC2626;
    --danger-soft:    #FEE2E2;
    --danger-tint:    #FEF2F2;
    --warning:        #F59E0B;
    --warning-soft:   #FEF3C7;
    --warning-tint:   #FFFBEB;
    --info:           #0EA5E9;
    --info-soft:      #E0F2FE;

    --platform-steam:    #1B2838;
    --platform-ubisoft:  #0078D4;
    --platform-rockstar: #FCAF17;
    --platform-ea:       #FF4747;
    --platform-epic:     #313131;

    --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
    --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
    --sp-12: 48px;--sp-16: 64px;--sp-20: 80px;--sp-24: 96px;
    --sp-32: 128px;

    --r-xs: 4px;  --r-sm: 6px;  --r-md: 8px;
    --r-lg: 12px; --r-xl: 16px; --r-2xl: 24px;
    --r-full: 9999px;

    --sh-xs:  0 1px 2px rgba(15,23,42,0.05);
    --sh-sm:  0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
    --sh-md:  0 4px 6px -1px rgba(15,23,42,0.06), 0 2px 4px -2px rgba(15,23,42,0.04);
    --sh-lg:  0 12px 24px -8px rgba(15,23,42,0.1), 0 4px 12px -4px rgba(15,23,42,0.06);
    --sh-xl:  0 24px 48px -12px rgba(15,23,42,0.18);
    --sh-brand: 0 4px 16px -4px rgba(37,99,235,0.4), 0 0 0 1px rgba(37,99,235,0.1);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, 'Liberation Mono', monospace;

    --container-max: 1200px;
    --container-px: clamp(20px, 4vw, 32px);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; scroll-behavior: smooth; }
html, body { height: 100%; }

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand); }
ul, ol { list-style: none; }

::selection { background: var(--brand); color: #FFFFFF; }
*:focus { outline: none; }
*:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
    border-radius: var(--r-xs);
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 1000;
    padding: 12px 18px;
    background: var(--brand);
    color: #FFFFFF;
    border-radius: var(--r-md);
    font-weight: 600;
}
.skip-link:focus { top: 16px; }

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--ink);
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.75rem); letter-spacing: -0.035em; line-height: 1.05; }
h2 { font-size: clamp(1.625rem, 2vw + 1rem, 2.5rem); letter-spacing: -0.03em; line-height: 1.15; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p { color: var(--ink-secondary); }

.eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand);
}

.text-muted { color: var(--ink-muted); }
.text-secondary { color: var(--ink-secondary); }
.text-brand { color: var(--brand); }
.text-success { color: var(--success); }
.text-danger { color: var(--danger); }
.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-px);
    padding-right: var(--container-px);
    position: relative;
}
.main-content {
    flex: 1;
    padding-top: 0;
    padding-bottom: var(--sp-20);
}
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-soft { background: var(--bg-soft); }
.section-divider { border-top: 1px solid var(--border-subtle); }
.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--sp-10);
}
.section-head .eyebrow { margin-bottom: var(--sp-3); }
.section-head h2 { margin-bottom: var(--sp-3); }
.section-head p { color: var(--ink-secondary); font-size: 1.0625rem; }

.alert-container { padding-top: var(--sp-4); padding-bottom: 0; }

.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), background 200ms var(--ease);
}
.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--sh-sm);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--sp-6);
}
.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 17px;
    color: var(--ink);
    letter-spacing: -0.015em;
}
.brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: var(--brand);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}
.brand-name { color: var(--ink); }
.brand-name-accent { color: var(--brand); }
.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}
.navbar-menu a:not(.btn) {
    font-size: 14.5px;
    color: var(--ink-secondary);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--r-sm);
    transition: all 120ms var(--ease);
}
.navbar-menu a:not(.btn):hover { color: var(--ink); background: var(--bg-muted); }
.navbar-menu a:not(.btn).active { color: var(--brand); }
.navbar-menu .navbar-cta { margin-left: var(--sp-2); }
.navbar-toggle {
    display: none;
    width: 40px; height: 40px;
    border-radius: var(--r-sm);
    align-items: center;
    justify-content: center;
    color: var(--ink);
}
.navbar-toggle:hover { background: var(--bg-muted); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 16px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.005em;
    border-radius: var(--r-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 140ms var(--ease);
    white-space: nowrap;
    user-select: none;
}
.btn:disabled, .btn[disabled] { opacity: 0.5; cursor: not-allowed; pointer-events: none; }
.btn svg { flex-shrink: 0; }

.btn-primary {
    background: var(--brand);
    color: #FFFFFF;
    box-shadow: var(--sh-xs);
}
.btn-primary:hover { background: var(--brand-hover); box-shadow: var(--sh-brand); color: #FFFFFF; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); background: var(--brand-deep); }

.btn-secondary {
    background: var(--bg);
    color: var(--ink);
    border-color: var(--border);
    box-shadow: var(--sh-xs);
}
.btn-secondary:hover { background: var(--bg-soft); border-color: var(--border-strong); color: var(--ink);}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--border-strong);
}
.btn-outline:hover { background: var(--bg-soft); border-color: var(--ink-secondary); color: var(--ink); }

.btn-ghost { background: transparent; color: var(--ink-secondary); }
.btn-ghost:hover { background: var(--bg-soft); color: var(--ink); }

.btn-danger {
    background: var(--danger);
    color: #FFFFFF;
    border-color: var(--danger);
}
.btn-danger:hover { background: #B91C1C; color: #FFFFFF; }

.btn-link { background: transparent; color: var(--brand); padding: 0; height: auto; }
.btn-link:hover { color: var(--brand-hover); text-decoration: underline; }

.btn-sm { height: 32px; padding: 0 12px; font-size: 13px; gap: 6px; border-radius: var(--r-sm); }
.btn-lg { height: 48px; padding: 0 22px; font-size: 15px; }
.btn-xl { height: 56px; padding: 0 28px; font-size: 16px; border-radius: var(--r-lg); }
.btn-block { width: 100%; }
.btn-icon { width: 40px; padding: 0; }
.btn-sm.btn-icon { width: 32px; }

.card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    box-shadow: var(--sh-xs);
}
.card-elevated { box-shadow: var(--sh-md); }
.card-highlight {
    border-color: var(--brand);
    background: linear-gradient(180deg, var(--brand-tint), var(--bg));
}
.card-interactive { cursor: pointer; transition: all 200ms var(--ease); }
.card-interactive:hover { box-shadow: var(--sh-md); transform: translateY(-2px); border-color: var(--border-strong); }

.form-group, .field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: var(--sp-4);
}
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-4);
    margin-bottom: var(--sp-4);
}
.form-row > .form-group { margin-bottom: 0; }

label, .field-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
}
.form-hint {
    font-size: 12.5px;
    color: var(--ink-muted);
}
.form-error { font-size: 12.5px; color: var(--danger); font-weight: 500; }

input[type="text"], input[type="email"], input[type="password"],
input[type="url"], input[type="number"], input[type="search"],
input[type="tel"], textarea, select {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    height: 42px;
    padding: 0 14px;
    font-size: 14.5px;
    color: var(--ink);
    transition: border-color 120ms var(--ease), box-shadow 120ms var(--ease);
    width: 100%;
    font-family: var(--font);
}
textarea {
    height: auto;
    min-height: 120px;
    padding: 12px 14px;
    line-height: 1.5;
    resize: vertical;
}
input::placeholder, textarea::placeholder { color: var(--ink-muted); }
input:focus, textarea:focus, select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft);
}
input.has-error, textarea.has-error { border-color: var(--danger); }
input.has-error:focus, textarea.has-error:focus { box-shadow: 0 0 0 3px var(--danger-soft); }

select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.input-group { display: flex; gap: var(--sp-2); align-items: stretch; }
.input-group > input { flex: 1; }
.input-group .btn { height: 42px; }

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--ink-secondary);
    user-select: none;
    font-weight: 500;
}
.checkbox-label input[type="checkbox"], input[type="radio"] {
    width: 16px; height: 16px;
    accent-color: var(--brand);
    cursor: pointer;
}

.input-mono {
    font-family: var(--font-mono) !important;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--r-md);
    border: 1px solid;
    margin-bottom: var(--sp-4);
    font-size: 14px;
    line-height: 1.5;
}
.alert > svg { flex-shrink: 0; margin-top: 1px; }
.alert-success { background: var(--success-tint); border-color: var(--success-soft); color: #047857; }
.alert-error { background: var(--danger-tint); border-color: var(--danger-soft); color: #B91C1C; }
.alert-warning { background: var(--warning-tint); border-color: var(--warning-soft); color: #B45309; }
.alert-info { background: var(--info-soft); border-color: #BAE6FD; color: #075985; }
.alert strong { font-weight: 600; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: var(--r-full);
    background: var(--bg-muted);
    color: var(--ink-secondary);
    line-height: 1.4;
    border: 1px solid var(--border);
}
.badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
}
.badge-no-dot::before { display: none; }
.badge-brand { background: var(--brand-tint); color: var(--brand); border-color: var(--brand-soft); }
.badge-success, .badge-available { background: var(--success-tint); color: #047857; border-color: var(--success-soft); }
.badge-danger, .badge-error { background: var(--danger-tint); color: #B91C1C; border-color: var(--danger-soft); }
.badge-warning { background: var(--warning-tint); color: #B45309; border-color: var(--warning-soft); }

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    font-size: 11.5px;
    font-weight: 600;
    border-radius: var(--r-sm);
    background: var(--bg-muted);
    color: var(--ink-secondary);
    border: 1px solid var(--border);
    line-height: 1.4;
}
.platform-badge svg { width: 12px; height: 12px; }
.platform-badge[data-platform="steam"] { background: #EFF5F9; color: #1B2838; border-color: #D4E2EC; }
.platform-badge[data-platform="ubisoft"], .platform-badge[data-platform="ubisoft-connect"] { background: #EFF6FF; color: #1E40AF; border-color: #BFDBFE; }
.platform-badge[data-platform="rockstar"] { background: #FFF8E6; color: #92400E; border-color: #FDE68A; }
.platform-badge[data-platform="ea"], .platform-badge[data-platform="ea-games"] { background: #FEF2F2; color: #B91C1C; border-color: #FECACA; }
.platform-badge[data-platform="epic"] { background: var(--bg-muted); color: var(--ink); border-color: var(--border); }

.hero {
    padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 8vw, 96px);
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 800px 400px at 80% -100px, var(--brand-tint), transparent 60%),
        radial-gradient(ellipse 600px 300px at 10% 110%, var(--brand-tint), transparent 60%);
}
.hero-inner { position: relative; z-index: 2; }
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: center;
}
.hero-content { max-width: 640px; }
.hero-eyebrow { margin-bottom: var(--sp-5); }
.hero-title {
    font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin-bottom: var(--sp-5);
}
.hero-title .accent {
    color: var(--brand);
    display: inline;
}
.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--ink-secondary);
    max-width: 540px;
    line-height: 1.6;
    margin-bottom: var(--sp-8);
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3);
    margin-bottom: var(--sp-8);
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-5);
    font-size: 13px;
    color: var(--ink-secondary);
    font-weight: 500;
}
.hero-trust > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-trust svg { color: var(--success); flex-shrink: 0; }

.hero-visual {
    position: relative;
    border-radius: var(--r-xl);
    background: var(--bg);
    border: 1px solid var(--border);
    box-shadow: var(--sh-lg);
    padding: var(--sp-5);
    overflow: hidden;
}
.hero-visual::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px;
    height: 80px;
    background: linear-gradient(180deg, var(--brand-tint), transparent);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.hero-visual-inner { position: relative; }
.hero-visual-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: var(--sp-4);
}
.hero-visual-dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-visual-dot:nth-child(1) { background: #FECACA; }
.hero-visual-dot:nth-child(2) { background: #FDE68A; }
.hero-visual-dot:nth-child(3) { background: #BBF7D0; }
.hero-visual-title {
    margin-left: 8px;
    font-size: 12px;
    color: var(--ink-muted);
    font-family: var(--font-mono);
}

.hero-visual-keyinput {
    padding: var(--sp-4);
    background: var(--bg-soft);
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    margin-bottom: var(--sp-3);
}
.hero-visual-keyinput .lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
    display: block;
}
.hero-visual-keyinput .code {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.06em;
}
.hero-visual-keyinput .cursor {
    display: inline-block;
    width: 2px; height: 18px;
    background: var(--brand);
    vertical-align: middle;
    animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

.hero-visual-status {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-4);
    background: var(--success-tint);
    border: 1px solid var(--success-soft);
    border-radius: var(--r-md);
    font-size: 13px;
    color: #047857;
    font-weight: 500;
}
.hero-visual-status svg { color: var(--success); }

.hero-visual-game {
    margin-top: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
}
.hero-visual-game-info { display: flex; flex-direction: column; gap: 2px;}
.hero-visual-game-name { font-weight: 600; font-size: 14px; }
.hero-visual-game-platform { font-size: 11px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.hero-visual-game-code {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--brand);
    background: var(--brand-tint);
    padding: 4px 8px;
    border-radius: var(--r-sm);
    font-size: 13px;
}

.trust-bar {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--sp-6) 0;
}
.trust-bar-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-5);
    align-items: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--ink);
}
.trust-item-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    background: var(--brand-tint);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-item-text strong { display: block; font-weight: 600; color: var(--ink); font-size: 14px; }
.trust-item-text span { font-size: 12.5px; color: var(--ink-muted); display: block; margin-top: 1px; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--sp-5);
}
.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    transition: all 200ms var(--ease);
    box-shadow: var(--sh-xs);
}
.feature-card:hover { border-color: var(--brand-soft); box-shadow: var(--sh-md); transform: translateY(-2px); }
.feature-icon {
    width: 44px; height: 44px;
    border-radius: var(--r-md);
    background: var(--brand-tint);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-4);
}
.feature-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { color: var(--ink-secondary); font-size: 14.5px; line-height: 1.55; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-5);
    position: relative;
}
.step-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    box-shadow: var(--sh-xs);
    position: relative;
}
.step-number {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--brand);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: var(--sp-4);
}
.step-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 6px; }
.step-card p { color: var(--ink-secondary); font-size: 14.5px; line-height: 1.55; }

.platforms-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--sp-3);
    margin-top: var(--sp-8);
}
.platform-tile {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-5) var(--sp-4);
    text-align: center;
    transition: all 200ms var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
    box-shadow: var(--sh-xs);
}
.platform-tile:hover { border-color: var(--brand-soft); box-shadow: var(--sh-md); transform: translateY(-2px); }
.platform-tile-icon {
    width: 38px; height: 38px;
    color: var(--ink-secondary);
    display: inline-flex; align-items: center; justify-content: center;
    transition: color 200ms;
}
.platform-tile[data-platform="steam"]:hover .platform-tile-icon { color: var(--platform-steam); }
.platform-tile[data-platform="ubisoft"]:hover .platform-tile-icon { color: var(--platform-ubisoft); }
.platform-tile[data-platform="rockstar"]:hover .platform-tile-icon { color: var(--platform-rockstar); }
.platform-tile[data-platform="ea"]:hover .platform-tile-icon { color: var(--platform-ea); }
.platform-tile[data-platform="epic"]:hover .platform-tile-icon { color: var(--platform-epic); }
.platform-tile span { font-size: 13.5px; font-weight: 600; color: var(--ink); }

.cta-strip {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    border-radius: var(--r-xl);
    padding: clamp(32px, 4vw, 56px) clamp(24px, 4vw, 56px);
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}
.cta-strip::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 70%);
    pointer-events: none;
}
.cta-strip-inner { position: relative; z-index: 2; }
.cta-strip h2 { color: #FFFFFF; margin-bottom: var(--sp-3); }
.cta-strip p { color: rgba(255,255,255,0.9); max-width: 540px; margin: 0 auto var(--sp-6); font-size: 1.0625rem; }
.cta-strip .btn-primary {
    background: #FFFFFF;
    color: var(--brand);
}
.cta-strip .btn-primary:hover { background: var(--brand-tint); color: var(--brand-deep); }

.footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.footer-top {
    padding: var(--sp-16) 0 var(--sp-10);
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--sp-8);
}
.footer-brand h3, .footer-brand-title {
    font-size: 1.25rem;
    margin-bottom: var(--sp-3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer-brand-title > span:last-child { display: inline-flex; }
.footer-brand p { color: var(--ink-secondary); font-size: 14px; max-width: 320px; line-height: 1.6; margin-bottom: var(--sp-4); }
.footer-trust { display: flex; flex-wrap: wrap; gap: 6px; }

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: var(--sp-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 14px; color: var(--ink-secondary); transition: color 120ms; }
.footer-col a:hover { color: var(--brand); }

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: var(--sp-5) 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--sp-4);
}
.footer-copyright { font-size: 12.5px; color: var(--ink-muted); }
.footer-signature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--ink-muted);
    font-weight: 500;
    letter-spacing: -0.005em;
}
.footer-signature svg { color: var(--ink-secondary); flex-shrink: 0; }
.footer-signature a {
    color: var(--ink);
    font-weight: 600;
    transition: color 120ms var(--ease);
}
.footer-signature a:hover { color: var(--brand); }
.footer-meta { display: flex; gap: var(--sp-3); align-items: center; flex-wrap: wrap; }
.footer-meta a { font-size: 12.5px; color: var(--ink-muted); }
.footer-meta a:hover { color: var(--ink-secondary); }
.footer-meta .sep { color: var(--ink-disabled); }

.auth-body {
    background: var(--bg-soft);
    background-image:
        radial-gradient(ellipse 600px 400px at 50% 0%, var(--brand-tint), transparent 70%);
}
.auth-wrapper {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: var(--sp-8) var(--sp-4);
    position: relative;
}
.auth-card {
    width: 100%;
    max-width: 440px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: clamp(28px, 5vw, 40px);
    box-shadow: var(--sh-lg);
}
.auth-back-top {
    position: fixed;
    top: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px 8px 12px;
    background: var(--bg);
    color: var(--ink);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--r-full);
    border: 1px solid var(--border);
    box-shadow: var(--sh-sm);
    transition: all 140ms var(--ease);
    z-index: 10;
}
.auth-back-top:hover {
    background: var(--bg);
    color: var(--brand);
    border-color: var(--brand-soft);
    box-shadow: var(--sh-md);
    transform: translateX(-2px);
}
.auth-back-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    transform: rotate(180deg);
    color: var(--brand);
}
.auth-brand {
    display: flex;
    justify-content: center;
    margin-bottom: var(--sp-6);
}
.auth-eyebrow {
    text-align: center;
    margin-bottom: var(--sp-2);
}
.auth-title {
    font-size: 1.875rem;
    text-align: center;
    margin-bottom: var(--sp-2);
    font-weight: 800;
    letter-spacing: -0.03em;
}
.auth-subtitle {
    text-align: center;
    color: var(--ink-secondary);
    font-size: 0.9375rem;
    margin-bottom: var(--sp-8);
}
.auth-form { display: flex; flex-direction: column; gap: var(--sp-4); }
.auth-form .form-group { margin-bottom: 0; }
.auth-form .btn { margin-top: var(--sp-2); }
.auth-form-row { display: flex; justify-content: space-between; align-items: center; }
.auth-terms {
    align-items: flex-start;
    font-size: 13px;
    color: var(--ink-secondary);
    line-height: 1.5;
    background: var(--bg-soft);
    padding: 12px 14px;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
}
.auth-terms input { margin-top: 2px; flex-shrink: 0; }
.auth-terms a { color: var(--brand); font-weight: 600; }
.auth-terms a:hover { text-decoration: underline; }
.auth-footer-text {
    text-align: center;
    margin-top: var(--sp-5);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border-subtle);
    font-size: 14px;
    color: var(--ink-secondary);
}
.auth-footer-text a { color: var(--brand); font-weight: 600; }
.auth-footer-text a:hover { color: var(--brand-hover); }

.auth-mini-footer {
    text-align: center;
    margin-top: var(--sp-5);
    font-size: 12.5px;
    color: var(--ink-muted);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--sp-3);
}
.auth-mini-footer a { color: var(--ink-muted); }
.auth-mini-footer a:hover { color: var(--brand); }

.dash-welcome {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: var(--sp-4);
    padding: var(--sp-10) 0 var(--sp-6);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: var(--sp-10);
}
.dash-welcome h1 { font-size: clamp(1.5rem, 2vw + 0.75rem, 2rem); margin-bottom: 4px; font-weight: 800; letter-spacing: -0.03em; }
.dash-welcome h1 span { color: var(--brand); }
.dash-welcome p { color: var(--ink-secondary); font-size: 14.5px; }
.dash-welcome-meta {
    display: flex;
    gap: var(--sp-6);
    font-size: 12px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}
.dash-welcome-meta strong { color: var(--ink); display: block; font-size: 20px; margin-bottom: 2px; font-variant-numeric: tabular-nums; font-weight: 700; letter-spacing: -0.02em;}

.dash-redeem-section { margin-bottom: var(--sp-12); }
.dash-redeem, .dash-card-highlight {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: clamp(28px, 5vw, 40px);
    max-width: 680px;
    margin: 0 auto;
    box-shadow: var(--sh-md);
    position: relative;
    overflow: hidden;
}
.dash-redeem::before, .dash-card-highlight::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-deep));
}
.dash-redeem .eyebrow, .dash-card-highlight .eyebrow { display: block; text-align: center; margin-bottom: var(--sp-3); }
.dash-redeem h2, .dash-card-highlight h2 { font-size: 1.75rem; margin-bottom: var(--sp-2); text-align: center; font-weight: 800; }
.dash-redeem-sub, .dash-card-highlight > p { color: var(--ink-secondary); margin-bottom: var(--sp-5); text-align: center; }
.dash-redeem-form, .dash-card-highlight form { display: flex; flex-direction: column; gap: var(--sp-3); }
.dash-input {
    height: 56px !important;
    font-family: var(--font-mono);
    font-size: 18px;
    letter-spacing: 0.06em;
    text-align: center;
    text-transform: uppercase;
    background: var(--bg-soft) !important;
    font-weight: 600;
}
.dash-input-group { display: flex; flex-direction: column; gap: var(--sp-3); }

.dash-section { margin-top: var(--sp-12); }
.dash-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-4);
    border-bottom: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: var(--sp-3);
}
.dash-section-header h2 { font-size: 1.5rem; margin-bottom: 0; font-weight: 700; }
.dash-badge {
    font-size: 12px;
    color: var(--ink-secondary);
    padding: 4px 10px;
    background: var(--bg-muted);
    border-radius: var(--r-full);
    border: 1px solid var(--border);
    font-weight: 600;
}

.dash-deliveries { display: flex; flex-direction: column; gap: var(--sp-4); }

.dash-delivery {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    animation: deliveryIn 500ms var(--ease) forwards;
    box-shadow: var(--sh-xs);
}
@keyframes deliveryIn { to { opacity: 1; transform: translateY(0); } }

.dash-delivery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-5);
    border-bottom: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    background: var(--bg-soft);
}
.dash-delivery-title {
    font-weight: 700;
    font-size: 1.0625rem;
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-wrap: wrap;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.dash-delivery-date {
    font-size: 12px;
    color: var(--ink-muted);
    font-weight: 500;
}

.dash-delivery-body { padding: var(--sp-5); }
.dash-accounts-row { display: flex; flex-direction: column; gap: var(--sp-5); }
.dash-accounts-row.dash-accounts-dual { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.dash-account-col { display: flex; flex-direction: column; gap: var(--sp-3); }
.dash-account-title {
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: var(--sp-1);
    font-weight: 700;
}
.dash-delivery-credentials { display: flex; flex-direction: column; gap: var(--sp-2); }

.dash-field {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px 14px;
}
.dash-field-label {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
}
.dash-field-value-row {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    flex: 1;
    min-width: 0;
}
.dash-field-value {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--ink);
    word-break: break-all;
    flex: 1;
    min-width: 0;
    font-weight: 500;
}

.dash-guard-code {
    font-size: 17px !important;
    letter-spacing: 0.08em !important;
    font-weight: 700 !important;
    color: var(--brand) !important;
}
.dash-field:has(.dash-guard-code) {
    background: var(--brand-tint);
    border-color: var(--brand-soft);
}

.copyable { cursor: pointer; transition: opacity 120ms; }
.copyable:hover { opacity: 0.7; }

.btn-icon-sm {
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--ink-secondary);
    border-radius: var(--r-sm);
    transition: all 120ms var(--ease);
    flex-shrink: 0;
}
.btn-icon-sm:hover { background: var(--brand-tint); color: var(--brand); border-color: var(--brand-soft); }

.dash-video-btn { margin-top: var(--sp-3); align-self: flex-start; }

.dash-retry-timer {
    color: var(--ink-muted);
    font-size: 12.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}
.dash-retry-timer::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--warning);
    animation: pulse 1.6s var(--ease) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.guard-form { display: inline-block; width: 100%; }

.dash-once-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 12px;
    color: var(--ink-muted);
    line-height: 1.4;
}
.dash-once-hint svg { color: var(--brand); flex-shrink: 0; }
.dash-field .dash-once-hint { margin-top: 8px; }

.dash-instructions-row {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid var(--border-subtle);
}
.dash-instructions-row.dash-instructions-dual { grid-template-columns: 1fr 1fr; }
.dash-instructions-row.dash-instructions-dual > .dash-instructions:first-child { border-right: 1px solid var(--border-subtle); }
.dash-instructions { padding: var(--sp-5); background: var(--bg-soft); }
.dash-instructions-title {
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: var(--sp-3);
    font-weight: 700;
}
.dash-instructions-list {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}
.dash-instructions-list li {
    counter-increment: step;
    padding-left: 32px;
    position: relative;
    color: var(--ink-secondary);
    font-size: 14px;
    line-height: 1.55;
}
.dash-instructions-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: var(--brand);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 12px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.dash-empty {
    text-align: center;
    padding: var(--sp-16) var(--sp-4);
    color: var(--ink-muted);
}
.dash-empty svg { margin: 0 auto var(--sp-4); color: var(--ink-disabled); }
.dash-empty p { color: var(--ink-secondary); font-size: 15px; }

.select-game-header { text-align: center; margin: var(--sp-10) 0 var(--sp-10); }
.select-game-key {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--brand-tint);
    border: 1px solid var(--brand-soft);
    border-radius: var(--r-full);
    font-size: 13px;
    color: var(--brand);
    margin-bottom: var(--sp-5);
    font-weight: 500;
}
.select-game-key strong { color: var(--brand); font-family: var(--font-mono); font-weight: 700; }
.select-game-header h1 { font-size: clamp(1.875rem, 3vw + 1rem, 2.5rem); font-weight: 800; letter-spacing: -0.03em; margin-bottom: var(--sp-3); }
.select-game-sub { color: var(--ink-secondary); max-width: 580px; margin: var(--sp-3) auto 0; }
.select-game-actions { display: flex; justify-content: center; gap: var(--sp-3); margin-top: var(--sp-10); flex-wrap: wrap; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.game-card { animation: fadeUp 400ms var(--ease) both; }

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--sp-4);
}
.game-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-5);
    transition: all 180ms var(--ease);
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    position: relative;
    box-shadow: var(--sh-xs);
}
.game-card:hover { border-color: var(--brand-soft); box-shadow: var(--sh-md); transform: translateY(-2px); }
.game-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--sp-3); }
.game-card-title { font-size: 1.0625rem; font-weight: 700; line-height: 1.3; flex: 1; letter-spacing: -0.015em; }
.game-card-price {
    font-size: 15px;
    color: var(--brand);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}
.game-card-desc { font-size: 13.5px; color: var(--ink-secondary); line-height: 1.5; flex: 1; }
.game-card-actions { margin-top: var(--sp-2); }
.game-card:has(input:checked) { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.game-card:has(input:checked)::before {
    content: '';
    position: absolute;
    top: 12px; right: 12px;
    width: 22px; height: 22px;
    background: var(--brand);
    border-radius: 50%;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-position: center;
    background-repeat: no-repeat;
}

.page-header {
    padding-top: var(--sp-12);
    padding-bottom: var(--sp-10);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: var(--sp-10);
    text-align: center;
}
.page-header .eyebrow { margin-bottom: var(--sp-3); }
.page-header h1 { margin-bottom: var(--sp-3); font-weight: 800; letter-spacing: -0.03em; }
.page-header p { color: var(--ink-secondary); font-size: 1.0625rem; max-width: 600px; margin: 0 auto; }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    background: var(--bg);
    transition: all 160ms var(--ease);
    box-shadow: var(--sh-xs);
    overflow: hidden;
}
.faq-item:has([aria-expanded="true"]) { border-color: var(--brand-soft); box-shadow: var(--sh-sm);}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-5) var(--sp-6);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    transition: color 120ms var(--ease);
}
.faq-question:hover { color: var(--brand); }
.faq-question[aria-expanded="true"] { color: var(--brand); }
.faq-icon {
    width: 28px; height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-muted);
    transition: all 200ms var(--ease);
    flex-shrink: 0;
    border-radius: var(--r-sm);
    background: var(--bg-soft);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--brand); background: var(--brand-tint); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 240ms var(--ease);
}
.faq-question[aria-expanded="true"] + .faq-answer { max-height: 800px; }
.faq-answer-inner, .faq-answer > p {
    padding: 0 var(--sp-6) var(--sp-5);
    color: var(--ink-secondary);
    line-height: 1.65;
    font-size: 14.5px;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: var(--sp-12);
    max-width: 1100px;
    margin: 0 auto;
}
.legal-toc {
    position: sticky;
    top: 88px;
    align-self: flex-start;
}
.legal-toc-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--sp-3);
    padding-left: var(--sp-3);
}
.legal-toc ul { display: flex; flex-direction: column; gap: 2px; }
.legal-toc a {
    display: block;
    font-size: 13.5px;
    color: var(--ink-secondary);
    padding: 7px var(--sp-3);
    border-radius: var(--r-sm);
    transition: all 120ms;
    border-left: 2px solid transparent;
}
.legal-toc a:hover { background: var(--bg-soft); color: var(--ink); }
.legal-toc a.active { color: var(--brand); border-left-color: var(--brand); background: var(--brand-tint); }

.legal-content {
    max-width: 700px;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink-secondary);
    counter-reset: legal-section;
}
.legal-content h2 {
    font-size: 1.5rem;
    color: var(--ink);
    margin-top: var(--sp-10);
    margin-bottom: var(--sp-4);
    counter-increment: legal-section;
    position: relative;
    padding-left: 48px;
    scroll-margin-top: 88px;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h2::before {
    content: counter(legal-section, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    color: var(--brand);
    background: var(--brand-tint);
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0;
}
.legal-content h3 {
    font-size: 1.0625rem;
    color: var(--ink);
    margin-top: var(--sp-5);
    margin-bottom: var(--sp-2);
    font-weight: 600;
}
.legal-content p { margin-bottom: var(--sp-3); }
.legal-content ul, .legal-content ol { padding-left: var(--sp-6); margin-bottom: var(--sp-4); }
.legal-content ul li, .legal-content ol li { margin-bottom: 8px; list-style-position: outside;}
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content strong { color: var(--ink); font-weight: 600; }
.legal-content a { color: var(--brand); }
.legal-content a:hover { color: var(--brand-hover); text-decoration: underline; }
.legal-content blockquote {
    border-left: 3px solid var(--brand);
    padding: var(--sp-4) var(--sp-5);
    margin: var(--sp-5) 0;
    color: var(--ink);
    background: var(--brand-tint);
    border-radius: var(--r-md);
    font-weight: 500;
}
.legal-content blockquote p:last-child { margin-bottom: 0; }
.legal-content code {
    font-family: var(--font-mono);
    font-size: 13px;
    background: var(--bg-muted);
    padding: 2px 6px;
    border-radius: var(--r-xs);
    color: var(--ink);
    border: 1px solid var(--border);
}
.legal-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    background: var(--bg-muted);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-size: 12px;
    color: var(--ink-secondary);
    margin-top: var(--sp-3);
    font-weight: 500;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--sp-4);
    max-width: 880px;
    margin: 0 auto;
}
.contact-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-6);
    box-shadow: var(--sh-xs);
    transition: all 180ms var(--ease);
}
.contact-card:hover { box-shadow: var(--sh-md); border-color: var(--brand-soft); }
.contact-card h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 6px; }
.contact-card p { color: var(--ink-secondary); font-size: 14px; line-height: 1.55; }
.contact-card a {
    color: var(--brand);
    font-weight: 600;
    font-size: 14px;
    margin-top: var(--sp-3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.error-section { padding: clamp(80px, 12vw, 140px) 0; text-align: center; }
.error-wrap { max-width: 560px; margin: 0 auto; }
.error-eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-muted);
    letter-spacing: 0.08em;
    margin-bottom: var(--sp-4);
    text-transform: uppercase;
}
.error-display {
    font-size: clamp(7rem, 18vw, 12rem);
    line-height: 0.95;
    color: var(--brand);
    letter-spacing: -0.05em;
    margin-bottom: var(--sp-5);
    font-weight: 800;
}
.error-title { font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem); margin-bottom: var(--sp-3); font-weight: 800; letter-spacing: -0.03em; }
.error-sub { color: var(--ink-secondary); margin-bottom: var(--sp-6); font-size: 1rem; }
.error-actions { display: flex; justify-content: center; gap: var(--sp-3); flex-wrap: wrap; }

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(8px) saturate(140%);
    -webkit-backdrop-filter: blur(8px) saturate(140%);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--sp-4);
    opacity: 0;
    transition: opacity 200ms var(--ease);
}
.modal-overlay.is-open { display: flex; opacity: 1; }
.modal-overlay.is-open .modal { transform: scale(1) translateY(0); opacity: 1; }

.modal {
    width: 100%;
    max-width: 720px;
    max-height: 86vh;
    background: var(--bg);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.96) translateY(12px);
    opacity: 0;
    transition: transform 240ms var(--ease), opacity 200ms var(--ease);
}

.modal-header {
    padding: var(--sp-5) var(--sp-6);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-3);
    flex-shrink: 0;
}
.modal-title-wrap { display: flex; flex-direction: column; gap: 2px; }
.modal-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand);
}
.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0;
}
.modal-close {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--bg-soft);
    color: var(--ink-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 120ms var(--ease);
    flex-shrink: 0;
}
.modal-close:hover { background: var(--bg-muted); color: var(--ink); }

.modal-body {
    padding: var(--sp-5) var(--sp-6);
    overflow-y: auto;
    flex: 1;
    color: var(--ink-secondary);
    font-size: 14.5px;
    line-height: 1.7;
}
.modal-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-top: var(--sp-5);
    margin-bottom: var(--sp-2);
    letter-spacing: -0.01em;
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { margin-bottom: var(--sp-3); }
.modal-body ul, .modal-body ol { padding-left: var(--sp-5); margin-bottom: var(--sp-3); }
.modal-body ul li { list-style: disc; margin-bottom: 6px; }
.modal-body ol li { list-style: decimal; margin-bottom: 6px; }
.modal-body strong { color: var(--ink); font-weight: 600; }
.modal-body blockquote {
    border-left: 3px solid var(--brand);
    padding: 12px 16px;
    margin: var(--sp-3) 0;
    background: var(--brand-tint);
    border-radius: var(--r-md);
    color: var(--ink);
    font-weight: 500;
}

.modal-footer {
    padding: var(--sp-4) var(--sp-6);
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: flex-end;
    gap: var(--sp-3);
    flex-shrink: 0;
    background: var(--bg-soft);
}

body.modal-open { overflow: hidden; }

.toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
.toast {
    background: var(--ink);
    color: #FFFFFF;
    border-left: 3px solid var(--success);
    padding: 12px 16px;
    border-radius: var(--r-md);
    font-size: 14px;
    box-shadow: var(--sh-lg);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    min-width: 200px;
    animation: toastIn 240ms var(--ease);
    pointer-events: auto;
    font-weight: 500;
}
.toast.toast-error { border-left-color: var(--danger); }
@keyframes toastIn { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mt-10 { margin-top: var(--sp-10); }
.mt-16 { margin-top: var(--sp-16); }
.mb-4 { margin-bottom: var(--sp-4); }
.reset-link { text-decoration: none; color: inherit; }
.hint-muted { font-size: 13px; color: var(--ink-muted); margin-top: var(--sp-2); }
.honeypot { position: absolute; opacity: 0; pointer-events: none; }
.brand-mark-sm { width: 28px; height: 28px; font-size: 14px; }
.eyebrow-center { display: flex; justify-content: center; }
.dash-welcome-meta-date { font-size: 14px; letter-spacing: 0; }
.section-cta { padding: var(--sp-8) 0 var(--sp-10); }
.legal-content.modal-body[data-flush] { padding: 0; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: var(--sp-2); }
.gap-3 { gap: var(--sp-3); }
.gap-4 { gap: var(--sp-4); }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.text-center { text-align: center; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
    .hero-visual { max-width: 480px; margin: 0 auto; }
    .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; margin-bottom: var(--sp-4); }
    .legal-wrapper { grid-template-columns: 1fr; }
    .legal-toc { position: static; }
    .legal-toc ul { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .navbar-toggle { display: inline-flex; }
    .navbar-menu {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: var(--sp-3);
        gap: 4px;
        box-shadow: var(--sh-md);
    }
    .navbar-menu.is-open { display: flex; }
    .navbar-menu li { width: 100%; list-style: none; }
    .navbar-menu a:not(.btn) {
        display: block;
        padding: 10px var(--sp-3);
        border-radius: var(--r-md);
    }
    .navbar-menu li + li:has(.btn) { margin-top: var(--sp-2); }
    .navbar-menu li.navbar-cta { margin-top: 0; }
    .navbar-menu .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 44px;
        padding: 0 16px;
        line-height: 1;
        text-align: center;
    }
    .navbar-menu .btn-sm {
        height: 44px;
        font-size: 14px;
        gap: 8px;
    }
    .navbar-menu .btn-secondary {
        background: var(--bg-soft);
        border-color: var(--border);
    }
    .navbar-menu .btn-secondary:hover {
        background: var(--bg-muted);
        border-color: var(--border-strong);
    }

    .footer-top { grid-template-columns: 1fr; gap: var(--sp-6); padding-top: var(--sp-10); }
    .footer-bottom { flex-direction: column; text-align: center; }

    .dash-welcome { flex-direction: column; align-items: flex-start; padding-top: var(--sp-6); }
    .dash-accounts-row.dash-accounts-dual { grid-template-columns: 1fr; }
    .dash-instructions-row.dash-instructions-dual { grid-template-columns: 1fr; }
    .dash-instructions-row.dash-instructions-dual > .dash-instructions:first-child {
        border-right: 0;
        border-bottom: 1px solid var(--border-subtle);
    }
}

[data-theme="dark"] {
    --bg:             #0A1018;
    --bg-soft:        #121925;
    --bg-muted:       #1A2333;
    --bg-tint:        #243149;
    --bg-nav:         #0E1623;
    --nav-bg:         rgba(14,22,35,0.78);
    --hero-tint:      rgba(45,90,145,0.12);

    --border:         #1F2A3D;
    --border-strong:  #2D3A52;
    --border-subtle:  #161F2F;

    --ink:            #F1F5F9;
    --ink-secondary:  #B8C5DD;
    --ink-muted:      #8997B5;
    --ink-disabled:   #5A6886;

    --brand:          #2d5a91;
    --brand-hover:    #3a6fae;
    --brand-deep:     #1f4068;
    --brand-soft:     rgba(45,90,145,0.32);
    --brand-tint:     rgba(45,90,145,0.16);

    --success:        #34D399;
    --success-soft:   rgba(52,211,153,0.20);
    --success-tint:   rgba(52,211,153,0.10);
    --danger:         #F87171;
    --danger-soft:    rgba(248,113,113,0.20);
    --danger-tint:    rgba(248,113,113,0.10);
    --warning:        #FBBF24;
    --warning-soft:   rgba(251,191,36,0.20);
    --warning-tint:   rgba(251,191,36,0.10);
    --info:           #38BDF8;
    --info-soft:      rgba(56,189,248,0.18);

    --sh-xs:  0 1px 2px rgba(0,0,0,0.55);
    --sh-sm:  0 2px 6px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.35);
    --sh-md:  0 6px 14px -2px rgba(0,0,0,0.5), 0 2px 6px -2px rgba(0,0,0,0.4);
    --sh-lg:  0 14px 32px -10px rgba(0,0,0,0.65), 0 4px 12px -4px rgba(0,0,0,0.45);
    --sh-xl:  0 26px 56px -14px rgba(0,0,0,0.7);
    --sh-brand: 0 4px 18px -4px rgba(45,90,145,0.55), 0 0 0 1px rgba(45,90,145,0.30);
}

[data-theme="dark"] body {
    background:
        radial-gradient(ellipse 1000px 600px at 50% -10%, rgba(45,90,145,0.10), transparent 70%),
        var(--bg);
}
[data-theme="dark"] .hero-visual-status { color: #6EE7B7; }
[data-theme="dark"] .modal-overlay { background: rgba(0,0,0,0.65); }
[data-theme="dark"] .toast { background: var(--bg-tint); color: var(--ink); border: 1px solid var(--border); }
[data-theme="dark"] .cta-strip { background: linear-gradient(135deg, #1f4068 0%, #2d5a91 60%, #1a2f4d 100%); }
[data-theme="dark"] .cta-strip .btn-primary { background: var(--ink); color: var(--bg); }
[data-theme="dark"] .cta-strip .btn-primary:hover { background: #FFFFFF; color: var(--brand-deep); }
[data-theme="dark"] .navbar.scrolled { background: rgba(14,22,35,0.92); }
[data-theme="dark"] .brand-mark {
    background: linear-gradient(135deg, var(--brand) 0%, #3a6fae 100%);
    box-shadow: 0 4px 12px -2px rgba(45,90,145,0.5);
}

.theme-toggle {
    width: 38px;
    height: 38px;
    border-radius: var(--r-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-secondary);
    background: transparent;
    border: 1px solid var(--border-subtle);
    transition: all 160ms var(--ease);
    flex-shrink: 0;
}
.theme-toggle:hover {
    color: var(--ink);
    background: var(--bg-muted);
    border-color: var(--border);
}
.theme-toggle .theme-icon { display: inline-flex; align-items: center; justify-content: center; }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: inline-flex; }
[data-theme="dark"] .theme-toggle .icon-moon { display: inline-flex; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
.navbar-theme-toggle { margin-right: 6px; }
@media (max-width: 768px) {
    .navbar-theme-toggle-mobile { margin-left: auto; }
    .navbar-inner .theme-toggle.navbar-theme-toggle-desktop { display: none; }
}
@media (min-width: 769px) {
    .navbar-theme-toggle-mobile { display: none !important; }
}

.why-nova {
    background:
        radial-gradient(ellipse 800px 500px at 20% 0%, var(--brand-tint), transparent 60%),
        radial-gradient(ellipse 700px 400px at 80% 100%, var(--brand-tint), transparent 70%),
        var(--bg-soft);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.why-nova-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: start;
}
.why-nova-lead .eyebrow { margin-bottom: var(--sp-3); }
.why-nova-lead h2 { font-size: clamp(1.875rem, 3vw + 0.5rem, 2.625rem); margin-bottom: var(--sp-4); }
.why-nova-lead h2 .accent {
    background: linear-gradient(135deg, var(--brand) 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.why-nova-lead p { font-size: 1.0625rem; line-height: 1.7; margin-bottom: var(--sp-4); color: var(--ink-secondary); }
.why-nova-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-4);
    margin-top: var(--sp-6);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--border-subtle);
}
.why-nova-stat strong {
    display: block;
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}
.why-nova-stat span {
    font-size: 12.5px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.why-nova-pillars { display: flex; flex-direction: column; gap: var(--sp-4); }
.why-nova-pillar {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
    padding: var(--sp-5);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xs);
    transition: all 200ms var(--ease);
}
.why-nova-pillar:hover { transform: translateX(4px); border-color: var(--brand-soft); box-shadow: var(--sh-md); }
.why-nova-pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--brand-tint);
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.why-nova-pillar h4 { font-size: 1rem; margin-bottom: 4px; font-weight: 700; }
.why-nova-pillar p { font-size: 14px; color: var(--ink-secondary); line-height: 1.55; margin: 0; }
@media (max-width: 900px) {
    .why-nova-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
}
@media (max-width: 480px) {
    .why-nova-stats { grid-template-columns: 1fr; }
}

.games-hero {
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    padding: clamp(36px, 5vw, 56px) 0 var(--sp-6);
    border-bottom: 1px solid var(--border-subtle);
}
.games-hero h1 {
    font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
    margin-bottom: var(--sp-3);
    font-weight: 800;
    letter-spacing: -0.03em;
}
.games-hero p { color: var(--ink-secondary); max-width: 600px; font-size: 1.0625rem; }

.games-toolbar {
    margin-top: var(--sp-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-4);
    flex-wrap: wrap;
}
.games-search {
    position: relative;
    flex: 1;
    min-width: 240px;
    max-width: 420px;
}
.games-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ink-muted);
    pointer-events: none;
    display: inline-flex;
}
.games-search input {
    padding-left: 42px;
    height: 46px;
    font-size: 14.5px;
    background: var(--bg);
}
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.platform-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    background: var(--bg-muted);
    border-radius: var(--r-lg);
    padding: 4px;
    border: 1px solid var(--border-subtle);
}
.platform-tab {
    padding: 8px 14px;
    border-radius: var(--r-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-secondary);
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: all 140ms var(--ease);
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.platform-tab:hover { color: var(--ink); background: var(--bg); }
.platform-tab.is-active {
    background: var(--ink);
    color: var(--bg);
    box-shadow: var(--sh-xs);
}
.platform-tab .count {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 500;
    padding-left: 2px;
}

.games-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-3);
    padding: var(--sp-6) 0 var(--sp-4);
}
.games-meta-count { font-size: 13.5px; color: var(--ink-secondary); font-weight: 500; }
.games-meta-count strong { color: var(--ink); font-weight: 700; }

.games-store-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
@media (min-width: 540px) { .games-store-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .games-store-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .games-store-grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1280px) { .games-store-grid { grid-template-columns: repeat(6, 1fr); } }

.store-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 220ms var(--ease);
    box-shadow: var(--sh-xs);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.store-card:hover {
    border-color: var(--brand-soft);
    transform: translateY(-3px);
    box-shadow: var(--sh-md);
    color: inherit;
}
.store-card.is-special {
    border-color: var(--brand);
    box-shadow: 0 0 0 1px var(--brand-soft), var(--sh-sm);
}
.store-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 600 / 900;
    background: linear-gradient(135deg, var(--bg-muted), var(--bg-tint));
    overflow: hidden;
}
.store-card-image img,
.store-card-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 320ms var(--ease);
    display: block;
}
.store-card:hover .store-card-image img,
.store-card:hover .store-card-image video { transform: scale(1.05); }
.store-card-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-muted);
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--bg-muted), var(--bg-tint));
}
.store-card-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    border-radius: var(--r-full);
    background: var(--brand);
    color: #FFFFFF;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px -2px rgba(0,0,0,0.3);
}
.store-card-badge .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #34D399;
    box-shadow: 0 0 0 0 rgba(52,211,153,0.6);
    animation: storePulse 1.6s var(--ease) infinite;
}
@keyframes storePulse {
    0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.7); }
    70% { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
    100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

.store-card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}
.store-card-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 35px;
    letter-spacing: -0.01em;
}
.store-card-platform {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--ink-muted);
    font-weight: 600;
    margin-top: auto;
}
.store-card-platform .icon { color: var(--ink-secondary); display: inline-flex; }

.games-empty {
    text-align: center;
    padding: var(--sp-16) var(--sp-4);
    color: var(--ink-muted);
}
.games-empty svg { margin: 0 auto var(--sp-4); color: var(--ink-disabled); }
.games-empty h3 { font-size: 1.125rem; color: var(--ink); margin-bottom: var(--sp-2); }
.games-empty p { color: var(--ink-secondary); font-size: 14.5px; }

.games-pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: var(--sp-10) 0 var(--sp-4);
    flex-wrap: wrap;
}
.games-pagination a, .games-pagination span {
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 600;
    border-radius: var(--r-md);
    background: var(--bg);
    color: var(--ink-secondary);
    border: 1px solid var(--border);
    transition: all 140ms var(--ease);
    text-decoration: none;
}
.games-pagination a:hover {
    color: var(--ink);
    border-color: var(--border-strong);
    background: var(--bg-soft);
}
.games-pagination .is-active {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
}
.games-pagination .is-disabled { opacity: 0.4; pointer-events: none; }
.games-pagination .gap-dots {
    border: 0;
    background: transparent;
    color: var(--ink-muted);
    min-width: 28px;
}

.about-page { padding-bottom: 0; }

.about-hero {
    position: relative;
    padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
    overflow: hidden;
    background:
        radial-gradient(ellipse 900px 500px at 85% 10%, var(--brand-tint), transparent 60%),
        radial-gradient(ellipse 700px 400px at 10% 90%, var(--brand-tint), transparent 65%);
    border-bottom: 1px solid var(--border-subtle);
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--sp-12);
    align-items: center;
    position: relative;
    z-index: 2;
}
.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-full);
    font-size: 12px;
    color: var(--ink-secondary);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: var(--sp-5);
}
.about-kicker::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft);
}
.about-hero h1 {
    font-size: clamp(2.25rem, 4vw + 0.5rem, 3.75rem);
    letter-spacing: -0.04em;
    line-height: 1.02;
    margin-bottom: var(--sp-5);
    font-weight: 800;
}
.about-hero h1 .grad {
    background: linear-gradient(135deg, var(--brand) 0%, #8B5CF6 60%, #EC4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.about-hero-lead {
    font-size: clamp(1.0625rem, 1.4vw + 0.5rem, 1.25rem);
    color: var(--ink-secondary);
    line-height: 1.65;
    max-width: 620px;
}
.about-hero-actions {
    margin-top: var(--sp-6);
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
}

.about-emblem {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 380px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-emblem-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--r-2xl);
    background: linear-gradient(135deg, var(--brand) 0%, #6366F1 50%, #8B5CF6 100%);
    box-shadow:
        0 30px 60px -20px rgba(37,99,235,0.55),
        0 0 0 1px rgba(255,255,255,0.1) inset;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-emblem-inner::before,
.about-emblem-inner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 65%);
    filter: blur(8px);
}
.about-emblem-inner::before { width: 70%; height: 70%; top: -20%; right: -20%; }
.about-emblem-inner::after { width: 60%; height: 60%; bottom: -20%; left: -20%; background: radial-gradient(circle, rgba(236,72,153,0.4), transparent 65%); }
.about-emblem-mark {
    position: relative;
    z-index: 2;
    font-size: clamp(7rem, 14vw, 12rem);
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -0.06em;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.about-emblem-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(255,255,255,0.95);
    color: var(--brand-deep);
    border-radius: var(--r-full);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.about-emblem-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--brand);
    animation: pulse 1.6s var(--ease) infinite;
}
@media (max-width: 900px) {
    .about-hero-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
    .about-emblem { max-width: 260px; margin: 0 auto; }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-5);
    margin-top: clamp(40px, 6vw, 64px);
    padding: var(--sp-6) 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.about-stat strong {
    display: block;
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2.25rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    margin-bottom: 6px;
}
.about-stat span {
    font-size: 12.5px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 600;
}
.about-stat strong .accent {
    background: linear-gradient(135deg, var(--brand) 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
@media (max-width: 760px) { .about-stats { grid-template-columns: repeat(2, 1fr); } }

.about-section { padding: clamp(56px, 7vw, 88px) 0; }
.about-section-sub { padding: clamp(36px, 5vw, 56px) 0; }
.about-section-first { padding-top: 0; }
.about-section + .about-section { border-top: 1px solid var(--border-subtle); }

.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--sp-12);
    align-items: start;
}
.about-story h2 {
    font-size: clamp(1.625rem, 2.4vw + 0.5rem, 2.25rem);
    margin-bottom: var(--sp-5);
    letter-spacing: -0.025em;
}
.about-story p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ink-secondary);
    margin-bottom: var(--sp-4);
}
.about-story p strong { color: var(--ink); font-weight: 600; }

.about-quote {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-8);
    box-shadow: var(--sh-sm);
    position: relative;
    overflow: hidden;
}
.about-quote::before {
    content: '"';
    position: absolute;
    top: -40px;
    right: 20px;
    font-size: 220px;
    line-height: 1;
    color: var(--brand-tint);
    font-weight: 800;
    font-family: Georgia, serif;
    pointer-events: none;
}
.about-quote-text {
    position: relative;
    z-index: 2;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: var(--sp-5);
}
.about-quote-by {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}
.about-quote-by .brand-mark {
    width: 36px; height: 36px;
    font-size: 14px;
    border-radius: 8px;
}
.about-quote-by-text strong {
    display: block;
    font-size: 14px;
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.005em;
}
.about-quote-by-text span {
    font-size: 12.5px;
    color: var(--ink-muted);
    letter-spacing: 0.02em;
}
@media (max-width: 900px) { .about-story-grid { grid-template-columns: 1fr; gap: var(--sp-6); } }

.about-pillars {
    background: var(--bg-soft);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}
.about-pillars-head { max-width: 720px; margin: 0 auto var(--sp-10); text-align: center; }
.about-pillars-head h2 { font-size: clamp(1.625rem, 2.4vw + 0.5rem, 2.25rem); margin-bottom: var(--sp-3); letter-spacing: -0.025em; }
.about-pillars-head p { font-size: 1.0625rem; color: var(--ink-secondary); }

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
}
.about-pillar {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-8) var(--sp-6);
    box-shadow: var(--sh-xs);
    position: relative;
    transition: all 220ms var(--ease);
    overflow: hidden;
}
.about-pillar:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-md);
    border-color: var(--brand-soft);
}
.about-pillar-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--sp-4);
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-pillar-num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.about-pillar-icon {
    width: 48px; height: 48px;
    border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--brand-tint), var(--brand-soft));
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-4);
}
.about-pillar h3 {
    font-size: 1.25rem;
    margin-bottom: var(--sp-3);
    letter-spacing: -0.02em;
}
.about-pillar p {
    color: var(--ink-secondary);
    line-height: 1.65;
    font-size: 14.5px;
    margin: 0;
}
@media (max-width: 900px) { .about-pillars-grid { grid-template-columns: 1fr; } }

.about-principles { display: flex; flex-direction: column; gap: 0; max-width: 880px; margin: 0 auto; }
.about-principles-head { text-align: center; margin-bottom: var(--sp-10); }
.about-principles-head h2 { font-size: clamp(1.625rem, 2.4vw + 0.5rem, 2.25rem); margin-bottom: var(--sp-3); letter-spacing: -0.025em; }
.about-principles-head p { font-size: 1.0625rem; color: var(--ink-secondary); max-width: 600px; margin: 0 auto; }

.about-principle {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--sp-6);
    padding: var(--sp-6) 0;
    border-top: 1px solid var(--border-subtle);
    align-items: start;
}
.about-principle:last-child { border-bottom: 1px solid var(--border-subtle); }
.about-principle-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.about-principle h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    letter-spacing: -0.015em;
}
.about-principle p {
    color: var(--ink-secondary);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}
@media (max-width: 600px) {
    .about-principle { grid-template-columns: 1fr; gap: var(--sp-2); }
    .about-principle-num { font-size: 2rem; }
}

.about-trust {
    background:
        radial-gradient(ellipse 700px 400px at 50% 0%, var(--brand-tint), transparent 60%),
        var(--bg);
    border-top: 1px solid var(--border-subtle);
}
.about-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-4);
    max-width: 920px;
    margin: 0 auto;
}
.about-trust-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-5);
    text-align: center;
    box-shadow: var(--sh-xs);
}
.about-trust-item svg { color: var(--brand); margin-bottom: var(--sp-3); }
.about-trust-item strong {
    display: block;
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.about-trust-item span {
    font-size: 12.5px;
    color: var(--ink-muted);
    line-height: 1.4;
}
@media (max-width: 720px) { .about-trust-grid { grid-template-columns: repeat(2, 1fr); } }

.about-cta {
    background: linear-gradient(135deg, var(--brand) 0%, #6366F1 50%, #8B5CF6 100%);
    border-radius: var(--r-2xl);
    padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 56px);
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    margin-top: var(--sp-12);
}
.about-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 400px 200px at 20% 30%, rgba(255,255,255,0.15), transparent 60%),
        radial-gradient(ellipse 400px 200px at 80% 70%, rgba(255,255,255,0.1), transparent 60%);
    pointer-events: none;
}
.about-cta > * { position: relative; z-index: 2; }
.about-cta h2 {
    font-size: clamp(1.625rem, 2.4vw + 0.5rem, 2.25rem);
    color: #FFFFFF;
    margin-bottom: var(--sp-3);
    letter-spacing: -0.025em;
}
.about-cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.0625rem;
    max-width: 560px;
    margin: 0 auto var(--sp-6);
}
.about-cta .btn { background: #FFFFFF; color: var(--brand-deep); }
.about-cta .btn:hover { background: var(--brand-tint); color: var(--brand-deep); transform: translateY(-2px); }
.about-cta-row {
    display: inline-flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
    justify-content: center;
}
.about-cta .btn-outline { background: transparent; color: #FFFFFF; border-color: rgba(255,255,255,0.4); }
.about-cta .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #FFFFFF; color: #FFFFFF; }

[data-theme="dark"] .about-quote::before { color: rgba(45,90,145,0.28); }
[data-theme="dark"] .about-emblem-tag { background: var(--bg); color: var(--brand); border: 1px solid var(--border); }

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--sp-6);
    max-width: 1000px;
    margin: 0 auto;
}
@media (max-width: 860px) { .contact-cta-grid { grid-template-columns: 1fr; } }
.contact-hero-card {
    background:
        radial-gradient(ellipse 500px 300px at 0% 0%, var(--brand-tint), transparent 60%),
        var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: clamp(28px, 4vw, 40px);
    box-shadow: var(--sh-sm);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}
.contact-hero-card h2 { font-size: 1.5rem; margin-bottom: 0; }
.contact-hero-card p { color: var(--ink-secondary); font-size: 15px; line-height: 1.6; margin: 0; }
.contact-hero-card .btn { align-self: flex-start; margin-top: var(--sp-2); }
.contact-side {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}
.contact-side-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-5);
    transition: all 180ms var(--ease);
    display: flex;
    gap: var(--sp-4);
    align-items: flex-start;
}
.contact-side-card:hover { border-color: var(--brand-soft); box-shadow: var(--sh-sm); }
.contact-side-card .feature-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-side-card h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-side-card p { color: var(--ink-secondary); font-size: 13.5px; line-height: 1.55; margin-bottom: var(--sp-3); }
.contact-side-card a {
    color: var(--brand);
    font-weight: 600;
    font-size: 13.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.contact-side-card a:hover { color: var(--brand-hover); }

