:root {
    color-scheme: dark;
    --bg: #121212;
    --title: #2a2a2a;
    --panel: #171717;
    --panel-2: #1e1e1e;
    --panel-3: #242424;
    --line: #2d2d2d;
    --line-2: #383838;
    --text: #f3f3f3;
    --muted: #a7a7a7;
    --soft: #757575;
    --accent: #24d51f;
    --cyan: #20b8ff;
    --orange: #ff7b29;
    --purple: #b487ff;
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", "Noto Sans SC", sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at 18% 0%, rgba(36, 213, 31, 0.1), transparent 32rem),
        radial-gradient(circle at 90% 20%, rgba(32, 184, 255, 0.08), transparent 30rem),
        #050505;
    color: var(--text);
}

button,
input,
select {
    font: inherit;
}

button {
    color: inherit;
}

a {
    color: inherit;
}

.landing-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px 0;
    backdrop-filter: blur(18px);
}

.landing-brand,
.landing-nav nav,
.landing-link {
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(18, 18, 18, 0.78);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    text-decoration: none;
    font-weight: 900;
}

.landing-brand img {
    width: 28px;
    height: 28px;
}

.landing-nav nav {
    justify-self: center;
    display: flex;
    gap: 4px;
    padding: 4px;
}

.landing-nav nav a,
.landing-link {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 5px;
    color: var(--muted);
    text-decoration: none;
}

.landing-nav nav a:hover,
.landing-link:hover {
    color: var(--text);
    background: #242424;
}

.landing-main {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
}

.hero-section {
    min-height: calc(100vh - 78px);
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 0.78fr);
    align-items: center;
    gap: 56px;
    padding: 52px 0 76px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 18px;
    font-size: clamp(56px, 8vw, 108px);
    line-height: 0.95;
    letter-spacing: 0;
}

.hero-lede {
    max-width: 760px;
    margin: 0 0 18px;
    color: #f4f4f4;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.24;
    font-weight: 800;
}

.hero-note {
    max-width: 760px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.76;
}

.hero-note a,
.notice-section a {
    color: #fff;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--line-2);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 900;
}

.button.primary {
    border-color: transparent;
    background: var(--accent);
    color: #071007;
}

.button.secondary {
    background: #202020;
    color: #fff;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.meta-row span {
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(30, 30, 30, 0.82);
    color: var(--muted);
}

.hero-card,
.feature-section,
.workflow-section,
.demo-section,
.notice-section {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(23, 23, 23, 0.82);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.hero-card {
    padding: 22px;
    animation: panelIn 0.7s ease both;
}

.mini-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 900;
}

.mini-title img {
    width: 32px;
    height: 32px;
}

.mini-grid {
    display: grid;
    gap: 12px;
}

.mini-grid div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #1d1d1d;
}

.mini-grid strong {
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.mini-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.feature-section,
.workflow-section,
.demo-section,
.notice-section {
    margin-bottom: 28px;
    padding: 42px;
}

.section-heading {
    max-width: 840px;
    margin-bottom: 24px;
}

.section-heading h2,
.notice-section h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.notice-section p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.72;
}

.feature-grid,
.workflow-grid {
    display: grid;
    gap: 14px;
}

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

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

.feature-grid article {
    min-height: 220px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: #1d1d1d;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease;
}

.feature-grid article:hover {
    transform: translateY(-3px);
    border-color: #4a4a4a;
}

.feature-grid article span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 30px;
    margin-bottom: 22px;
    border: 1px solid rgba(36, 213, 31, 0.38);
    border-radius: 5px;
    color: var(--accent);
    font-weight: 900;
}

.feature-grid h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.feature-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.68;
}

.workflow-grid div {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background:
        linear-gradient(135deg, rgba(36, 213, 31, 0.08), transparent),
        #1d1d1d;
}

.workflow-grid strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 20px;
}

.workflow-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.66;
}

.desktop-shell {
    min-height: 720px;
    height: min(760px, 76vh);
    display: grid;
    grid-template-rows: 28px minmax(0, 1fr) 32px;
    overflow: hidden;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 7px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.titlebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px 0 4px;
    background: var(--title);
    border-bottom: 1px solid #202020;
    user-select: none;
}

