:root {
    --xso-primary: #FFC107;
    --xso-primary-dark: #FFB300;
    --xso-secondary: #D32F2F;
    --xso-cream: #FFFDE7;
    --xso-cream-strong: #FFF3C4;
    --xso-brown: #3E2723;
    --xso-muted: #795548;
    --xso-line: rgba(62, 39, 35, 0.12);
    --xso-white: #ffffff;
    --xso-green: #2E7D32;
    --xso-blue: #1565C0;
    --xso-shadow: 0 8px 24px rgba(62, 39, 35, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--xso-brown);
    background: var(--xso-cream);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

img {
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--xso-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
    padding-top: env(safe-area-inset-top);
}

.site-nav {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 5%;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    color: var(--xso-brown);
    text-transform: uppercase;
}

.site-brand img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--xso-white);
    background: var(--xso-white);
    flex: 0 0 auto;
}

.site-brand span {
    font-size: 1.45rem;
    line-height: 1;
    white-space: nowrap;
}

.site-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.site-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--xso-brown);
    font-weight: 800;
    font-size: 0.94rem;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-nav-link:hover,
.site-nav-link.is-active {
    background: rgba(255, 255, 255, 0.42);
}

.site-nav-link.is-highlight {
    background: var(--xso-cream);
    color: var(--xso-secondary);
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.10);
}

.site-nav-link.is-highlight:hover,
.site-nav-link.is-highlight.is-active {
    background: var(--xso-white);
}

.site-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.40);
    color: var(--xso-brown);
    font-size: 1.25rem;
    cursor: pointer;
}

.site-container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-section {
    padding: 56px 0;
}

.site-section.is-white {
    background: var(--xso-white);
}

.site-eyebrow {
    margin: 0 0 8px;
    color: var(--xso-muted);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.site-title {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    color: var(--xso-secondary);
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1.08;
    text-shadow: 2px 2px 0 var(--xso-white);
}

.site-subtitle {
    margin: 12px 0 0;
    max-width: 760px;
    color: #5D4037;
    font-size: 1.08rem;
}

.site-actions,
.store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.site-actions {
    margin-top: 24px;
}

.store-actions {
    margin-top: 14px;
}

.site-pill,
.store-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

.site-pill {
    min-height: 46px;
    padding: 10px 18px;
    background: var(--xso-white);
    color: var(--xso-brown);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.site-pill.is-primary {
    background: var(--xso-secondary);
    color: var(--xso-white);
}

.site-pill:hover,
.store-button:hover,
.fab-action:hover {
    transform: translateY(-2px);
}

.site-pill.is-donate {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--xso-secondary) 0%, #B71C1C 100%);
    color: var(--xso-white);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.26);
}

.site-pill.is-donate::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    transform: translateX(-120%);
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 100%);
    animation: ctaSweep 3.8s ease-in-out infinite;
}

.site-pill.is-donate > * {
    position: relative;
    z-index: 1;
}

.store-button {
    min-height: 52px;
    padding: 9px 16px;
    border: 1px solid var(--xso-line);
    border-radius: 16px;
    background: var(--xso-white);
    color: var(--xso-brown);
}

.store-button i {
    font-size: 1.55rem;
}

.store-button small,
.store-button strong {
    display: block;
    line-height: 1.15;
}

.store-button small {
    color: var(--xso-muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.store-button strong {
    font-size: 0.98rem;
}

.landing-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.75fr);
    gap: 34px;
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: 44px 0 70px;
}

.landing-phone {
    justify-self: center;
    width: min(360px, 78vw);
    border: 5px solid var(--xso-white);
    border-radius: 24px;
    box-shadow: 0 16px 42px rgba(62, 39, 35, 0.18);
}

