/* ==========================================================================
   FBGrab — public stylesheet
   Design language: deep-space navy, aurora gradients, glassmorphism panels,
   mobile-first, zero external assets (system font stack, inline SVG icons).
   ========================================================================== */

:root {
    --bg: #070b15;
    --bg-soft: #0b1120;
    --surface: rgba(255, 255, 255, 0.055);
    --surface-strong: rgba(255, 255, 255, 0.09);
    --border: rgba(255, 255, 255, 0.11);
    --border-strong: rgba(255, 255, 255, 0.2);
    --text: #eef2fb;
    --text-soft: #a7b0c7;
    --text-dim: #6d7893;
    --accent-1: #6366f1;
    --accent-2: #22d3ee;
    --accent-3: #d946ef;
    --grad: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --ok: #34d399;
    --warn: #fbbf24;
    --bad: #f87171;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 18px 50px -18px rgba(0, 0, 0, 0.55);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter",
        "Helvetica Neue", Arial, sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { max-width: 100%; vertical-align: middle; }
[hidden] { display: none !important; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 4px; }

.visually-hidden {
    position: absolute !important; width: 1px; height: 1px;
    margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0;
}
.skip-link {
    position: absolute; top: -48px; left: 12px; z-index: 100;
    background: var(--accent-1); color: #fff; padding: 10px 16px;
    border-radius: 8px; transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

.container { width: min(1140px, 100% - 2.5rem); margin-inline: auto; }
.container-narrow { width: min(780px, 100% - 2.5rem); }

/* --------------------------------------------------------- aurora backdrop */
.bg-aurora {
    position: fixed; inset: 0; z-index: -1; overflow: hidden;
    background:
        radial-gradient(1200px 600px at 85% -10%, rgba(99, 102, 241, 0.16), transparent 60%),
        radial-gradient(900px 500px at -10% 20%, rgba(34, 211, 238, 0.10), transparent 60%),
        var(--bg);
}
.bg-aurora i {
    position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.35;
    animation: drift 26s var(--ease) infinite alternate;
}
.bg-aurora i:nth-child(1) { width: 520px; height: 520px; background: #4338ca; top: -220px; right: -120px; }
.bg-aurora i:nth-child(2) { width: 420px; height: 420px; background: #0e7490; top: 30%; left: -200px; animation-delay: -8s; }
.bg-aurora i:nth-child(3) { width: 380px; height: 380px; background: #86198f; bottom: -180px; right: 12%; opacity: 0.22; animation-delay: -16s; }
@keyframes drift {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to   { transform: translate3d(40px, 50px, 0) scale(1.12); }
}

/* ------------------------------------------------------------------- glass */
.glass {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: var(--shadow);
}

/* ------------------------------------------------------------------ header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(7, 11, 21, 0.72);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--border);
}
.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--text); font-weight: 700; font-size: 1.06rem; }
.brand-mark {
    display: inline-grid; place-items: center; width: 34px; height: 34px;
    border-radius: 10px; background: var(--grad); color: #fff;
    box-shadow: 0 6px 18px -6px rgba(99, 102, 241, 0.7);
}
.site-nav { display: flex; gap: 0.25rem; }
.site-nav a {
    color: var(--text-soft); padding: 0.5rem 0.85rem; border-radius: 10px;
    font-size: 0.94rem; font-weight: 500; transition: color 0.18s, background 0.18s;
}
.site-nav a:hover { color: var(--text); background: var(--surface-strong); }
.nav-toggle {
    display: none; background: var(--surface); border: 1px solid var(--border);
    color: var(--text); width: 42px; height: 42px; border-radius: 10px; align-items: center; justify-content: center;
}
.nav-toggle .icon-x { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-x { display: block; }

@media (max-width: 760px) {
    .nav-toggle { display: inline-flex; }
    .site-nav {
        position: absolute; top: 64px; left: 0; right: 0;
        flex-direction: column; padding: 0.75rem 1.25rem 1.25rem;
        background: rgba(7, 11, 21, 0.97); border-bottom: 1px solid var(--border);
        display: none;
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: 0.8rem 1rem; }
}

/* ----------------------------------------------------------------- buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    border: 0; border-radius: 12px; padding: 0.8rem 1.5rem;
    font-weight: 600; font-size: 0.98rem; color: var(--text);
    background: var(--surface-strong); text-decoration: none;
    transition: transform 0.16s var(--ease), box-shadow 0.2s, filter 0.2s;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.btn:active { transform: translateY(0) scale(0.99); }
.btn-primary {
    background: var(--grad); color: #fff;
    box-shadow: 0 10px 28px -10px rgba(99, 102, 241, 0.75);
}
.btn-ghost { background: transparent; border: 1px solid var(--border-strong); }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* -------------------------------------------------------------------- hero */
.hero { padding: clamp(3.2rem, 8vw, 6rem) 0 2.6rem; text-align: center; }
.hero-compact { padding-top: clamp(2rem, 5vw, 3.4rem); }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
    color: var(--text-soft); background: var(--surface);
    border: 1px solid var(--border); border-radius: 999px;
    padding: 0.4rem 0.95rem; margin-bottom: 1.4rem;
}
.hero-badge .icon { color: var(--accent-2); }
.hero-title {
    font-size: clamp(2.1rem, 5.4vw, 3.6rem); font-weight: 800; margin-bottom: 0.5em;
    background: linear-gradient(120deg, #fff 30%, #b9c3ff 70%, #7dd7ee);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
    max-width: 640px; margin: 0 auto 2.2rem; color: var(--text-soft);
    font-size: clamp(1rem, 2.2vw, 1.14rem);
}
.hero-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; padding: 0; margin: 1.8rem 0 0; }
.hero-chips a {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--text-soft); font-size: 0.88rem; font-weight: 500;
    border: 1px solid var(--border); border-radius: 999px; padding: 0.42rem 0.9rem;
    background: var(--surface); transition: color 0.18s, border-color 0.18s, transform 0.18s var(--ease);
}
.hero-chips a:hover { color: var(--text); border-color: var(--border-strong); transform: translateY(-1px); }

/* -------------------------------------------------------------- downloader */
.dl-tool { max-width: 760px; margin: 0 auto; text-align: left; }
.dl-form {
    display: flex; gap: 0.6rem; padding: 0.6rem;
    border-radius: var(--radius-lg);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.dl-form:focus-within {
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.16), var(--shadow);
}
.dl-field { position: relative; flex: 1; display: flex; align-items: center; min-width: 0; }
.dl-field-icon { position: absolute; left: 14px; color: var(--text-dim); display: inline-flex; }
.dl-field input {
    flex: 1; min-width: 0; height: 52px;
    background: rgba(0, 0, 0, 0.25); color: var(--text);
    border: 1px solid transparent; border-radius: 14px;
    padding: 0 5.4rem 0 2.7rem; font-size: 0.98rem; font-family: inherit;
}
.dl-field input::placeholder { color: var(--text-dim); }
.dl-field input:focus { outline: none; }
.dl-paste {
    position: absolute; right: 8px;
    display: inline-flex; align-items: center; gap: 0.35rem;
    background: var(--surface-strong); color: var(--text-soft);
    border: 1px solid var(--border); border-radius: 9px;
    padding: 0.4rem 0.7rem; font-size: 0.82rem; font-weight: 600;
    transition: color 0.15s, border-color 0.15s;
}
.dl-paste:hover { color: var(--text); border-color: var(--border-strong); }
.dl-submit { min-width: 168px; height: 52px; border-radius: 14px; position: relative; }
.dl-submit-spinner {
    display: none; width: 20px; height: 20px; border-radius: 50%;
    border: 2.5px solid rgba(255, 255, 255, 0.35); border-top-color: #fff;
    animation: spin 0.7s linear infinite;
}
.dl-submit.loading .dl-submit-label { display: none; }
.dl-submit.loading .dl-submit-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.dl-status {
    margin-top: 0.9rem; font-size: 0.92rem; color: var(--text-soft);
    display: flex; align-items: center; gap: 0.5rem;
}
.dl-status.error { color: var(--bad); }
.dl-status .pulse-dot {
    width: 9px; height: 9px; border-radius: 50%; background: var(--accent-2);
    animation: pulse 1.2s ease-in-out infinite; flex: none;
}
@keyframes pulse { 0%, 100% { opacity: 0.4; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1.1); } }

/* skeleton loader */
.dl-skeleton { margin-top: 1.1rem; padding: 1.1rem; display: flex; gap: 1rem; }
.sk { position: relative; overflow: hidden; background: var(--surface-strong); border-radius: 8px; }
.sk::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.09), transparent);
    animation: shimmer 1.4s infinite;
}
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
.sk-thumb { width: 132px; height: 92px; flex: none; border-radius: 12px; }
.sk-body { flex: 1; display: flex; flex-direction: column; gap: 0.7rem; padding-top: 0.2rem; }
.sk-line { height: 14px; }
.sk-line.w-80 { width: 80%; } .sk-line.w-45 { width: 45%; }
.sk-row { display: flex; gap: 0.5rem; margin-top: auto; }
.sk-pill { width: 84px; height: 30px; border-radius: 999px; }

