/* Base layout and typography */

:root {
    --bg-page: #f4f6fb;
    --bg-elevated: #ffffff;
    --bg-elevated-soft: #eef3ff;
    --bg-accent: #0f766e;
    --bg-accent-soft: #e0f2f1;
    --bg-accent-muted: #edf2ff;
    --border-subtle: rgba(15, 23, 42, 0.08);
    --border-strong: rgba(15, 23, 42, 0.12);
    --text-main: #111827;
    --text-muted: #6b7280;
    --text-on-accent: #f9fafb;
    --accent: #2563eb;
    --accent-soft: #dbeafe;
    --accent-strong: #1d4ed8;
    --accent-warm: #f97316;
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --radius-sm: 0.75rem;
    --radius-pill: 999px;
    --transition-fast: 150ms ease-out;
    --container-width: 1120px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #e0ecff 0, #f5f7fb 40%, #f9fafb 75%);
    color: var(--text-main);
    line-height: 1.6;
}

/* Containers & sections */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4rem 0;
}

.section-accent {
    padding: 4.5rem 0;
    background: radial-gradient(circle at top right, #dbeafe 0, #ecfeff 45%, #f5f7fb 100%);
}

.section-soft {
    background: #f9fafb;
}

.section-accent-soft {
    background: linear-gradient(135deg, #ecfeff 0, #eef2ff 40%, #f9fafb 100%);
}

/* Header & navigation */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(244, 246, 251, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.brand-mark img {
    width: 100%;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 650;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: #0f172a;
}

.brand-domain {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Navigation */

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 0.3rem;
    border-radius: 0.75rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #111827;
    border-radius: 999px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle span + span {
    margin-top: 4px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-menu a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #111827;
    padding: 0.4rem 0.4rem;
    border-radius: 0.5rem;
}

.nav-menu a:hover {
    color: var(--accent-strong);
}

.nav-menu a.is-active {
    color: var(--accent-strong);
    font-weight: 600;
}

.nav-separator {
    width: 1px;
    height: 1.5rem;
    background: rgba(148, 163, 184, 0.6);
}

/* Buttons */

.btn-primary,
.btn-outline,
.btn-ghost,
.btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    padding: 0.55rem 1.25rem;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #0f766e);
    color: var(--text-on-accent);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.45);
    transform: translateY(-1px);
}

.btn-outline {
    border-color: rgba(37, 99, 235, 0.25);
    color: #1f2933;
    background: rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
    border-color: rgba(37, 99, 235, 0.65);
}

.btn-ghost {
    border-color: transparent;
    background: transparent;
    color: #1f2933;
}

.btn-ghost:hover {
    background: rgba(15, 23, 42, 0.04);
}

.btn-small {
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: #f9fafb;
}

.btn-small:hover {
    background: #e5edff;
}

.btn-full {
    width: 100%;
}

/* Age banner */

.age-banner {
    background: #0f172a;
    color: #e5e7eb;
    border-bottom: 1px solid rgba(148, 163, 184, 0.55);
}

.age-banner-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.age-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.9rem;
    background: radial-gradient(circle at 30% 20%, #fde047 0, #fb923c 45%, #b91c1c 100%);
    font-weight: 700;
    color: #111827;
    box-shadow: 0 0 0 2px rgba(248, 250, 252, 0.15);
    flex-shrink: 0;
}

.age-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.age-banner-close {
    margin-left: auto;
    background: #e5e7eb;
    color: #111827;
    border-radius: 999px;
    padding: 0.25rem 0.8rem;
    border: none;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}

.age-banner-close:hover {
    background: #facc15;
}

.hero {
    padding: 4rem 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    padding: 0.75rem 1.5rem;
    border: 1px solid transparent;
    background: linear-gradient(135deg, #2563eb, #0f766e);
    color: var(--text-on-accent);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
    cursor: pointer;
    transition: all 0.15s ease-out;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.45);
}

.hero-card {
    background: radial-gradient(circle at top left, #dbeafe 0, #eff6ff 40%, #ffffff 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
}

.hero-card-header {
    margin-bottom: 1.5rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-pill);
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.35);
    color: #166534;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-card h2 {
    font-size: 1.4rem;
    margin: 0;
}

.hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
    font-size: 0.95rem;
    color: #374151;
}

.hero-card-footer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 960px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-text {
        text-align: center;
    }
}


/* Shared layouts */

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: flex-start;
}

.faq-question {
    margin: 0 0 5px 0;
}