.feature-band {
    margin-top: -28px;
    border-radius: 30px 30px 0 0;
    background: var(--xso-white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.section-heading {
    margin: 0 0 24px;
    font-family: 'Baloo 2', cursive;
    color: var(--xso-brown);
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.12;
    text-transform: uppercase;
}

.feature-grid,
.content-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
}

.feature-card,
.content-card,
.policy-card,
.intro-card,
.support-card {
    background: var(--xso-white);
    border: 1px solid var(--xso-line);
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(62, 39, 35, 0.06);
}

.feature-card {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 22px;
    background: var(--xso-cream);
}

.feature-card h3,
.content-card h2,
.policy-card h2,
.intro-card h2,
.support-card h2 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Baloo 2', cursive;
    color: var(--xso-secondary);
    font-size: 1.32rem;
    line-height: 1.2;
}

.feature-card p,
.content-card p,
.policy-card p,
.intro-card p,
.support-card p {
    margin: 0;
    color: #5D4037;
}

.icon-tile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--xso-primary);
    color: var(--xso-brown);
    font-size: 1.25rem;
}

.trust-band {
    background: var(--xso-primary);
    color: var(--xso-brown);
    text-align: center;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.42);
    font-weight: 900;
}

.page-hero {
    padding: 42px 0 28px;
    text-align: center;
}

.page-hero .site-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.guide-list {
    display: grid;
    gap: 22px;
    padding-bottom: 48px;
}

.guide-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 280px);
    gap: 24px;
    align-items: center;
    padding: 22px;
    background: var(--xso-white);
    border: 1px solid var(--xso-line);
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(62, 39, 35, 0.06);
}

.guide-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
    border-radius: 50%;
    background: var(--xso-secondary);
    color: var(--xso-white);
    font-family: 'Baloo 2', cursive;
    font-size: 1.4rem;
    font-weight: 900;
}

.guide-step h2 {
    margin: 0 0 10px;
    font-family: 'Baloo 2', cursive;
    color: var(--xso-primary-dark);
    font-size: 1.55rem;
    line-height: 1.15;
}

.guide-step ul,
.policy-card ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.guide-step li,
.policy-card li {
    margin-bottom: 6px;
}

.phone-frame {
    width: min(100%, 260px);
    margin: 0 auto;
    border: 7px solid #2B211E;
    border-radius: 26px;
    overflow: hidden;
    background: var(--xso-white);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.phone-frame img {
    display: block;
    width: 100%;
    height: auto;
}

.support-card {
    padding: 24px;
    margin: 12px 0 52px;
    text-align: center;
    border: 2px dashed var(--xso-primary);
}

.coffee-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    margin: 4px auto 24px;
    border: 2px solid var(--xso-primary);
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fff8d6 100%);
    box-shadow: var(--xso-shadow);
}

.coffee-cta-kicker {
    margin: 0 0 6px;
    color: var(--xso-muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.coffee-cta-card h2 {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    color: var(--xso-secondary);
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.12;
}

.coffee-cta-card p {
    margin: 8px 0 0;
    color: #5D4037;
    font-weight: 700;
}

.coffee-cta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.coffee-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.18);
    color: var(--xso-brown);
    font-weight: 900;
    font-size: 0.84rem;
}

.coffee-cta-actions {
    display: grid;
    gap: 10px;
    min-width: 190px;
}

.coffee-cta-panel {
    position: relative;
    overflow: hidden;
}

.policy-card,
.intro-card {
    padding: 26px;
    margin-bottom: 18px;
}

.policy-card.is-warning {
    background: #FFEBEE;
    border-left: 6px solid var(--xso-secondary);
}

.policy-meta {
    color: var(--xso-muted);
    font-weight: 700;
    margin-top: 8px;
}

.intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding-bottom: 52px;
}

.intro-avatar {
    width: 86px;
    height: 86px;
    border: 3px solid var(--xso-primary);
    border-radius: 50%;
    margin: 0 auto 14px;
    background: var(--xso-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--xso-shadow);
}

.intro-avatar img {
    width: 68px;
    border-radius: 18px;
}

