﻿@charset "UTF-8";

:root {
    --bg: #060b14;
    --bg-2: #0b1421;
    --bg-3: #0f1c30;
    --surface: rgba(255, 255, 255, 0.045);
    --surface-hover: rgba(255, 255, 255, 0.075);
    --border: rgba(255, 255, 255, 0.08);
    --border-blue: rgba(37, 99, 255, 0.28);
    --blue: #2563ff;
    --blue-bright: #3b82f6;
    --blue-glow: #60a5fa;
    --blue-dim: rgba(37, 99, 255, 0.13);
    --text: rgba(255, 255, 255, 0.92);
    --muted: rgba(255, 255, 255, 0.68);
    --soft: rgba(255, 255, 255, 0.44);
    --faint: rgba(255, 255, 255, 0.18);
    --red: #ef4444;
    --red-dim: rgba(239, 68, 68, 0.1);
    --green: #22c55e;
    --green-dim: rgba(34, 197, 94, 0.1);
    --amber: #fbbf24;
    --amber-dim: rgba(251, 191, 36, 0.11);
    --sidebar: 274px;
    --topbar: 58px;
    --max: 1160px;
    --radius: 10px;
    --font: Inter, Manrope, "Segoe UI", Arial, sans-serif;
    --display: Manrope, Inter, "Segoe UI", Arial, sans-serif;
    --tr: 180ms ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--topbar) + 18px);
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 14% 0%, rgba(37, 99, 255, 0.18), transparent 24rem),
        radial-gradient(circle at 82% 8%, rgba(96, 165, 250, 0.12), transparent 26rem),
        linear-gradient(180deg, #060b14 0%, #0b1421 54%, #060b14 100%);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: rgba(37, 99, 255, 0.35); color: #fff; }

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(37, 99, 255, 0.48); border-radius: 999px; }

:focus-visible {
    outline: 2px solid var(--blue-glow);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link {
    position: fixed;
    left: 14px;
    top: 14px;
    z-index: 1000;
    transform: translateY(-140%);
    padding: 10px 14px;
    border-radius: 8px;
    background: #fff;
    color: #031129;
    font-weight: 900;
    transition: transform var(--tr);
}
.skip-link:focus { transform: translateY(0); }

.progress {
    position: fixed;
    inset: var(--topbar) 0 auto;
    z-index: 210;
    height: 2px;
    background: transparent;
}
.progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--blue-glow));
    box-shadow: 0 0 16px rgba(96, 165, 250, 0.7);
}

.topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    height: var(--topbar);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    border-bottom: 1px solid var(--border);
    background: rgba(6, 11, 20, 0.92);
    backdrop-filter: blur(20px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
}
.brand-mark {
    width: 62px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: rgba(6, 11, 20, 0.78);
    box-shadow: 0 0 18px rgba(37, 99, 255, 0.42);
    font-family: var(--display);
    font-size: 16px;
    font-weight: 900;
    overflow: hidden;
}
.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3px;
}
.brand strong, .brand small { display: block; line-height: 1; }
.brand strong {
    color: #fff;
    font-family: var(--display);
    font-size: 16px;
    font-weight: 900;
}
.brand em { color: var(--blue-glow); font-style: normal; }
.brand small {
    margin-top: 5px;
    color: var(--soft);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.season-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid var(--border-blue);
    border-radius: 999px;
    color: var(--blue-glow);
    background: var(--blue-dim);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.season-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-bright);
    box-shadow: 0 0 8px var(--blue-bright);
    animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.35; } }

