:root {
    --ink: #10111a;
    --muted: #667085;
    --line: #e7e9f2;
    --surface: #ffffff;
    --canvas: #f8f9fd;
    --violet: #6d28d9;
    --violet-2: #8b3ff2;
    --magenta: #d91b8f;
    --orange: #ff5a1f;
    --green: #07965b;
    --gold: #f3a000;
    --danger: #d92d20;
    --shadow: 0 14px 38px rgba(25, 18, 55, .08);
    --shadow-soft: 0 8px 24px rgba(25, 18, 55, .06);
    --radius: 20px;
    --header-height: 88px;
}

* {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--canvas);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans Devanagari", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

main,
.site-header,
.site-footer {
    min-width: 0;
    max-width: 100%;
}

body:has(.age-backdrop) {
    overflow: hidden;
}

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

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

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

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

button {
    color: inherit;
}

:focus-visible {
    outline: 3px solid rgba(109, 40, 217, .34);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

.container {
    min-width: 0;
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

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

.skip-link {
    position: fixed;
    z-index: 9999;
    left: 16px;
    top: 16px;
    padding: 10px 16px;
    border-radius: 10px;
    background: #111827;
    color: #fff;
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: none;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(229, 231, 240, .88);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 44px auto minmax(220px, 1fr) auto auto;
    align-items: center;
    gap: 18px;
}

.icon-button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
}

.menu-button {
    align-content: center;
    gap: 5px;
}

.menu-button span {
    width: 25px;
    height: 3px;
    background: var(--ink);
    border-radius: 99px;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(8px) rotate(45deg);
}

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

.menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

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

.brand-mark {
    position: relative;
    width: 42px;
    height: 44px;
    display: inline-block;
}

.brand-mark i,
.brand-mark b,
.brand-mark em {
    position: absolute;
    display: block;
    width: 28px;
    height: 34px;
    clip-path: polygon(0 0, 100% 0, 54% 100%);
}

.brand-mark i {
    left: 0;
    top: 1px;
    background: linear-gradient(145deg, #d51b96, #6d28d9);
    transform: rotate(-10deg);
}

.brand-mark b {
    right: 0;
    top: 0;
    background: linear-gradient(145deg, #ffc400, #ff5a1f);
    transform: rotate(10deg);
}

.brand-mark em {
    left: 8px;
    top: 14px;
    height: 30px;
    background: linear-gradient(180deg, #6d28d9, #d91b8f);
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    font-size: 23px;
    letter-spacing: -.04em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .25em;
}

.header-search {
    max-width: 420px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-self: center;
    width: 100%;
    padding-left: 16px;
    border: 1px solid #d8dce8;
    border-radius: 15px;
    background: #fbfcff;
    box-shadow: inset 0 1px 2px rgba(16, 17, 26, .03);
}

.header-search:focus-within {
    border-color: var(--violet);
    box-shadow: 0 0 0 4px rgba(109, 40, 217, .09);
}

.header-search input {
    min-width: 0;
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
}

.header-search button {
    width: 48px;
    height: 100%;
    border: 0;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 7px;
}

.desktop-nav a,
.language-switch {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    background: #f1ebff;
    color: var(--violet);
}

.language-switch {
    border: 1px solid var(--violet);
    color: var(--violet);
}

.mobile-drawer {
    position: absolute;
    top: calc(100% + 8px);
    left: max(20px, calc((100vw - 1180px) / 2));
    width: min(320px, calc(100vw - 40px));
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
}

.mobile-drawer a {
    padding: 12px 14px;
    border-radius: 11px;
    font-weight: 700;
}

.mobile-drawer a:hover {
    background: #f3efff;
    color: var(--violet);
}

.warning-strip {
    background: #fff7e6;
    border-bottom: 1px solid #f4deb1;
}

.warning-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-block: 8px;
}

.warning-icon {
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    min-width: 37px;
    height: 29px;
    padding: 0 5px;
    border-radius: 8px;
    background: #1d2030;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.warning-inner p {
    flex: 1;
    margin: 0;
    color: #65440f;
    font-size: 13px;
    line-height: 1.45;
}

.warning-inner a {
    color: #6d4300;
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.button-primary {
    background: linear-gradient(120deg, var(--violet), #8439ef 55%, var(--magenta));
    color: #fff;
    box-shadow: 0 12px 24px rgba(109, 40, 217, .22);
}

.button-ghost {
    border-color: #cfc7e9;
    background: #fff;
    color: var(--violet);
}

.button-outline {
    border-color: #8b5cf6;
    background: #fff;
    color: var(--violet);
}

.button-large {
    min-height: 54px;
    padding-inline: 25px;
    border-radius: 14px;
}

.eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--violet);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.home-hero {
    position: relative;
    min-height: 500px;
    display: grid;
    grid-template-columns: .9fr 1.25fr;
    align-items: center;
    margin-top: 28px;
    overflow: hidden;
    border: 1px solid #e8e2fa;
    border-radius: 26px;
    background: radial-gradient(circle at 70% 40%, #fff 0, rgba(255, 255, 255, .45) 35%, transparent 62%), linear-gradient(135deg, #fbfaff, #f1ebff 54%, #fff2fa);
    box-shadow: 0 18px 60px rgba(83, 43, 151, .09);
}

.hero-copy {
    position: relative;
    z-index: 2;
    padding: 48px 0 48px 54px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #6d28d9;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .04em;
}

.hero-pill span {
    color: #e9c7ff;
}

.hero-copy h1 {
    max-width: 560px;
    margin: 0;
    font-size: clamp(43px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.055em;
}

.hero-copy h1 span {
    display: block;
    margin-top: 10px;
    color: transparent;
    background: linear-gradient(90deg, #6d28d9, #c026d3, #ff5a1f);
    background-clip: text;
    -webkit-background-clip: text;
}

.hero-copy > p {
    max-width: 530px;
    margin: 24px 0;
    color: #3f4556;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-copy > small {
    display: block;
    margin-top: 18px;
    color: #6b7280;
    font-size: 12px;
}

.hero-art {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-art picture,
.game-banner picture {
    display: contents;
}

.hero-art img {
    width: 112%;
    max-width: none;
    margin-right: -7%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    padding: 20px 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.trust-row > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 3px 24px;
    border-right: 1px solid var(--line);
}

.trust-row > div:last-child {
    border-right: 0;
}

.trust-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    font-weight: 900;
}

.trust-icon.violet { color: #6d28d9; background: #f0e9ff; }
.trust-icon.orange { color: #d83f0c; background: #fff0e8; font-size: 12px; }
.trust-icon.green { color: #087f50; background: #e7f8ef; }

.trust-row p {
    display: grid;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.trust-row strong {
    color: var(--ink);
    font-size: 15px;
}

.category-shell,
.games-section,
.content-section,
.faq-section,
.related-section {
    margin-top: 56px;
}

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

.section-heading.compact {
    margin-bottom: 16px;
}

.section-heading h2,
.content-intro h2,
.detail-section h2 {
    margin: 0;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.16;
    letter-spacing: -.035em;
}

.section-heading p,
.content-intro p {
    max-width: 760px;
    margin: 7px 0 0;
    color: var(--muted);
}

.category-row {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.category-chip {
    min-width: 0;
    padding: 10px 5px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    cursor: pointer;
}

.category-chip:hover {
    background: #f5f1ff;
}

.category-chip > span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    border: 1px solid #e8e5f1;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff, #f3efff);
    color: var(--violet);
    font-size: 19px;
    font-weight: 900;
    box-shadow: 0 7px 16px rgba(43, 31, 82, .07);
}

.category-chip strong,
.category-chip small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-chip strong {
    font-size: 13px;
}

.category-chip small {
    color: var(--muted);
    font-size: 10px;
}

.live-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
}

.live-count > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(7, 150, 91, .12);
}

.live-count strong {
    color: var(--ink);
}

.directory-tools {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 360px);
    gap: 14px;
    margin-bottom: 18px;
}

.segmented {
    display: flex;
    gap: 3px;
    overflow-x: auto;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.trust-row,
.category-row,
.segmented,
.section-tabs,
.steps-row {
    min-width: 0;
    max-width: 100%;
    overscroll-behavior-inline: contain;
}

.segmented button {
    min-height: 42px;
    flex: 1 0 auto;
    padding: 8px 18px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #555e74;
    font-weight: 800;
    cursor: pointer;
}

.segmented button.active {
    background: linear-gradient(120deg, var(--violet), #8b3ff2);
    color: #fff;
    box-shadow: 0 8px 18px rgba(109, 40, 217, .2);
}

.inline-search {
    height: 54px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px 0 15px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.inline-search > span:first-child {
    font-size: 23px;
}

.inline-search input {
    min-width: 0;
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
}

.inline-search button {
    padding: 8px 10px;
    border: 0;
    border-radius: 8px;
    background: #f2eff8;
    color: var(--violet);
    font-size: 11px;
    font-weight: 800;
    cursor: pointer;
}

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

.accent-0 { --accent: #6d28d9; --accent-2: #b13bd2; --accent-soft: #f1ebff; }
.accent-1 { --accent: #0b8a5b; --accent-2: #20ba73; --accent-soft: #e9f9f1; }
.accent-2 { --accent: #e14818; --accent-2: #ff8b22; --accent-soft: #fff0e8; }
.accent-3 { --accent: #1565d8; --accent-2: #54a2f5; --accent-soft: #ebf4ff; }
.accent-4 { --accent: #c28a00; --accent-2: #f5b800; --accent-soft: #fff8dd; }
.accent-5 { --accent: #c21f67; --accent-2: #ec4e9a; --accent-soft: #ffedf5; }

.game-card {
    --accent: #6d28d9;
    --accent-2: #b13bd2;
    --accent-soft: #f1ebff;
    position: relative;
    min-width: 0;
    max-width: 100%;
    min-height: 126px;
    display: grid;
    grid-template-columns: 48px 78px minmax(0, 1fr) minmax(150px, 170px);
    grid-template-areas: "rank logo content action";
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: linear-gradient(105deg, var(--accent-soft) 0 5px, #fff 5px 100%);
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.game-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--accent), white 65%);
    box-shadow: 0 16px 34px rgba(33, 24, 70, .1);
}

.game-card[hidden] {
    display: none;
}

.rank-badge {
    position: static;
    grid-area: rank;
    width: 44px;
    min-width: 0;
    height: 54px;
    display: grid;
    align-content: center;
    place-items: center;
    gap: 0;
    padding: 5px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(145deg, #ff5262, #e71935);
    color: #fff;
    box-shadow: 0 8px 18px rgba(225, 25, 53, .22);
    line-height: 1;
}

.rank-badge small {
    font-size: 7px;
    font-weight: 850;
    letter-spacing: .08em;
    opacity: .82;
}

.rank-badge strong {
    font-size: 17px;
    font-weight: 950;
}

.game-logo-wrap,
.detail-logo {
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 18px;
    background: var(--accent-soft);
}

.game-logo-wrap {
    grid-area: logo;
    width: 78px;
    height: 78px;
    border: 1px solid color-mix(in srgb, var(--accent), white 78%);
    box-shadow: 0 9px 21px color-mix(in srgb, var(--accent), transparent 86%);
}

.game-logo-wrap img,
.detail-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.game-logo-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 28% 25%, rgba(255, 255, 255, .35), transparent 30%), linear-gradient(145deg, var(--accent), var(--accent-2));
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -.04em;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .18);
}

.game-card-content {
    grid-area: content;
    min-width: 0;
}

.game-title-row {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.game-name {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    color: var(--ink);
    font-size: 19px;
    font-weight: 850;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-name:hover {
    color: var(--accent);
}

.category-label {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: 0;
    padding: 4px 8px;
    border-radius: 7px;
    background: var(--accent-soft, #f1ebff);
    color: var(--accent, #6d28d9);
    font-size: 10px;
    font-weight: 850;
    vertical-align: 2px;
}

.game-mini-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.game-mini-meta > span {
    min-width: 0;
    min-height: 43px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 9px;
    overflow: hidden;
    border: 1px solid #ececf3;
    border-radius: 11px;
    background: #fafbfe;
}

.game-mini-meta > span > b {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 11px;
}

.game-mini-meta > span > span {
    min-width: 0;
    display: grid;
    line-height: 1.15;
}

.game-mini-meta small,
.game-mini-meta strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-mini-meta small {
    color: #777e8f;
    font-size: 8px;
    font-weight: 750;
}

.game-mini-meta strong {
    margin-top: 3px;
    color: #252938;
    font-size: 11px;
    font-weight: 900;
}

.game-card-button {
    grid-area: action;
    width: 100%;
    min-height: 58px;
    justify-content: flex-start;
    gap: 10px;
    padding: 9px 12px;
    border-color: var(--accent);
    color: var(--accent);
    background: #fff;
    font-size: 11px;
    white-space: normal;
}

.game-card-button:hover {
    background: var(--accent-soft);
}

.card-download-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--accent-soft);
    font-size: 20px;
    line-height: 1;
}

.card-button-copy {
    min-width: 0;
    display: grid;
    text-align: left;
    line-height: 1.15;
}

.card-button-copy strong {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .025em;
}

.card-button-copy small {
    margin-top: 3px;
    color: #7c738d;
    font-size: 8px;
    font-weight: 750;
}

.bonus-banner {
    grid-column: 1 / -1;
    min-height: 142px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px 32px;
    overflow: hidden;
    border-radius: 20px;
    background: radial-gradient(circle at 65% 120%, #c270ff 0 8%, transparent 30%), linear-gradient(120deg, #6d17db, #a51bd5 55%, #201b83);
    color: #fff;
    box-shadow: 0 15px 35px rgba(92, 27, 184, .22);
}

.bonus-banner div {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0 15px;
}

.bonus-banner span {
    grid-column: 1;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .13em;
}

.bonus-banner strong {
    grid-row: 1 / 3;
    grid-column: 2;
    color: #ffd229;
    font-size: 54px;
    line-height: 1;
}

.bonus-banner p {
    grid-column: 1;
    margin: 4px 0 0;
    color: #ebe2ff;
    font-size: 13px;
}

.bonus-banner > a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 12px;
    background: #fff;
    color: #5e20c7;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.empty-state {
    padding: 60px 20px;
    border: 1px dashed #c8cbd7;
    border-radius: 20px;
    text-align: center;
}

.empty-state span {
    display: block;
    font-size: 44px;
}

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

.content-section {
    padding: 56px;
    border-radius: 25px;
    background: #111221;
    color: #fff;
}

.content-intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: start;
    gap: 55px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.content-intro .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -30px;
    color: #c7a8ff;
}

.content-intro p {
    margin: 0;
    color: #c9ccda;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.editorial-grid article {
    position: relative;
    padding: 26px 26px 26px 76px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .035);
}

.article-number {
    position: absolute;
    left: 24px;
    top: 26px;
    color: #a776ff;
    font-weight: 900;
}

.editorial-grid h3 {
    margin: 0 0 9px;
    font-size: 17px;
}

.editorial-grid p {
    margin: 0;
    color: #afb4c8;
    font-size: 14px;
}

.faq-section {
    margin-bottom: 70px;
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 6px 16px rgba(25, 18, 55, .035);
}

.faq-list summary {
    position: relative;
    padding: 18px 52px 18px 20px;
    list-style: none;
    font-weight: 800;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    color: var(--violet);
    font-size: 22px;
    transform: translateY(-50%);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    margin: -2px 20px 20px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    overflow: hidden;
    padding-block: 20px;
    color: var(--muted);
    font-size: 13px;
    white-space: nowrap;
}

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

.breadcrumbs span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.alert {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
}

.alert-warning {
    border: 1px solid #f0cf8a;
    background: #fff7df;
    color: #6b4400;
}

.game-product {
    --accent: #6d28d9;
    --accent-2: #b13bd2;
    --accent-soft: #f1ebff;
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    align-items: center;
    gap: 34px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.detail-logo {
    width: 190px;
    height: 190px;
    border-radius: 28px;
    box-shadow: 0 16px 30px color-mix(in srgb, var(--accent), transparent 80%);
}

.detail-logo .game-logo-fallback {
    font-size: 55px;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-row .category-label {
    margin: 0;
    padding: 5px 10px;
}

.measured-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 8px;
    background: #e9f9f1;
    color: #087f50;
    font-size: 10px;
    font-weight: 800;
}

.measured-chip i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0aad68;
}

.product-copy h1 {
    margin: 9px 0 2px;
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.04;
    letter-spacing: -.045em;
}

.product-tagline {
    margin: 7px 0 16px;
    color: #42495a;
    font-size: 17px;
}

.product-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 4px 0 20px;
}

.product-stats div {
    min-width: 130px;
    display: grid;
    padding: 0 17px;
    border-right: 1px solid var(--line);
}

.product-stats div:first-child {
    padding-left: 0;
}

.product-stats div:last-child {
    border-right: 0;
}

.product-stats strong {
    font-size: 20px;
}

.product-stats span {
    color: var(--muted);
    font-size: 10px;
}

.download-primary {
    min-width: 310px;
    min-height: 60px;
    background: linear-gradient(110deg, var(--accent), var(--accent-2));
}

.download-primary.is-pending {
    background: linear-gradient(110deg, #667085, #8c93a4);
    box-shadow: none;
}

.download-symbol {
    font-size: 24px;
    line-height: 1;
}

.microcopy {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 10px;
}

.product-tools {
    align-self: end;
    display: flex;
    gap: 12px;
}

.utility-button {
    min-width: 78px;
    min-height: 72px;
    display: grid;
    place-items: center;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    font-size: 11px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.utility-button span {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.utility-button.saved {
    border-color: #e84a87;
    color: #c21f67;
    background: #fff1f6;
}

.game-banner {
    position: relative;
    min-height: 330px;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    align-items: stretch;
    margin-top: 22px;
    overflow: hidden;
    border-radius: 23px;
    background: linear-gradient(120deg, #160c36, #3c0d5b 56%, #7c173f);
    color: #fff;
    box-shadow: var(--shadow);
}

.game-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 86% 18%, rgba(255, 191, 0, .2), transparent 25%);
    pointer-events: none;
}

.banner-copy {
    position: relative;
    z-index: 2;
    align-self: center;
    padding: 44px;
}

.banner-copy > span {
    color: #f6c9ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.banner-copy h2 {
    max-width: 470px;
    margin: 10px 0;
    color: #ffe97a;
    font-size: clamp(31px, 4vw, 51px);
    line-height: 1;
    letter-spacing: -.045em;
}

.banner-copy p {
    color: #dfd9eb;
}

.banner-copy a {
    display: inline-block;
    margin-top: 8px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 850;
}

.game-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% center;
    mix-blend-mode: screen;
}

.game-page.variant-1 .game-product {
    background: linear-gradient(135deg, #fff, var(--accent-soft, #f1ebff));
}

.game-page.variant-1 .game-banner {
    grid-template-columns: 1fr .86fr;
    background: linear-gradient(125deg, #071f2d, #123b45 52%, var(--accent, #6d28d9));
}

.game-page.variant-1 #overview {
    grid-template-columns: .62fr 1.38fr;
}

.game-page.variant-1 #overview .detail-copy {
    order: 2;
}

.game-page.variant-1 #overview .activity-card {
    order: 1;
}

.game-page.variant-2 .game-product {
    border-top: 5px solid var(--accent, #6d28d9);
}

.game-page.variant-2 .game-banner {
    background: linear-gradient(125deg, #351008, #66250c 48%, #501646);
}

.game-page.variant-2 .detail-section:not(.safety-panel) {
    background: linear-gradient(160deg, #fff 72%, var(--accent-soft, #f1ebff));
}

.game-page.variant-3 .detail-logo {
    border-radius: 50%;
    border: 8px solid #fff;
}

.game-page.variant-3 .game-banner {
    background: linear-gradient(125deg, #141029, #322060 52%, var(--accent, #6d28d9));
}

.game-page.variant-3 .section-tabs {
    border-radius: 999px;
}

.game-page.variant-3 .section-tabs a {
    border-radius: 999px;
}

.detail-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.detail-trust > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 96px;
    padding: 15px;
    border-right: 1px solid var(--line);
}

.detail-trust > div:last-child {
    border-right: 0;
}

.detail-trust > div > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--accent-soft, #f1ebff);
    color: var(--accent, #6d28d9);
    font-size: 16px;
    font-weight: 900;
}

.detail-trust p {
    display: grid;
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
}

.detail-trust strong {
    color: var(--ink);
    font-size: 14px;
}

.section-tabs {
    position: sticky;
    z-index: 70;
    top: calc(var(--header-height) + 8px);
    display: flex;
    gap: 5px;
    margin-top: 28px;
    overflow-x: auto;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255, 255, 255, .95);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.section-tabs a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 auto;
    padding: 7px 15px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.section-tabs a.active {
    background: var(--accent-soft, #f1ebff);
    color: var(--accent, #6d28d9);
}

.detail-section {
    display: grid;
    grid-template-columns: 1.45fr .55fr;
    gap: 60px;
    align-items: center;
    margin-top: 28px;
    padding: 46px;
    scroll-margin-top: 165px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.detail-section.stacked {
    display: block;
}

.detail-copy > p,
.facts-layout > div > p {
    color: #4f5668;
}

.detail-copy > p:first-of-type {
    font-size: 17px;
}

.terms-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 23px 0 9px;
}

.terms-chips span {
    padding: 7px 10px;
    border-radius: 8px;
    background: var(--accent-soft, #f1ebff);
    color: var(--accent, #6d28d9);
    font-size: 11px;
    font-weight: 850;
}

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

.activity-card {
    min-width: 0;
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(150deg, var(--accent-soft, #f1ebff), #fff);
    border: 1px solid color-mix(in srgb, var(--accent, #6d28d9), white 75%);
}

.activity-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--accent, #6d28d9);
    color: #fff;
    font-size: 22px;
}

.activity-card h3 {
    margin: 14px 0;
    font-size: 17px;
}

.activity-card > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 0;
    border-top: 1px solid rgba(103, 79, 159, .13);
}

.activity-card > div strong {
    font-size: 24px;
}

.activity-card > div span,
.activity-card p {
    color: var(--muted);
    font-size: 10px;
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.steps-row article {
    position: relative;
    min-height: 208px;
    padding: 26px 18px 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    text-align: center;
    background: linear-gradient(180deg, #fff, #fbfaff);
}

.steps-row article > span {
    position: absolute;
    left: 13px;
    top: 13px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #151827;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.steps-row i {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    margin: 5px auto 13px;
    border-radius: 18px;
    background: var(--accent-soft, #f1ebff);
    color: var(--accent, #6d28d9);
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
}

.steps-row h3 {
    margin: 0;
    font-size: 15px;
}

.steps-row p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.facts-layout {
    grid-template-columns: .8fr 1.2fr;
}

.facts-table {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
}

.facts-table > div {
    display: grid;
    grid-template-columns: 165px minmax(0, 1fr);
    border-bottom: 1px solid var(--line);
}

.facts-table > div:last-child {
    border-bottom: 0;
}

.facts-table dt,
.facts-table dd {
    margin: 0;
    padding: 12px 15px;
    font-size: 12px;
}

.facts-table dt {
    background: #f8f8fb;
    color: var(--muted);
    font-weight: 700;
}

.facts-table dd {
    min-width: 0;
    overflow-wrap: anywhere;
    font-weight: 800;
}

.facts-table .checksum {
    overflow-wrap: anywhere;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 10px;
}

.safety-panel {
    display: block;
    color: #fff;
    background: linear-gradient(135deg, #1b1730, #25203b);
    border: 0;
}

.safety-heading {
    display: flex;
    align-items: center;
    gap: 17px;
}

.safety-heading .eyebrow {
    color: #c6a9ff;
}

.safety-mark {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #ffcb2f;
    color: #1b1730;
    font-size: 25px;
    font-weight: 900;
}

.safety-panel ol {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
    margin: 28px 0;
    list-style: none;
    counter-reset: safety;
}

.safety-panel li {
    position: relative;
    min-height: 78px;
    display: flex;
    align-items: center;
    padding: 14px 17px 14px 58px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    color: #d9d6e5;
    font-size: 13px;
    counter-increment: safety;
}

.safety-panel li::before {
    content: counter(safety);
    position: absolute;
    left: 17px;
    width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #6d28d9;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.safety-panel > a {
    color: #c6a9ff;
    font-weight: 850;
}

.safety-panel > a + a {
    margin-left: 20px;
}

.safety-panel .legal-source-link {
    color: #ffd66b;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.download-dock {
    position: fixed;
    z-index: 85;
    left: 50%;
    bottom: 18px;
    width: min(980px, calc(100% - 40px));
    min-height: 78px;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 10px 12px 10px 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 19px;
    background: rgba(34, 23, 62, .94);
    color: #fff;
    box-shadow: 0 18px 50px rgba(22, 14, 39, .3);
    backdrop-filter: blur(18px);
    transform: translate(-50%, calc(100% + 35px));
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
}

.download-dock.visible {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.dock-logo {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: linear-gradient(145deg, var(--accent), var(--accent-2));
    font-weight: 900;
}

.download-dock > div:nth-child(2) {
    min-width: 0;
    display: grid;
    line-height: 1.35;
}

.download-dock > div:nth-child(2) span {
    overflow: hidden;
    color: #c7bfd9;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.static-hero {
    margin-top: 38px;
    padding: 70px 65px;
    border-radius: 25px;
    background: linear-gradient(135deg, #151126, #35205b 68%, #6e2370);
    color: #fff;
    box-shadow: var(--shadow);
}

.static-hero .eyebrow {
    color: #cdb6ff;
}

.static-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -.05em;
}

.static-hero p {
    max-width: 760px;
    margin: 22px 0 0;
    color: #d4cfe0;
    font-size: 18px;
}

.static-content {
    display: grid;
    gap: 15px;
    margin-top: 24px;
    margin-bottom: 70px;
}

.static-content article {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.static-content article > span {
    color: var(--violet);
    font-size: 20px;
    font-weight: 900;
}

.static-content h2 {
    margin: 0 0 8px;
    font-size: 23px;
}

.static-content p {
    margin: 0;
    color: var(--muted);
}

.official-sources {
    display: grid;
    grid-template-columns: 130px 1fr auto auto;
    align-items: center;
    gap: 18px;
    padding: 24px;
    border: 1px solid #d9cef4;
    border-radius: 18px;
    background: #f5f0ff;
}

.official-sources > span {
    color: var(--violet);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
}

.official-sources h2 {
    margin: 0;
    font-size: 17px;
}

.official-sources p {
    margin: 3px 0 0;
    font-size: 11px;
}

.official-sources a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #bda9e9;
    border-radius: 10px;
    background: #fff;
    color: var(--violet);
    font-size: 10px;
    font-weight: 850;
    white-space: nowrap;
}

.not-found {
    min-height: 62vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-block: 60px;
    text-align: center;
}

.not-found > span {
    color: #ded2ff;
    font-size: clamp(90px, 18vw, 200px);
    font-weight: 950;
    line-height: .8;
}

.not-found h1 {
    margin: 25px 0 7px;
    font-size: 36px;
}

.not-found p {
    margin: 0 0 22px;
    color: var(--muted);
}

.site-footer {
    margin-top: 70px;
    padding: 55px 0 100px;
    background: #11121c;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .7fr;
    gap: 60px;
}

.footer-brand .brand-copy small {
    color: #ff7b46;
}

.footer-grid p {
    max-width: 490px;
    color: #aaaebd;
    font-size: 13px;
}

.footer-grid .independent-note {
    color: #7e8290;
    font-size: 11px;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: #c7a8ff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-grid > div:nth-child(n+2) {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-grid > div:nth-child(n+2) a {
    color: #c6c8d2;
    font-size: 13px;
}

.footer-grid > div:nth-child(n+2) a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #797d8b;
    font-size: 11px;
}

.telegram-fab {
    position: fixed;
    z-index: 90;
    right: 24px;
    bottom: 105px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 4px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: linear-gradient(145deg, #2aa9f3, #087bc4);
    color: #fff;
    box-shadow: 0 12px 28px rgba(5, 113, 181, .3);
}

.telegram-fab span {
    margin-left: -3px;
    font-size: 25px;
    transform: rotate(-24deg);
}

.telegram-fab small {
    position: absolute;
    right: 65px;
    padding: 4px 8px;
    border-radius: 6px;
    background: #172033;
    font-size: 10px;
    opacity: 0;
    transform: translateX(5px);
    transition: opacity .2s ease, transform .2s ease;
}

.telegram-fab:hover small {
    opacity: 1;
    transform: none;
}

.mobile-bottom-nav {
    display: none;
}

.age-backdrop {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(15, 11, 27, .76);
    backdrop-filter: blur(10px);
}

.age-dialog {
    width: min(500px, 100%);
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 28px 85px rgba(11, 5, 29, .36);
    text-align: center;
}

.age-badge {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin: -2px auto 18px;
    border: 8px solid #f1ebff;
    border-radius: 50%;
    background: linear-gradient(145deg, #6d28d9, #d91b8f);
    color: #fff;
    font-size: 24px;
    font-weight: 950;
}

.age-dialog h2 {
    margin: 0;
    font-size: 32px;
    letter-spacing: -.03em;
}

.age-dialog > p:not(.eyebrow) {
    color: var(--muted);
}

.age-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 23px 0 14px;
}

.age-actions form,
.age-actions .button {
    width: 100%;
}

.age-dialog > small {
    display: block;
    color: #858b9a;
    font-size: 10px;
}

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: 44px auto minmax(180px, 1fr) auto;
    }

    .desktop-nav {
        display: none;
    }

    .home-hero {
        grid-template-columns: .95fr 1.05fr;
    }

    .hero-copy {
        padding-left: 38px;
    }

    .category-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .game-card {
        grid-template-columns: 44px 70px minmax(0, 1fr) 150px;
        padding: 17px;
    }

    .game-logo-wrap {
        width: 70px;
        height: 70px;
    }

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

    .game-product {
        grid-template-columns: 160px 1fr;
    }

    .detail-logo {
        width: 160px;
        height: 160px;
    }

    .product-tools {
        grid-column: 2;
        align-self: start;
    }

    .detail-section {
        gap: 32px;
    }
}

@media (max-width: 820px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(100% - 28px, 720px);
    }

    .header-inner {
        grid-template-columns: 42px auto 1fr auto;
        gap: 9px;
    }

    .brand-mark {
        width: 34px;
        height: 38px;
        transform: scale(.84);
        transform-origin: left center;
        margin-right: -5px;
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .brand-copy small {
        font-size: 8px;
    }

    .header-search {
        width: 44px;
        height: 44px;
        justify-self: end;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .header-search input,
    .header-search datalist {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .header-search button {
        width: 44px;
        font-size: 27px;
    }

    .language-switch {
        min-height: 40px;
        padding-inline: 10px;
        font-size: 11px;
    }

    .warning-inner {
        align-items: flex-start;
    }

    .warning-inner a {
        display: none;
    }

    .home-hero {
        min-height: auto;
        grid-template-columns: 1fr;
        margin-top: 16px;
        border-radius: 20px;
    }

    .hero-copy {
        padding: 31px 24px 4px;
    }

    .hero-copy h1 {
        max-width: 570px;
        font-size: clamp(38px, 10vw, 55px);
    }

    .hero-copy > p {
        font-size: 14px;
    }

    .hero-art {
        min-height: 290px;
        justify-content: center;
        overflow: hidden;
    }

    .hero-art img {
        width: 112%;
        margin: -25px -6% -24px 0;
    }

    .trust-row {
        padding-inline: 10px;
    }

    .trust-row > div {
        gap: 8px;
        padding-inline: 10px;
    }

    .trust-icon {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }

    .trust-row strong {
        font-size: 13px;
    }

    .category-shell,
    .games-section,
    .content-section,
    .faq-section,
    .related-section {
        margin-top: 40px;
    }

    .category-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .category-chip {
        min-width: 95px;
        scroll-snap-align: start;
    }

    .directory-tools {
        grid-template-columns: 1fr;
    }

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

    .game-card {
        grid-template-columns: 42px 72px minmax(0, 1fr) 148px;
        min-height: 122px;
        gap: 13px;
        padding: 16px;
    }

    .game-logo-wrap {
        width: 72px;
        height: 72px;
    }

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

    .content-section {
        padding: 35px 24px;
    }

    .content-intro {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .content-intro .eyebrow {
        margin-bottom: -10px;
    }

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

    .game-product {
        grid-template-columns: 130px 1fr;
        gap: 24px;
        padding: 25px;
    }

    .detail-logo {
        width: 130px;
        height: 130px;
        border-radius: 22px;
    }

    .detail-logo .game-logo-fallback {
        font-size: 40px;
    }

    .product-stats div {
        min-width: 0;
    }

    .product-tools {
        grid-column: 1 / -1;
    }

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

    .banner-copy {
        padding: 30px;
    }

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

    .detail-trust > div:nth-child(2) {
        border-right: 0;
    }

    .detail-trust > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .detail-section,
    .facts-layout {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .game-page.variant-1 #overview {
        grid-template-columns: 1fr;
    }

    .activity-card {
        width: 100%;
    }

    .steps-row {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .steps-row article {
        min-width: 220px;
        scroll-snap-align: start;
    }

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

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

    .static-hero {
        padding: 50px 35px;
    }

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

    .official-sources {
        grid-template-columns: 1fr 1fr;
    }

    .official-sources > span,
    .official-sources > div {
        grid-column: 1 / -1;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    body {
        padding-bottom: calc(96px + env(safe-area-inset-bottom));
    }

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

    .header-inner {
        grid-template-columns: 40px auto 1fr auto;
        gap: 5px;
    }

    .brand-copy strong {
        font-size: 16px;
    }

    .brand-copy small {
        letter-spacing: .16em;
    }

    .language-switch {
        padding-inline: 8px;
        border-color: #c9b8f5;
    }

    .warning-icon {
        margin-top: 2px;
    }

    .warning-inner p {
        font-size: 11px;
    }

    .home-hero {
        width: calc(100% - 24px);
    }

    .hero-pill {
        font-size: 10px;
    }

    .hero-actions .button {
        flex: 1 1 150px;
        padding-inline: 15px;
        font-size: 13px;
    }

    .hero-art {
        min-height: 230px;
    }

    .trust-row {
        overflow-x: auto;
        grid-template-columns: repeat(3, minmax(150px, 1fr));
        scroll-snap-type: x mandatory;
    }

    .trust-row > div {
        justify-content: flex-start;
        border-right: 0;
        scroll-snap-align: start;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .section-heading h2,
    .content-intro h2,
    .detail-section h2 {
        font-size: 26px;
    }

    .segmented button {
        padding-inline: 13px;
        font-size: 12px;
    }

    .game-card {
        grid-template-columns: 34px 64px minmax(0, 1fr);
        grid-template-areas:
            "rank logo content"
            ". action action";
        align-items: start;
        gap: 11px;
        padding: 14px 13px;
    }

    .game-logo-wrap {
        width: 64px;
        height: 64px;
        border-radius: 15px;
    }

    .rank-badge {
        width: 32px;
        height: 48px;
        border-radius: 11px;
    }

    .rank-badge strong {
        font-size: 15px;
    }

    .game-name {
        font-size: 16px;
        white-space: normal;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .category-label {
        display: none;
    }

    .game-card-button {
        width: 100%;
        min-height: 48px;
    }

    .game-mini-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 3px;
        margin-top: 7px;
    }

    .game-mini-meta .meta-withdrawal {
        grid-column: 1 / -1;
    }

    .game-mini-meta > span {
        min-height: 21px;
        gap: 5px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .game-mini-meta > span > b {
        flex-basis: 19px;
        width: 19px;
        height: 19px;
        border-radius: 6px;
        font-size: 9px;
    }

    .game-mini-meta > span > span {
        display: flex;
        align-items: baseline;
        gap: 5px;
    }

    .game-mini-meta small,
    .game-mini-meta strong {
        margin: 0;
        font-size: 9px;
    }

    .bonus-banner {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
    }

    .bonus-banner strong {
        font-size: 44px;
    }

    .bonus-banner > a {
        width: 100%;
        justify-content: center;
    }

    .editorial-grid article {
        padding: 64px 20px 22px;
    }

    .article-number {
        left: 20px;
        top: 20px;
    }

    .breadcrumbs {
        padding-block: 14px;
    }

    .game-product {
        grid-template-columns: 94px 1fr;
        gap: 17px;
        padding: 18px;
    }

    .detail-logo {
        width: 94px;
        height: 94px;
        border-radius: 19px;
    }

    .detail-logo .game-logo-fallback {
        font-size: 30px;
    }

    .product-copy h1 {
        font-size: 29px;
    }

    .product-tagline {
        font-size: 13px;
    }

    .status-row {
        flex-wrap: wrap;
    }

    .status-row .category-label {
        display: inline-flex;
    }

    .product-stats {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-column: 1 / -1;
        margin-bottom: 13px;
    }

    .product-stats div {
        padding-inline: 9px;
    }

    .product-stats strong {
        font-size: 17px;
    }

    .download-primary,
    .product-copy .download-primary {
        min-width: 0;
        width: 100%;
        min-height: 54px;
        font-size: 12px;
    }

    .product-copy {
        display: contents;
    }

    .product-copy .status-row,
    .product-copy h1,
    .product-copy .product-tagline {
        grid-column: 2;
    }

    .product-copy .product-stats,
    .product-copy .download-primary,
    .product-copy .microcopy {
        grid-column: 1 / -1;
    }

    .product-tools {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .utility-button {
        min-height: 56px;
        display: flex;
        gap: 8px;
    }

    .game-banner {
        min-height: 410px;
        grid-template-columns: 1fr;
    }

    .banner-copy {
        position: absolute;
        inset: auto 0 0;
        z-index: 3;
        padding: 28px 24px;
        background: linear-gradient(transparent, rgba(13, 5, 34, .95) 30%);
    }

    .banner-copy h2 {
        font-size: 33px;
    }

    .game-banner img {
        min-height: 410px;
        object-position: 62% center;
    }

    .detail-trust > div {
        justify-content: flex-start;
        min-height: 86px;
        padding: 12px;
    }

    .detail-trust > div > span {
        width: 37px;
        height: 37px;
    }

    .section-tabs {
        top: calc(var(--header-height) + 5px);
        width: calc(100% - 12px);
    }

    .detail-section,
    .facts-layout {
        padding: 25px 20px;
    }

    .facts-table > div {
        grid-template-columns: 115px minmax(0, 1fr);
    }

    .facts-table dt,
    .facts-table dd {
        padding: 10px;
        font-size: 10px;
    }

    .download-dock {
        bottom: calc(92px + env(safe-area-inset-bottom));
        width: calc(100% - 20px);
        min-height: 70px;
        grid-template-columns: 46px minmax(0, 1fr) auto;
        gap: 9px;
        border-radius: 16px;
    }

    .dock-logo {
        width: 46px;
        height: 46px;
        font-size: 12px;
    }

    .download-dock > div:nth-child(2) strong {
        max-width: 110px;
        overflow: hidden;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .download-dock .button {
        min-height: 44px;
        padding: 8px 12px;
        font-size: 10px;
    }

    .static-hero {
        margin-top: 18px;
        padding: 40px 24px;
    }

    .static-hero h1 {
        font-size: 42px;
    }

    .static-hero p {
        font-size: 15px;
    }

    .static-content article {
        grid-template-columns: 1fr;
        padding: 23px;
    }

    .official-sources {
        grid-template-columns: 1fr;
    }

    .official-sources > span,
    .official-sources > div {
        grid-column: auto;
    }

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

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .telegram-fab {
        right: 16px;
        bottom: calc(104px + env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
    }

    body:has(.download-dock) .telegram-fab {
        bottom: calc(176px + env(safe-area-inset-bottom));
    }

    .mobile-bottom-nav {
        position: fixed;
        z-index: 95;
        left: 8px;
        right: 8px;
        bottom: max(8px, env(safe-area-inset-bottom));
        min-width: 0;
        min-height: 70px;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 2px;
        padding: 6px;
        border: 1px solid rgba(109, 40, 217, .13);
        border-radius: 21px;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 14px 38px rgba(35, 24, 69, .2);
        backdrop-filter: blur(20px);
    }

    .mobile-bottom-nav a {
        position: relative;
        min-width: 0;
        min-height: 56px;
        display: grid;
        place-items: center;
        align-content: center;
        gap: 1px;
        padding: 3px 1px;
        border-radius: 15px;
        color: #6d7485;
        transition: color .2s ease, background .2s ease, transform .2s ease;
    }

    .mobile-bottom-nav a:active {
        transform: scale(.96);
    }

    .mobile-bottom-nav .nav-icon {
        position: relative;
        width: 30px;
        height: 30px;
        display: block;
        border-radius: 10px;
        background: #f3f4f8;
        color: currentColor;
        transition: transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
    }

    .mobile-bottom-nav .nav-label {
        max-width: 100%;
        overflow: hidden;
        font-size: 8px;
        font-weight: 780;
        line-height: 1.1;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nav-icon-home::before,
    .nav-icon-home::after,
    .nav-icon-games::before,
    .nav-icon-about::before,
    .nav-icon-alert::before,
    .nav-icon-alert::after,
    .nav-icon-telegram::before {
        content: "";
        position: absolute;
    }

    .nav-icon-home::before {
        left: 8px;
        bottom: 6px;
        width: 12px;
        height: 10px;
        border: 2px solid currentColor;
        border-top: 0;
        border-radius: 2px 2px 4px 4px;
    }

    .nav-icon-home::after {
        left: 8px;
        top: 6px;
        width: 11px;
        height: 11px;
        border-top: 2px solid currentColor;
        border-left: 2px solid currentColor;
        border-radius: 2px;
        transform: rotate(45deg);
    }

    .nav-icon-games::before {
        left: 7px;
        top: 7px;
        width: 6px;
        height: 6px;
        border-radius: 2px;
        background: currentColor;
        box-shadow: 10px 0 currentColor, 0 10px currentColor, 10px 10px currentColor;
    }

    .nav-icon-about::before {
        content: "i";
        inset: 5px;
        display: grid;
        place-items: center;
        border: 2px solid currentColor;
        border-radius: 50%;
        font-size: 13px;
        font-weight: 950;
        font-style: normal;
        line-height: 1;
    }

    .nav-icon-alert::before {
        inset: 5px 4px 4px;
        background: currentColor;
        clip-path: polygon(50% 0, 100% 92%, 0 92%);
    }

    .nav-icon-alert::after {
        content: "!";
        left: 0;
        right: 0;
        top: 8px;
        color: #fff;
        font-size: 12px;
        font-weight: 950;
        text-align: center;
    }

    .nav-icon-telegram::before {
        inset: 6px 5px 5px 6px;
        background: currentColor;
        clip-path: polygon(0 42%, 100% 0, 68% 100%, 49% 63%, 30% 79%, 35% 56%);
    }

    .mobile-bottom-nav a:has(.nav-icon-alert):not(.active) {
        color: #c95832;
    }

    .mobile-bottom-nav a:has(.nav-icon-telegram) {
        color: #1488c9;
    }

    .mobile-bottom-nav a.active {
        background: #f6f1ff;
        color: var(--violet);
    }

    .mobile-bottom-nav a.active .nav-icon {
        color: #fff;
        background: linear-gradient(135deg, #6d28d9, #a63cf0);
        box-shadow: 0 8px 16px rgba(109, 40, 217, .24);
        transform: translateY(-2px);
    }

    .mobile-bottom-nav a.active .nav-icon-alert::after {
        color: var(--violet);
    }

    .safety-panel > a {
        display: block;
        overflow-wrap: anywhere;
    }

    .safety-panel > a + a {
        margin-top: 8px;
        margin-left: 0;
    }

    .age-dialog {
        padding: 28px 20px;
    }

    .age-actions {
        grid-template-columns: 1fr;
    }
}

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

    .header-inner {
        grid-template-columns: 40px minmax(0, 1fr) 40px auto;
        gap: 3px;
    }

    .icon-button,
    .header-search,
    .header-search button {
        width: 40px;
    }

    .brand,
    .brand-copy {
        min-width: 0;
    }

    .brand {
        gap: 5px;
    }

    .brand-copy strong {
        overflow: hidden;
        font-size: 14px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .brand-copy small {
        display: none;
    }

    .language-switch {
        min-height: 38px;
        padding-inline: 6px;
        font-size: 9px;
        white-space: nowrap;
    }

    .warning-inner p {
        overflow-wrap: anywhere;
    }

    .game-card {
        grid-template-columns: 31px 58px minmax(0, 1fr);
        gap: 9px;
        padding: 12px 10px;
    }

    .rank-badge {
        width: 30px;
        height: 45px;
    }

    .game-logo-wrap {
        width: 58px;
        height: 58px;
    }

    .card-download-icon {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
    }

    .mobile-bottom-nav {
        left: 5px;
        right: 5px;
        padding-inline: 4px;
    }

    .mobile-bottom-nav .nav-label {
        font-size: 7.5px;
    }
}

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

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