:root {
    --bg: #08111f;
    --bg-deep: #050b15;
    --panel: rgba(10, 18, 34, 0.84);
    --panel-soft: rgba(15, 27, 47, 0.82);
    --panel-line: rgba(255, 255, 255, 0.08);
    --text: #f5f7fb;
    --muted: #94a4bd;
    --accent: #abff4f;
    --accent-strong: #84e625;
    --accent-warm: #ffb24d;
    --accent-danger: #ff5f5f;
    --accent-blue: #67a8ff;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1280px;
    --transition: 220ms ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(171, 255, 79, 0.12), transparent 28%),
        radial-gradient(circle at 90% 8%, rgba(103, 168, 255, 0.12), transparent 24%),
        linear-gradient(160deg, #06101d 0%, #0b1628 44%, #040912 100%);
    font-family: "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.55;
}

body.nav-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

.page-grid,
.page-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
}

.page-grid {
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    -webkit-mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
    mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}

.page-glow-a {
    background: radial-gradient(circle at 10% 14%, rgba(171, 255, 79, 0.18), transparent 22%);
}

.page-glow-b {
    background: radial-gradient(circle at 85% 20%, rgba(255, 178, 77, 0.14), transparent 20%);
}

.site-shell {
    position: relative;
    width: min(calc(100% - 28px), var(--container));
    margin: 0 auto;
    padding-bottom: 108px;
}

.site-header,
.card-surface,
.promo-card,
.info-card,
.mobile-nav {
    border: 1px solid var(--panel-line);
    box-shadow: var(--shadow);
}

.site-header {
    position: sticky;
    top: 14px;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(7, 12, 22, 0.84);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(171, 255, 79, 0.24), rgba(103, 168, 255, 0.14));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-ball {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, #ffffff 0 26%, transparent 27%),
        linear-gradient(135deg, var(--accent), var(--accent-blue));
    box-shadow: 0 0 24px rgba(171, 255, 79, 0.36);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", sans-serif;
    font-size: 1.08rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-copy span,
.eyebrow,
.panel-kicker,
.match-card-top span:first-child,
.status,
.promo-tag,
.site-nav a,
.ticket-row span,
.stake-row span,
.feature-points li,
.mobile-nav a,
.league-chips span {
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-copy span {
    color: var(--muted);
    font-size: 0.7rem;
}

.site-nav,
.header-actions,
.hero-actions,
.hero-highlights,
.league-chips,
.market-tabs,
.download-actions {
    display: flex;
    align-items: center;
}

.site-nav {
    gap: 18px;
    color: var(--muted);
    font-size: 0.88rem;
}

.site-nav a {
    position: relative;
    transition: color var(--transition);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--accent), transparent);
    transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions,
.hero-actions,
.download-actions {
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 136px;
    padding: 13px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 700;
    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #061018;
    background: linear-gradient(135deg, var(--accent), #d7ff76);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
}

.button-ghost:hover,
.button-ghost:focus-visible {
    background: rgba(171, 255, 79, 0.08);
    border-color: rgba(171, 255, 79, 0.26);
}

.button-dark {
    color: var(--text);
    background: rgba(7, 12, 22, 0.86);
}

.menu-toggle {
    position: relative;
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) translateY(-6px);
}

.menu-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) translateY(6px);
}

body.nav-open .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hero {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 22px;
    align-items: start;
    min-height: calc(100vh - 132px);
    padding: 56px 0 24px;
}

.hero-copy,
.hero-board,
.app-card {
    position: relative;
}

.hero-copy {
    padding: 30px 8px 0 0;
}

.eyebrow,
.panel-kicker {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 0.76rem;
}

.hero h1,
.section-heading h2,
.table-head h3,
.side-card h3,
.promo-card h3,
.app-copy h2,
.info-card h3,
.betslip h2 {
    margin: 0;
    font-family: "Bahnschrift SemiCondensed", "Arial Narrow", "Segoe UI", sans-serif;
    font-weight: 700;
    line-height: 0.98;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3.1rem, 7vw, 6rem);
    max-width: 10ch;
}

.hero-text,
.section-heading p:last-child,
.promo-card p,
.app-copy p:last-of-type,
.info-card p,
.side-card p,
.ticket-notes,
.feature-points {
    color: var(--muted);
}

.hero-text {
    max-width: 58ch;
    margin: 20px 0 0;
    font-size: 1rem;
}

