:root {
    color-scheme: dark;
    --navy-1000: #030817;
    --navy-950: #050d20;
    --navy-900: #07152f;
    --navy-850: #0a1b3b;
    --navy-800: #102650;
    --navy-700: #18366b;
    --ink: #071326;
    --cream: #fff8e8;
    --cream-2: #f4ead1;
    --white: #ffffff;
    --mist: #bdc9df;
    --muted: #8fa1c1;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.22);
    --gold: #ffc857;
    --gold-bright: #ffda7a;
    --gold-deep: #ce8f26;
    --coral: #ff7168;
    --coral-deep: #e94c56;
    --cyan: #71e4df;
    --violet: #a78bfa;
    --success: #66e0a3;
    --danger: #ff8b8b;
    --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.34);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-pill: 999px;
    --container: 1232px;
    --wide-container: 1376px;
    --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Segoe UI", Inter, ui-sans-serif, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    background: var(--navy-950);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.search-open {
    overflow: hidden;
}

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

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

button,
select {
    cursor: pointer;
}

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

p,
h1,
h2,
h3,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    letter-spacing: -0.035em;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.65rem, 5vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 3.4vw, 3.35rem);
}

h3 {
    font-size: 1.2rem;
}

:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    background: var(--cream);
    color: var(--ink);
    font-weight: 800;
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

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

.container,
.wide-container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

.wide-container {
    width: min(100% - 32px, var(--wide-container));
}

.section-shell {
    position: relative;
    padding-block: 74px;
}

.site-main {
    min-height: 60vh;
    overflow: clip;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 0.73rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.lead {
    color: var(--mist);
    font-size: 1.16rem;
    line-height: 1.75;
}

.muted-copy {
    color: var(--muted);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-size: 0.91rem;
    font-weight: 850;
    letter-spacing: 0.01em;
    line-height: 1;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button:active {
    transform: translateY(0);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    transform: none;
}

.button--primary {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    box-shadow: 0 12px 30px rgba(255, 190, 65, 0.2);
    color: var(--ink);
}

.button--primary:hover {
    background: var(--cream);
    box-shadow: 0 15px 35px rgba(255, 200, 87, 0.28);
}

.button--ghost {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
}

.button--ghost:hover {
    border-color: var(--gold);
    background: rgba(255, 200, 87, 0.08);
}

.button--glass {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(7, 21, 47, 0.46);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.button--light {
    background: var(--cream);
    color: var(--ink);
}

.button--outline-light {
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--white);
}

.button--small {
    min-height: 42px;
    padding-inline: 19px;
    font-size: 0.82rem;
}

.button--wide {
    width: 100%;
}

.text-link,
.muted-link,
.arrow-link,
.back-link {
    font-size: 0.9rem;
    font-weight: 750;
}

.text-link:hover,
.muted-link:hover,
.arrow-link:hover,
.back-link:hover {
    color: var(--gold);
}

.muted-link {
    color: var(--muted);
}

.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold-bright);
}

.arrow-link span {
    transition: transform 180ms ease;
}

.arrow-link:hover span {
    transform: translateX(4px);
}

.utility-bar {
    height: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--navy-1000);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 30px;
    text-transform: uppercase;
}

.utility-bar__inner {
    display: flex;
    justify-content: space-between;
}

.utility-bar a:hover {
    color: var(--gold);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 13, 32, 0.94);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    display: flex;
    height: 72px;
    align-items: center;
    gap: 44px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.brand__seal {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 28%, var(--gold-bright), var(--gold-deep) 62%, #7f4f13);
    box-shadow: inset 0 0 0 4px rgba(7, 21, 47, 0.28), 0 0 22px rgba(255, 200, 87, 0.14);
    color: var(--ink);
    font-size: 1rem;
    font-weight: 950;
}

.brand__wordmark {
    display: flex;
    flex-direction: column;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.05;
}

.brand__wordmark strong {
    color: var(--gold-bright);
    font-size: 0.94rem;
    font-weight: 950;
}

.desktop-nav {
    display: flex;
    height: 100%;
    align-items: stretch;
    gap: 8px;
}

.desktop-nav a {
    position: relative;
    display: flex;
    align-items: center;
    padding-inline: 14px;
    color: var(--mist);
    font-size: 0.85rem;
    font-weight: 750;
}

.desktop-nav a::after {
    position: absolute;
    right: 14px;
    bottom: -1px;
    left: 14px;
    height: 2px;
    background: var(--gold);
    content: "";
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
    color: var(--white);
}

.desktop-nav a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

.icon-button,
.menu-toggle,
.favorite-button,
.icon-text-button,
.text-button,
.footer-preference-link {
    border: 0;
    background: transparent;
}

.icon-button {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.icon-button:hover {
    border-color: var(--gold);
    background: rgba(255, 200, 87, 0.08);
}

.search-glyph {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.search-glyph::after {
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 7px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
    transform: rotate(45deg);
    transform-origin: left center;
}

.coin-balance {
    display: flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 5px 12px 5px 6px;
    border: 1px solid rgba(255, 200, 87, 0.2);
    border-radius: var(--radius-pill);
    background: rgba(255, 200, 87, 0.06);
    font-size: 0.82rem;
}

.coin-token {
    display: inline-grid;
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid #ffe4a1;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 28%, #fff3ba, var(--gold) 48%, #a96a17);
    box-shadow: inset 0 0 0 3px rgba(93, 52, 6, 0.2), 0 6px 12px rgba(0, 0, 0, 0.18);
    color: #513008;
    font-size: 0.67rem;
    font-weight: 950;
}

.coin-token--large {
    width: 78px;
    height: 78px;
    font-size: 1.6rem;
}

.profile-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 750;
}

.profile-link__avatar {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: var(--coral);
    color: var(--navy-950);
    font-weight: 900;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px 8px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 3px auto;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.site-search,
.mobile-menu {
    position: absolute;
    z-index: 110;
    top: 100%;
    right: 0;
    left: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 13, 32, 0.985);
    box-shadow: var(--shadow-lg);
}

.site-search__form {
    padding-block: 26px 30px;
}

.site-search__form > label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.field-with-action {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.field-with-action input,
.catalog-search input,
.faq-search input,
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field-with-action input {
    padding-inline: 18px;
}

input::placeholder,
textarea::placeholder {
    color: #788aa9;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 4px rgba(255, 200, 87, 0.1);
}

select option {
    background: var(--navy-900);
    color: var(--white);
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 0;
    margin-top: 12px;
}

.search-suggestions a {
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    color: var(--mist);
    font-size: 0.78rem;
}

.mobile-menu__nav {
    display: grid;
    max-height: calc(100vh - 72px);
    padding-block: 12px 28px;
    overflow-y: auto;
}

.mobile-menu__nav > a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    font-weight: 800;
}

.mobile-menu__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 22px;
}