.donate-panel {
    background: linear-gradient(180deg, #ffffff 0%, #fff7cf 100%);
    border: 2px solid var(--xso-primary);
}

.donate-page {
    background: #FFFDF1;
    font-size: 16px;
}

.donate-app-header {
    display: none;
}

.donate-hero,
.donation-layout {
    width: min(100% - 28px, 520px);
    margin: 0 auto;
}

.donate-hero {
    padding: 22px 0 12px;
    text-align: center;
}

.donate-hero h1 {
    margin: 0;
    color: var(--xso-secondary);
    font-family: 'Baloo 2', cursive;
    font-size: clamp(2rem, 8vw, 2.55rem);
    line-height: 1.05;
}

.donate-hero p {
    margin: 10px auto 0;
    color: #5D4037;
    font-size: 1.02rem;
    line-height: 1.55;
}

.donation-layout {
    padding: 10px 0 28px;
}

.donation-card {
    padding: 16px;
    border: 1.5px solid rgba(255, 193, 7, 0.72);
    border-radius: 18px;
    background: var(--xso-white);
    box-shadow: 0 8px 20px rgba(62, 39, 35, 0.07);
    text-align: center;
}

.bank-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 16px;
    border: 1px solid rgba(21, 101, 192, 0.18);
    border-radius: 999px;
    background: #F7FAFF;
    color: var(--xso-blue);
    font-family: 'Baloo 2', cursive;
    font-size: 1.15rem;
    font-weight: 900;
}

.qr-frame {
    width: clamp(252px, 74vw, 292px);
    height: clamp(252px, 74vw, 292px);
    margin: 14px auto 0;
    padding: 10px;
    border: 1px solid var(--xso-line);
    border-radius: 18px;
    background: var(--xso-white);
}

.qr-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.donation-amount-line {
    display: grid;
    gap: 3px;
    margin: 12px 0 0;
    color: var(--xso-brown);
    font-size: 1.04rem;
    font-weight: 800;
}

.donation-amount-main {
    color: var(--xso-brown);
}

.donation-amount-line span:not(.donation-amount-main) {
    color: var(--xso-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.donation-actions {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.donation-actions .site-pill {
    width: 100%;
    min-height: 48px;
    box-shadow: none;
}

.transfer-info-grid {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.transfer-info-row {
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--xso-line);
    border-radius: 14px;
    background: #FFFDF4;
    text-align: left;
}

.transfer-info-row span {
    color: var(--xso-muted);
    font-size: 0.95rem;
    font-weight: 800;
}

.transfer-value {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.transfer-value strong {
    min-width: 0;
    color: var(--xso-brown);
    font-family: 'Baloo 2', cursive;
    font-size: 1.18rem;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.transfer-info-row.is-account .transfer-value strong {
    color: var(--xso-secondary);
    font-size: 1.52rem;
}

.copy-mini {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 13px;
    background: var(--xso-primary);
    color: var(--xso-brown);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 900;
}

.site-pill:focus-visible,
.store-button:focus-visible,
.copy-mini:focus-visible,
.site-menu-toggle:focus-visible,
.donate-back-btn:focus-visible {
    outline: 3px solid rgba(21, 101, 192, 0.34);
    outline-offset: 3px;
}

.mobile-bank-hint {
    margin: 14px 0 0;
    padding: 12px;
    border-radius: 14px;
    background: rgba(255, 193, 7, 0.16);
    color: #5D4037;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
}

.mobile-bank-hint strong {
    display: block;
    color: var(--xso-secondary);
}

.donation-note {
    margin: 14px 0 0;
    color: #5D4037;
    font-weight: 700;
    line-height: 1.48;
}

.donation-note p {
    margin: 0;
}

.donation-note p + p {
    margin-top: 6px;
    color: var(--xso-muted);
    font-weight: 600;
}

.donate-app-footer {
    display: none;
}

.donate-source-app .donate-web-header,
.donate-source-app .donate-full-footer {
    display: none;
}

.donate-source-app .donate-app-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 60px;
    padding: max(8px, env(safe-area-inset-top)) 14px 8px;
    background: var(--xso-primary);
    box-shadow: 0 2px 10px rgba(62, 39, 35, 0.10);
}

.donate-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 44px;
    min-height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--xso-brown);
    font-weight: 900;
    cursor: pointer;
}

.donate-app-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--xso-brown);
    font-family: 'Baloo 2', cursive;
    font-size: 1.12rem;
    font-weight: 900;
}

