:root {
  --t79-ink: #151515;
  --t79-paper: #f1e8d6;
  --t79-proof: #e85a47;
  --t79-register: #4267c8;
  --t79-nickel: #a7adb5;
  --t79-white: #fffdf8;
  --t79-muted: #67625a;
  --t79-line: #cfc3ae;
  --t79-soft-blue: #e7ebf8;
  --t79-soft-red: #f9ded7;
  --t79-shadow: 0 18px 50px rgba(21, 21, 21, .12);
  --t79-radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--t79-ink);
  background:
    linear-gradient(rgba(21, 21, 21, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, .028) 1px, transparent 1px),
    var(--t79-paper);
  background-size: 24px 24px;
  font-family: "IBM Plex Sans Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.64;
}

a { color: inherit; }
p { margin: 0 0 1em; }
h1, h2, h3 {
  margin-top: 0;
  color: var(--t79-ink);
  font-family: "Literata", Georgia, serif;
  line-height: 1.12;
}
h1 { max-width: 19ch; margin-bottom: 24px; font-size: clamp(2.6rem, 4.8vw, 4.8rem); letter-spacing: -.045em; }
h2 { max-width: 26ch; margin-bottom: 22px; font-size: clamp(2rem, 4.1vw, 4rem); letter-spacing: -.035em; }
h3 { margin-bottom: 10px; font-size: 1.18rem; }

.t79-wrap-c1e7a { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.t79-skip-a4f1d {
  position: fixed;
  left: 18px;
  top: -90px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--t79-white);
  background: var(--t79-register);
  text-decoration: none;
}
.t79-skip-a4f1d:focus { top: 18px; }

.t79-top-b8c2e {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 4px solid var(--t79-proof);
  color: var(--t79-paper);
  background: rgba(21, 21, 21, .97);
}
.t79-topin-e3b9f { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; min-height: 88px; }
.t79-brand-f5a2c { display: inline-flex; align-items: center; gap: 12px; color: var(--t79-paper); text-decoration: none; }
.t79-mark-d7f4b { width: 54px; height: 54px; }
.t79-svg-paper { fill: var(--t79-paper); stroke: var(--t79-nickel); stroke-width: 2; }
.t79-svg-register { fill: none; stroke: var(--t79-register); stroke-width: 2; }
.t79-svg-type { fill: none; stroke: var(--t79-ink); stroke-width: 3; stroke-linecap: square; stroke-linejoin: miter; }
.t79-svg-proof { fill: var(--t79-proof); }
.t79-brandtext-a8d5e { font-family: "Literata", serif; font-size: 1.6rem; font-weight: 750; line-height: 1; }
.t79-brandtext-a8d5e span { display: block; margin-top: 7px; color: var(--t79-nickel); font-family: "Courier Prime", monospace; font-size: .64rem; font-weight: 700; letter-spacing: .09em; }
.t79-nav-c6a1f { display: flex; justify-content: center; gap: 26px; }
.t79-nav-c6a1f a { color: #ded5c5; font-family: "Courier Prime", monospace; font-size: .76rem; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.t79-nav-c6a1f a:hover { color: var(--t79-proof); }

.t79-btn-f2d8c {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 2px solid var(--t79-ink);
  border-radius: 2px;
  font-family: "IBM Plex Sans Condensed", sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease;
}
.t79-btn-f2d8c:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--t79-ink); }
.t79-btn-small-b6e3a { min-height: 44px; padding: 10px 16px; border-color: var(--t79-paper); color: var(--t79-paper); }
.t79-btn-small-b6e3a:hover { box-shadow: 4px 4px 0 var(--t79-proof); }
.t79-btn-proof-f9a4d { color: var(--t79-white); background: var(--t79-proof); }
.t79-btn-line-c1f6b { color: var(--t79-ink); background: transparent; }
.t79-btn-paper-a3d7e { color: var(--t79-ink); background: var(--t79-paper); }

