:root {
    --site-bg: #f7f9fc;
    --site-bg-alt: #eef4ff;
    --site-surface: rgba(255, 255, 255, 0.84);
    --site-surface-strong: #ffffff;
    --site-border: rgba(15, 23, 42, 0.1);
    --site-border-strong: rgba(79, 140, 255, 0.18);
    --site-text: #111827;
    --site-muted: #5b6475;
    --site-brand: #4f8cff;
    --site-brand-strong: #2f6ff3;
    --site-success: #18a572;
    --site-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    --site-shadow-hover: 0 24px 60px rgba(15, 23, 42, 0.14);
    --site-radius-xl: 28px;
    --site-radius-lg: 20px;
    --site-radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body.site-body {
    margin: 0;
    color: var(--site-text);
    background:
        radial-gradient(circle at top left, rgba(79, 140, 255, 0.12), transparent 30%),
        radial-gradient(circle at top right, rgba(183, 148, 244, 0.12), transparent 26%),
        linear-gradient(180deg, #f9fbff 0%, #f7f9fc 24%, #eef4ff 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: "Segoe UI", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body.nav-open {
    overflow: hidden;
}

body.site-body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.22), transparent 52%);
    opacity: 0.65;
    z-index: -1;
}

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

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

:focus-visible {
    outline: 3px solid rgba(79, 140, 255, 0.28);
    outline-offset: 3px;
}

::selection {
    background: rgba(79, 140, 255, 0.2);
    color: #0f172a;
}

.site-main {
    width: 100%;
    position: relative;
    z-index: 1;
    flex: 1 0 auto;
}

.site-main * {
    min-width: 0;
}

.site-main section {
    width: 100%;
    position: relative;
    isolation: isolate;
    overflow-x: clip;
}

#homeHeroCarousel {
    touch-action: pan-y;
}

.site-main img,
.site-main video,
.site-main svg {
    display: block;
    max-width: 100%;
    height: auto;
}

.site-main p,
.site-main h1,
.site-main h2,
.site-main h3,
.site-main h4,
.site-main h5,
.site-main h6,
.site-main span,
.site-main li,
.site-main a {
    overflow-wrap: anywhere;
}

.site-main button,
.site-main a[class],
.site-main .button-like,
.site-main input,
.site-main select,
.site-main textarea {
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        color 180ms ease,
        opacity 180ms ease,
        filter 180ms ease;
}