.service-notice,
.noscript-message {
    padding: 10px 20px;
    background: #5c2b34;
    color: #ffe9e9;
    font-size: 0.82rem;
    text-align: center;
}

.home-hero {
    padding-block: 24px;
    background: radial-gradient(circle at 50% 0%, rgba(60, 86, 150, 0.2), transparent 56%);
}

.hero-banner {
    position: relative;
    height: 296px;
    overflow: hidden;
    border: 1px solid rgba(255, 210, 115, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    isolation: isolate;
}

.hero-banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 52%;
}

.hero-intro {
    min-height: 294px;
    padding-block: 40px 46px;
}

.hero-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 712px) minmax(300px, 480px);
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-intro h1 {
    max-width: 712px;
    margin: 0;
    font-size: clamp(3.15rem, 4.7vw, 4.2rem);
    font-weight: 650;
    line-height: 1.03;
}

.hero-intro__copy > p {
    margin-bottom: 22px;
    color: var(--mist);
    font-size: 0.95rem;
    line-height: 1.7;
}

.hero-intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.game-highlights {
    min-height: 716px;
    background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.game-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.game-card--highlight .game-card__cover {
    aspect-ratio: 604 / 332;
}

.game-card--highlight .game-cover {
    background-size: 200% auto;
}

.game-card--highlight .game-card__body {
    align-items: center;
    padding-top: 18px;
}

.game-card--highlight h3 {
    font-size: 1.32rem;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px rgba(102, 224, 163, 0.7);
}

.quick-highlights {
    padding-block: 0 56px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--line);
}

.highlight-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    padding: 28px 28px;
    border-right: 1px solid var(--line);
}

.highlight-card:last-child {
    border-right: 0;
}