/* result card */
.dl-result { margin-top: 1.1rem; }
.result-card { padding: 1.15rem; animation: rise 0.4s var(--ease); }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.result-head { display: flex; gap: 1rem; margin-bottom: 1rem; }
.result-thumb {
    width: 132px; height: 92px; flex: none; border-radius: 12px;
    object-fit: cover; background: var(--bg-soft); border: 1px solid var(--border);
}
.result-info { min-width: 0; }
.result-title {
    font-size: 1.02rem; font-weight: 650; margin: 0 0 0.5rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.result-meta { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.meta-chip {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-size: 0.78rem; color: var(--text-soft);
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 999px; padding: 0.24rem 0.68rem; max-width: 260px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.format-list { display: flex; flex-direction: column; gap: 0.55rem; }
.format-row {
    display: flex; align-items: center; gap: 0.85rem;
    background: rgba(0, 0, 0, 0.22); border: 1px solid var(--border);
    border-radius: 12px; padding: 0.65rem 0.85rem;
    transition: border-color 0.16s, background 0.16s;
}
.format-row:hover { border-color: var(--border-strong); background: rgba(0, 0, 0, 0.3); }
.format-q {
    display: inline-grid; place-items: center; min-width: 46px; height: 30px;
    border-radius: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.02em;
    padding: 0 0.5rem;
}
.format-q.hd { background: rgba(99, 102, 241, 0.22); color: #b6b9ff; border: 1px solid rgba(99, 102, 241, 0.4); }
.format-q.sd { background: rgba(34, 211, 238, 0.14); color: #8fe8f7; border: 1px solid rgba(34, 211, 238, 0.32); }
.format-q.mp3 { background: rgba(217, 70, 239, 0.16); color: #efa3f9; border: 1px solid rgba(217, 70, 239, 0.36); }
.format-label { font-weight: 600; font-size: 0.94rem; }
.format-size { color: var(--text-dim); font-size: 0.84rem; margin-left: auto; padding-right: 0.4rem; }
.format-row .btn { padding: 0.5rem 1rem; font-size: 0.88rem; border-radius: 10px; flex: none; }
.mp3-status { font-size: 0.85rem; color: var(--text-soft); display: inline-flex; align-items: center; gap: 0.5rem; margin-left: auto; padding-right: 0.4rem; }

@media (max-width: 640px) {
    .dl-form { flex-direction: column; }
    .dl-submit { width: 100%; }
    .result-head { flex-direction: column; }
    .result-thumb { width: 100%; height: auto; aspect-ratio: 16/9; }
    .format-size { display: none; }
}

/* ---------------------------------------------------------------- sections */
.section { padding: clamp(2.8rem, 6vw, 4.6rem) 0; }
.section-title { text-align: center; font-size: clamp(1.5rem, 3.4vw, 2.1rem); }
.section-sub { text-align: center; color: var(--text-soft); max-width: 560px; margin: 0 auto 2.4rem; }

.steps-grid {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem;
    counter-reset: step;
}
.step-card { padding: 1.5rem; position: relative; }
.step-card p { margin: 0; color: var(--text-soft); }
.step-num {
    display: inline-grid; place-items: center; width: 40px; height: 40px;
    border-radius: 12px; background: var(--grad); color: #fff;
    font-weight: 800; font-size: 1.05rem; margin-bottom: 0.9rem;
    box-shadow: 0 8px 22px -8px rgba(99, 102, 241, 0.7);
}

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.feature-card { padding: 1.6rem; transition: transform 0.22s var(--ease), border-color 0.22s; }
.feature-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.feature-card h3 { font-size: 1.05rem; margin: 0.95rem 0 0.4rem; }
.feature-card p { margin: 0; color: var(--text-soft); font-size: 0.93rem; }
.feature-icon {
    display: inline-grid; place-items: center; width: 46px; height: 46px;
    border-radius: 13px; color: var(--accent-2);
    background: rgba(34, 211, 238, 0.09); border: 1px solid rgba(34, 211, 238, 0.22);
}
.feature-card:nth-child(3n+1) .feature-icon { color: #a5a8ff; background: rgba(99, 102, 241, 0.12); border-color: rgba(99, 102, 241, 0.3); }
.feature-card:nth-child(3n) .feature-icon { color: #efa3f9; background: rgba(217, 70, 239, 0.1); border-color: rgba(217, 70, 239, 0.26); }

/* --------------------------------------------------------------------- faq */
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item { overflow: hidden; }
.faq-item summary {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    list-style: none; cursor: pointer; padding: 1.05rem 1.25rem;
    font-weight: 600; font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { flex: none; color: var(--text-dim); transition: transform 0.25s var(--ease); }
.faq-item[open] summary .icon { transform: rotate(180deg); color: var(--accent-2); }
.faq-answer { padding: 0 1.25rem 1.15rem; color: var(--text-soft); font-size: 0.94rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------- cta */
.cta-card { text-align: center; padding: clamp(2rem, 5vw, 3.2rem); border-radius: var(--radius-lg); position: relative; overflow: hidden; }
.cta-card::before {
    content: ""; position: absolute; inset: -40%;
    background: radial-gradient(closest-side, rgba(99, 102, 241, 0.25), transparent 70%);
    pointer-events: none;
}
.cta-card h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
.cta-card p { color: var(--text-soft); margin-bottom: 1.6rem; }

/* ------------------------------------------------------------------ footer */
.site-footer { border-top: 1px solid var(--border); background: rgba(0, 0, 0, 0.25); margin-top: 2rem; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
    padding: 3rem 0 2rem;
}
.footer-brand p { color: var(--text-dim); font-size: 0.9rem; margin-top: 1rem; max-width: 300px; }
.footer-col h2 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dim); margin-bottom: 0.9rem; }
.footer-col a { display: block; color: var(--text-soft); font-size: 0.92rem; padding: 0.28rem 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    display: flex; flex-wrap: wrap; gap: 0.6rem 2rem; justify-content: space-between;
    border-top: 1px solid var(--border); padding: 1.3rem 0 1.6rem;
}
.footer-bottom p { margin: 0; font-size: 0.82rem; color: var(--text-dim); }
.footer-disclaimer { max-width: 560px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 1.4rem; } }

/* ------------------------------------------------------------------- prose */
.prose { font-size: 1rem; color: var(--text-soft); }
.prose h1 { color: var(--text); font-size: clamp(1.7rem, 4vw, 2.3rem); margin-bottom: 0.6em; }
.prose h2 { color: var(--text); font-size: 1.4rem; margin-top: 2em; }
.prose h3 { color: var(--text); font-size: 1.12rem; margin-top: 1.6em; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin-bottom: 0.4rem; }
.prose blockquote {
    margin: 1.4rem 0; padding: 0.9rem 1.2rem; border-left: 3px solid var(--accent-1);
    background: var(--surface); border-radius: 0 12px 12px 0;
}
.prose code { background: var(--surface-strong); padding: 0.15em 0.45em; border-radius: 6px; font-size: 0.9em; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--border); padding: 0.6rem 0.8rem; text-align: left; font-size: 0.92rem; }
.prose th { color: var(--text); background: var(--surface); }
.post-meta { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--text-dim); font-size: 0.85rem; }

/* ------------------------------------------------------- breadcrumbs, blog */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 1.6rem; justify-content: center; }
.page-section .breadcrumbs { justify-content: flex-start; }
.breadcrumbs a { color: var(--text-soft); }
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs [aria-current] { color: var(--text-dim); }

.post-list { display: flex; flex-direction: column; gap: 1rem; }
.post-card { display: block; padding: 1.5rem; color: inherit; transition: transform 0.2s var(--ease), border-color 0.2s; }
.post-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.post-card h2 { font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--text); }
.post-card p { color: var(--text-soft); font-size: 0.93rem; margin-bottom: 0.7rem; }
.empty-note { text-align: center; color: var(--text-dim); padding: 2rem 0; }

/* ------------------------------------------------------------------- error */
.error-section { padding: clamp(4rem, 12vw, 7rem) 0; }
.error-box { text-align: center; }
.error-code {
    font-size: clamp(4rem, 14vw, 7rem); font-weight: 800; line-height: 1; margin: 0 0 0.5rem;
    background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.error-box h1 { font-size: 1.5rem; }
.error-box p { color: var(--text-soft); margin-bottom: 1.8rem; }

/* --------------------------------------------------------------------- ads */
.ad-slot { display: flex; justify-content: center; padding: 1rem 1.25rem; }
.ad-slot:empty { display: none; }
@media (max-width: 760px) { .ad-dev--desktop { display: none; } }
@media (min-width: 761px) { .ad-dev--mobile { display: none; } }

.popup-overlay {
    position: fixed; inset: 0; z-index: 90; display: grid; place-items: center;
    background: rgba(4, 6, 12, 0.72); backdrop-filter: blur(6px); padding: 1.5rem;
}
.popup-box { position: relative; max-width: 480px; width: 100%; padding: 2rem 1.5rem 1.5rem; }
.popup-close {
    position: absolute; top: 10px; right: 10px; width: 34px; height: 34px;
    border-radius: 50%; border: 1px solid var(--border); background: var(--surface-strong);
    color: var(--text-soft); font-size: 0.9rem;
}

/* ------------------------------------------------------------------- toast */
.toast {
    position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%);
    z-index: 95; background: #171e31; border: 1px solid var(--border-strong);
    color: var(--text); font-size: 0.9rem; font-weight: 500;
    border-radius: 12px; padding: 0.75rem 1.2rem; box-shadow: var(--shadow);
    animation: rise 0.3s var(--ease); max-width: min(420px, calc(100vw - 2rem));
}
.toast.error { border-color: rgba(248, 113, 113, 0.5); }

/* ------------------------------------------------------------------ motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
    .bg-aurora i { animation: none; }
}