.donate-app-brand img {
    width: 38px;
    height: 38px;
    border: 2px solid var(--xso-white);
    border-radius: 50%;
    background: var(--xso-white);
}

.donate-app-brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.donate-source-app .donate-hero {
    padding-top: 18px;
}

.donate-source-app .donate-app-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 14px max(18px, env(safe-area-inset-bottom));
    color: var(--xso-muted);
    font-weight: 700;
}

.donate-app-footer a {
    color: var(--xso-secondary);
    font-weight: 900;
}

@media (min-width: 760px) {
    .donate-hero,
    .donation-layout {
        width: min(100% - 48px, 560px);
    }

    .donate-hero {
        padding-top: 34px;
    }

    .donation-card {
        padding: 20px;
    }

    .qr-frame {
        width: 300px;
        height: 300px;
    }
}

.site-toast {
    position: fixed;
    left: 50%;
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 200;
    width: min(420px, calc(100% - 28px));
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    padding: 13px 16px;
    border-radius: 16px;
    background: var(--xso-brown);
    color: var(--xso-white);
    font-weight: 800;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.fab-action {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--xso-secondary);
    color: var(--xso-white);
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    animation: coffeeFloat 2.8s ease-in-out infinite;
}

.fab-action.is-coffee {
    background: linear-gradient(135deg, var(--xso-secondary), #B71C1C);
}

@keyframes coffeeFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes ctaSweep {
    0%,
    56% {
        transform: translateX(-120%);
    }

    78%,
    100% {
        transform: translateX(120%);
    }
}

.site-footer {
    background: var(--xso-brown);
    color: #D7CCC8;
    padding: 34px 5%;
    text-align: center;
}

.site-footer-brand {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.site-footer-brand img {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: var(--xso-white);
    padding: 5px;
}

.site-footer-brand strong {
    color: var(--xso-primary);
    font-family: 'Baloo 2', cursive;
    font-size: 1.35rem;
    text-transform: uppercase;
}

.site-footer-links,
.site-footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 14px 0;
}

.site-footer a {
    color: var(--xso-primary);
    font-weight: 800;
}

.site-footer small {
    display: block;
    margin-top: 20px;
    color: #A1887F;
}

.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 920px) {
    .site-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        flex-wrap: wrap;
    }

    .site-nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 8px;
    }

    body.site-menu-open .site-nav-links {
        display: flex;
    }

    .site-nav-link {
        justify-content: flex-start;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.26);
        padding: 12px 14px;
    }

    .landing-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 28px;
        text-align: center;
    }

    .landing-phone {
        width: min(290px, 72vw);
    }

    .site-actions,
    .store-actions {
        justify-content: center;
    }

    .guide-step {
        grid-template-columns: 1fr;
    }

    .coffee-cta-card {
        grid-template-columns: 1fr;
    }

    .coffee-cta-actions {
        min-width: 0;
    }

}

@media (max-width: 560px) {
    .site-nav {
        min-height: 64px;
        padding: 10px 14px;
    }

    .site-brand span {
        font-size: 1.12rem;
    }

    .site-brand img {
        width: 42px;
        height: 42px;
    }

    .site-container {
        width: min(100% - 24px, 1120px);
    }

    .site-actions,
    .store-actions,
    .coffee-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .site-pill,
    .store-button {
        width: 100%;
    }

    .site-section {
        padding: 40px 0;
    }

    .feature-card,
    .policy-card,
    .intro-card,
    .support-card,
    .guide-step,
    .coffee-cta-card {
        border-radius: 16px;
        padding: 18px;
    }

    .donation-card {
        padding: 16px;
    }

    .transfer-info-row {
        grid-template-columns: 1fr auto;
    }

    .transfer-info-row span {
        grid-column: 1 / -1;
    }

    .page-hero {
        padding-top: 30px;
    }

    .fab-action.is-coffee,
    .mobile-donate-secondary {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