.highlight-card__number,
.feature-card__mark,
.tool-card__number,
.contact-methods article > span {
    color: var(--gold);
    font-size: 0.71rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.highlight-card h2 {
    margin-bottom: 6px;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.highlight-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.intro-section {
    background: var(--cream);
    color: var(--ink);
}

.split-story {
    display: grid;
    min-height: 470px;
    grid-template-columns: 1fr 0.85fr;
    align-items: center;
    gap: 80px;
}

.split-story__copy {
    max-width: 650px;
}

.split-story__copy h2 {
    margin-bottom: 24px;
}

.split-story__copy .lead {
    color: #48536b;
}

.split-story__copy .arrow-link {
    color: #a35d13;
}

.coin-orbit {
    position: relative;
    width: min(100%, 420px);
    aspect-ratio: 1;
    margin-inline: auto;
}

.coin-orbit__ring {
    position: absolute;
    border: 1px solid rgba(107, 72, 31, 0.24);
    border-radius: 50%;
}

.coin-orbit__ring--outer {
    inset: 4%;
}

.coin-orbit__ring--inner {
    inset: 21%;
    border-style: dashed;
}

.coin-orbit__ring::before,
.coin-orbit__ring::after {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    content: "";
}

.coin-orbit__ring::before {
    top: 12%;
    right: 12%;
}

.coin-orbit__ring::after {
    bottom: 8%;
    left: 18%;
}

.coin-orbit__coin {
    position: absolute;
    display: grid;
    place-items: center;
    border: 2px solid #fff1b9;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 26%, #fff7cc, #ffc651 40%, #b77319 82%);
    box-shadow: inset 0 0 0 8px rgba(104, 61, 11, 0.2), 0 30px 45px rgba(85, 48, 14, 0.24);
    color: #5f3709;
    font-weight: 950;
}

.coin-orbit__coin--main {
    inset: 28%;
    font-size: 4rem;
}

.coin-orbit__coin--one,
.coin-orbit__coin--two {
    width: 58px;
    height: 58px;
}

.coin-orbit__coin--one {
    top: 9%;
    left: 17%;
    transform: rotate(-16deg);
}

.coin-orbit__coin--two {
    right: 8%;
    bottom: 18%;
    transform: rotate(12deg);
}

.spark {
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--coral);
    transform: rotate(45deg);
}

.spark--one { top: 25%; right: 12%; }
.spark--two { bottom: 13%; left: 33%; width: 11px; height: 11px; }
.spark--three { top: 54%; left: 4%; background: var(--gold-deep); }

.feature-section {
    background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
}

.section-heading {
    margin-bottom: 38px;
}

.section-heading h2 {
    margin-bottom: 12px;
}

.section-heading > p,
.section-heading > div + p {
    color: var(--muted);
}

.section-heading--center {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.section-heading--split > div {
    max-width: 680px;
}

.section-heading--split > p {
    max-width: 430px;
    margin-bottom: 8px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    min-height: 218px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.feature-card:hover {
    border-color: rgba(255, 200, 87, 0.42);
    background: rgba(255, 200, 87, 0.045);
    transform: translateY(-4px);
}

.feature-card__mark {
    display: block;
    margin-bottom: 38px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
}

.streak-section {
    background: var(--navy-950);
}

.streak-panel {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) 1.28fr;
    gap: 42px;
    padding: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 200, 87, 0.2);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 85% -30%, rgba(255, 200, 87, 0.24), transparent 43%), linear-gradient(130deg, #102958, #091a39);
    box-shadow: var(--shadow-lg);
}

.streak-panel__copy h2 {
    margin-bottom: 17px;
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.streak-panel__copy > p:not(.eyebrow) {
    margin-bottom: 24px;
    color: var(--mist);
}

.streak-days {
    display: grid;
    align-items: end;
    grid-template-columns: repeat(7, minmax(58px, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.streak-days li {
    display: flex;
    min-height: 154px;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 9px;
    padding: 14px 5px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(2, 8, 24, 0.34);
}

.streak-days li:nth-child(2) { min-height: 164px; }
.streak-days li:nth-child(3) { min-height: 174px; }
.streak-days li:nth-child(4) { min-height: 184px; }
.streak-days li:nth-child(5) { min-height: 194px; }
.streak-days li:nth-child(6) { min-height: 204px; }
.streak-days li:nth-child(7) { min-height: 218px; }

.streak-days__final {
    border-color: var(--gold) !important;
    background: linear-gradient(180deg, rgba(255, 200, 87, 0.18), rgba(2, 8, 24, 0.38)) !important;
}

.streak-days__day {
    color: var(--muted);
    font-size: 0.66rem;
    white-space: nowrap;
}

.streak-days strong {
    font-size: 0.75rem;
}

.packages-section {
    background: linear-gradient(180deg, #091733, #061128);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.package-card {
    position: relative;
    padding: 27px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.035);
}

.package-card--popular {
    border-color: rgba(255, 200, 87, 0.7);
    background: linear-gradient(145deg, rgba(255, 200, 87, 0.12), rgba(255, 255, 255, 0.03));
}

.package-card__ribbon,
.store-package__label {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    background: var(--coral);
    color: var(--navy-950);
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.package-card__name {
    margin-bottom: 24px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.package-card__coins {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.package-card__coins strong {
    font-size: 1.8rem;
    letter-spacing: -0.04em;
}

.package-card__bonus {
    min-height: 26px;
    margin-bottom: 23px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 750;
}

.package-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.package-card__footer > span {
    max-width: 135px;
    color: var(--mist);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.25;
}

.responsible-callout {
    padding-block: 48px;
    background: var(--coral-deep);
}

.responsible-panel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.responsible-panel__badge {
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: inset 0 0 0 7px rgba(7, 21, 47, 0.12);
    font-size: 1.3rem;
    font-weight: 950;
}

.responsible-panel .eyebrow {
    color: #ffe2be;
}

.responsible-panel h2 {
    margin-bottom: 7px;
    font-size: clamp(1.65rem, 2.7vw, 2.6rem);
}

.responsible-panel__copy p:last-child {
    max-width: 730px;
    margin-bottom: 0;
    color: #ffe6e5;
}

.reviews-section {
    background: var(--cream);
    color: var(--ink);
}

.reviews-section .section-heading > p {
    color: #626d82;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 12px;
}

.review-card {
    margin: 0;
    padding: 27px;
    border: 1px solid rgba(7, 19, 38, 0.12);
    border-radius: var(--radius-md);
    background: #fffdf6;
}

.review-card--featured {
    padding-block: 34px;
    background: var(--navy-900);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.review-card blockquote {
    margin-bottom: 30px;
    font-size: 0.95rem;
    font-weight: 650;
    line-height: 1.7;
}

.review-card figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 50%;
    background: var(--coral);
    color: var(--ink);
    font-weight: 900;
}

.review-card figcaption span:last-child {
    display: flex;
    flex-direction: column;
}

.review-card small {
    color: #6e7788;
}

.review-card--featured small {
    color: var(--muted);
}

.home-faq {
    background: var(--navy-900);
}

.faq-preview {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 80px;
}

.faq-preview__intro {
    position: sticky;
    top: 110px;
    align-self: start;
}

.faq-preview__intro h2 {
    margin-bottom: 20px;
}

.faq-preview__intro > p:not(.eyebrow) {
    color: var(--muted);
}

.accordion-item {
    border-bottom: 1px solid var(--line);
}

.accordion-item:first-child {
    border-top: 1px solid var(--line);
}

.accordion-item h2,
.accordion-item h3 {
    margin: 0;
}

.accordion-item h2 button,
.accordion-item h3 button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 2px;
    border: 0;
    background: none;
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 800;
    text-align: left;
}

.accordion-icon {
    position: relative;
    display: block;
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
}

.accordion-icon::before,
.accordion-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
}

.accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 180ms ease;
}

.accordion-item.is-open .accordion-icon {
    border-color: var(--gold);
    color: var(--gold);
}

.accordion-item.is-open .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.accordion-panel {
    padding: 0 50px 24px 2px;
    color: var(--muted);
}

.accordion-panel p {
    margin: 0;
}

.featured-games {
    background: linear-gradient(180deg, #07152f, #050d20);
}

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

.game-card {
    min-width: 0;
}

.game-card__cover {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--navy-850);
}

.game-cover {
    position: absolute;
    inset: 0;
    background-image: url("../images/game-covers-sheet.png");
    background-repeat: no-repeat;
    background-size: 200% 200%;
    transform: scale(1.002);
    transition: filter 260ms ease, transform 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.game-cover--image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sprite-catfish { background-position: 0 0; }
.sprite-mental { background-position: 100% 0; }
.sprite-neon { background-position: 0 100%; }
.sprite-kiwi { background-position: 100% 100%; }

.game-card__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(3, 8, 23, 0.76));
    opacity: 0.42;
    transition: opacity 220ms ease;
}

.game-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    background: rgba(5, 13, 32, 0.68);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translate(-50%, -42%) scale(0.82);
    transition: opacity 220ms ease, transform 220ms ease;
}

.game-card__play span {
    width: 0;
    height: 0;
    margin-left: 4px;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid var(--white);
}

.game-card__cover:hover .game-cover,
.game-card__cover:focus-visible .game-cover {
    filter: saturate(1.1) brightness(0.8);
    transform: scale(1.055);
}

.game-card__cover:hover .game-card__shade,
.game-card__cover:focus-visible .game-card__shade,
.game-card__cover:hover .game-card__play,
.game-card__cover:focus-visible .game-card__play {
    opacity: 1;
}

.game-card__cover:hover .game-card__play,
.game-card__cover:focus-visible .game-card__play {
    transform: translate(-50%, -50%) scale(1);
}

.game-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    background: var(--coral);
    color: var(--ink);
    font-size: 0.65rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.game-card__body {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 3px 0;
}

.game-card__category {
    margin-bottom: 4px;
    color: var(--gold);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.game-card h3 {
    margin-bottom: 0;
    font-size: 1.03rem;
    letter-spacing: -0.015em;
}

.game-card h3 a:hover {
    color: var(--gold-bright);
}

.favorite-button {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--mist);
    font-size: 1.1rem;
    line-height: 1;
}

.favorite-button:hover,
.favorite-button[aria-pressed="true"] {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--ink);
}

.closing-cta {
    padding-block: 86px;
    background: radial-gradient(circle at center, rgba(255, 200, 87, 0.13), transparent 52%), var(--navy-1000);
}

.closing-cta__inner {
    max-width: 850px;
    text-align: center;
}

.closing-cta h2 {
    margin-bottom: 29px;
}

.page-hero {
    padding-block: 64px 70px;
    border-bottom: 1px solid var(--line);
    background: radial-gradient(circle at 80% 0%, rgba(255, 113, 104, 0.15), transparent 38%), radial-gradient(circle at 20% 0%, rgba(255, 200, 87, 0.12), transparent 34%), var(--navy-900);
}

.page-hero__inner {
    max-width: 880px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.page-hero__inner > p:last-child {
    max-width: 680px;
    margin: 0 auto;
    color: var(--mist);
    font-size: 1.08rem;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0 0 24px;
    padding: 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 750;
    list-style: none;
}

.breadcrumbs li + li::before {
    margin-right: 9px;
    color: #60708d;
    content: "/";
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs--compact ol {
    justify-content: start;
    margin-bottom: 22px;
}

.catalog-section {
    background: linear-gradient(180deg, var(--navy-950), #07152f);
}

.catalog-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.catalog-toolbar h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.catalog-search,
.faq-search {
    position: relative;
    display: block;
    width: min(100%, 340px);
}

.catalog-search .search-glyph,
.faq-search .search-glyph {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 17px;
    color: var(--muted);
    transform: translateY(-50%);
}

.catalog-search input,
.faq-search input {
    padding: 0 16px 0 48px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px;
}

.filter-chip {
    min-height: 38px;
    padding-inline: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
}

.filter-chip:hover,
.filter-chip.is-active {
    border-color: var(--gold);
    background: rgba(255, 200, 87, 0.1);
    color: var(--gold-bright);
}

.game-grid--catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 35px;
}

.empty-state {
    max-width: 510px;
    margin: 40px auto;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    text-align: center;
}

.empty-state__mark {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin: 0 auto 20px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 900;
}

.empty-state h2,
.empty-state h3 {
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--muted);
}

.catalog-note {
    padding-block: 44px;
    background: var(--cream);
    color: var(--ink);
}

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

.compact-callout h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.compact-callout .arrow-link {
    flex: 0 0 auto;
    color: #945812;
}

.play-section {
    padding-top: 38px;
    background: radial-gradient(circle at 50% 0%, rgba(64, 95, 170, 0.2), transparent 40%), var(--navy-950);
}

.play-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 25px;
}

.play-heading h1 {
    margin: 0;
    font-size: clamp(2rem, 3.6vw, 3.6rem);
}

.play-heading__actions {
    display: flex;
    gap: 8px;
}

.icon-text-button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 9px;
    padding-inline: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    color: var(--mist);
    font-size: 0.76rem;
    font-weight: 800;
}

.icon-text-button:hover,
.icon-text-button[aria-pressed="true"] {
    border-color: var(--gold);
    color: var(--gold);
}

.sound-glyph {
    width: 12px;
    height: 12px;
    border: 4px solid currentColor;
    border-right: 0;
    border-radius: 3px 0 0 3px;
}

.fullscreen-glyph {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 2px;
}

.game-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 690px;
    overflow: hidden;
    border: 1px solid rgba(255, 200, 87, 0.24);
    border-radius: var(--radius-md);
    background: #020611;
    box-shadow: var(--shadow-lg);
}

