:root {
    color-scheme: dark;
    --bg-primary: #0d1329;
    --bg-deep: #0a0f1f;
    --bg-filler: #151c35;
    --bg-surface: #1e2643;
    --bg-card: #252b4a;
    --accent: #ec494f;
    --accent-pink: #ff3b6f;
    --accent-blue: #4a6cf7;
    --accent-active: #0f9af0;
    --accent-mint: #2ee6a6;
    --accent-orange: #ffb14a;
    --text-primary: #ffffff;
    --text-secondary: #aeb7d3;
    --text-muted: #8892b0;
    --line: rgba(255, 255, 255, 0.13);
    --line-strong: rgba(255, 255, 255, 0.22);
    --shadow-card: 0 20px 48px rgba(0, 0, 0, 0.28);
    --shadow-accent: 0 12px 34px rgba(255, 59, 111, 0.28);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    --font-display: "Unbounded", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(180deg, rgba(13, 19, 41, 0.94) 0%, rgba(10, 15, 31, 1) 48%, rgba(13, 19, 41, 1) 100%),
        var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(115deg, rgba(74, 108, 247, 0.12) 0%, transparent 32%),
        linear-gradient(245deg, rgba(236, 73, 79, 0.12) 0%, transparent 34%);
}

a {
    color: inherit;
}

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

:focus-visible {
    outline: 3px solid rgba(46, 230, 166, 0.88);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    transform: translateY(-150%);
    padding: 10px 14px;
    color: var(--bg-deep);
    background: var(--accent-mint);
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 22px;
    padding: 12px clamp(16px, 4vw, 56px);
    background: rgba(13, 19, 41, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: auto;
    height: clamp(42px, 4.8vw, 56px);
}

.top-nav {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 3vw, 36px);
    color: var(--text-secondary);
    font-size: 0.94rem;
    font-weight: 650;
}

.top-nav a,
.footer nav a {
    text-decoration: none;
}

.top-nav a:hover,
.footer nav a:hover {
    color: var(--text-primary);
}

.language-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: stretch;
    min-width: 94px;
    min-height: 40px;
    padding: 0;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.language-switcher::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(255, 255, 255, 0.78);
    pointer-events: none;
    transform: translateY(-35%);
}

.language-switcher:focus-within {
    border-color: rgba(255, 59, 111, 0.62);
    box-shadow: 0 0 0 4px rgba(255, 59, 111, 0.14);
}

.language-current {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 32px 0 14px;
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    pointer-events: none;
}

.language-current-flag {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
    font-size: 1rem;
    line-height: 1;
}

.language-select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: 999px;
    appearance: none;
    background: transparent;
    color: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0;
    outline: 0;
    opacity: 0;
    text-transform: uppercase;
}

.language-select option {
    color: #17111f;
    background: #ffffff;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", system-ui, sans-serif;
}

.header-cta,
.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid transparent;
    border-radius: 999px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.18s var(--ease-out), border-color 0.18s var(--ease-out), background 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
    white-space: nowrap;
}

.header-cta {
    padding: 0 20px;
    color: var(--text-primary);
    background: var(--accent);
    box-shadow: 0 10px 28px rgba(236, 73, 79, 0.28);
}

.btn {
    padding: 0 22px;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-pink));
    box-shadow: var(--shadow-accent);
}

.btn-secondary {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.065);
    border-color: var(--line-strong);
}

.btn:hover,
.header-cta:hover {
    transform: translateY(-2px);
}

.btn:active,
.header-cta:active,
.game-card:active,
.blog-card:active,
.scenario-list a:active,
.hero-scenarios a:active {
    transform: translateY(1px) scale(0.99);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.1);
}

.hero {
    position: relative;
    min-height: 80svh;
    display: grid;
    align-items: center;
    padding: 104px clamp(18px, 5vw, 72px) 52px;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(13, 19, 41, 0.96) 0%, rgba(13, 19, 41, 0.72) 46%, rgba(10, 15, 31, 0.92) 100%),
        linear-gradient(180deg, rgba(13, 19, 41, 0.08) 0%, rgba(13, 19, 41, 0.98) 100%);
    pointer-events: none;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    background: #0d1329;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: brightness(0.62) saturate(1.08) contrast(1.06);
    transform: scale(1.02);
}

