:root {
    color-scheme: light;
    --bg: #f4f6fb;
    --panel: #ffffff;
    --panel-soft: #f8faff;
    --line: #dfe6f2;
    --line-strong: #c9d4e6;
    --ink: #20293d;
    --muted: #66738d;
    --soft: #94a0b5;
    --blue: #1f95df;
    --blue-hover: #1685ca;
    --purple: #8e27cf;
    --purple-hover: #7e1cba;
    --purple-soft: #f2e8fb;
    --cyan: #4eb9ec;
    --gold: #f2b339;
    --coral: #f06b54;
    --page: 1500px;
    --radius: 14px;
    --shadow: 0 14px 38px rgba(43, 66, 109, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
}
::selection { background: #d9e9ff; color: #12233f; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--blue); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; }
img { display: block; height: auto; }
picture { display: block; }
[hidden] { display: none !important; }
:focus-visible { outline: 3px solid rgba(42, 147, 224, .35); outline-offset: 3px; }
h1, h2, h3, p, figure, blockquote { margin-top: 0; }
.container { width: min(var(--page), calc(100% - 64px)); margin-inline: auto; }
.icon { width: 22px; height: 22px; flex: 0 0 22px; }
.skip-link {
    position: fixed;
    z-index: 300;
    top: 10px;
    left: 10px;
    transform: translateY(-160%);
    border: 0;
    border-radius: 8px;
    padding: 10px 14px;
    background: var(--blue);
    color: #fff;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header { background: var(--bg); padding: 18px 0 0; }
.header-shell { display: grid; gap: 14px; }
.header-top, .header-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-top { min-height: 62px; }
.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    flex: 0 0 auto;
}
.brand img { width: 59px; height: 58px; object-fit: contain; }
.brand .brand-wordmark { width: 117px; height: 58px; object-fit: contain; object-position: left center; }
.brand-word {
    display: inline-block;
    font-family: "Bahnschrift Condensed", "Arial Narrow", "Aptos Narrow", "Segoe UI", sans-serif;
    font-size: 35px;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    letter-spacing: .012em;
    text-transform: uppercase;
    transform: skewX(-5deg);
    transform-origin: left center;
    color: #2474e8;
}
.utility-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
    color: #373737;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.utility-nav > a:not(.utility-circle) {
    color: #373737;
    text-decoration: none;
    transition: color .16s ease;
}
.utility-nav > a:not(.utility-circle):hover { color: var(--blue); }

.utility-circle {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid #dce3ef;
    background: #fff;
    color: #8390a7;
    font-weight: 700;
}
.utility-telegram { background: #2c9bf0; color: #fff; border-color: #2c9bf0; }
.utility-circle .icon-telegram { width: 18px; height: 18px; flex: 0 0 18px; }
.utility-lang { font-size: 10px; letter-spacing: .02em; }
.header-main {
    padding: 0 0 16px;
}
.header-actions {
    flex: 0 0 318px;
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 18px;
    padding: 14px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 24px rgba(47, 69, 113, .05);
}
.button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 11px 18px;
    border-radius: 9px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 650;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.button-blue:hover { color: #fff; background: var(--blue-hover); box-shadow: 0 9px 22px rgba(31,149,223,.22); }
.button-primary { background: var(--purple); color: #fff; border-color: var(--purple); }
.button-primary:hover { color: #fff; background: var(--purple-hover); box-shadow: 0 9px 22px rgba(142,39,207,.22); }
.button-secondary { background: #fff; border-color: #cdd8e8; color: #30405c; }
.mode-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(8, minmax(76px, 1fr));
    gap: 4px;
    padding: 12px 16px 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 24px rgba(47, 69, 113, .05);
}
.mode-item {
    min-width: 0;
    text-decoration: none;
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 3px;
    color: #1d2430;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}
.mode-item:hover { color: #1d2430; }
.mode-item:hover .mode-badge { transform: translateY(-2px); box-shadow: 0 11px 22px rgba(60, 86, 147, .18); }
.mode-badge { transition: transform .16s ease, box-shadow .16s ease; }
.mode-item small { color: #b0bacb; font-size: 10px; font-weight: 500; }
.mode-badge {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 8px 18px rgba(60, 86, 147, .13);
}
.mode-badge img { width: 27px; height: 27px; }
.mode-badge.slots { background: #81889a; }
.mode-badge.live { background: #efb43f; }
.mode-badge.classic { background: #7166ec; }
.mode-badge.fast { background: #51bdec; }
.mode-badge.sports { background: #677ce8; }
.mode-badge.aviatrix { background: #ee705d; }
.mode-badge.mines { background: #af47df; }
.mode-badge.demo { background: #6d70e7; }
.mobile-menu { display: none; margin-left: auto; }
.mobile-menu summary {
    list-style: none;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #fff;
    color: #5d6778;
    box-shadow: 0 5px 20px rgba(47, 69, 113, .08);
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu-panel {
    position: absolute;
    right: 16px;
    top: 76px;
    z-index: 40;
    width: min(280px, calc(100vw - 32px));
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
    color: #46536d;
    font-size: 14px;
}
.mobile-menu-panel a { display: block; padding: 8px 10px; border-radius: 8px; color: #33415d; font-weight: 600; }
.mobile-menu-panel a:hover { background: #f1f6fc; color: var(--blue); }

/* Hero */
.hero-home { padding: 4px 0 0; }
.hero-banner {
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #17263e;
    box-shadow: var(--shadow);
}
.hero-banner picture, .hero-banner img { width: 100%; }
.hero-banner img { aspect-ratio: 2990 / 440; object-fit: cover; }
.hero-intro-card {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
    padding: 28px 30px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(44, 66, 109, .05);
}
.eyebrow, .mini-label {
    display: inline-block;
    color: var(--blue);
    font-size: 11px;
    line-height: 1.4;
    font-weight: 650;
    letter-spacing: .08em;
    text-transform: uppercase;
}
h1 {
    margin: 8px 0 14px;
    font-size: clamp(30px, 3.1vw, 46px);
    line-height: 1.14;
    letter-spacing: -.03em;
    font-weight: 650;
}
h1 > span { display: block; }
.brand-title {
    color: #2468ed;
    font-size: clamp(48px, 5vw, 72px);
    line-height: .98;
    font-weight: 700;
    letter-spacing: -.045em;
    margin-bottom: 6px;
}
.hero-lead { max-width: 840px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.72; }
.hero-facts { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.hero-facts span {
    min-width: 132px;
    padding: 13px 16px;
    border-radius: 11px;
    background: var(--panel-soft);
    border: 1px solid var(--line);
    color: #64718a;
    font-size: 12px;
}
.hero-facts b { display: block; color: #1e2b44; font-size: 20px; font-weight: 650; line-height: 1.1; margin-bottom: 3px; }

/* Content */
.onepage-content { margin-top: 22px; display: grid; gap: 20px; padding-bottom: 48px; }
.content-section {
    min-width: 0;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 7px 24px rgba(43, 65, 105, .035);
}
.section-heading { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 17px; }
.section-marker { width: 4px; height: 25px; flex: 0 0 4px; margin-top: 5px; border-radius: 4px; background: var(--blue); }
h2 { margin: 0; color: #1f2a40; font-size: clamp(24px, 2.1vw, 31px); line-height: 1.25; font-weight: 450; letter-spacing: -.02em; }
.section-heading h2 strong { color: #2468ed; font-weight: 650; }
.section-heading h2 span { font-weight: 500; }
h3 { color: #23304a; font-size: 22px; line-height: 1.35; font-weight: 600; letter-spacing: -.015em; }
.prose { width: 100%; max-width: none; color: #4f5f7c; font-size: 16px; line-height: 1.8; }
.prose p { margin-bottom: 16px; }
.prose > :last-child { margin-bottom: 0; }
.prose strong { color: #172b50; font-weight: 600; }
.prose a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: #9fcaf0; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 7px; }
.content-section > :is(.domain-grid,.account-methods,.screenshot,.calculator,.catalog-controls,.game-grid,.reviews-grid,.support-card,.table-scroll) { margin-top: 22px; }
.content-section > :is(.domain-grid,.account-methods,.calculator,.catalog-controls,.game-grid,.reviews-grid,.support-card,.table-scroll) { width: 100%; }
.content-section > .prose { width: 100%; }
.content-section > .section-heading { width: 100%; }
.table-scroll { width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #eef3fb; color: #22314d; font-size: 13px; font-weight: 700; }
td { background: #fff; color: #50617e; }
tr:last-child td { border-bottom: 0; }
tr:nth-child(even) td { background: #f9fbfe; }

/* Domain / account */
.domain-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.domain-card { padding: 17px 18px; border: 1px solid #d6e1f0; border-radius: 11px; background: linear-gradient(180deg, #fff, #f7faff); }
.domain-card span { display: block; color: #94a0b5; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.domain-card strong { color: #1c2b45; font-size: 17px; font-weight: 600; overflow-wrap: anywhere; }
.account-methods { display: flex; gap: 10px; flex-wrap: wrap; }
.account-methods span { padding: 9px 13px; border-radius: 999px; background: #f3f6fb; border: 1px solid #dde5f0; color: #3d4c68; font-size: 13px; font-weight: 550; }

/* Screens */
.screenshot-feature {
    display: grid;
    gap: 22px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
}
.screenshot-feature-wide {
    grid-template-columns: minmax(240px, .65fr) minmax(0, 1.7fr);
}
.screenshot-feature-narrow {
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 420px);
}
.screenshot-feature-copy {
    min-width: 0;
}
.screenshot-feature-copy h3 {
    margin: 7px 0 9px;
}
.screenshot-feature-copy p {
    margin: 0;
    color: #68768e;
    font-size: 14px;
    line-height: 1.7;
}
.feature-list {
    margin: 12px 0 0;
    padding-left: 19px;
    color: #5e6e88;
    font-size: 14px;
    line-height: 1.7;
}
.feature-list li {
    margin-bottom: 6px;
}
.feature-list li::marker {
    color: var(--blue);
}
.screenshot {
    margin: 0;
    min-width: 0;
}
.screenshot-frame {
    max-width: 100%;
    margin-inline: auto;
    padding: 8px;
    border: 1px solid #d8e1ee;
    border-radius: 13px;
    background: #eef3fa;
}
.screenshot.wide-screen .screenshot-frame {
    width: min(100%, 980px);
}
.screenshot.narrow-screen .screenshot-frame {
    width: min(100%, 390px);
}
.screenshot-button {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
}
.screenshot-button picture,
.screenshot-button img {
    width: 100%;
}
.screenshot-button img {
    object-fit: contain;
}
.zoom-label {
    position: absolute;
    right: 9px;
    bottom: 9px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 8px;
    background: rgba(28, 52, 86, .9);
    color: #fff;
    font-size: 11px;
}
.screenshot figcaption {
    margin: 7px 4px 0;
    color: #8794a9;
    font-size: 11px;
    line-height: 1.55;
}

/* Calculators */
.calculator {
    display: grid;
    grid-template-columns: minmax(220px, .8fr) minmax(0, 1.25fr);
    gap: 28px;
    align-items: center;
    padding: 24px;
    border: 1px solid #d9e2ef;
    border-radius: 14px;
    background: linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
}
.calculator-copy h3 { margin: 7px 0 8px; }
.calculator-copy p { margin: 0; color: #68768e; font-size: 14px; }
.calculator form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { color: #43516c; font-size: 12px; font-weight: 550; }
input, select, textarea {
    width: 100%;
    margin-top: 7px;
    padding: 12px 13px;
    border: 1px solid #cfd9e8;
    border-radius: 9px;
    background: #fff;
    color: #23304a;
    font-size: 15px;
}
.calculator-result {
    min-height: 78px;
    padding: 13px 16px;
    border: 1px solid #cbd9ed;
    border-radius: 11px;
    background: #eef4ff;
    color: #20304f;
    transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.calculator-result > span { display: block; font-size: 11px; color: #6b7890; margin-bottom: 4px; }
.calculator-result output { display: block; font-size: 25px; font-weight: 600; line-height: 1.2; }
.calculator-result small { display: block; margin-top: 4px; color: #6b7890; }
.calculator .button { justify-self: start; min-width: 160px; }

/* Catalog */
.catalog-controls {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(180px, .55fr) auto;
    gap: 12px;
    align-items: end;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8faff;
}
.catalog-controls p { margin: 0 0 11px; color: #718099; font-size: 12px; }
.game-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 13px; }
.game-card { min-width: 0; overflow: hidden; border: 1px solid #dce5f0; border-radius: 11px; background: #fff; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.game-card:hover { transform: translateY(-2px); border-color: #a8c8eb; box-shadow: 0 10px 24px rgba(43, 74, 122, .10); color: inherit; }
.game-cover { position: relative; aspect-ratio: 287 / 342; background: #f4f6fb; }
.game-cover picture, .game-cover img { width: 100%; height: 100%; object-fit: cover; }
.game-open { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; background: rgba(31, 65, 111, .78); color: #fff; font-size: 12px; transition: opacity .16s ease; }
.game-card:hover .game-open, .game-card:focus-visible .game-open { opacity: 1; }
.game-name { display: block; min-height: 50px; padding: 11px 11px 0; color: #1f2d46; font-size: 13px; font-weight: 600; line-height: 1.45; }
.game-provider { display: flex; align-items: center; justify-content: space-between; gap: 6px; padding: 5px 11px 11px; color: #8a98ad; font-size: 10px; }
.game-provider .icon { width: 14px; height: 14px; flex-basis: 14px; }
#catalog-empty { padding: 15px; border-radius: 10px; background: #fff5f4; color: #a65246; }

/* Reviews / support / faq */
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.review-card { margin: 0; padding: 17px; border: 1px solid #e0e7f1; border-radius: 12px; background: #f9fbfe; }
.review-card figcaption { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 10px; }
.review-card strong { color: #25324a; font-weight: 600; }
.review-card small { display: block; color: #9aa6b9; font-size: 10px; }
.review-score { color: var(--purple); font-weight: 650; white-space: nowrap; }
.review-card blockquote { margin: 0; color: #596980; font-size: 13px; line-height: 1.7; }
.support-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px; border-radius: 12px; background: #eef6ff; border: 1px solid #d7e8f8; }
.support-card strong { display: block; margin: 5px 0; color: #1f2f4a; font-size: 18px; font-weight: 600; }
.support-card p { margin: 0; color: #6a7990; font-size: 13px; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; display: flex; justify-content: space-between; gap: 20px; padding: 16px 2px; color: #26344d; font-weight: 550; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 26px 15px 2px; color: #66758d; font-size: 14px; line-height: 1.72; }

/* Footer */
.site-footer { margin-top: 10px; background: #111d32; color: #f1f5fb; }
.onepage-footer { display: grid; grid-template-columns: .8fr 1fr 1.35fr; gap: 34px; align-items: start; padding: 34px 0 26px; }
.footer-brand > a { display: inline-flex; align-items: center; gap: 9px; }
.footer-brand .brand-word { color: #fff; font-size: 27px; transform: skewX(-5deg); }
.footer-brand p { margin: 10px 0 12px; color: #c6d2e4; font-size: 13px; }
.age { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid #71819b; border-radius: 50%; color: #fff; font-size: 11px; }
.footer-operator { color: #d5deeb; font-size: 13px; }
.footer-operator p { margin: 0 0 6px; }
.footer-operator strong { color: #fff; font-weight: 600; }
.footer-operator a { color: #72c8ff; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 17px 0 24px; border-top: 1px solid #2a3a52; color: #aebdd2; font-size: 11px; }
.footer-bottom p { margin: 0; }
.to-top { border: 0; background: transparent; color: #72c8ff; }

/* Dialog */
.image-dialog { max-width: min(95vw, 1500px); max-height: 92vh; padding: 48px 12px 12px; border: 0; border-radius: 14px; background: #fff; box-shadow: 0 24px 70px #10213d55; }
.image-dialog::backdrop { background: rgba(14, 25, 44, .72); }
.image-dialog img { max-width: 100%; max-height: calc(92vh - 65px); object-fit: contain; }
.dialog-close { position: absolute; top: 10px; right: 10px; display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #d3deed; border-radius: 8px; background: #fff; color: #33425c; }

/* Responsive */
@media (max-width: 1180px) {
    .container { width: min(var(--page), calc(100% - 48px)); }
    .utility-nav { gap: 16px; font-size: 12px; }
    .header-actions { flex-basis: 290px; gap: 10px; }
    .mode-nav { grid-template-columns: repeat(8, minmax(65px,1fr)); padding-inline: 8px; }
    .mode-badge { width: 44px; height: 44px; }
    .game-grid { grid-template-columns: repeat(5, minmax(0,1fr)); }
    .reviews-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 900px) {
    .container { width: calc(100% - 32px); }
    .utility-nav { display: none; }
    .mobile-menu { display: block; position: relative; }
    .header-main { display: grid; gap: 12px; }
    .header-actions { width: 100%; flex-basis: auto; grid-template-columns: 1fr 1.45fr; gap: 12px; padding: 12px; }
    .mode-nav { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px 3px; padding: 16px 8px; }
    .mode-badge { width: 46px; height: 46px; }
    .hero-intro-card { grid-template-columns: 1fr; }
    .hero-facts { justify-content: flex-start; }
    .content-section { padding: 24px; }
    .domain-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .calculator { grid-template-columns: 1fr; gap: 18px; }
    .screenshot-feature-wide,
    .screenshot-feature-narrow {
        grid-template-columns: 1fr;
    }
    .screenshot-feature-copy {
        max-width: 720px;
    }
    .screenshot.narrow-screen .screenshot-frame {
        width: min(100%, 360px);
    }
    .catalog-controls { grid-template-columns: 1fr 1fr; }
    .catalog-controls p { grid-column: 1 / -1; }
    .game-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .onepage-footer { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 560px) {
    body { font-size: 15px; }
    .site-header { padding-top: 10px; }
    .container { width: calc(100% - 24px); }
    .header-top { min-height: 62px; }
    .brand { gap: 8px; }
    .brand img { width: 52px; height: 50px; }
   .brand-word { font-size: 34px; }
    .header-main { gap: 10px; }
    .header-actions { padding: 10px; border-radius: 11px; gap: 10px; }
    .button { min-height: 48px; padding: 10px 12px; font-size: 13px; }
    .mode-nav { grid-template-columns: repeat(4,minmax(0,1fr)); border-radius: 11px; padding: 13px 5px; }
    .mode-badge { width: 42px; height: 42px; }
    .mode-item { font-size: 11px; }
    .mode-item:hover { color: #1d2430; }
    .mode-item small { font-size: 9px; }
    .hero-banner { border-radius: 10px; }
    .hero-banner img { aspect-ratio: 1340 / 400; min-height: 0; object-fit: contain; object-position: center; background: #f2c391; }
    .hero-intro-card { margin-top: 12px; padding: 20px 18px; border-radius: 12px; gap: 18px; }
    h1 { font-size: 27px; }
    .brand-title { font-size: 47px; }
    .hero-lead { font-size: 14px; }
    .hero-facts { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); width: 100%; gap: 6px; }
    .hero-facts span { min-width: 0; padding: 10px; font-size: 10px; }
    .hero-facts b { font-size: 18px; }
    .onepage-content { margin-top: 12px; gap: 12px; }
    .content-section { padding: 19px 17px; border-radius: 12px; }
    .section-heading { margin-bottom: 13px; }
    .section-marker { height: 22px; margin-top: 3px; }
    h2 { font-size: 23px; }
    h3 { font-size: 19px; }
    .prose { font-size: 14px; line-height: 1.72; }
    .content-section > :is(.domain-grid,.account-methods,.screenshot,.calculator,.catalog-controls,.game-grid,.reviews-grid,.support-card,.table-scroll) { margin-top: 17px; }
    .domain-grid { grid-template-columns: 1fr; gap: 8px; }
    .domain-card { padding: 13px 14px; }
    .form-grid { grid-template-columns: 1fr; }
    .calculator { padding: 17px 14px; }
    .calculator .button { width: 100%; justify-self: stretch; }
    .calculator-result output { font-size: 22px; }
    .screenshot-feature {
        gap: 15px;
        padding: 14px;
        border-radius: 12px;
    }
    .screenshot-feature-copy h3 { font-size: 18px; }
    .screenshot-feature-copy p,
    .feature-list { font-size: 13px; }
    .screenshot.narrow-screen .screenshot-frame {
        width: min(100%, 320px);
    }
    .table-scroll {
        margin-inline: -2px;
        -webkit-overflow-scrolling: touch;
    }
    table { font-size: 12px; min-width: 620px; }
    th, td { padding: 11px 12px; }
    .catalog-controls { grid-template-columns: 1fr; padding: 13px; }
    .catalog-controls p { grid-column: auto; }
    .game-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
    .game-name { font-size: 12px; min-height: 46px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .support-card { flex-direction: column; align-items: stretch; gap: 14px; }
    .support-card .button { width: 100%; }
    .screenshot-frame { padding: 7px; }
    .zoom-label { font-size: 10px; }
    .site-footer { margin-top: 0; }
    .onepage-footer { padding: 28px 0 20px; }
    .footer-bottom { align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}
@media print {
    .site-header, .skip-link, .button, .to-top, .zoom-label, dialog { display: none !important; }
    body { background: #fff; color: #111; }
    .content-section, .hero-intro-card { box-shadow: none; }
}

@keyframes resultFlash {
    0% { box-shadow: 0 0 0 0 rgba(31,149,223,.22); background: #ffffff; }
    100% { box-shadow: 0 0 0 5px rgba(31,149,223,0); background: #eef4ff; }
}
.calculator-result.is-calculated { border-color: #7fb9e6; animation: resultFlash .45s ease; }

/* Multipage SEO navigation */
.related-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.related-links a {
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid rgba(20, 35, 60, .12);
    border-radius: 18px;
    background: #fff;
    color: inherit;
    text-decoration: none;
}
.related-links a:hover strong,
.related-links a:focus-visible strong { text-decoration: underline; }
.related-links span { color: #667085; font-size: .92rem; line-height: 1.45; }
.footer-sections {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-content: flex-start;
}
.footer-sections a { color: inherit; text-decoration: none; }
.footer-sections a:hover,
.footer-sections a:focus-visible { text-decoration: underline; }
.utility-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 5px; }
@media (max-width: 720px) {
    .related-links { grid-template-columns: 1fr; }
}