.hero-highlights {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.hero-highlights article {
    min-width: 138px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.hero-highlights span,
.league-chips span,
.match-league span:first-child,
.match-stats span,
.match-card-top span:first-child,
.table-meta span,
.betslip-badge,
.ticket-notes li,
.site-footer p {
    color: var(--muted);
    font-size: 0.8rem;
}

.hero-highlights strong {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
}

.league-chips {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.league-chips span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-board {
    display: grid;
    grid-template-columns: 1.16fr 0.84fr;
    gap: 18px;
}

.card-surface,
.promo-card,
.info-card {
    background:
        linear-gradient(180deg, rgba(171, 255, 79, 0.04), rgba(255, 255, 255, 0.02)),
        var(--panel);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.card-surface::before,
.promo-card::before,
.info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 36%);
}

.featured-match,
.betslip,
.match-card,
.market-table,
.side-card,
.promo-card,
.info-card,
.app-card {
    position: relative;
    padding: 22px;
}

.card-topline,
.match-card-top,
.match-line,
.table-head,
.table-row,
.ticket-row,
.stake-row,
.site-footer,
.app-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.live-pill,
.spark,
.status,
.betslip-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
}

.live-pill {
    color: #061018;
    background: linear-gradient(135deg, var(--accent), #dcff89);
}

.spark {
    color: #0d1730;
    background: rgba(255, 178, 77, 0.92);
}

.match-league {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.featured-score {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    margin-top: 28px;
}

.club {
    display: grid;
    justify-items: start;
    gap: 12px;
}

.club-away {
    justify-items: end;
}

.club-mark {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    font-family: "Bahnschrift SemiCondensed", "Arial Narrow", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.club-red {
    background: linear-gradient(145deg, rgba(255, 95, 95, 0.26), rgba(255, 178, 77, 0.18));
    color: #ffd8d8;
}

.club-blue {
    background: linear-gradient(145deg, rgba(103, 168, 255, 0.26), rgba(103, 255, 231, 0.14));
    color: #d8e7ff;
}

.club strong,
.score-core,
.match-line strong,
.table-meta strong,
.promo-card h3,
.info-card h3,
.side-card h3,
.table-head h3 {
    font-size: 1.2rem;
}

.score-core {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.score-core em {
    color: rgba(255, 255, 255, 0.34);
    font-style: normal;
}

.market-strip,
.odds-row,
.table-odds {
    display: grid;
    gap: 10px;
}

.market-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 26px;
}

.odd-button {
    padding: 14px 14px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    text-align: left;
    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
    cursor: pointer;
}

.odd-button:hover,
.odd-button:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(171, 255, 79, 0.34);
    background: rgba(171, 255, 79, 0.08);
}

.odd-button.is-active {
    color: #07111c;
    border-color: rgba(171, 255, 79, 0.6);
    background: linear-gradient(135deg, var(--accent), #d7ff72);
    box-shadow: 0 12px 30px rgba(171, 255, 79, 0.18);
}

.odd-button span,
.odd-button strong {
    display: block;
}

.odd-button span {
    margin-bottom: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.odd-button strong {
    font-family: "Bahnschrift", "Segoe UI", sans-serif;
    font-size: 1.15rem;
}

.odd-button.small {
    padding: 10px 10px 8px;
    border-radius: 14px;
}

.odd-button.small strong {
    font-size: 1rem;
}

.match-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.match-stats div,
.ticket-card,
.stake-box,
.promo-card,
.info-card,
.side-card {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
}

.match-stats div {
    padding: 14px;
}

.match-stats strong {
    display: block;
    margin-top: 8px;
}

.betslip-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.betslip h2 {
    font-size: 2rem;
    margin-top: 4px;
}

.betslip-badge {
    color: #08111f;
    background: rgba(255, 178, 77, 0.92);
}

.ticket-card,
.stake-box {
    margin-top: 18px;
    padding: 16px;
}

.ticket-row + .ticket-row,
.stake-row + .stake-row {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ticket-row strong,
.stake-row strong,
.total-row strong {
    font-family: "Bahnschrift SemiBold", "Segoe UI", sans-serif;
    font-size: 1rem;
}

.total-row strong {
    color: var(--accent);
    font-size: 1.5rem;
}

.ticket-action {
    width: 100%;
    margin-top: 18px;
}

.ticket-notes,
.feature-points {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.ticket-notes li,
.feature-points li {
    position: relative;
    padding-left: 18px;
}

.ticket-notes li + li,
.feature-points li + li {
    margin-top: 10px;
}

.ticket-notes li::before,
.feature-points li::before {
    content: "";
    position: absolute;
    top: 0.62em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.ticker-band {
    overflow: hidden;
    margin-top: 6px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    background: rgba(6, 11, 20, 0.66);
}

.ticker-track {
    min-height: 1.5em;
    color: #d7deea;
    font-size: 0.92rem;
}

.ticker-track.is-fading {
    opacity: 0.4;
    transform: translateY(3px);
}

.section {
    padding-top: 84px;
    scroll-margin-top: 110px;
}

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

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.section-heading p:last-child {
    margin-top: 16px;
}

.live-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.status-live {
    color: #07111c;
    background: rgba(171, 255, 79, 0.9);
}

.status-soon {
    color: #0d1730;
    background: rgba(103, 168, 255, 0.86);
}

.match-line {
    margin-top: 16px;
}

.match-line span {
    font-family: "Bahnschrift", "Segoe UI", sans-serif;
    font-size: 1.34rem;
}

.odds-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 20px;
}

.markets-layout,
.promo-grid,
.info-grid {
    display: grid;
    gap: 18px;
}

.markets-layout {
    grid-template-columns: 1.2fr 0.8fr;
}

.table-head {
    align-items: start;
}

.market-tabs {
    flex-wrap: wrap;
    gap: 8px;
}

.market-tab {
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.03);
}

.market-tab.is-current {
    color: #07111c;
    background: var(--accent);
}

.table-list {
    margin-top: 22px;
}

.table-row + .table-row {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.table-meta {
    min-width: 0;
}

.table-meta strong {
    display: block;
    margin-top: 8px;
}

.table-odds {
    grid-template-columns: repeat(3, minmax(0, 100px));
}

.market-side {
    display: grid;
    gap: 18px;
}

.side-card {
    position: relative;
}

.side-card-dark {
    background:
        radial-gradient(circle at top right, rgba(255, 178, 77, 0.14), transparent 28%),
        rgba(9, 16, 31, 0.96);
}

.text-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--accent);
    font-weight: 700;
}

.promo-grid {
    grid-template-columns: 1.12fr 0.94fr 0.94fr;
}

.promo-card {
    position: relative;
    padding: 22px;
}

.promo-card-primary {
    background:
        radial-gradient(circle at top right, rgba(171, 255, 79, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(171, 255, 79, 0.08), rgba(103, 168, 255, 0.06)),
        var(--panel);
}

.promo-tag {
    color: var(--accent);
    font-size: 0.76rem;
}

.promo-card h3 {
    margin-top: 18px;
}

.promo-card p {
    margin: 12px 0 0;
}

.promo-card .button {
    margin-top: 22px;
}

.app-section {
    padding-bottom: 8px;
}

.app-card {
    padding: 28px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: center;
}

.app-copy h2 {
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    max-width: 11ch;
}

.app-showcase {
    display: grid;
    place-items: center;
}

.phone-frame {
    width: min(100%, 320px);
    padding: 14px;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
}

.phone-screen {
    min-height: 540px;
    padding: 18px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(171, 255, 79, 0.12), transparent 24%),
        linear-gradient(180deg, #0a1325, #050c17);
}

.phone-topbar,
.phone-banner,
.phone-odds,
.phone-list {
    display: flex;
    gap: 12px;
}

.phone-topbar,
.phone-list {
    justify-content: space-between;
    color: var(--muted);
    font-size: 0.8rem;
}

.phone-banner {
    flex-direction: column;
    margin-top: 20px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
}

.phone-banner strong {
    font-family: "Bahnschrift SemiCondensed", "Arial Narrow", sans-serif;
    font-size: 1.6rem;
    text-transform: uppercase;
}

.phone-odds {
    margin-top: 16px;
}

.phone-odds div {
    flex: 1 1 0;
    padding: 14px 12px;
    border-radius: 18px;
    background: rgba(171, 255, 79, 0.1);
}

.phone-odds span,
.phone-odds strong {
    display: block;
}

.phone-odds span {
    color: var(--muted);
    font-size: 0.76rem;
}

.phone-odds strong {
    margin-top: 6px;
    font-size: 1.1rem;
}

.phone-list {
    flex-direction: column;
    margin-top: 22px;
}

.phone-list span {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

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

.site-footer {
    margin-top: 28px;
    padding: 18px 4px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer strong {
    display: block;
    margin-bottom: 6px;
}

.mobile-nav {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 30;
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 10px;
    border-radius: 24px;
    background: rgba(8, 13, 23, 0.92);
    backdrop-filter: blur(18px);
}

.mobile-nav a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 16px;
    color: #dce5f3;
    font-size: 0.74rem;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
    background: rgba(171, 255, 79, 0.08);
}

@media (max-width: 1180px) {
    .hero,
    .hero-board,
    .app-card,
    .markets-layout,
    .promo-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

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

@media (max-width: 980px) {
    .site-header {
        border-radius: 26px;
        padding: 14px;
    }

    .menu-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 24px;
        background: rgba(7, 12, 22, 0.98);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition:
            opacity var(--transition),
            transform var(--transition),
            visibility var(--transition);
    }

    body.nav-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 12px 10px;
        border-radius: 14px;
    }

    .site-nav a::after {
        display: none;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        background: rgba(255, 255, 255, 0.05);
    }

    .header-actions {
        display: none;
    }

    .table-row {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .site-shell {
        width: min(calc(100% - 20px), var(--container));
        padding-bottom: 120px;
    }

    .hero,
    .section {
        padding-top: 68px;
    }

    .hero h1 {
        max-width: none;
        font-size: clamp(2.6rem, 12vw, 4.1rem);
    }

    .featured-match,
    .betslip,
    .match-card,
    .market-table,
    .side-card,
    .promo-card,
    .info-card,
    .app-card {
        padding: 18px;
    }

    .featured-score,
    .market-strip,
    .match-stats,
    .live-grid,
    .odds-row,
    .table-odds,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .featured-score {
        justify-items: center;
    }

    .club,
    .club-away {
        justify-items: center;
    }

    .score-core {
        font-size: 2.9rem;
    }

    .match-stats div {
        min-height: 0;
    }

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

    .mobile-nav {
        display: grid;
    }
}

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

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }
}