.hero-strip {
    position: absolute;
    left: 50%;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(148px, 1fr));
    width: min(880px, 112vw);
    gap: 14px;
    transform: translateX(-50%) rotate(-6deg);
}

.hero-strip-a {
    top: 15%;
}

.hero-strip-b {
    bottom: 8%;
    transform: translateX(-45%) rotate(7deg);
}

.hero-strip span {
    min-height: 126px;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(30, 38, 67, 0.78);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    color: var(--text-primary);
    font-size: 0.84rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.68;
}

.hero-strip img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.26));
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(318px, 0.72fr);
    align-items: center;
    gap: clamp(28px, 5vw, 60px);
    width: min(1180px, 100%);
    margin: 0 auto;
}

.seo-hero {
    min-height: 74svh;
    display: grid;
    align-items: center;
    padding: 120px clamp(18px, 5vw, 72px) 64px;
    background:
        linear-gradient(115deg, rgba(236, 73, 79, 0.18), transparent 34%),
        linear-gradient(245deg, rgba(46, 230, 166, 0.13), transparent 31%),
        rgba(10, 15, 31, 0.78);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.seo-hero-compact {
    min-height: auto;
    padding-bottom: 52px;
}

.seo-hero-inner {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
    margin: 0 auto;
}

.semantic-panel,
.game-profile-card,
.content-panel {
    background: rgba(30, 38, 67, 0.78);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-card);
}

.semantic-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 18px;
    padding: 24px;
}

.semantic-panel span {
    color: var(--text-secondary);
    font-weight: 800;
}

.semantic-panel strong {
    color: var(--accent-mint);
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.game-profile-card {
    display: grid;
    gap: 16px;
    justify-items: start;
    padding: 24px;
}

.game-profile-card img {
    width: 108px;
    height: 108px;
    object-fit: contain;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.28));
}

.game-profile-card h2 {
    font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.breadcrumbs a,
.breadcrumbs span {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #ffffff;
}

.seo-content-grid {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 16px;
    margin: 0 auto;
}

.content-panel {
    padding: 24px;
}

.content-panel p {
    color: var(--text-secondary);
}

.keyword-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.keyword-cluster span,
.keyword-cluster a,
.meta-row span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}

.keyword-cluster a:hover {
    background: rgba(15, 154, 240, 0.15);
    border-color: rgba(15, 154, 240, 0.55);
}

.intent-card {
    min-height: 230px;
}

.hero-copy-block {
    min-width: 0;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent-mint);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1 {
    max-width: 770px;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.8vw, 4.55rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
    overflow-wrap: break-word;
}

h1 span {
    display: block;
    color: var(--text-primary);
}