.game-frame {
    width: 100%;
    height: 100%;
    border: 0;
    background: #020611;
}

.game-stage__loading {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    background: var(--navy-1000);
    color: var(--muted);
    transition: opacity 250ms ease, visibility 250ms ease;
}

.game-stage.is-ready .game-stage__loading {
    visibility: hidden;
    opacity: 0;
}

.loader,
.button-loader {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.14);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 800ms linear infinite;
}

.button-loader {
    display: none;
    width: 17px;
    height: 17px;
    border-width: 2px;
    border-top-color: currentColor;
}

.is-submitting .button-loader {
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.game-stage:fullscreen {
    display: grid;
    width: 100vw;
    height: 100vh;
    max-height: none;
    border: 0;
    border-radius: 0;
    place-items: center;
    background: #000;
}

.game-stage:fullscreen .game-frame {
    width: min(100vw, 177.77vh);
    height: min(100vh, 56.25vw);
}

.game-session-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    margin-top: 14px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted);
    font-size: 0.78rem;
}

.game-session-note p {
    margin: 0;
}

.game-session-note strong {
    color: var(--mist);
}

.game-session-note a {
    color: var(--gold);
    font-weight: 800;
}

.game-detail-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
    padding-top: 52px;
}

.game-detail-grid article > p:not(.eyebrow) {
    color: var(--muted);
}

.game-detail-grid h2 {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.safe-play-card {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 24px;
    border: 1px solid rgba(255, 113, 104, 0.35);
    border-radius: var(--radius-md);
    background: rgba(255, 113, 104, 0.07);
}

.safe-play-card__mark {
    display: grid;
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--coral);
    border-radius: 50%;
    color: var(--coral);
    font-weight: 900;
}

.safe-play-card h2 {
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.safe-play-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.related-games {
    background: var(--navy-900);
}

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

.game-grid--related .game-card__cover {
    aspect-ratio: 1.2;
}

.store-section {
    background: linear-gradient(180deg, var(--navy-950), #091936);
}

.store-balance {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 28px;
    margin-bottom: 68px;
    padding: 25px 30px;
    border: 1px solid rgba(255, 200, 87, 0.22);
    border-radius: var(--radius-md);
    background: linear-gradient(120deg, rgba(255, 200, 87, 0.09), rgba(255, 255, 255, 0.025));
}

.store-balance h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 1.75rem;
}

.store-balance p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.store-heading {
    margin-bottom: 45px;
}

.store-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 18px;
}

.store-package {
    position: relative;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.035);
    text-align: center;
}

.store-package--popular {
    padding-block: 48px;
    border-color: var(--gold);
    background: radial-gradient(circle at 50% 5%, rgba(255, 200, 87, 0.18), transparent 38%), rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow-lg);
}

.store-package__label {
    top: 18px;
    right: 50%;
    transform: translateX(50%);
}

.store-package__art {
    position: relative;
    display: grid;
    width: 132px;
    height: 110px;
    place-items: center;
    margin: 8px auto 22px;
}