.info-panel {
    background: radial-gradient(circle at top, #eef2ff 0, #ffffff 40%);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    font-size: 0.92rem;
}

.info-panel img {
    max-width: 100%;
    border-radius: 15px;
}

.info-panel h3 {
    margin-top: 0;
}

.info-panel ul {
    padding-left: 1.1rem;
    margin: 0.6rem 0 0;
}

/* Section heading */

.section-heading {
    max-width: 48rem;
    margin-bottom: 2rem;
}

.section-heading h2 {
    margin: 0 0 0.4rem;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
}

.section-heading p {
    margin: 0;
    color: var(--text-muted);
}

.game-overview {
    position: relative;
    overflow: hidden;
}

.game-overview-header {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3rem;
}

.game-brand {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.game-brand img {
    width: 140px;
    padding: 1rem;
    background: #ffffff;
    border-radius: 1.2rem;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

.game-tag {
    position: absolute;
    top: -0.6rem;
    right: -0.6rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #052e16;
}

.game-intro h2 {
    font-size: 2rem;
    letter-spacing: -0.03em;
    margin: 0 0 0.6rem;
}

.game-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #1d4ed8;
    margin-bottom: 0.8rem;
}

.game-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 42rem;
}

.game-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2.8rem;
}

.spec-card {
    background: linear-gradient(135deg, #ffffff, #f1f5ff);
    border-radius: 1.2rem;
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #6b7280;
    margin-bottom: 0.3rem;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.game-highlights {
    background: radial-gradient(circle at top left, #eef2ff 0, #ffffff 55%);
    border-radius: 1.5rem;
    padding: 1.9rem 1.8rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
    margin-bottom: 2.2rem;
}

.game-highlights h3 {
    margin: 0 0 0.9rem;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.game-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.65rem;
}

.game-highlights li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: #374151;
}

.game-highlights li::before {
    content: "";
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #0f766e);
    flex-shrink: 0;
}

.game-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

@media (max-width: 960px) {
    .game-overview-header {
        grid-template-columns: minmax(0, 1fr);
        text-align: center;
    }

    .game-brand {
        justify-content: center;
    }

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

    .game-actions {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .game-intro h2 {
        font-size: 1.6rem;
    }

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


/* FAQ */

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
}

.faq-item {
    border-radius: var(--radius-md);
    padding: 0.9rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
    font-size: 0.94rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.faq-item summary::after {
    content: "▾";
    font-size: 0.8rem;
    color: #6b7280;
    margin-left: 0.5rem;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item p {
    margin: 0.6rem 0 0;
    color: var(--text-muted);
}

.responsible-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.responsible-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 1.2rem 1.1rem;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
    font-size: 0.94rem;
}

.game-logo {
    max-width: 120px;
}
.head-descgame {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    align-content: center;
    gap: 15px
}
.game-logo {
    padding: 15px;
    border-radius: 15px;
    background: #fff;
    width: 140px;
}
.head-descgame img {
    display: block;
    width: 100%
}
.responsible-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url(../img/background.jpg);
    background-attachment: fixed;
    background-size: cover;
    opacity: 0.13;
    filter: blur(3px);
}

.trust-logo {
    margin-top: 25px;
}
.logo-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
    justify-content: center;
}
.age18 {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 3px solid #f00;
    user-select: none;
}
.logo-trust a {
    height: 50px;
    padding: 7px;
    display: block;
    margin: 0;
}

.footer-main {
    border-top: #fff2 1px solid;
    text-align: center;
    color: #eee;
}
.footer-grid .brand-name {
    color: #fff
}
.footer-grid .brand-domain {
    color: #aaa
}
.logo-trust img {
    height: 100%;
}

.background.main-bg {
    background-image: url(../img/main-bg.jpg);
}

section, section .container {
    position: relative;
}

.account-callout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.8fr);
    gap: 2rem;
    align-items: center;
}

.account-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
}

.account-actions {
    display: grid;
    gap: 0.6rem;
}
.interactive-game-v2 {
    padding: 4rem 0;
    background: linear-gradient(160deg, #e0f7fa, #f9f9ff);
}

.grid-v2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.game-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-visual img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.game-visual img:hover {
    transform: scale(1.05) rotate(2deg);
}

.game-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #f97316, #facc15);
    color: #111;
    padding: 0.5rem 1rem;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.game-info h2 {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.game-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px) scale(1.02);
}

.feature h3 {
    margin: 0 0 0.3rem;
    color: #2563eb;
    font-size: 0.95rem;
}

.feature p {
    margin: 0;
    color: #374151;
    font-size: 0.9rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb, #0f766e);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 12px 35px rgba(37,99,235,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px rgba(37,99,235,0.45);
}