.app-title {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #e9e9e9;
    font-size: 14px;
}

.app-title img {
    width: 18px;
    height: 18px;
}

.window-actions {
    display: flex;
    gap: 18px;
}

.window-actions span {
    width: 12px;
    height: 12px;
    border: 1px solid #cfcfcf;
    border-radius: 2px;
    opacity: 0.76;
}

.app-layout {
    min-height: 0;
    display: grid;
    grid-template-columns: 272px minmax(0, 1fr);
}

.sidebar {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 10px 10px 8px 12px;
    border-right: 1px solid var(--line);
    background: #151515;
    overflow: hidden;
}

.perf-card {
    height: 56px;
    margin: -8px 0 16px -12px;
    padding: 2px 8px 4px 0;
    border: 1px dotted #2b2b2b;
    color: #ebebeb;
    font-family: Consolas, "SFMono-Regular", monospace;
    font-size: 12px;
    line-height: 1.1;
}

.perf-card p {
    display: grid;
    grid-template-columns: 36px 72px 1fr;
    gap: 4px;
    margin: 0;
}

.perf-card b {
    color: #00ff88;
}

.perf-card span,
.perf-card i {
    color: #ff9d00;
    font-style: normal;
}

.side-nav,
.sidebar-bottom {
    display: grid;
    gap: 6px;
}

.side-nav {
    min-height: 0;
    overflow: hidden auto;
    padding-right: 2px;
}

.sidebar-bottom {
    margin-top: auto;
    padding-top: 14px;
}

.nav-item,
.sub-item {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: #f0f0f0;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background 0.16s ease,
        transform 0.16s ease,
        color 0.16s ease;
}

.nav-item span,
.sub-item span {
    width: 42px;
    text-align: center;
    color: #f4f4f4;
    font-size: 28px;
    line-height: 1;
}

.nav-item:hover,
.sub-item:hover {
    background: #202020;
}

.nav-item.active {
    background: #272727;
}

.sub-nav {
    display: grid;
    gap: 4px;
    padding-left: 36px;
    margin: -2px 0 8px;
}

.sub-item {
    min-height: 44px;
    padding-left: 0;
    font-size: 20px;
}

.sub-item span {
    width: 34px;
    font-size: 23px;
}

.sub-item.active {
    background: #252525;
}

.workspace {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 24px;
    padding: 22px 22px 16px 24px;
    overflow: hidden;
}

.top-controls {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 350px) 280px auto;
    gap: 12px;
    align-items: center;
}

.select-control,
.input-control,
.search-button {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line-2);
    border-radius: 5px;
    background: var(--panel-2);
    color: var(--muted);
}

.select-control,
.input-control {
    position: relative;
    padding: 0 14px;
}

.select-control span,
.input-control span {
    position: absolute;
    left: 18px;
    pointer-events: none;
    font-size: 20px;
    color: var(--muted);
}

.select-control select,
.input-control input {
    width: 100%;
    min-height: 52px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 18px;
}

.select-control select {
    opacity: 0;
    cursor: pointer;
}

.input-control input {
    padding-left: 0;
}

.input-control:focus-within,
.select-control:focus-within,
.search-button:hover {
    border-color: #4a4a4a;
    background: #222;
}

.search-button {
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
}

.search-button span {
    font-size: 28px;
}

kbd {
    min-width: 34px;
    padding: 4px 8px;
    border-radius: 4px;
    background: #2a2a2a;
    color: #bfbfbf;
    font-size: 16px;
    font-family: inherit;
}

.icon-actions {
    display: flex;
    gap: 20px;
    padding: 0 8px;
}

.icon-actions button {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #ececec;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.16s ease;
}

.icon-actions button:hover {
    transform: translateY(-2px);
}

.content-grid {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(560px, 1fr) 460px;
    gap: 14px;
}

.main-panel,
.friends-panel {
    min-height: 0;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: var(--panel);
    overflow: hidden;
}

.main-panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
}

.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
}

.panel-title h1 {
    margin: 0;
    font-size: 21px;
}

.panel-title p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.panel-tabs {
    display: flex;
    gap: 8px;
}