.t79-hero-d3c7b {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, .62fr);
  gap: 0;
  margin-top: 54px;
  border: 2px solid var(--t79-ink);
  background: var(--t79-white);
  box-shadow: 12px 12px 0 rgba(66, 103, 200, .24);
}
.t79-hero-d3c7b::before,
.t79-hero-d3c7b::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--t79-proof);
  border-radius: 50%;
}
.t79-hero-d3c7b::before { left: -11px; top: -11px; }
.t79-hero-d3c7b::after { right: -11px; bottom: -11px; }
.t79-herocopy-e8f2a { padding: clamp(36px, 6vw, 78px); }
.t79-over-a5d1c { margin-bottom: 19px; color: var(--t79-proof); font-family: "Courier Prime", monospace; font-size: .75rem; font-weight: 700; letter-spacing: .12em; }
.t79-lead-c4b9e { max-width: 68ch; color: #3e3a35; font-size: 1.08rem; }
.t79-actions-b7e2f { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.t79-note-d6a8e { max-width: 72ch; margin: 18px 0 0; color: var(--t79-muted); font-size: .82rem; }

.t79-proofcase-a2c9f { display: flex; flex-direction: column; min-width: 0; color: var(--t79-paper); background: var(--t79-ink); }
.t79-proofhead-e7d3b { display: flex; align-items: center; justify-content: space-between; padding: 28px; border-bottom: 1px solid #424242; }
.t79-proofhead-e7d3b span { font-family: "Courier Prime", monospace; font-size: .7rem; letter-spacing: .14em; }
.t79-proofhead-e7d3b i { color: var(--t79-proof); font-family: "Literata", serif; font-size: 3.4rem; font-style: normal; font-weight: 750; line-height: 1; }
.t79-proofrow-b4e8c { display: grid; gap: 3px; padding: 26px 28px; border-bottom: 1px solid #424242; text-decoration: none; }
.t79-proofrow-b4e8c span { color: var(--t79-nickel); font-family: "Courier Prime", monospace; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.t79-proofrow-b4e8c em { color: var(--t79-paper); font-family: "Literata", serif; font-size: 1.35rem; font-style: normal; font-weight: 600; }
.t79-proofrow-b4e8c small { color: #bdb7ab; font-size: .8rem; line-height: 1.4; }
.t79-proofrow-b4e8c:hover { background: #242424; }
.t79-proofstatus-c8a1d { margin-top: auto; padding: 24px 28px; color: #d8d1c6; font-size: .78rem; }
.t79-proofstatus-c8a1d span { display: inline-block; width: 9px; height: 9px; margin-right: 9px; border-radius: 50%; background: var(--t79-proof); box-shadow: 0 0 0 5px rgba(232, 90, 71, .16); }

.t79-strip-f4d2a {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 42px 0;
  border: 2px solid var(--t79-ink);
  background: var(--t79-register);
}
.t79-strip-f4d2a div { min-width: 0; padding: 25px 18px; border-right: 1px solid rgba(255, 255, 255, .34); }
.t79-strip-f4d2a div:last-child { border-right: 0; }
.t79-strip-f4d2a span { display: block; color: #fff; font-family: "Courier Prime", monospace; font-size: clamp(1.25rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -.04em; }
.t79-strip-f4d2a small { display: block; margin-top: 4px; color: #e7ebff; font-size: .73rem; line-height: 1.35; }

.t79-section-a1e5c,
.t79-final-f2c6d,
.t79-author-a6f1c {
  position: relative;
  margin: 34px 0;
  padding: clamp(34px, 5vw, 66px);
  border: 2px solid var(--t79-ink);
  background: var(--t79-white);
}
.t79-section-a1e5c::before,
.t79-author-a6f1c::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--t79-register);
  border-radius: 50%;
}
.t79-sectionhead-c7d4f { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 20px; margin-bottom: 12px; }
.t79-sectionhead-c7d4f > span { color: rgba(21, 21, 21, .18); font-family: "Courier Prime", monospace; font-size: clamp(3rem, 7vw, 6.8rem); font-weight: 700; line-height: .78; }
.t79-copy-f8b2d { max-width: 86ch; color: #3f3b35; }
.t79-section-paper-d5a8b { background: #e9dfcb; }
.t79-section-proof-f6b9c { background: var(--t79-soft-red); }
.t79-section-ink-c3e7a { color: var(--t79-paper); background: var(--t79-ink); }
.t79-section-ink-c3e7a h2,
.t79-section-ink-c3e7a h3 { color: var(--t79-paper); }
.t79-section-ink-c3e7a .t79-sectionhead-c7d4f > span { color: rgba(241, 232, 214, .16); }

.t79-flatgrid-e2c6a { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.t79-flat-b3f9e { padding: 26px; border: 1px solid var(--t79-line); border-top: 6px solid var(--t79-register); background: var(--t79-white); }
.t79-flat-b3f9e > span { display: inline-block; margin-bottom: 13px; color: var(--t79-proof); font-family: "Courier Prime", monospace; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.t79-flat-b3f9e p { margin-bottom: 0; color: var(--t79-muted); font-size: .91rem; }

.t79-checks-a6e3c { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 30px; }
.t79-checks-a6e3c article { padding: 24px; border: 1px solid #bbaa91; background: rgba(255, 253, 248, .72); }
.t79-checks-a6e3c article > span { color: var(--t79-register); font-family: "Courier Prime", monospace; font-size: 2.1rem; font-weight: 700; }
.t79-checks-a6e3c p { margin-bottom: 0; color: var(--t79-muted); font-size: .87rem; }
.t79-rule-c2f7e { display: grid; grid-template-columns: 210px 1fr; gap: 24px; margin-top: 24px; padding: 22px 0; border-block: 1px solid var(--t79-line); }
.t79-rule-c2f7e span { color: var(--t79-proof); font-family: "Courier Prime", monospace; font-size: .73rem; font-weight: 700; letter-spacing: .1em; }
.t79-rule-c2f7e p { margin: 0; }

.t79-games-d9a5c { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.t79-games-d9a5c article { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; min-width: 0; padding: 16px; border: 1px solid var(--t79-line); background: #f7f0e4; }
.t79-gamepic-e1b4f { display: grid; place-items: center; width: 54px; height: 54px; color: #fff; font-family: "Courier Prime", monospace; font-size: .76rem; font-weight: 700; }
.t79-games-d9a5c h3 { margin-bottom: 3px; font-family: "IBM Plex Sans Condensed", sans-serif; font-size: .97rem; }
.t79-games-d9a5c p { overflow: hidden; margin: 0; color: var(--t79-muted); font-size: .7rem; line-height: 1.35; text-overflow: ellipsis; }
.t79-games-d9a5c a { padding: 7px 8px; border: 1px solid var(--t79-register); color: var(--t79-register); font-size: .68rem; font-weight: 700; text-decoration: none; text-transform: uppercase; }
.t79-tone01-a2c5d, .t79-tone07-a8c1d { background: #5e4c88; }
.t79-tone02-b3d6e, .t79-tone08-b9d2e { background: #d4594f; }
.t79-tone03-c4e7f, .t79-tone09-c0e3f { background: #2f6c78; }
.t79-tone04-d5f8a, .t79-tone10-d1f4a { background: #7b5b35; }
.t79-tone05-e6a9b, .t79-tone11-e2a5b { background: #4267c8; }
.t79-tone06-f7b0c, .t79-tone12-f3b6c { background: #ad4771; }

.t79-deposits-b5e1d { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 30px; border: 2px solid var(--t79-ink); }
.t79-deposits-b5e1d article { padding: 27px 22px; border-right: 1px solid var(--t79-ink); background: rgba(255, 253, 248, .76); }
.t79-deposits-b5e1d article:last-child { border-right: 0; }
.t79-deposits-b5e1d span { color: var(--t79-proof); font-family: "Courier Prime", monospace; font-size: 2.4rem; font-weight: 700; }
.t79-deposits-b5e1d p { margin: 0; color: var(--t79-muted); font-size: .86rem; }

.t79-steps-e4f8b { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #3d3d3d; }
.t79-steps-e4f8b article { padding: 32px; background: var(--t79-ink); }
.t79-steps-e4f8b article > span { display: block; margin-bottom: 24px; color: var(--t79-proof); font-family: "Courier Prime", monospace; font-size: 1.25rem; font-weight: 700; }
.t79-steps-e4f8b p { margin-bottom: 0; color: #cac2b5; }

.t79-livegrid-a9c2e { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.t79-livegrid-a9c2e article { padding: 24px; border: 1px dashed var(--t79-register); background: #f7f0e4; }
.t79-livegrid-a9c2e article > span { color: var(--t79-register); font-family: "Courier Prime", monospace; font-size: .66rem; font-weight: 700; letter-spacing: .07em; }
.t79-livegrid-a9c2e p { margin-bottom: 0; color: var(--t79-muted); font-size: .88rem; }

.t79-tierline-f1d4a { display: grid; grid-template-columns: repeat(6, 1fr); margin: 30px 0; border: 2px solid var(--t79-ink); background: var(--t79-white); }
.t79-tierline-f1d4a div { padding: 25px 16px; border-right: 1px solid var(--t79-line); }
.t79-tierline-f1d4a div:last-child { border-right: 0; background: var(--t79-soft-blue); }
.t79-tierline-f1d4a span { display: block; color: var(--t79-muted); font-size: .72rem; }
.t79-tierline-f1d4a i { display: block; color: var(--t79-register); font-family: "Courier Prime", monospace; font-size: 1.65rem; font-style: normal; font-weight: 700; }
.t79-tierline-f1d4a small { font-size: .67rem; }

.t79-operator-d3a7f { display: grid; grid-template-columns: .72fr 1.28fr; gap: 0; margin: 28px 0; border: 2px solid var(--t79-ink); background: var(--t79-white); }
.t79-operatorlead-b8e2c { padding: 30px; color: var(--t79-paper); background: var(--t79-ink); }
.t79-operatorlead-b8e2c > span { display: block; margin-bottom: 18px; color: var(--t79-proof); font-family: "Courier Prime", monospace; font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.t79-operatorlead-b8e2c h3 { color: var(--t79-paper); font-size: clamp(1.5rem, 2.6vw, 2.2rem); overflow-wrap: anywhere; }
.t79-operatorlead-b8e2c p { margin: 0; color: #c9c1b5; font-size: .88rem; }
.t79-legalgrid-f4c9a { display: grid; grid-template-columns: repeat(2, 1fr); margin: 0; }
.t79-legalgrid-f4c9a div { padding: 22px; border-bottom: 1px solid var(--t79-line); border-left: 1px solid var(--t79-line); }
.t79-legalgrid-f4c9a div:nth-last-child(-n+2) { border-bottom: 0; }
.t79-legalgrid-f4c9a dt { color: var(--t79-proof); font-family: "Courier Prime", monospace; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.t79-legalgrid-f4c9a dd { margin: 6px 0 0; font-family: "IBM Plex Sans Condensed", sans-serif; font-size: .88rem; font-weight: 600; line-height: 1.35; }
.t79-trustgrid-c5e9b { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.t79-trustgrid-c5e9b article { padding: 27px; border-left: 6px solid var(--t79-proof); background: #f7f0e4; }
.t79-trustgrid-c5e9b p { margin: 0; color: var(--t79-muted); font-size: .9rem; }
.t79-payline-b7f2d { display: grid; grid-template-columns: repeat(6, 1fr); margin: 28px 0; border: 1px solid var(--t79-line); }
.t79-payline-b7f2d > span { padding: 19px 15px; border-right: 1px solid var(--t79-line); font-weight: 700; }
.t79-payline-b7f2d > span:last-child { border-right: 0; }
.t79-payline-b7f2d small { display: block; margin-top: 5px; color: var(--t79-muted); font-size: .65rem; font-weight: 400; line-height: 1.3; }

.t79-faq-e8b3c { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; }
.t79-faq-e8b3c details { padding: 0 22px; border: 1px solid var(--t79-line); background: #f7f0e4; }
.t79-faq-e8b3c summary { padding: 19px 0; cursor: pointer; font-family: "Literata", serif; font-size: 1rem; font-weight: 600; }
.t79-faq-e8b3c p { padding-bottom: 19px; margin: 0; color: var(--t79-muted); font-size: .88rem; }

.t79-final-f2c6d { overflow: hidden; color: var(--t79-paper); background: var(--t79-register); box-shadow: 12px 12px 0 rgba(21, 21, 21, .2); }
.t79-final-f2c6d::after { content: "79"; position: absolute; right: 24px; bottom: -50px; color: rgba(255, 255, 255, .1); font-family: "Courier Prime", monospace; font-size: 14rem; font-weight: 700; line-height: 1; }
.t79-final-f2c6d h2 { color: #fff; }
.t79-final-f2c6d p { position: relative; z-index: 1; max-width: 72ch; }
.t79-final-f2c6d .t79-btn-f2d8c { position: relative; z-index: 1; }
.t79-author-a6f1c { background: transparent; }
.t79-author-a6f1c p { max-width: 92ch; color: #454039; }

.t79-foot-b8e2a { margin-top: 56px; border-top: 6px solid var(--t79-proof); color: var(--t79-paper); background: var(--t79-ink); }
.t79-footgrid-d4f9b { display: grid; grid-template-columns: 1.15fr .85fr 1fr; gap: 40px; padding-block: 52px; }
.t79-footbrand-e7a3c span { color: #fff; font-family: "Literata", serif; font-size: 1.7rem; font-weight: 750; }
.t79-footbrand-e7a3c small { display: block; color: var(--t79-proof); font-family: "Courier Prime", monospace; font-size: .66rem; letter-spacing: .1em; }
.t79-footbrand-e7a3c p, .t79-legal-f5c1d p { margin-top: 13px; color: #bdb6aa; font-size: .8rem; }
.t79-footnav-c2b6e { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 22px; align-content: start; }
.t79-footnav-c2b6e a { color: #ddd6ca; font-size: .82rem; text-decoration-color: #555; text-underline-offset: 4px; }

@media (max-width: 1120px) {
  .t79-hero-d3c7b { grid-template-columns: 1fr; }
  .t79-proofcase-a2c9f { display: grid; grid-template-columns: repeat(3, 1fr); }
  .t79-proofhead-e7d3b, .t79-proofstatus-c8a1d { grid-column: 1 / -1; }
  .t79-proofrow-b4e8c { border-right: 1px solid #424242; }
  .t79-games-d9a5c { grid-template-columns: repeat(2, 1fr); }
  .t79-checks-a6e3c { grid-template-columns: repeat(2, 1fr); }
  .t79-payline-b7f2d { grid-template-columns: repeat(3, 1fr); }
  .t79-payline-b7f2d > span:nth-child(-n+3) { border-bottom: 1px solid var(--t79-line); }
  .t79-tierline-f1d4a { grid-template-columns: repeat(3, 1fr); }
  .t79-tierline-f1d4a div:nth-child(-n+3) { border-bottom: 1px solid var(--t79-line); }
}

@media (max-width: 820px) {
  body { font-size: 17px; }
  .t79-wrap-c1e7a { width: min(100% - 28px, 1240px); }
  .t79-topin-e3b9f { grid-template-columns: 1fr auto; }
  .t79-nav-c6a1f { display: none; }
  .t79-strip-f4d2a { grid-template-columns: repeat(2, 1fr); }
  .t79-strip-f4d2a div { border-bottom: 1px solid rgba(255, 255, 255, .34); }
  .t79-strip-f4d2a div:last-child { grid-column: 1 / -1; }
  .t79-flatgrid-e2c6a, .t79-steps-e4f8b, .t79-livegrid-a9c2e { grid-template-columns: 1fr; }
  .t79-deposits-b5e1d { grid-template-columns: repeat(2, 1fr); }
  .t79-deposits-b5e1d article { border-bottom: 1px solid var(--t79-ink); }
  .t79-deposits-b5e1d article:nth-child(2) { border-right: 0; }
  .t79-rule-c2f7e { grid-template-columns: 1fr; gap: 9px; }
  .t79-operator-d3a7f { grid-template-columns: 1fr; }
  .t79-footgrid-d4f9b { grid-template-columns: 1fr; }
}

@media (max-width: 590px) {
  .t79-topin-e3b9f { min-height: 74px; gap: 12px; }
  .t79-mark-d7f4b { width: 44px; height: 44px; }
  .t79-brandtext-a8d5e { font-size: 1.25rem; }
  .t79-brandtext-a8d5e span { display: none; }
  .t79-btn-small-b6e3a { padding-inline: 10px; font-size: .71rem; }
  .t79-hero-d3c7b { margin-top: 28px; box-shadow: 6px 6px 0 rgba(66, 103, 200, .24); }
  .t79-herocopy-e8f2a, .t79-section-a1e5c, .t79-final-f2c6d, .t79-author-a6f1c { padding: 29px 22px; }
  h1 { font-size: clamp(2.2rem, 10.5vw, 3rem); }
  h2 { font-size: clamp(1.8rem, 9vw, 2.7rem); }
  .t79-proofcase-a2c9f { display: block; }
  .t79-strip-f4d2a, .t79-games-d9a5c, .t79-checks-a6e3c, .t79-deposits-b5e1d, .t79-trustgrid-c5e9b, .t79-faq-e8b3c { grid-template-columns: 1fr; }
  .t79-legalgrid-f4c9a { grid-template-columns: 1fr; }
  .t79-legalgrid-f4c9a div, .t79-legalgrid-f4c9a div:nth-last-child(-n+2) { border-bottom: 1px solid var(--t79-line); }
  .t79-legalgrid-f4c9a div:last-child { border-bottom: 0; }
  .t79-strip-f4d2a div:last-child { grid-column: auto; }
  .t79-deposits-b5e1d article { border-right: 0; }
  .t79-games-d9a5c article { grid-template-columns: auto 1fr; }
  .t79-games-d9a5c a { grid-column: 2; justify-self: start; }
  .t79-games-d9a5c p { font-size: .82rem; }
  .t79-games-d9a5c a { font-size: .75rem; }
  .t79-tierline-f1d4a { grid-template-columns: repeat(2, 1fr); }
  .t79-payline-b7f2d { grid-template-columns: 1fr; }
  .t79-payline-b7f2d > span { border-right: 0; border-bottom: 1px solid var(--t79-line); }
  .t79-final-f2c6d::after { font-size: 9rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