.topnav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 850;
}
.topnav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color var(--tr), transform var(--tr);
}
.topnav a:hover { color: #fff; transform: translateY(-1px); }
.discord-link {
    min-height: 36px !important;
    padding: 0 14px;
    border: 1px solid var(--border-blue);
    border-radius: 7px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--blue), #1d4ed8);
    box-shadow: 0 8px 24px rgba(37, 99, 255, 0.3);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: #fff;
    background: var(--surface);
}
.menu-button span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform var(--tr), opacity var(--tr);
}
.menu-open .menu-button span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-button span:nth-child(2) { opacity: 0; }
.menu-open .menu-button span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: end start;
    overflow: hidden;
    padding: calc(var(--topbar) + 42px) 48px 58px calc(var(--sidebar) + 48px);
}
.hero-bg, .hero-shade { position: absolute; inset: 0; }
.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.12);
}
.hero-shade {
    background:
        linear-gradient(90deg, rgba(6, 11, 20, 0.96) 0%, rgba(6, 11, 20, 0.72) 42%, rgba(6, 11, 20, 0.36) 100%),
        linear-gradient(180deg, rgba(6, 11, 20, 0.1), #060b14 98%);
}
.hero-inner {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
}
.hero-logo {
    width: min(300px, 82vw);
    height: auto;
    margin: 0 0 16px;
    filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.58));
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: var(--blue-glow);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.hero-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue-bright);
    box-shadow: 0 0 10px var(--blue-bright);
}

h1, h2, h3, h4, p { margin-top: 0; }
h1 {
    margin-bottom: 14px;
    color: #fff;
    font-family: var(--display);
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    font-weight: 950;
    line-height: 0.92;
    letter-spacing: 0;
}
h1 span { color: var(--blue-bright); }
.hero-copy {
    width: min(590px, 100%);
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 1rem;
}

.search-shell {
    width: min(720px, 100%);
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px;
    border: 1px solid var(--border-blue);
    border-radius: 12px;
    background: rgba(6, 11, 20, 0.78);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36), 0 0 34px rgba(37, 99, 255, 0.22);
    backdrop-filter: blur(18px);
}
.search-shell input {
    flex: 1;
    min-width: 0;
    min-height: 44px;
    padding: 0 14px;
    border: 0;
    color: #fff;
    background: transparent;
    outline: 0;
}
.search-shell input::placeholder { color: var(--soft); }
.search-shell button, .tool-button, .sidebar-head button {
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: #fff;
    background: var(--surface);
    font-size: 0.84rem;
    font-weight: 900;
    transition: transform var(--tr), border-color var(--tr), background var(--tr);
}
.search-shell button:hover, .tool-button:hover, .sidebar-head button:hover {
    transform: translateY(-1px);
    border-color: var(--border-blue);
    background: var(--surface-hover);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 7px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.045);
    font-size: 0.82rem;
}
.hero-meta strong { color: #fff; }

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.action-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid var(--border-blue);
    border-radius: 7px;
    color: #fff;
    background: rgba(255, 255, 255, 0.055);
    font-size: 0.84rem;
    font-weight: 900;
    transition: transform var(--tr), border-color var(--tr), background var(--tr);
}
.action-button-primary {
    background: linear-gradient(135deg, var(--blue), #1d4ed8);
    box-shadow: 0 8px 24px rgba(37, 99, 255, 0.3);
}
.action-button:hover {
    transform: translateY(-1px);
    border-color: rgba(96, 165, 250, 0.72);
    background: var(--surface-hover);
}

.quick-panel {
    width: min(760px, 100%);
    display: grid;
    gap: 10px;
    margin-top: 16px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(6, 11, 20, 0.54);
    backdrop-filter: blur(16px);
}
.quick-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.quick-row span {
    width: 118px;
    flex: 0 0 auto;
    color: var(--soft);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.quick-row button {
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--border-blue);
    border-radius: 7px;
    color: #fff;
    background: rgba(37, 99, 255, 0.14);
    font-size: 0.82rem;
    font-weight: 900;
    transition: transform var(--tr), border-color var(--tr), background var(--tr);
}
.quick-row button:hover {
    transform: translateY(-1px);
    border-color: rgba(96, 165, 250, 0.72);
    background: rgba(37, 99, 255, 0.25);
}
.quick-row-soft button {
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.055);
}
.quick-row-soft button:hover { color: #fff; }

.layout {
    display: grid;
    grid-template-columns: var(--sidebar) minmax(0, var(--max));
    gap: 34px;
    align-items: start;
    max-width: calc(var(--sidebar) + var(--max) + 68px);
    margin: 0 auto;
    padding: 36px 28px 86px;
}

.sidebar {
    position: sticky;
    top: calc(var(--topbar) + 18px);
    max-height: calc(100dvh - var(--topbar) - 36px);
    overflow-y: auto;
    border-right: 1px solid var(--border);
    background: rgba(6, 11, 20, 0.74);
}
.sidebar-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px 12px;
    color: var(--soft);
    background: rgba(6, 11, 20, 0.96);
    font-size: 0.7rem;
    font-weight: 950;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.sidebar-head button { display: none; }
.section-nav { display: grid; gap: 3px; padding: 4px 0 34px; }
.nav-item {
    width: 100%;
    min-height: 42px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 0;
    border-left: 2px solid transparent;
    color: var(--soft);
    background: transparent;
    text-align: left;
    font-size: 0.86rem;
    font-weight: 800;
    transition: color var(--tr), background var(--tr), border-color var(--tr);
}
.nav-item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nav-item small {
    min-width: 28px;
    justify-self: end;
    color: var(--faint);
    font-size: 0.68rem;
    text-align: right;
}
.nav-item:hover { color: #fff; background: rgba(255, 255, 255, 0.045); }
.nav-item.is-active {
    color: var(--blue-glow);
    border-left-color: var(--blue);
    background: var(--blue-dim);
}

.reader { min-width: 0; }
.reader-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding: 0 0 22px;
    border-bottom: 1px solid var(--border);
}
.eyebrow {
    margin: 0 0 8px;
    color: var(--blue-glow);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.reader-toolbar h2 {
    margin: 0;
    color: #fff;
    font-family: var(--display);
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1;
}
.result-summary {
    max-width: 560px;
    margin: 10px 0 0;
    color: var(--soft);
    font-size: 0.9rem;
    line-height: 1.45;
}
.reader-actions { display: flex; gap: 10px; }
.rules-list { display: grid; gap: 38px; }

.section-card {
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    padding-bottom: 32px;
}
.section-card:last-child { border-bottom: 0; }
.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding: 18px 0 22px;
    border-bottom: 1px solid var(--border);
}
.section-header::before {
    content: "";
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
    border: 1px solid var(--border-blue);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(37, 99, 255, 0.24), rgba(96, 165, 250, 0.06)),
        radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.28), transparent 54%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}