.site-main button:hover,
.site-main a[class]:hover,
.site-main .button-like:hover {
    transform: translateY(-1px);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    overflow: visible;
    background: rgba(247, 249, 252, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.site-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 14px clamp(16px, 3vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-brand img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a {
    position: relative;
    padding: 10px 2px;
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    letter-spacing: -0.01em;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--site-brand), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-nav a.is-active {
    color: var(--site-brand);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.site-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 16px;
    border: 1px solid rgba(79, 140, 255, 0.18);
    background: linear-gradient(135deg, var(--site-brand), var(--site-brand-strong));
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: 0 12px 24px rgba(79, 140, 255, 0.22);
}

.site-cta:hover {
    filter: brightness(1.03);
    box-shadow: 0 16px 28px rgba(79, 140, 255, 0.28);
}

.site-cta--mobile {
    width: 100%;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(79, 140, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    color: #0f172a;
    cursor: pointer;
}

.nav-toggle__icon {
    position: relative;
    width: 20px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-toggle__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
}

.nav-toggle__icon span:nth-child(1) {
    top: 1px;
}

.nav-toggle__icon span:nth-child(2) {
    top: 8px;
}

.nav-toggle__icon span:nth-child(3) {
    top: 15px;
}

.nav-toggle__icon[data-nav-close-icon] span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

.nav-toggle__icon[data-nav-close-icon] span:nth-child(2) {
    top: 8px;
    transform: rotate(-45deg);
}

.mobile-nav {
    display: none;
    padding: 0 16px 16px;
}

.mobile-nav[hidden],
.mobile-nav-backdrop[hidden] {
    display: none !important;
}

.mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(2px);
    z-index: 55;
}

.mobile-nav__card {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--site-shadow);
}

.mobile-nav__card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(239, 244, 255, 0.8);
    color: #334155;
    font-size: 15px;
    font-weight: 700;
}

.mobile-nav__card a[aria-current="page"],
.mobile-nav__card a.is-active {
    background: rgba(79, 140, 255, 0.12);
    color: var(--site-brand);
}

.footer {
    border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.site-footer {
    flex-shrink: 0;
    margin-top: auto;
}

.footer-link {
    color: var(--site-brand);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 500;
    transition: color 180ms ease, transform 180ms ease;
}

.footer-link:hover {
    color: var(--site-brand-strong);
    transform: translateX(2px);
}

.footer-heading {
    margin: 0 0 24px;
    color: #111827;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.social-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
    background: #ffffff;
}

body.page-features .features-safety {
    padding-bottom: 24px !important;
}

body.page-features .features-cta-section {
    padding-top: 24px !important;
}

/* Privacy policy */
.privacy-page {
    padding: clamp(56px, 8vw, 104px) 20px;
    background:
        radial-gradient(circle at 8% 8%, rgba(79, 140, 255, 0.14), transparent 24%),
        radial-gradient(circle at 92% 4%, rgba(183, 148, 244, 0.14), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.privacy-shell {
    width: min(100%, 980px);
    margin: 0 auto;
}

.privacy-hero {
    margin-bottom: 28px;
    text-align: center;
}

.privacy-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    margin: 0 0 18px;
    padding: 8px 16px;
    border: 1px solid rgba(79, 140, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--site-brand-strong);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.privacy-hero h1 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2.15rem, 5vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.privacy-updated {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 650;
}

.privacy-card {
    padding: clamp(26px, 5vw, 58px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.09);
    backdrop-filter: blur(14px);
}

.privacy-intro {
    margin: 0 0 34px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    color: #334155;
    font-size: 17px;
    line-height: 1.8;
}

.privacy-section + .privacy-section {
    margin-top: 34px;
}

.privacy-section h2 {
    margin: 0 0 14px;
    color: #172554;
    font-size: clamp(1.28rem, 2.5vw, 1.55rem);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.privacy-section h3 {
    margin: 20px 0 8px;
    color: #1e3a8a;
    font-size: 1.05rem;
    line-height: 1.4;
}

.privacy-section p,
.privacy-section li {
    color: #475569;
    font-size: 16px;
    line-height: 1.75;
}

.privacy-section p {
    margin: 0;
}

.privacy-section p + p {
    margin-top: 12px;
}

.privacy-section ul {
    display: grid;
    gap: 8px;
    margin: 12px 0 16px;
    padding-left: 22px;
}

.privacy-section li::marker {
    color: var(--site-brand);
}

.privacy-contact {
    margin-top: 14px;
    padding: 20px;
    border: 1px solid rgba(79, 140, 255, 0.16);
    border-radius: 18px;
    background: #f5f8ff;
}

.privacy-contact a {
    color: var(--site-brand-strong);
    font-weight: 750;
}

.privacy-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .privacy-page {
        padding: 42px 14px 56px;
    }

    .privacy-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .privacy-intro {
        margin-bottom: 28px;
        padding-bottom: 24px;
        font-size: 16px;
    }

    .privacy-section + .privacy-section {
        margin-top: 28px;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Contact page polish */
.contact-info-card {
    min-height: 0;
    backdrop-filter: blur(10px);
}

.contact-info-pill {
    margin: 0 auto;
    max-width: 100%;
}

.contact-touch-section .contact-info-icon {
    max-width: 100%;
    max-height: 100%;
}

.contact-hero .faq-content p,
.contact-common-faq .faq-content p {
    line-height: 1.6;
}

.contact-common-faq .faq-item {
    scroll-margin-top: 110px;
}

.feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
    text-align: left;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #111827;
}

.feature-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    margin-top: 0.6em;
    border-radius: 999px;
    background: var(--site-brand);
    box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.12);
    flex: 0 0 auto;
}

/* Generic responsive fixes for large layouts */
.site-main [class*="max-w-"] {
    min-width: 0;
}

.site-main [class*="shadow-"] {
    will-change: transform;
}

.site-main [class*="rounded-"] {
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    body.page-index #how-it-works .how-step-count {
        left: 50% !important;
        top: 10px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        transform: translateX(-50%) !important;
    }

    body.page-index #how-it-works .how-step-copy {
        min-height: 0 !important;
        padding-top: 70px !important;
        padding-bottom: 12px !important;
    }

    body.page-index #how-it-works .how-step-copy h3 {
        font-size: 20px !important;
    }

    body.page-index #how-it-works .how-step-copy p {
        margin-top: 8px !important;
        font-size: 15px !important;
        line-height: 1.45 !important;
    }

    .site-main section img[alt=""][class*="absolute"] {
        display: none !important;
    }

    .site-main section [class*="translate-x-"],
    .site-main section [class*="translate-y-"] {
        transform: none;
    }

    .site-main section [class*="whitespace-nowrap"] {
        white-space: normal;
    }

    .site-main section [class*="min-h-[8"] {
        min-height: auto;
    }
}