.store-package__art > span:not(.coin-token) {
    position: absolute;
    width: 54px;
    height: 54px;
    border: 1px solid #ffe4a1;
    border-radius: 50%;
    background: var(--gold-deep);
    box-shadow: inset 0 0 0 5px rgba(74, 40, 7, 0.2);
}

.store-package__art > span:nth-child(2) { top: 5px; left: 4px; transform: rotate(-18deg); }
.store-package__art > span:nth-child(3) { right: 2px; bottom: 2px; transform: rotate(18deg); }
.store-package__art .coin-token { z-index: 1; }

.store-package h3 {
    margin-bottom: 10px;
    font-size: 1.7rem;
}

.store-package__bonus {
    min-height: 48px;
    color: var(--muted);
    font-size: 0.84rem;
}

.store-package__price {
    display: flex;
    min-height: 62px;
    flex-direction: column;
    justify-content: center;
    margin: 24px 0;
    border-block: 1px solid var(--line);
}

.store-package__price span {
    color: var(--muted);
    font-size: 0.68rem;
    text-transform: uppercase;
}

.store-package__price strong {
    color: var(--gold);
    font-size: 0.92rem;
}

.store-package form .button {
    width: 100%;
}

.store-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 68px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.store-trust-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 13px;
}

.store-trust-grid article > span {
    grid-row: 1 / 3;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 900;
}

.store-trust-grid h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.store-trust-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.responsible-panel--compact .responsible-panel__badge {
    width: 72px;
    height: 72px;
}

.auth-section {
    min-height: calc(100vh - 102px);
    padding-block: 40px 70px;
    background: radial-gradient(circle at 14% 10%, rgba(255, 113, 104, 0.16), transparent 30%), radial-gradient(circle at 86% 15%, rgba(255, 200, 87, 0.12), transparent 30%), var(--navy-950);
}

.auth-layout {
    display: grid;
    min-height: 690px;
    grid-template-columns: 0.92fr 1.08fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--navy-900);
    box-shadow: var(--shadow-lg);
}

.auth-story {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 44px;
    overflow: hidden;
    background: radial-gradient(circle at 68% 38%, rgba(255, 200, 87, 0.24), transparent 27%), linear-gradient(145deg, #183b74, #0a1c3d 60%, #07152f);
}

.auth-story::after {
    position: absolute;
    right: -100px;
    bottom: -130px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(255, 200, 87, 0.25);
    border-radius: 50%;
    box-shadow: inset 0 0 0 42px rgba(255, 200, 87, 0.04), inset 0 0 0 82px rgba(255, 200, 87, 0.03);
    content: "";
}

.back-link {
    position: relative;
    z-index: 1;
    color: var(--mist);
}

.auth-story__content {
    position: relative;
    z-index: 1;
    max-width: 470px;
    margin-block: auto 35px;
}

.auth-story__content h1 {
    margin-bottom: 22px;
    font-size: clamp(2.5rem, 4.5vw, 4.3rem);
}

.auth-story__content > p:last-child {
    color: var(--mist);
}

.auth-benefits {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.auth-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-top: 1px solid var(--line);
    color: var(--mist);
    font-size: 0.84rem;
}

.auth-benefits span {
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 900;
}

.auth-story__legal {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
}

.auth-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(35px, 6vw, 78px);
    background: rgba(3, 8, 23, 0.34);
}

.auth-card--register {
    justify-content: start;
}

.auth-card__heading {
    margin-bottom: 30px;
}

.auth-card__heading h2 {
    margin-bottom: 10px;
    font-size: clamp(2.1rem, 3vw, 3rem);
}

.auth-card__heading p:last-child {
    color: var(--muted);
}

.auth-card__heading a,
.check-field a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-stack {
    display: grid;
    gap: 19px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-row--between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-field {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.form-field > span:first-child,
.form-field > label {
    color: var(--mist);
    font-size: 0.77rem;
    font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 13px 15px;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-field small {
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.4;
}

.form-field small:not(:empty)[data-field-error] {
    color: var(--danger);
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
    border-color: var(--danger);
}

.password-field {
    position: relative;
    display: block;
}

.password-field input {
    padding-right: 65px;
}

.password-field button {
    position: absolute;
    top: 50%;
    right: 10px;
    padding: 6px 7px;
    border: 0;
    background: transparent;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 850;
    transform: translateY(-50%);
}

.check-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.75rem;
    line-height: 1.5;
}

.check-field input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: var(--gold);
}

.form-alert {
    padding: 12px 14px;
    border: 1px solid rgba(255, 139, 139, 0.38);
    border-radius: var(--radius-sm);
    background: rgba(255, 139, 139, 0.09);
    color: #ffd0d0;
    font-size: 0.78rem;
}

.form-alert.is-success {
    border-color: rgba(102, 224, 163, 0.4);
    background: rgba(102, 224, 163, 0.08);
    color: #bff6d9;
}

.form-security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 25px 0 0;
    color: var(--muted);
    font-size: 0.68rem;
}

.auth-coin-art {
    position: relative;
    z-index: 1;
    display: flex;
    height: 160px;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.auth-coin-art span {
    display: grid;
    width: 105px;
    height: 105px;
    place-items: center;
    border: 2px solid #ffecaa;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #fff2b6, var(--gold) 45%, #a96a17);
    box-shadow: inset 0 0 0 9px rgba(85, 45, 4, 0.16), 0 28px 40px rgba(0, 0, 0, 0.27);
    color: #573208;
    font-size: 2rem;
    font-weight: 950;
}

.auth-coin-art span:nth-child(1) { transform: translateX(35px) rotate(-15deg) scale(0.78); }
.auth-coin-art span:nth-child(2) { z-index: 1; }
.auth-coin-art span:nth-child(3) { transform: translateX(-35px) rotate(15deg) scale(0.72); }

.account-section {
    background: linear-gradient(180deg, var(--navy-950), #081834);
}

.account-guest {
    max-width: 680px;
    margin-inline: auto;
    padding: 55px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.035);
    text-align: center;
}

.account-guest__mark,
.account-avatar {
    display: grid;
    width: 82px;
    height: 82px;
    place-items: center;
    margin: 0 auto 22px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: rgba(255, 200, 87, 0.08);
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 950;
}

.account-guest h2 {
    margin-bottom: 12px;
}

.account-guest > p:not(.eyebrow) {
    color: var(--muted);
}

.account-guest > div {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.account-summary {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    margin-bottom: 25px;
    padding: 30px;
    border: 1px solid rgba(255, 200, 87, 0.2);
    border-radius: var(--radius-md);
    background: radial-gradient(circle at 90% 20%, rgba(255, 200, 87, 0.13), transparent 38%), rgba(255, 255, 255, 0.035);
}

.account-identity {
    display: flex;
    align-items: center;
    gap: 18px;
}

.account-avatar {
    width: 68px;
    height: 68px;
    flex: 0 0 auto;
    margin: 0;
    background: var(--coral);
    color: var(--ink);
}

.account-identity h2 {
    margin-bottom: 4px;
    font-size: 1.65rem;
}

.account-identity p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.account-balance {
    display: grid;
    justify-items: end;
}

.account-balance > span {
    color: var(--muted);
    font-size: 0.7rem;
    text-transform: uppercase;
}

.account-balance strong {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.55rem;
}

.account-balance a {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
}

.account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.account-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.account-card--wide {
    grid-column: 1 / -1;
}

.account-card h2 {
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.account-card > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 0.83rem;
}

.preference-form {
    display: grid;
    gap: 18px;
    margin-top: 25px;
}

.switch-field {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 15px;
}

.switch-field > span:first-child {
    display: grid;
}

.switch-field small {
    color: var(--muted);
    font-size: 0.72rem;
}

.switch-field input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.switch {
    position: relative;
    width: 44px;
    height: 24px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-pill);
    background: var(--navy-950);
    transition: background 160ms ease;
}

.switch::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--muted);
    content: "";
    transition: background 160ms ease, transform 160ms ease;
}