.section-header h3 {
    margin-bottom: 3px;
    color: #fff;
    font-family: var(--display);
    font-size: 1.45rem;
    font-weight: 950;
    letter-spacing: 0;
}
.section-header p { margin: 0; color: var(--soft); font-size: 0.84rem; }

.article-list, .body-block { display: grid; gap: 10px; }
.body-block {
    margin-bottom: 10px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--muted);
}
.body-block h4 {
    margin: 14px 0 7px;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.body-block p { margin-bottom: 8px; }
.body-block ul { margin: 8px 0 10px; padding-left: 18px; }
.body-block li { margin-bottom: 5px; }

.rule-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    transition: border-color var(--tr), background var(--tr), transform var(--tr);
}
.rule-card:hover {
    border-color: rgba(37, 99, 255, 0.28);
    background: var(--surface-hover);
}
.rule-card summary {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #fff;
    cursor: pointer;
    font-family: var(--display);
    font-size: 0.95rem;
    font-weight: 900;
    list-style: none;
}
.rule-card summary::-webkit-details-marker { display: none; }
.rule-card summary::before {
    content: attr(data-rule-num);
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 7px;
    color: var(--blue-bright);
    background: var(--blue-dim);
    font-size: 0.72rem;
    font-weight: 950;
}
.rule-card summary::after {
    content: "+";
    color: var(--soft);
    font-size: 1.2rem;
    transition: transform var(--tr), color var(--tr);
}
.rule-card[open] summary::after { transform: rotate(45deg); color: var(--blue-bright); }
.summary-title {
    flex: 1 1 auto;
    min-width: 0;
}
.rule-meta {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 9px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.045);
    font-family: var(--font);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.rule-meta.is-danger {
    color: #fecaca;
    border-color: rgba(239, 68, 68, 0.36);
    background: rgba(239, 68, 68, 0.12);
}
.rule-meta.is-warning {
    color: #fde68a;
    border-color: rgba(251, 191, 36, 0.34);
    background: rgba(251, 191, 36, 0.11);
}
.rule-meta.is-info {
    color: #bfdbfe;
    border-color: rgba(96, 165, 250, 0.34);
    background: rgba(96, 165, 250, 0.1);
}
.rule-body {
    padding: 0 20px 18px 64px;
    color: var(--muted);
    font-size: 0.93rem;
}
.rule-body p { margin-bottom: 9px; }
.rule-body h4 {
    margin: 14px 0 8px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.rule-body ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
    padding: 0;
    list-style: none;
}
.rule-body li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.rule-body li::before {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 auto;
    margin-top: 10px;
    border-radius: 50%;
    background: var(--blue-bright);
}
.notice {
    margin: 12px 0;
    padding: 12px 14px;
    border-radius: 8px;
    color: rgba(255, 210, 210, 0.9);
    background: var(--red-dim);
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.notice strong { color: #fff; }
.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 12px;
}
.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 6px;
    color: var(--blue-glow);
    background: var(--blue-dim);
    border: 1px solid var(--border-blue);
    font-size: 0.78rem;
    font-weight: 900;
}
.page-chip {
    display: inline-flex;
    margin-top: 10px;
    padding: 4px 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--soft);
    font-size: 0.72rem;
    font-weight: 900;
}