@media (max-width: 1200px) {
    .footer-heading {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .site-nav {
        gap: 24px;
    }

    .footer-link {
        font-size: 17px;
    }
}

@media (max-width: 899px) {
    .site-nav--desktop {
        display: none;
    }

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

    .mobile-nav {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        z-index: 59;
    }

    .mobile-nav-backdrop {
        display: block;
    }

    .site-brand img {
        height: 42px;
    }
}

@media (max-width: 768px) {
    .site-header__inner {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .site-cta {
        min-height: 44px;
        padding: 0 16px;
        border-radius: 14px;
    }

    .footer-heading {
        margin-bottom: 18px;
    }

    .footer-link {
        font-size: 16px;
    }

    .social-icon {
        width: 46px;
        height: 46px;
    }

    .contact-touch-section {
        padding-top: 70px;
        padding-bottom: 130px;
    }

    .contact-touch-section .contact-info-card {
        border-radius: 24px;
    }

    .contact-touch-section .contact-info-icon-shell {
        margin-bottom: -50px;
    }

    .site-footer {
        position: relative;
        z-index: 30;
        isolation: isolate;
        padding-top: 56px !important;
        padding-bottom: 22px !important;
        overflow: visible;
    }

    .site-footer > .absolute.inset-0 {
        display: none !important;
    }

    .site-footer .relative.z-10 {
        padding-inline: 1rem;
    }

    .site-footer .grid {
        gap: 1.5rem !important;
    }

    .site-footer .footer-heading {
        font-size: 1.25rem;
        margin-bottom: 12px;
        text-align: center;
    }

    .site-footer .footer-link {
        font-size: 1rem;
        line-height: 1.45;
        display: inline-flex;
        justify-content: center;
        width: 100%;
    }

    .site-footer .social-icon {
        width: 42px;
        height: 42px;
    }

    .site-footer .border-t {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .mobile-nav {
        padding-left: 14px;
        padding-right: 14px;
        padding-bottom: 14px;
    }

    .mobile-nav__card {
        max-height: calc(100vh - 88px);
        overflow-y: auto;
        overscroll-behavior: contain;
        gap: 8px;
        padding: 10px;
    }

    .mobile-nav__card a {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .site-header__inner {
        padding-left: 14px;
        padding-right: 14px;
    }

    .site-brand img {
        height: 38px;
    }

    .site-header__actions {
        gap: 10px;
    }

    .site-cta {
        font-size: 13px;
        padding: 0 14px;
    }

    .mobile-nav {
        padding-left: 14px;
        padding-right: 14px;
    }

    .mobile-nav__card {
        border-radius: 20px;
    }

    .mobile-nav__card a {
        font-size: 14px;
        min-height: 46px;
    }

    .contact-common-faq .faq-item {
        border-radius: 14px;
    }

    .contact-touch-section .contact-info-pill span {
        font-size: 16px;
    }

    .site-footer {
        width: 100%;
        padding: 40px 14px 20px !important;
        background: linear-gradient(180deg, #f7f9fc 0%, #eef4ff 100%) !important;
        overflow: hidden !important;
    }

    .site-footer .relative.z-10 {
        width: 100%;
        max-width: 100%;
        padding-inline: 0 !important;
    }

    .site-footer .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        align-items: start;
        gap: 28px 18px !important;
    }

    .site-footer .grid > div {
        min-width: 0;
        border-left: 0 !important;
        padding-left: 0 !important;
        text-align: left;
    }

    .site-footer .grid > div:first-child img {
        height: 38px !important;
        margin: 0 0 18px !important;
    }

    .site-footer .grid > div:nth-child(4) {
        grid-column: 1 / -1;
        text-align: center;
    }

    .site-footer .footer-heading {
        margin: 0 0 14px !important;
        font-size: 1.05rem !important;
        line-height: 1.25;
        text-align: left !important;
    }

    .site-footer .grid > div:nth-child(4) .footer-heading {
        text-align: center !important;
    }

    .site-footer .grid > div .flex.flex-col {
        gap: 10px !important;
        align-items: flex-start;
    }

    .site-footer .footer-link {
        width: auto !important;
        justify-content: flex-start !important;
        text-align: left;
        font-size: 0.875rem !important;
        line-height: 1.35;
    }

    .site-footer .grid > div:nth-child(4) .flex {
        justify-content: center;
        flex-wrap: wrap;
    }

    .site-footer .grid > div:nth-child(4) a {
        width: 40px !important;
        height: 40px !important;
    }

    .site-footer .border-t {
        margin-top: 28px !important;
        padding-top: 16px !important;
    }

    .site-footer .border-t p {
        margin: 0;
        font-size: 0.8rem !important;
        line-height: 1.45 !important;
    }
}

@media (max-width: 1024px) {
    .site-main section {
        min-height: auto !important;
        height: auto !important;
    }

    .site-main .whitespace-nowrap {
        white-space: normal !important;
    }

    .site-main img[src*="linoWithChildren"],
    .site-main img[src*="linoWithChild"],
    .site-main img[src*="linoSecure"],
    .site-main img[src*="linoPortrait"],
    .site-main img[src*="linoRocket"],
    .site-main img[src*="featurelino"],
    .site-main img[src*="aboutlino"],
    .site-main img[src*="lino.png"] {
        width: min(100%, 100vw) !important;
        max-width: 100% !important;
        height: auto !important;
        transform: none !important;
    }

    body.page-about .site-main img[src*="linoWithChildren"] {
        width: min(100%, 640px) !important;
    }

    body.page-features .site-main img[src*="linoWithChild"] {
        width: min(100%, 620px) !important;
    }

    body.page-features .features-hero {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    body.page-features .features-hero h1 {
        white-space: normal !important;
        max-width: 15ch;
        margin-left: auto;
        margin-right: auto;
    }

    body.page-features .features-hero p {
        max-width: 100% !important;
    }

    body.page-features .features-hero a {
        width: 100% !important;
        max-width: 220px !important;
        height: 54px !important;
        font-size: 1rem !important;
    }

    body.page-features .features-highlights .grid,
    body.page-features .features-action .grid,
    body.page-features .features-cta-section .grid {
        gap: 1rem !important;
    }

    body.page-features .features-action .grid > div,
    body.page-features .features-cta-section .grid > div {
        min-height: auto !important;
    }

    body.page-features .features-action .grid > div .w-full.h-\[260px\],
    body.page-features .features-action .grid > div .w-full.h-\[295px\] {
        height: auto !important;
        aspect-ratio: 4 / 3;
    }

    body.page-features .features-cta-section .absolute,
    body.page-features .features-hero .absolute,
    body.page-features .features-highlights .absolute,
    body.page-features .features-action .absolute {
        display: none !important;
    }

    body.page-features .features-cta-section img[src*="linoWithChild"] {
        width: min(100%, 520px) !important;
        transform: none !important;
        margin-inline: auto !important;
    }

    body.page-features .features-cta-section .w-full.max-w-\[370px\] {
        max-width: 100% !important;
        height: auto !important;
        padding-block: 1rem !important;
        gap: 0.75rem !important;
    }

    body.page-features .features-cta-section .w-full.max-w-\[546px\],
    body.page-features .features-cta-section .w-full.max-w-\[579px\] {
        max-width: 100% !important;
    }

    body.page-games .site-main img[src*="linoPortrait"],
    body.page-games .site-main img[src*="linoRocket"] {
        width: min(100%, 640px) !important;
    }

    body.page-contact .site-main img[src*="lino.png"] {
        width: min(100%, 520px) !important;
    }
}

@media (max-width: 768px) {
    body.page-about .about-mission-heading {
        gap: 10px !important;
    }

    body.page-about .about-mission-heading-line {
        display: block !important;
        width: clamp(54px, 20vw, 92px) !important;
        flex: 1 1 72px;
        min-width: 0;
    }

    body.page-about .about-mission-heading h2 {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    body.page-about .about-mission-art {
        max-width: min(100%, 520px);
        margin-inline: auto;
    }

    body.page-about .about-mission-copy {
        width: min(88%, 18rem) !important;
        margin-top: -12% !important;
        font-size: clamp(0.88rem, 3.8vw, 1.05rem) !important;
        line-height: 1.35 !important;
    }

    body.page-about .about-mission-cards {
        gap: 0.75rem;
    }

    body.page-about .about-team-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 1rem;
        justify-items: stretch;
    }

    body.page-about .about-team-card {
        width: 100%;
        max-width: 100%;
        padding-inline: 1rem;
    }

    body.page-about .about-team-card h3 {
        font-size: 1rem;
    }

    body.page-about .about-team-card p {
        font-size: 0.9rem;
        line-height: 1.45;
    }

    body.page-about .about-team-card span.absolute {
        white-space: normal;
        max-width: calc(100% - 1rem);
        text-align: center;
    }

}

@media (max-width: 480px) {
    body.page-about .about-mission-copy {
        width: min(92%, 16rem) !important;
        margin-top: -8% !important;
        font-size: clamp(0.82rem, 4.2vw, 0.98rem) !important;
    }

    body.page-about .about-team-card {
        padding: 1.1rem 0.95rem 0.95rem;
    }

    body.page-about .about-team-card .w-\[75px\] {
        width: 68px;
        height: 68px;
    }

    body.page-about .about-team-card .w-\[75px\] span {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .site-main section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        padding-top: clamp(3rem, 9vw, 4.5rem) !important;
        padding-bottom: clamp(3rem, 9vw, 4.5rem) !important;
    }

    .site-main section img[src*="blob"],
    .site-main section img[src*="vector"],
    .site-main section img[src*="cloud"],
    .site-main section img[src*="frill"],
    .site-main section img[src*="star"],
    .site-main section img[src*="line"]:not(.about-mission-heading-line),
    .site-main section img[src*="shape"] {
        display: none !important;
    }

    .site-main section .absolute {
        max-width: calc(100vw - 2rem);
    }

    .site-main section [class*="scale-"] {
        transform: none !important;
    }

    body.page-index #parent-pain .translate-y-8 {
        transform: none !important;
        margin-top: 0 !important;
    }

    body.page-index #parent-pain .relative.flex-1 {
        width: 100% !important;
        max-width: 100% !important;
    }

    body.page-index #parent-pain .relative.flex-1 img[alt="comparison"] {
        width: 100% !important;
        max-width: 520px !important;
        transform: none !important;
        margin: 0 auto !important;
    }

    body.page-index #parent-pain .relative.flex-1 .absolute.bg-white {
        display: none !important;
    }

    body.page-index #learn-play .grid > div {
        min-height: auto !important;
    }

    body.page-index #learn-play .grid > div > div:first-child {
        gap: 12px !important;
    }

    body.page-index #learn-play .grid > div img[src*="book2.png"],
    body.page-index #learn-play .grid > div img[src*="puzzle.png"],
    body.page-index #learn-play .grid > div img[src*="paint.png"] {
        width: min(100%, 220px) !important;
        height: auto !important;
        max-height: 160px !important;
        margin: 0 auto !important;
    }

    body.page-index #how-it-works .grid,
    body.page-index #trusted-experts .grid,
    body.page-index #learn-play .grid {
        gap: 1rem !important;
    }

    body.page-index #how-it-works .w-full.max-w-\[420px\],
    body.page-index #trusted-experts .w-full.max-w-\[1200px\] {
        max-width: 100% !important;
    }

    body.page-index #trusted-experts .absolute {
        display: none !important;
    }

    .site-main h1 {
        font-size: clamp(1.9rem, 8vw, 2.9rem) !important;
        line-height: 1.1 !important;
    }

    .site-main h2 {
        font-size: clamp(1.6rem, 7vw, 2.4rem) !important;
        line-height: 1.15 !important;
    }

    .site-main h3 {
        font-size: clamp(1.25rem, 5vw, 1.75rem) !important;
        line-height: 1.2 !important;
    }

    .site-main p {
        font-size: clamp(1rem, 4vw, 1.125rem) !important;
        line-height: 1.55 !important;
    }

    .site-main a[class*="w-[200px]"],
    .site-main a[class*="w-[241px]"],
    .site-main a[class*="w-[354px]"],
    .site-main button[class*="w-[259px]"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    #homeHeroCarousel .hero-arrow {
        display: none !important;
    }

    #homeHeroCarousel .hero-dot {
        width: 10px !important;
        height: 10px !important;
    }

    .feature-list {
        gap: 6px;
    }

    .feature-list li {
        font-size: 0.98rem;
        line-height: 1.45;
    }
}

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

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