h2 {
    margin-bottom: 0;
    font-family: var(--font-display);
    font-size: clamp(1.78rem, 3.35vw, 3.35rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 750;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 650px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: clamp(1.04rem, 1.65vw, 1.22rem);
    overflow-wrap: anywhere;
}

.updated-note {
    margin: -10px 0 22px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.hero-actions,
.center-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.quick-answer {
    max-width: 660px;
    margin-top: 24px;
    padding: 16px 18px;
    color: var(--text-secondary);
    background: rgba(30, 38, 67, 0.62);
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent-mint);
    border-radius: 16px;
    overflow-wrap: anywhere;
}

.hero-scenarios {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.hero-scenarios a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 760;
    text-decoration: none;
    transition: transform 0.18s var(--ease-out), color 0.18s var(--ease-out), border-color 0.18s var(--ease-out), background 0.18s var(--ease-out);
}

.hero-scenarios a:hover {
    color: #ffffff;
    background: rgba(15, 154, 240, 0.14);
    border-color: rgba(15, 154, 240, 0.54);
}

.hero-phone {
    width: min(360px, 100%);
    justify-self: end;
    padding: 13px;
    background: rgba(10, 15, 31, 0.72);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.phone-screen {
    min-height: 592px;
    padding: 24px 18px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 100%);
    border-radius: 22px;
    overflow: hidden;
}

.phone-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.phone-title {
    font-size: 1.05rem;
    font-weight: 800;
}

.phone-pill {
    padding: 7px 10px;
    border-radius: 999px;
    color: #b7f3bd;
    background: rgba(27, 94, 32, 0.34);
    border: 1px solid rgba(129, 199, 132, 0.34);
    font-size: 0.78rem;
    font-weight: 900;
}

.room-code-card {
    position: relative;
    display: grid;
    gap: 4px;
    margin-bottom: 16px;
    padding: 16px;
    background:
        linear-gradient(135deg, rgba(236, 73, 79, 0.2), rgba(74, 108, 247, 0.14)),
        rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
}

.room-code-card::after {
    content: "";
    position: absolute;
    top: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background:
        linear-gradient(90deg, #fff 6px, transparent 6px) 0 0 / 14px 14px,
        linear-gradient(#fff 6px, transparent 6px) 0 0 / 14px 14px,
        rgba(255, 255, 255, 0.18);
    opacity: 0.72;
}

.room-code-label,
.room-code-note {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 760;
}

.room-code-card strong {
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.06em;
}

.phone-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.phone-tabs span {
    padding: 8px 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.phone-tabs span:first-child {
    color: #fff;
    background: var(--accent-pink);
    border-color: var(--accent-pink);
}

.phone-games {
    display: grid;
    gap: 12px;
}

.phone-game {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.phone-game img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.phone-game strong,
.phone-game small {
    display: block;
}

.phone-game strong {
    margin-bottom: 3px;
    font-size: 0.96rem;
}

.phone-game small {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.section {
    padding: clamp(58px, 9vw, 106px) clamp(18px, 5vw, 72px);
    border-bottom: 1px solid var(--line);
}

.section-head {
    width: min(780px, 100%);
    margin-bottom: clamp(26px, 5vw, 44px);
}

.section-head p:not(.eyebrow),
.steps p,
.price-card p,
.blog-grid p,
.faq-list p,
.game-card small {
    color: var(--text-secondary);
}

.steps,
.game-grid,
.pricing-grid,
.blog-grid,
.faq-list,
.scenario-list {
    width: min(1180px, 100%);
    margin-left: auto;
    margin-right: auto;
}

.section-head {
    margin-left: auto;
    margin-right: auto;
}

.steps,
.pricing-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

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

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

.aeo-card p {
    min-height: 72px;
}

.steps article,
.price-card,
.blog-card {
    min-height: 205px;
    padding: 24px;
    background: rgba(30, 38, 67, 0.76);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.blog-card {
    display: block;
    text-decoration: none;
    transition: transform 0.18s var(--ease-out), border-color 0.18s var(--ease-out), background 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 59, 111, 0.55);
    background: #252b4a;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.steps span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 22px;
    color: var(--text-primary);
    background: var(--accent-blue);
    border-radius: 14px;
    font-weight: 900;
}

.featured-games {
    background: rgba(21, 28, 53, 0.58);
}

#games {
    scroll-margin-top: 118px;
}

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

.game-card {
    min-height: 240px;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 19px;
    background: var(--bg-surface);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: transform 0.18s var(--ease-out), border-color 0.18s var(--ease-out), background 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 59, 111, 0.6);
    background: #252b4a;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.game-card img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.24));
}

.game-card span {
    color: var(--text-primary);
    font-size: 1.08rem;
    font-weight: 850;
}

.game-card em {
    width: max-content;
    max-width: 100%;
    padding: 5px 9px;
    color: #b7f3bd;
    background: rgba(27, 94, 32, 0.28);
    border: 1px solid rgba(129, 199, 132, 0.28);
    border-radius: 999px;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
}

.center-row {
    justify-content: center;
    margin-top: 28px;
}

.scenario-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.scenario-list a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    padding: 0 17px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.065);
    border: 1.5px solid var(--line);
    border-radius: 999px;
    text-decoration: none;
    font-weight: 760;
}

.scenario-list a:hover {
    background: rgba(15, 154, 240, 0.15);
    border-color: rgba(15, 154, 240, 0.55);
}

.pricing {
    background: rgba(10, 15, 31, 0.64);
}

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

.price-card {
    min-height: 275px;
    display: grid;
    align-content: start;
    gap: 14px;
}

.price-card ul {
    display: grid;
    gap: 8px;
    margin: 0 0 6px;
    padding: 0;
    color: var(--text-secondary);
    list-style: none;
}

.price-card li {
    position: relative;
    padding-left: 18px;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    background: var(--accent-mint);
    border-radius: 999px;
    transform: translateY(-50%);
}

.price-card-pro {
    background: linear-gradient(180deg, rgba(236, 73, 79, 0.18), rgba(37, 43, 74, 0.92));
    border-color: rgba(236, 73, 79, 0.42);
}

.price {
    margin-bottom: 2px;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.4rem);
    font-weight: 900;
    line-height: 1;
}

.blog-card span {
    color: var(--accent-mint);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

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

details {
    background: rgba(30, 38, 67, 0.76);
    border: 1px solid var(--line);
    border-radius: 16px;
}

summary {
    min-height: 64px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    cursor: pointer;
    color: var(--text-primary);
    font-weight: 820;
}

summary::after {
    content: "+";
    margin-left: auto;
    color: var(--accent-mint);
    font-size: 1.4rem;
    font-weight: 700;
}

details[open] summary::after {
    content: "−";
}

details p {
    margin: 0;
    padding: 0 20px 20px;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 28px clamp(18px, 5vw, 72px);
    background: #080d1d;
}

.footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: var(--text-secondary);
    font-size: 0.94rem;
}

.footer-copy {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.94rem;
    font-weight: 700;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: auto auto auto;
    }

    .top-nav {
        display: none;
    }

    .hero-content,
    .seo-hero-inner,
    .seo-content-grid {
        grid-template-columns: 1fr;
    }

    .hero-phone {
        justify-self: start;
        width: min(430px, 100%);
    }

    .phone-screen {
        min-height: 0;
    }

    .steps,
    .game-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 640px) {
    .site-header {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 14px;
    }

    .brand {
        flex: 0 1 auto;
    }

    .brand-logo {
        height: 42px;
    }

    .header-cta {
        display: none;
    }

    .language-switcher {
        margin-left: auto;
    }

    .hero,
    .seo-hero {
        min-height: auto;
        padding: 92px 16px 42px;
    }

    .hero-content {
        width: min(366px, 84vw);
        justify-items: start;
    }

    .hero-copy-block {
        width: min(366px, 84vw);
        max-width: min(366px, 84vw);
    }

    .hero-actions {
        width: min(366px, 84vw);
        max-width: min(366px, 84vw);
    }

    .hero-strip {
        width: 680px;
        grid-template-columns: repeat(4, 130px);
        gap: 10px;
        opacity: 0.55;
    }

    .hero-strip span {
        min-height: 108px;
        font-size: 0.74rem;
    }

    .hero-strip img {
        width: 50px;
        height: 50px;
    }

    h1 {
        font-size: clamp(1.86rem, 7.7vw, 2.44rem);
        line-height: 1.14;
    }

    h2 {
        font-size: clamp(1.58rem, 7.2vw, 2.2rem);
        line-height: 1.12;
    }

    .hero-actions .btn,
    .center-row .btn,
    .price-card .btn {
        width: 100%;
        max-width: min(366px, 84vw);
    }

    h1,
    .hero-copy,
    .quick-answer {
        width: 100%;
        max-width: min(366px, 84vw);
    }

    .hero-phone {
        display: none;
    }

    .section {
        padding: 56px 16px;
    }

    .steps,
    .game-grid,
    .pricing-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    #games {
        scroll-margin-top: 92px;
    }

    .game-card {
        min-height: 174px;
    }

    .footer {
        align-items: flex-start;
    }
}

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