mark {
    border-radius: 4px;
    color: #06111f;
    background: #93c5fd;
    padding: 0 2px;
}
.empty-state {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}
.empty-state h3 { margin-bottom: 8px; color: #fff; }
.empty-state p { margin-bottom: 14px; color: var(--muted); }

.footer {
    max-width: calc(var(--sidebar) + var(--max) + 68px);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin: 0 auto;
    padding: 26px 28px 42px calc(var(--sidebar) + 28px);
    border-top: 1px solid var(--border);
    color: var(--soft);
    font-size: 0.86rem;
    font-weight: 800;
}
.footer a { color: #fff; }
.scrolltop {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 150;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--blue);
    box-shadow: 0 10px 30px rgba(37, 99, 255, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--tr), transform var(--tr), background var(--tr);
}
.scrolltop.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.scrolltop:hover { background: #1d4ed8; }

@media (max-width: 980px) {
    .topnav, .season-badge { display: none; }
    .menu-button { display: inline-flex; margin-left: auto; }
    .hero { padding: calc(var(--topbar) + 34px) 24px 46px; min-height: 540px; }
    .layout { grid-template-columns: 1fr; padding: 28px 18px 74px; }
    .sidebar {
        position: fixed;
        inset: var(--topbar) 14px auto;
        z-index: 180;
        display: none;
        max-height: calc(100dvh - var(--topbar) - 28px);
        border: 1px solid var(--border);
        border-radius: 12px;
        background: rgba(6, 11, 20, 0.98);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    }
    .sidebar.is-open { display: block; }
    .sidebar-head { padding: 14px 16px; }
    .sidebar-head button { display: inline-flex; }
    .footer { padding-left: 28px; }
}

@media (max-width: 640px) {
    .topbar { padding-inline: 16px; }
    .brand-mark { width: 56px; }
    .brand small { display: none; }
    h1 { font-size: clamp(2.3rem, 14vw, 4rem); }
    .quick-panel { padding: 12px; }
    .quick-row { align-items: stretch; }
    .quick-row span { width: 100%; }
    .quick-row button { flex: 1 1 116px; min-height: 44px; }
    .search-shell { align-items: stretch; flex-direction: column; }
    .search-shell input, .search-shell button { width: 100%; }
    .reader-toolbar { align-items: stretch; flex-direction: column; }
    .reader-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .section-header { align-items: flex-start; }
    .section-header::before { width: 44px; height: 44px; }
    .rule-card summary {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 15px;
    }
    .summary-title { flex-basis: calc(100% - 54px); }
    .rule-meta { order: 3; margin-left: 44px; }
    .rule-body { padding: 0 15px 16px 15px; }
    .footer { align-items: flex-start; flex-direction: column; }
}

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