.switch-field input:checked + .switch {
    background: var(--gold);
}

.switch-field input:checked + .switch::after {
    background: var(--ink);
    transform: translateX(20px);
}

.switch-field input:focus-visible + .switch {
    outline: 3px solid var(--cyan);
    outline-offset: 3px;
}

.security-list {
    display: grid;
    gap: 15px;
    margin: 22px 0 25px;
    padding: 0;
    list-style: none;
}

.security-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.security-list .status-dot {
    margin-top: 8px;
}

.security-list p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.favorite-list {
    min-height: 90px;
    padding: 20px;
    border: 1px dashed var(--line-strong);
    border-radius: var(--radius-sm);
}

.favorite-list a {
    display: inline-flex;
    margin: 4px;
    padding: 8px 13px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    font-size: 0.76rem;
    font-weight: 800;
}

.account-logout {
    margin-top: 30px;
    text-align: right;
}

.text-button,
.footer-preference-link {
    padding: 0;
    color: var(--muted);
    font-size: 0.77rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.text-button:hover,
.footer-preference-link:hover {
    color: var(--gold);
}

.faq-section {
    background: linear-gradient(180deg, var(--navy-950), #081834);
}

.faq-layout {
    display: grid;
    grid-template-columns: 285px 1fr;
    align-items: start;
    gap: 70px;
}

.faq-sidebar {
    position: sticky;
    top: 105px;
}

.faq-search {
    width: 100%;
    margin-bottom: 22px;
}

.faq-categories {
    display: grid;
    margin-bottom: 28px;
    border-block: 1px solid var(--line);
}

.faq-categories button {
    padding: 13px 3px;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 750;
    text-align: left;
}

.faq-categories button:last-child {
    border-bottom: 0;
}

.faq-categories button:hover,
.faq-categories button.is-active {
    color: var(--gold);
}

.faq-help-card {
    padding: 23px;
    border: 1px solid rgba(255, 200, 87, 0.24);
    border-radius: var(--radius-md);
    background: rgba(255, 200, 87, 0.06);
}

.faq-help-card h2 {
    margin-bottom: 8px;
    font-size: 1.17rem;
}

.faq-help-card p {
    color: var(--muted);
    font-size: 0.76rem;
}

.faq-results__heading {
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.accordion--large .accordion-item {
    padding-block: 5px;
}

.accordion-item__category {
    margin: 19px 0 -12px;
    color: var(--gold);
    font-size: 0.64rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.accordion--large .accordion-item h2 button {
    font-size: 1.14rem;
}

.contact-section {
    background: linear-gradient(180deg, var(--navy-950), #07152f);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
}

.contact-copy h2 {
    margin-bottom: 20px;
}

.contact-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-methods {
    display: grid;
    gap: 16px;
    margin-top: 38px;
}

.contact-methods article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding-top: 19px;
    border-top: 1px solid var(--line);
}

.contact-methods h3 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.contact-methods p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.contact-methods a {
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 800;
}

.contact-card {
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.035);
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.character-count {
    justify-self: end;
    margin-top: -4px;
    color: var(--muted) !important;
    font-size: 0.68rem !important;
}

.responsible-intro,
.balance-tools,
.warning-signs,
.external-help,
.legal-section {
    background: var(--navy-950);
}

.balance-tools,
.external-help {
    background: var(--navy-900);
}

.legal-lead-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 75px;
}

.legal-lead-grid h2 {
    margin: 0;
}

.prose {
    color: var(--mist);
    font-size: 0.98rem;
    line-height: 1.8;
}

.prose a {
    color: var(--gold-bright);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.tool-card {
    min-height: 330px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.03);
}

.tool-card__number {
    display: block;
    margin-bottom: 45px;
}

.tool-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.tool-card > p {
    color: var(--muted);
    font-size: 0.83rem;
}

.tool-card .form-field {
    margin-block: 23px 13px;
}

.warning-panel {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    padding: 48px;
    border: 1px solid rgba(255, 113, 104, 0.3);
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 0 0, rgba(255, 113, 104, 0.12), transparent 36%), rgba(255, 255, 255, 0.025);
}

.warning-panel h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 26px;
    margin: 0;
    padding: 0;
    color: var(--mist);
    font-size: 0.84rem;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 23px;
}

.check-list li::before {
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 8px;
    height: 8px;
    border: 1px solid var(--coral);
    border-radius: 50%;
    content: "";
}

.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.help-card {
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.035);
}

.help-card--primary {
    border-color: rgba(255, 113, 104, 0.4);
    background: var(--coral-deep);
}

.help-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.help-card p:not(.eyebrow) {
    color: var(--mist);
}

.help-card--primary .eyebrow,
.help-card--primary p:not(.eyebrow) {
    color: #ffe4e1;
}

.help-card p a {
    color: var(--white);
    font-weight: 900;
    text-decoration: underline;
}