/* Homepage mobile layout */
@media (max-width: 768px) {
    body.page-index .site-main > section {
        padding: 56px 16px !important;
    }

    body.page-index #homeHeroCarousel {
        padding: 0 !important;
        overflow: hidden !important;
    }

    body.page-index #homeHeroTrack > div > section {
        min-height: calc(100svh - 66px) !important;
        padding: 28px 16px 64px !important;
    }

    body.page-index #homeHeroCarousel video {
        display: none !important;
    }

    body.page-index #homeHeroTrack > div > section > .relative.z-20 {
        height: auto !important;
        gap: 22px !important;
    }

    body.page-index #homeHeroTrack > div > section > .relative.z-20 > div:first-child {
        min-height: 220px;
        padding: 0 !important;
    }

    body.page-index #homeHeroCarousel img[alt="Lino companion"] {
        width: min(52vw, 190px) !important;
        max-width: 190px !important;
        height: auto !important;
        margin-inline: auto;
    }

    body.page-index #homeHeroCarousel .flex.flex-col.items-center {
        width: 100% !important;
        max-width: 360px !important;
        gap: 16px !important;
    }

    body.page-index #homeHeroCarousel .inline-flex.max-w-\[258px\] {
        width: auto !important;
        max-width: 100% !important;
        height: 48px !important;
        padding: 6px 14px !important;
    }

    body.page-index #homeHeroCarousel .inline-flex.max-w-\[258px\] img {
        width: 30px !important;
        height: 30px !important;
    }

    body.page-index #homeHeroCarousel .inline-flex.max-w-\[258px\] span {
        font-size: 15px !important;
        white-space: normal !important;
    }

    body.page-index #homeHeroCarousel h1 {
        max-width: 330px !important;
        font-size: clamp(1.8rem, 8vw, 2.25rem) !important;
        line-height: 1.12 !important;
    }

    body.page-index #homeHeroCarousel h1 br {
        display: none;
    }

    body.page-index #homeHeroCarousel p {
        max-width: 330px !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    body.page-index #homeHeroCarousel .max-w-\[430px\] {
        max-width: 340px !important;
        padding: 18px 14px 14px !important;
    }

    body.page-index #homeHeroCarousel .text-\[56px\] {
        font-size: clamp(2rem, 10vw, 2.75rem) !important;
    }

    body.page-index #homeHeroCarousel .text-\[30px\] {
        font-size: 1.25rem !important;
    }

    body.page-index #homeHeroCarousel .grid-cols-3 {
        grid-template-columns: 1fr !important;
    }

    body.page-index #homeHeroCarousel .hero-dot {
        transform: none !important;
    }

    body.page-index #homeHeroCarousel > .absolute.bottom-6 {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    body.page-index #parent-pain {
        padding-top: 56px !important;
        padding-bottom: 48px !important;
    }

    body.page-index #parent-pain > .relative.z-10 {
        padding: 0 !important;
        gap: 34px !important;
    }

    body.page-index #parent-pain .flex.flex-col.gap-6 {
        margin-top: 0 !important;
        gap: 18px !important;
    }

    body.page-index #parent-pain .flex.flex-col.sm\:flex-row {
        gap: 12px !important;
    }

    body.page-index #parent-pain img[alt="Lino companion"] {
        width: min(78vw, 300px) !important;
        max-width: 300px !important;
        margin-inline: auto;
    }

    body.page-index #parent-benefits {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    body.page-index #parent-benefits .mt-\[50px\] {
        margin-top: 34px !important;
        gap: 34px !important;
    }

    body.page-index #parent-benefits .max-w-\[600px\] {
        gap: 16px !important;
    }

    body.page-index #parent-benefits .max-w-\[330px\] {
        max-width: 100% !important;
        min-height: 118px !important;
    }

    body.page-index #parent-benefits .max-w-\[330px\] > .absolute {
        top: 50% !important;
        left: 10px !important;
        right: auto !important;
        width: 68px !important;
        height: 68px !important;
        transform: translateY(-50%) !important;
    }

    body.page-index #parent-benefits .max-w-\[330px\] > .absolute > div {
        width: 56px !important;
        height: 56px !important;
    }

    body.page-index #parent-benefits .max-w-\[330px\] {
        padding: 16px 14px 16px 88px !important;
    }

    body.page-index #parent-benefits img[alt="comparison"] {
        width: min(100%, 330px) !important;
    }

    body.page-index #features-timeline {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    body.page-index #features-timeline .text-center.mb-\[80px\] {
        margin-bottom: 40px !important;
    }

    body.page-index #features-timeline .relative.py-\[40px\] {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    body.page-index #features-timeline .space-y-\[42px\] > div {
        padding-left: 50px !important;
    }

    body.page-index #features-timeline .space-y-\[42px\] > div > .absolute {
        left: 18px !important;
        transform: translate(-50%, -50%) !important;
    }

    body.page-index #features-timeline .space-y-\[42px\] > div > .relative.z-\[20\] {
        flex-direction: column;
        gap: 12px !important;
        padding: 16px !important;
    }

    body.page-index #features-timeline .space-y-\[42px\] > div > .relative.z-\[20\] > div:first-child {
        width: 64px !important;
        height: 64px !important;
        border-radius: 14px !important;
    }

    body.page-index #features-timeline .space-y-\[42px\] > div > .relative.z-\[20\] img {
        width: 42px !important;
    }

    body.page-index #features-timeline .absolute.top-0.bottom-0 {
        left: 18px !important;
        transform: none !important;
    }

    body.page-index #trusted-experts {
        padding-inline: 16px !important;
    }

    body.page-index #trusted-experts > .text-center {
        margin-bottom: 38px !important;
    }

    body.page-index #trusted-experts .flex.flex-col.gap-\[30px\] {
        gap: 18px !important;
    }

    body.page-index #trusted-experts .grid > div,
    body.page-index #trusted-experts .flex.flex-col.justify-between > div {
        min-height: auto !important;
    }

    body.page-index #how-it-works .text-center {
        margin-bottom: 56px !important;
    }

    body.page-index #how-it-works .flex.flex-col.xl\:flex-row {
        gap: 64px !important;
        margin-bottom: 48px !important;
    }

    body.page-index #how-it-works .flex.flex-col.xl\:flex-row > .relative {
        max-width: 360px !important;
    }

    body.page-index #how-it-works .flex.flex-col.xl\:flex-row > .relative > .absolute {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    body.page-index #learn-play {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    body.page-index #learn-play .text-center {
        margin-bottom: 36px !important;
    }

    body.page-index #learn-play .grid > div {
        width: 100% !important;
        max-width: 360px !important;
        padding: 14px !important;
    }

    body.page-index #learn-play .grid > div > div:first-child {
        align-items: center !important;
    }

    body.page-index #learn-play .grid > div > div:first-child > div:first-child {
        width: 62px !important;
        height: 62px !important;
    }

    body.page-index #learn-play .grid > div > div:first-child > div:first-child img {
        width: 38px !important;
        height: 38px !important;
    }

    body.page-index #learn-play br {
        display: none;
    }
}