@media (max-width: 960px) {
    .grid-v2 {
        grid-template-columns: 1fr;
    }

    .game-visual {
        margin-bottom: 2rem;
    }
}

/* Auth & contact pages */

.subpage {
    background: linear-gradient(135deg, #e0f2fe 0, #f5f7fb 40%, #ffffff 100%);
}

.subpage-main {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.auth-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: flex-start;
}

.auth-panel,
.contact-panel {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.9rem 1.8rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.auth-side,
.contact-side {
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.5rem;
    border: 1px dashed rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.9), rgba(204, 251, 241, 0.9));
    font-size: 0.94rem;
}

.auth-lead {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.auth-form {
    margin-top: 1.4rem;
    display: grid;
    gap: 0.9rem;
}

.field {
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
}

.field span {
    font-weight: 500;
}

.field input,
.field select,
.field textarea {
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.8);
    padding: 0.55rem 0.7rem;
    font: inherit;
    background: #f9fafb;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.field textarea {
    resize: vertical;
    min-height: 7rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(37, 99, 235, 0.6);
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
    background: #ffffff;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: #374151;
}

.checkbox input {
    margin-top: 0.1rem;
}

.auth-footnote {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    background: #0b1220;
    color: #cbd5f5;
    padding: 2.2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: flex-start;
}

.site-footer h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.site-footer h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links li {
    margin-bottom: 0.25rem;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-small {
    font-size: 0.78rem;
    color: #9ca3af;
}

.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.legal-page {
    background: linear-gradient(135deg, #e5ecff 0, #f5f7fb 40%, #ffffff 100%);
}

.legal-main {
    padding-top: 2.75rem;
    padding-bottom: 3rem;
}

.legal-shell {
    max-width: 840px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.legal-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.35rem;
}

.legal-title {
    font-size: 1.9rem;
    letter-spacing: -0.03em;
    margin: 0 0 0.5rem;
}

.legal-subtitle {
    margin: 0 0 1.4rem;
    font-size: 0.95rem;
    color: #6b7280;
}

.legal-meta {
    font-size: 0.8rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 1.6rem;
}

.legal-meta span + span::before {
    content: "•";
    margin: 0 0.5rem;
    color: #d1d5db;
}

.legal-section {
    margin-bottom: 1.4rem;
}

.legal-section:last-of-type {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.05rem;
    margin: 0 0 0.4rem;
}

.legal-section h3 {
    font-size: 0.95rem;
    margin: 0.4rem 0 0.2rem;
}

.legal-section p {
    margin: 0.2rem 0 0.4rem;
    font-size: 0.93rem;
    color: #374151;
}

.legal-section ul {
    margin: 0.25rem 0 0.5rem 1.2rem;
    padding: 0;
    font-size: 0.93rem;
    color: #374151;
}

.legal-contact {
    margin-top: 0.4rem;
    font-size: 0.93rem;
}

.legal-contact p {
    margin: 0.15rem 0;
}

@media (max-width: 640px) {
    .legal-shell {
        padding: 1.75rem 1.4rem;
        border-radius: 1.2rem;
    }

    .legal-title {
        font-size: 1.6rem;
    }
}


@media (max-width: 960px) {
    .cart-sidebar {
        width: 100%!important;
    }
    .game-container {
        flex-direction: column-reverse;
    }
    .hero-grid,
    .two-column,
    .game-layout,
    .responsible-grid,
    .account-callout,
    .auth-layout,
    .contact-layout,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 2.5rem;
    }

    .site-footer {
        padding-bottom: 2.8rem;
    }
}

@media (max-width: 768px) {
    .head-descgame {
        flex-wrap: wrap;
        gap: 0
    }
    .nav-separator {
        margin-top: 5px;
        height: 1px;
    }
    .header-inner {
        padding-inline: 1rem;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
    }

    .nav-menu {
        position: absolute;
        right: 1.5rem;
        top: 3.1rem;
        flex-direction: column;
        align-items: flex-start;
        background: rgba(248, 250, 252, 0.98);
        padding: 0.75rem 0.9rem;
        border-radius: 1rem;
        border: 1px solid rgba(148, 163, 184, 0.3);
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
        min-width: 12rem;
        transform-origin: top right;
        transform: scale(0.96);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-fast), transform var(--transition-fast);
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a,
    .btn-small {
        width: 100%;
    }

    .age-banner-close {
        align-self: flex-end;
        margin-top: 0.4rem;
    }

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

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 1.9rem;
    }

    .section {
        padding: 3rem 0;
    }
}