.external-note {
    max-width: 760px;
    margin: 26px auto 0;
    color: var(--muted);
    font-size: 0.72rem;
    text-align: center;
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 760px);
    justify-content: space-between;
    gap: 75px;
}

.legal-nav {
    position: sticky;
    top: 105px;
    align-self: start;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.025);
}

.legal-nav nav {
    display: grid;
    margin-bottom: 22px;
}

.legal-nav a {
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.78rem;
}

.legal-nav a:hover {
    color: var(--gold);
}

.legal-nav > p:last-child {
    margin: 0;
    color: #70819f;
    font-size: 0.67rem;
}

.legal-content section {
    padding-block: 0 38px;
    scroll-margin-top: 105px;
}

.legal-content section + section {
    padding-top: 38px;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    margin-bottom: 17px;
    color: var(--white);
    font-size: 1.65rem;
}

.not-found-section {
    display: grid;
    min-height: 65vh;
    place-items: center;
    background: radial-gradient(circle at center, rgba(255, 200, 87, 0.12), transparent 46%), var(--navy-950);
}

.not-found-card {
    max-width: 720px;
    padding-block: 30px;
    text-align: center;
}

.not-found-art {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
    color: var(--gold);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 950;
    letter-spacing: -0.08em;
    line-height: 1;
}

.not-found-art .coin-token {
    width: clamp(70px, 10vw, 112px);
    height: clamp(70px, 10vw, 112px);
    font-size: 2rem;
}