.chip {
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid var(--line-2);
    border-radius: 999px;
    background: #1b1b1b;
    color: var(--muted);
    cursor: pointer;
}

.chip.active,
.chip:hover {
    color: #fff;
    border-color: #565656;
    background: #272727;
}

.table-wrap {
    min-height: 0;
    overflow: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #151515;
}

th,
td {
    height: 62px;
    padding: 0 18px;
    border-bottom: 1px solid #2a2a2a;
    text-align: left;
    font-size: 20px;
}

th {
    color: #fff;
    font-weight: 800;
}

td {
    color: #e8e8e8;
}

tbody tr {
    transition:
        background 0.16s ease,
        transform 0.16s ease;
}

tbody tr:hover,
tbody tr.selected {
    background: #202020;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border: 1px solid #333;
    border-radius: 999px;
    color: #bdbdbd;
    background: #1a1a1a;
    font-size: 16px;
    white-space: nowrap;
}

.badge.profile {
    border-color: rgba(36, 213, 31, 0.35);
    color: #b7f1b5;
}

.badge.vr {
    border-color: rgba(32, 184, 255, 0.38);
    color: #b6e7ff;
}

.player-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.avatar {
    position: relative;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    overflow: hidden;
    color: #111;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), transparent 22%),
        linear-gradient(135deg, #b8c4d8, #474f5c);
    font-size: 13px;
    font-weight: 900;
}

.avatar.purple {
    background: linear-gradient(135deg, #ead8ff, #7c53ff);
}

.avatar.orange {
    background: linear-gradient(135deg, #ffd5a6, #9a4b20);
}

.avatar.green {
    background: linear-gradient(135deg, #caffc1, #168a3f);
}

.avatar.blue {
    background: linear-gradient(135deg, #cdf1ff, #2587e6);
}

.avatar.muted {
    background: #2d2d2d;
    color: #cfcfcf;
}

.avatar i {
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 12px;
    height: 12px;
    border: 2px solid var(--panel);
    border-radius: 50%;
    background: var(--accent);
}

.avatar.away i {
    background: var(--cyan);
}

.avatar.offline i {
    background: #777;
}

.action-button {
    border: 0;
    background: transparent;
    color: #aaa;
    font-size: 20px;
    cursor: pointer;
}

.action-button:hover {
    color: #fff;
}

.pager {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border-top: 1px solid var(--line);
}

.pager label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
}

.pager select,
.pager button,
.page-numbers button {
    min-width: 54px;
    min-height: 42px;
    border: 1px solid var(--line-2);
    border-radius: 5px;
    background: #202020;
    color: #f0f0f0;
    cursor: pointer;
}

.pager button:disabled {
    opacity: 0.35;
    cursor: default;
}

.page-numbers {
    display: flex;
    gap: 10px;
}

.page-numbers button.active {
    border-color: #555;
    background: #282828;
}

.friends-panel {
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr);
    padding: 0 0 8px;
}

.friend-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 18px 16px 0;
}

.friend-tab {
    min-height: 48px;
    border: 0;
    border-bottom: 4px solid transparent;
    background: transparent;
    color: var(--muted);
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
}

.friend-tab.active {
    color: #fff;
    border-bottom-color: #ddd;
}

.section-toggle {
    min-height: 44px;
    margin: 10px 16px 0;
    border: 0;
    background: transparent;
    color: #eaeaea;
    font-size: 18px;
    text-align: left;
    cursor: pointer;
}

.friend-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 72px;
    padding: 8px 16px;
    cursor: pointer;
    transition: background 0.16s ease;
}

.friend-item:hover,
.friend-item.selected {
    background: #202020;
}

.friend-item .avatar {
    width: 54px;
    height: 54px;
}

.friend-item strong {
    display: block;
    color: #c19aff;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.friend-item.online strong {
    color: #ff8a39;
}

.friend-item.green-name strong {
    color: #28df5d;
}

.friend-item p {
    margin: 4px 0 0;
    color: #f0f0f0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 20px;
    margin-right: 6px;
    border-radius: 2px;
    background: #fff;
    color: #d60000;
    font-size: 11px;
    font-weight: 900;
}

.friend-list {
    min-height: 0;
    overflow: auto;
    padding-bottom: 12px;
}

.statusbar {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--line);
    background: #171717;
    color: #d8d8d8;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
}