@media (max-width: 380px) {
    .site-header__inner {
        padding: 9px 10px;
        gap: 8px;
    }

    .site-brand img {
        height: 32px;
    }

    .site-header__actions {
        gap: 8px;
    }

    .site-cta {
        min-height: 40px;
        padding-inline: 12px;
        font-size: 12px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
        border-radius: 13px;
    }

    body.page-index #homeHeroTrack > div > section {
        padding-inline: 12px !important;
    }

    body.page-index #homeHeroCarousel img[alt="Lino companion"] {
        width: 168px !important;
    }

    body.page-index #homeHeroTrack > div > section > .relative.z-20 > div:first-child {
        min-height: 196px;
    }

    body.page-index #features-timeline .space-y-\[42px\] > div {
        padding-left: 42px !important;
    }
}

/* Features page mobile layout */
@media (max-width: 768px) {
    body.page-features .site-main > section {
        padding: 56px 16px !important;
    }

    body.page-features .features-hero {
        min-height: auto !important;
        padding-top: 48px !important;
        padding-bottom: 56px !important;
    }

    body.page-features .features-hero > .relative.z-20 {
        gap: 32px !important;
    }

    body.page-features .features-hero .max-w-\[520px\] {
        width: 100%;
        max-width: 360px !important;
        margin-inline: auto;
    }

    body.page-features .features-hero .inline-flex.w-\[247px\] {
        width: auto !important;
        height: auto !important;
        padding: 7px 14px !important;
    }

    body.page-features .features-hero .inline-flex.w-\[247px\] span {
        font-size: 1rem !important;
    }

    body.page-features .features-hero h1 {
        max-width: 330px !important;
        margin: 18px auto 0 !important;
        font-size: clamp(1.85rem, 8vw, 2.3rem) !important;
        line-height: 1.12 !important;
        white-space: normal !important;
    }

    body.page-features .features-hero p {
        max-width: 330px !important;
        margin: 16px auto 0 !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    body.page-features .features-hero a {
        width: min(100%, 220px) !important;
        height: 52px !important;
        margin-top: 22px !important;
        font-size: 1rem !important;
    }

    body.page-features .features-hero .max-w-\[680px\] {
        max-width: 360px !important;
    }

    body.page-features .features-hero .h-\[280px\] {
        height: 235px !important;
    }

    body.page-features .features-hero img[src*="featurelino.png"] {
        width: min(44vw, 165px) !important;
        max-width: 165px !important;
        height: auto !important;
        margin-inline: auto;
    }

    body.page-features .features-hero .lg\:hidden {
        margin-top: 20px !important;
        gap: 10px !important;
    }

    body.page-features .features-hero .lg\:hidden > div {
        padding: 10px 12px !important;
    }

    body.page-features .features-hero .lg\:hidden > div > div:first-child {
        width: 40px !important;
        height: 40px !important;
    }

    body.page-features .features-highlights {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    body.page-features .features-highlights > .max-w-\[1440px\] {
        gap: 32px !important;
    }

    body.page-features .features-highlights .grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    body.page-features .features-highlights .grid > div {
        max-width: 420px !important;
        padding: 14px !important;
        gap: 16px !important;
        border-radius: 18px !important;
    }

    body.page-features .features-highlights .grid > div > div:first-child {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 10;
    }

    body.page-features .features-highlights .grid > div > div:last-child {
        text-align: left !important;
        gap: 8px !important;
    }

    body.page-features .features-action {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    body.page-features .features-action > .max-w-\[1440px\] {
        gap: 46px !important;
    }

    body.page-features .features-action .grid {
        grid-template-columns: 1fr !important;
        gap: 54px !important;
    }

    body.page-features .features-action .grid > .relative {
        width: 100% !important;
        max-width: 360px !important;
    }

    body.page-features .features-action .grid > .relative > .absolute {
        display: flex !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 58px !important;
        height: 58px !important;
    }

    body.page-features .features-action .grid > .relative > .absolute span {
        font-size: 1.35rem !important;
    }

    body.page-features .features-action .grid > .relative > div:last-child {
        min-height: auto !important;
        padding: 32px 10px 10px !important;
    }

    body.page-features .features-action .grid .h-\[260px\] {
        height: 220px !important;
        aspect-ratio: auto;
    }

    body.page-features .features-action .grid .w-\[60px\] {
        width: 34px !important;
    }

    body.page-features .features-safety {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    body.page-features .features-safety > .max-w-\[1440px\] {
        padding-inline: 0 !important;
    }

    body.page-features .features-safety .flex.flex-col.lg\:flex-row {
        gap: 30px !important;
    }

    body.page-features .features-safety img[src*="linoSecure.png"] {
        width: min(88vw, 340px) !important;
        max-width: 340px !important;
        height: auto !important;
        transform: none !important;
        margin-inline: auto;
    }

    body.page-features .features-safety .space-y-\[10px\] {
        display: grid;
        gap: 12px !important;
    }

    body.page-features .features-safety .space-y-\[10px\] > div {
        max-width: 100% !important;
        padding: 14px !important;
        gap: 12px !important;
    }

    body.page-features .features-safety .space-y-\[10px\] > div > div:first-child {
        width: 48px !important;
        height: 48px !important;
    }

    body.page-features .features-safety .mt-10 > .grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        padding: 14px !important;
        border-radius: 20px !important;
    }

    body.page-features .features-safety .mt-10 > .grid > div {
        justify-content: flex-start !important;
        padding: 4px 2px;
    }

    body.page-features .features-safety .mt-\[18px\] {
        gap: 8px !important;
    }

    body.page-features .features-safety .mt-\[18px\] > div {
        width: 24px !important;
        flex: 0 0 24px;
    }

    body.page-features .features-cta-section {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    body.page-features .features-cta-section > .grid {
        gap: 34px !important;
    }

    body.page-features .features-cta-section h2 br {
        display: none;
    }

    body.page-features .features-cta-section a {
        max-width: 300px !important;
        height: 60px !important;
        gap: 12px !important;
    }

    body.page-features .features-cta-section a > span:nth-child(2) {
        font-size: 1.1rem !important;
    }

    body.page-features .features-cta-section .max-w-\[546px\] {
        max-width: 100% !important;
        padding: 8px !important;
    }

    body.page-features .features-cta-section .max-w-\[546px\] .py-\[14px\] {
        gap: 12px !important;
        padding: 12px 8px !important;
    }

    body.page-features .features-cta-section .max-w-\[546px\] .rounded-full {
        width: 46px !important;
        height: 46px !important;
    }

    body.page-features .features-cta-section > .grid > div:last-child {
        min-height: 260px !important;
    }

    body.page-features .features-cta-section img[src*="linoWithChild.png"] {
        width: min(100%, 390px) !important;
        max-width: 390px !important;
        transform: none !important;
        margin-inline: auto;
    }
}

@media (max-width: 380px) {
    body.page-features .features-hero {
        padding-inline: 12px !important;
    }

    body.page-features .features-hero img[src*="featurelino.png"] {
        width: 145px !important;
    }

    body.page-features .features-highlights,
    body.page-features .features-action,
    body.page-features .features-safety,
    body.page-features .features-cta-section {
        padding-inline: 12px !important;
    }

    body.page-features .features-action .grid .h-\[260px\] {
        height: 195px !important;
    }
}

/* Games page mobile layout */
@media (max-width: 768px) {
    body.page-games .site-main > section {
        padding: 56px 16px !important;
    }

    body.page-games .games-hero {
        padding-top: 44px !important;
        padding-bottom: 52px !important;
        overflow: hidden !important;
    }

    body.page-games .games-hero h1 br {
        display: none;
    }

    body.page-games .games-hero h1 {
        max-width: 340px;
        margin-inline: auto;
        font-size: clamp(1.8rem, 8vw, 2.35rem) !important;
        line-height: 1.12 !important;
    }

    body.page-games .games-hero p {
        max-width: 340px !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    body.page-games .games-hero .max-w-6xl {
        margin-top: 24px !important;
    }

    body.page-games .games-hero img[src*="linoRocket.svg"] {
        width: min(88vw, 330px) !important;
        max-width: 330px !important;
        height: auto !important;
        margin-inline: auto;
        transform: none !important;
    }

    body.page-games .games-hero .z-\[60\] {
        width: 100%;
        max-width: 340px;
        gap: 12px !important;
        margin-top: 28px !important;
        padding-inline: 0 !important;
    }

    body.page-games .games-hero .z-\[60\] a {
        width: 100% !important;
        height: 56px !important;
        font-size: 1rem !important;
    }

    body.page-games .games-hero .z-\[60\] a span {
        font-size: 1rem !important;
    }

    body.page-games .games-hero .z-\[60\] a img {
        width: 26px !important;
        height: 26px !important;
    }

    body.page-games .games-learning {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    body.page-games .games-learning > .max-w-\[1440px\] {
        gap: 16px !important;
    }

    body.page-games .games-learning h2 {
        font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
        line-height: 1.15 !important;
    }

    body.page-games .games-learning > .max-w-\[1440px\] p {
        max-width: 340px !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    body.page-games .games-learning > .grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        margin-top: 34px !important;
    }

    body.page-games .games-learning > .grid > div {
        width: 100% !important;
        max-width: 360px !important;
    }

    body.page-games .games-learning > .grid > div > .relative {
        height: 210px !important;
    }

    body.page-games .games-learning > .grid > div > .relative > img {
        display: block !important;
        left: 50% !important;
        right: auto !important;
        top: 50% !important;
        width: min(92%, 280px) !important;
        max-width: 280px !important;
        height: auto !important;
        transform: translate(-50%, -50%) !important;
        object-fit: contain;
    }

    body.page-games .games-learning > .grid > div > div:last-child {
        padding: 18px 18px 22px !important;
    }

    body.page-games .games-learning > .grid h3 {
        font-size: 1.25rem !important;
        line-height: 1.25 !important;
    }

    body.page-games .games-learning > .grid p {
        font-size: 0.98rem !important;
        line-height: 1.5 !important;
    }

    body.page-games .games-natural {
        min-height: auto !important;
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    body.page-games .games-natural > .max-w-\[1240px\] > .flex {
        margin-bottom: 36px !important;
        padding-inline: 0 !important;
    }

    body.page-games .games-natural .max-w-\[550px\] {
        margin-bottom: 24px !important;
        text-align: center;
    }

    body.page-games .games-natural .max-w-\[550px\] h2 {
        margin-bottom: 16px !important;
        font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
        line-height: 1.15 !important;
    }

    body.page-games .games-natural .max-w-\[550px\] h2 br,
    body.page-games .games-natural .max-w-\[550px\] p br {
        display: none;
    }

    body.page-games .games-natural .max-w-\[550px\] p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    body.page-games .games-natural .max-w-\[600px\],
    body.page-games .games-natural .w-\[600px\] {
        width: 100% !important;
        max-width: 360px !important;
    }

    body.page-games .games-natural img[src*="linoPortrait.png"] {
        width: min(86vw, 340px) !important;
        max-width: 340px !important;
        height: auto !important;
        margin-inline: auto;
        transform: none !important;
    }

    body.page-games .games-natural .grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        margin-bottom: 36px !important;
        padding-inline: 0 !important;
    }

    body.page-games .games-natural .grid > div {
        height: auto !important;
        min-height: 0 !important;
        padding: 16px !important;
    }

    body.page-games .games-natural .grid > div > div:first-child {
        width: 64px !important;
        height: 64px !important;
        margin-bottom: 14px !important;
    }

    body.page-games .games-natural .grid > div svg {
        width: 36px !important;
        height: 36px !important;
    }

    body.page-games .games-natural .grid h3 {
        margin-bottom: 8px !important;
        font-size: 1.2rem !important;
        line-height: 1.25 !important;
    }

    body.page-games .games-natural .grid p {
        font-size: 0.98rem !important;
        line-height: 1.5 !important;
    }

    body.page-games .games-natural .xl\:hidden {
        max-width: 360px !important;
        gap: 10px !important;
        padding-inline: 0 !important;
    }

    body.page-games .games-natural .xl\:hidden > div {
        height: auto !important;
        min-height: 70px;
        padding: 10px 12px !important;
        border-radius: 18px !important;
    }

    body.page-games .games-natural .xl\:hidden h4 {
        font-size: 1rem !important;
        line-height: 1.25 !important;
    }

    body.page-games .games-natural .xl\:hidden p {
        font-size: 0.875rem !important;
        line-height: 1.35 !important;
        letter-spacing: normal !important;
    }

    body.page-games .games-cta {
        min-height: auto !important;
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    body.page-games .games-cta > .max-w-\[1440px\] {
        width: 100%;
        padding-inline: 0 !important;
        flex-direction: column !important;
        gap: 28px;
    }

    body.page-games .games-cta > .max-w-\[1440px\] > div {
        width: 100% !important;
        height: auto !important;
    }

    body.page-games .games-cta img[src*="games-vector.png"] {
        display: none !important;
    }

    body.page-games .games-cta img[src*="linoPortrait2.svg"] {
        width: min(88vw, 340px) !important;
        max-width: 340px !important;
        height: auto !important;
        margin-inline: auto;
        transform: none !important;
    }

    body.page-games .games-cta .w-1\/2.flex.flex-col {
        align-items: center;
        gap: 16px !important;
        text-align: center;
    }

    body.page-games .games-cta h2,
    body.page-games .games-cta p {
        width: 100% !important;
        max-width: 350px !important;
    }

    body.page-games .games-cta h2 {
        font-size: clamp(1.75rem, 7vw, 2.25rem) !important;
        line-height: 1.2 !important;
    }

    body.page-games .games-cta p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }

    body.page-games .games-cta a {
        width: min(100%, 220px) !important;
        height: 54px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 380px) {
    body.page-games .games-hero,
    body.page-games .games-learning,
    body.page-games .games-natural,
    body.page-games .games-cta {
        padding-inline: 12px !important;
    }

    body.page-games .games-learning > .grid > div > .relative {
        height: 190px !important;
    }

    body.page-games .games-learning > .grid > div > .relative > img {
        width: min(90%, 250px) !important;
    }
}