.not-found-card h1 {
    margin-bottom: 15px;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.not-found-card > p:not(.eyebrow) {
    color: var(--muted);
}

.not-found-card > div:last-child {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.7fr 0.7fr;
    gap: 55px;
    padding-block: 68px 48px;
}

.brand--footer {
    margin-bottom: 23px;
}

.footer-brand > p {
    max-width: 350px;
    color: var(--muted);
    font-size: 0.82rem;
}

.age-badge {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    margin-top: 22px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--mist);
    font-size: 0.75rem;
    font-weight: 900;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h2 {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 0.73rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-column a,
.footer-preference-link {
    color: var(--muted);
    font-size: 0.78rem;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-disclaimer {
    padding-block: 23px;
    border-block: 1px solid var(--line);
}

.footer-disclaimer p {
    margin: 0;
    color: #6f7e9a;
    font-size: 0.68rem;
    line-height: 1.65;
}

.footer-disclaimer strong {
    color: #909fbb;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-block: 22px 28px;
    color: #62718d;
    font-size: 0.68rem;
}

.footer-bottom p {
    margin: 0;
}

.cookie-banner {
    position: fixed;
    z-index: 1000;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: min(calc(100% - 44px), 560px);
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 22px;
    padding: 24px;
    border: 1px solid rgba(255, 200, 87, 0.35);
    border-radius: var(--radius-md);
    background: rgba(7, 21, 47, 0.98);
    box-shadow: var(--shadow-lg);
}

.cookie-banner h2 {
    margin-bottom: 7px;
    font-size: 1.18rem;
}

.cookie-banner p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 0.72rem;
}

.cookie-banner__actions {
    display: grid;
    gap: 8px;
}

.toast-region {
    position: fixed;
    z-index: 1200;
    top: 18px;
    right: 18px;
    display: grid;
    width: min(calc(100% - 36px), 370px);
    gap: 9px;
    pointer-events: none;
}

.toast {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 10px;
    padding: 14px 15px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    background: rgba(7, 21, 47, 0.98);
    box-shadow: var(--shadow-sm);
    color: var(--mist);
    font-size: 0.78rem;
    pointer-events: auto;
}

.toast::before {
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--success);
    content: "";
}

.toast--error::before {
    background: var(--danger);
}

.toast button {
    padding: 0 3px;
    border: 0;
    background: transparent;
    color: var(--muted);
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 0;
    }

    .site-header__inner {
        gap: 22px;
    }

    .header-register,
    .profile-link span:last-child {
        display: none;
    }

    .streak-panel {
        grid-template-columns: 1fr;
    }

    .streak-panel__copy {
        max-width: 680px;
    }

    .faq-preview,
    .contact-layout {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .section-shell {
        padding-block: 60px;
    }

    .desktop-nav,
    .header-login {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-banner {
        height: 260px;
    }

    .hero-banner > img {
        object-position: 43% center;
    }

    .hero-intro__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .hero-intro h1 {
        max-width: 760px;
    }

    .hero-intro__copy {
        max-width: 620px;
    }

    .highlight-grid,
    .feature-grid,
    .package-grid,
    .review-grid,
    .store-package-grid,
    .store-trust-grid,
    .tool-grid {
        grid-template-columns: 1fr 1fr;
    }

    .highlight-card:nth-child(2) {
        border-right: 0;
    }

    .highlight-card:last-child {
        grid-column: 1 / -1;
        border-top: 1px solid var(--line);
    }

    .split-story {
        grid-template-columns: 1fr 0.72fr;
        gap: 30px;
    }

    .coin-orbit__coin--main {
        font-size: 2.4rem;
    }

    .streak-days {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .streak-days li {
        min-width: 70px;
    }

    .review-card--featured {
        padding-block: 31px;
    }

    .faq-preview,
    .faq-layout,
    .legal-lead-grid,
    .warning-panel,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .faq-preview__intro,
    .faq-sidebar,
    .legal-nav {
        position: static;
    }

    .faq-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .faq-sidebar > .eyebrow {
        grid-column: 1 / -1;
        margin-bottom: -8px;
    }

    .faq-categories {
        margin: 0;
    }

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

    .auth-layout {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .auth-story {
        padding: 32px;
    }

    .auth-benefits {
        display: none;
    }

    .auth-card {
        padding: 42px;
    }

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

    .account-card--wide {
        grid-column: auto;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .tool-card:last-child,
    .store-trust-grid article:last-child {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 78px;
    }

    .utility-bar {
        height: 26px;
        font-size: 0.58rem;
        line-height: 26px;
    }

    .utility-bar__inner span {
        display: none;
    }

    .utility-bar__inner {
        justify-content: center;
    }

    .site-header__inner {
        height: 66px;
    }

    .brand__seal {
        width: 34px;
        height: 34px;
    }

    .brand__wordmark {
        font-size: 0.62rem;
    }

    .brand__wordmark strong {
        font-size: 0.78rem;
    }

    .coin-balance {
        padding-right: 8px;
    }

    .coin-balance strong {
        display: none;
    }

    .profile-link {
        display: none;
    }

    .site-search__form {
        padding-block: 20px 24px;
    }

    .field-with-action {
        grid-template-columns: 1fr;
    }

    .section-shell {
        padding-block: 50px;
    }

    .home-hero {
        padding-block: 12px 20px;
    }

    .wide-container {
        width: calc(100% - 20px);
    }

    .hero-banner {
        height: 230px;
        border-radius: 24px;
    }

    .hero-banner > img {
        object-position: 38% center;
    }

    .hero-intro {
        padding-block: 34px 44px;
    }

    .hero-intro h1 {
        font-size: 2.6rem;
    }

    .game-highlight-grid {
        grid-template-columns: 1fr;
    }

    .quick-highlights {
        padding-block: 0 45px;
    }

    .highlight-grid,
    .feature-grid,
    .package-grid,
    .review-grid,
    .store-package-grid,
    .store-trust-grid,
    .tool-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .highlight-card:nth-child(2),
    .highlight-card:last-child {
        grid-column: auto;
        border-top: 0;
    }

    .highlight-card:last-child {
        border-bottom: 0;
    }

    .split-story {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .coin-orbit {
        width: min(88vw, 350px);
    }

    .section-heading--split,
    .catalog-toolbar,
    .compact-callout {
        align-items: start;
        flex-direction: column;
    }

    .section-heading--split {
        display: flex;
        gap: 14px;
    }

    .streak-panel {
        padding: 30px 22px;
        border-radius: 24px;
    }

    .streak-days {
        margin-right: -22px;
    }

    .package-card__footer {
        align-items: flex-start;
    }

    .responsible-panel {
        grid-template-columns: auto 1fr;
        gap: 18px;
    }

    .responsible-panel .button {
        grid-column: 1 / -1;
    }

    .responsible-panel__badge {
        width: 68px;
        height: 68px;
    }

    .tool-card:last-child,
    .store-trust-grid article:last-child {
        grid-column: auto;
    }

    .review-grid {
        grid-template-columns: none;
        grid-auto-columns: min(82vw, 306px);
        grid-auto-flow: column;
        align-items: stretch;
        gap: 12px;
        margin-inline: -14px;
        padding: 10px 14px 18px;
        overflow-x: auto;
        scroll-padding-inline: 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .review-card,
    .review-card--featured {
        min-height: 285px;
        padding: 27px;
        scroll-snap-align: start;
    }

    .page-hero {
        padding-block: 44px 52px;
    }

    .page-hero h1 {
        font-size: 2.65rem;
    }

    .catalog-search {
        width: 100%;
    }

    .game-grid,
    .game-grid--catalog,
    .game-grid--related {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        row-gap: 30px;
    }

    .game-grid--related .game-card__cover {
        aspect-ratio: 1;
    }

    .play-heading {
        align-items: start;
        flex-direction: column;
    }

    .game-stage {
        aspect-ratio: 4 / 3;
        border-radius: 14px;
    }

    .game-session-note {
        grid-template-columns: auto 1fr;
    }

    .game-session-note a {
        grid-column: 2;
    }

    .game-detail-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .store-balance,
    .account-summary {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .store-package--popular {
        padding-block: 42px;
    }

    .auth-section {
        padding-block: 20px 45px;
    }

    .auth-layout {
        grid-template-columns: 1fr;
    }

    .auth-story {
        min-height: 360px;
        padding: 27px;
    }

    .auth-story__content {
        margin-top: 70px;
    }

    .auth-story__content h1 {
        font-size: 2.65rem;
    }

    .auth-coin-art {
        display: none;
    }

    .auth-card {
        padding: 34px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row--between {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-summary {
        padding: 24px;
    }

    .account-balance {
        justify-items: start;
        padding-top: 20px;
        border-top: 1px solid var(--line);
    }

    .faq-sidebar {
        grid-template-columns: 1fr;
    }

    .faq-sidebar > .eyebrow {
        grid-column: auto;
    }

    .warning-panel {
        gap: 34px;
        padding: 30px 24px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

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

    .legal-layout {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 5px;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
    }

    .cookie-banner__actions {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 440px) {
    .container {
        width: calc(100% - 28px);
    }

    .header-actions {
        gap: 8px;
    }

    .search-toggle {
        display: none;
    }

    .hero-banner {
        height: 190px;
    }

    .hero-intro h1 {
        font-size: 2.25rem;
    }

    .hero-intro__actions .button {
        flex: 1 1 auto;
    }

    .feature-card {
        min-height: 195px;
    }

    .streak-panel__copy h2,
    .split-story__copy h2,
    .page-hero h1 {
        font-size: 2.25rem;
    }

    .game-grid,
    .game-grid--catalog,
    .game-grid--related {
        gap: 10px;
        row-gap: 26px;
    }

    .game-card__cover {
        border-radius: 15px;
    }

    .game-card h3 {
        font-size: 0.9rem;
    }

    .game-card__category {
        font-size: 0.58rem;
    }

    .favorite-button {
        width: 28px;
        height: 28px;
    }

    .play-heading__actions {
        width: 100%;
    }

    .icon-text-button {
        flex: 1;
        justify-content: center;
    }

    .game-stage {
        width: calc(100% + 28px);
        margin-left: -14px;
        border-inline: 0;
        border-radius: 0;
    }

    .account-guest {
        padding: 38px 21px;
    }

    .account-guest > div,
    .not-found-card > div:last-child {
        flex-direction: column;
    }

    .account-identity {
        align-items: flex-start;
    }

    .account-card,
    .contact-card,
    .help-card {
        padding: 24px;
    }

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

    .footer-brand {
        grid-column: auto;
    }

    .cookie-banner {
        right: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 19px;
    }

    .cookie-banner__actions {
        grid-template-columns: 1fr;
    }
}

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

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

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

@media print {
    .utility-bar,
    .site-header,
    .site-footer,
    .cookie-banner,
    .toast-region,
    .legal-nav,
    .button {
        display: none !important;
    }

    body,
    .legal-section,
    .page-hero {
        background: #fff !important;
        color: #111 !important;
    }

    .page-hero {
        padding: 20px 0;
    }

    .legal-layout {
        display: block;
    }

    .legal-content,
    .legal-content h2,
    .prose {
        color: #111 !important;
    }
}