.statusbar span,
.statusbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 100%;
    padding: 0 12px;
    border-right: 1px solid #2b2b2b;
    color: inherit;
    text-decoration: none;
}

.statusbar .grow {
    flex: 1;
    min-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.repo-link:hover {
    color: #fff;
    background: #202020;
}

.statusbar i {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #8a8a8a;
}

.statusbar .ok i {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(36, 213, 31, 0.44);
}

.toast {
    position: fixed;
    right: 22px;
    bottom: 46px;
    z-index: 20;
    max-width: 340px;
    padding: 12px 14px;
    border: 1px solid #3a3a3a;
    border-radius: 6px;
    background: #252525;
    color: #fff;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes rowIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

tbody tr {
    animation: rowIn 0.22s ease both;
}

@media (max-width: 1180px) {
    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

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

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

    .app-layout {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .perf-card,
    .nav-item:not(.active)::after,
    .nav-item,
    .sub-item {
        font-size: 0;
    }

    .nav-item span,
    .sub-item span {
        width: 100%;
        font-size: 26px;
    }

    .sub-nav {
        padding-left: 0;
    }

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

@media (max-width: 900px) {
    .desktop-shell {
        grid-template-rows: 28px minmax(0, 1fr) auto;
        height: auto;
        min-height: 940px;
        overflow: auto;
    }

    .app-layout,
    .content-grid,
    .top-controls {
        grid-template-columns: 1fr;
    }

    .app-layout {
        min-height: auto;
    }

    .sidebar {
        position: sticky;
        top: 28px;
        z-index: 5;
        display: block;
        min-height: auto;
        padding: 8px;
        overflow: auto hidden;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .perf-card,
    .sub-nav,
    .sidebar-bottom {
        display: none;
    }

    .side-nav {
        display: flex;
        gap: 8px;
        overflow: auto hidden;
    }

    .nav-item {
        flex: 0 0 auto;
        width: auto;
        min-height: 42px;
        padding: 0 12px;
        font-size: 15px;
        gap: 6px;
    }

    .nav-item span {
        width: auto;
        font-size: 18px;
    }

    .workspace {
        gap: 12px;
        padding: 12px;
        overflow: visible;
    }

    .content-grid {
        min-height: auto;
    }

    .main-panel {
        min-height: 620px;
    }

    .friends-panel {
        min-height: 500px;
    }

    th,
    td {
        height: 54px;
        padding: 0 10px;
        font-size: 15px;
    }

    .panel-title,
    .pager {
        flex-wrap: wrap;
    }

    .statusbar {
        flex-wrap: wrap;
        gap: 0;
        padding: 4px 0;
    }
}

@media (max-width: 560px) {
    .landing-nav {
        grid-template-columns: 1fr auto;
        width: min(100% - 20px, 1220px);
        padding: 10px 0;
    }

    .landing-nav nav {
        display: none;
    }

    .landing-main {
        width: min(100% - 20px, 1220px);
    }

    .hero-section {
        gap: 22px;
        padding: 30px 0 42px;
    }

    .hero-copy h1 {
        font-size: 52px;
    }

    .hero-lede {
        font-size: 22px;
    }

    .hero-actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .feature-section,
    .workflow-section,
    .demo-section,
    .notice-section,
    .hero-card {
        padding: 22px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .desktop-shell {
        min-height: 860px;
    }

    .titlebar {
        padding-right: 6px;
    }

    .app-title span {
        max-width: 230px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .top-controls {
        gap: 8px;
    }

    .search-button,
    .select-control,
    .input-control {
        min-height: 48px;
    }

    .icon-actions {
        justify-content: space-around;
    }

    .panel-tabs {
        width: 100%;
        overflow: auto;
    }

    .table-wrap {
        overflow: auto;
    }

    table {
        min-width: 720px;
    }

    .pager {
        padding: 12px;
        gap: 8px;
    }

    .friend-tabs {
        padding-inline: 10px;
    }

    .friend-item {
        padding-inline: 10px;
    }
}

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