/* DARDANIA — flat, editorial, flag-derived palette. No gradients, no glows. */
:root {
  --ink: #0d0d0c;
  --ink-2: #141412;
  --ink-3: #1c1c19;
  --line: #2b2a26;
  --paper: #ece9e1;
  --dim: #8f8b82;
  --faint: #5c5a54;
  --red: #e3241b;     /* Albanian flag red */
  --blue: #244aa5;    /* Kosovo flag blue */
  --gold: #d0a336;    /* Kosovo flag gold */
  --display: 'Archivo', 'Arial Narrow', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Consolas, monospace;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--ink); color: var(--paper);
  font-family: var(--display); font-size: 16px; line-height: 1.5;
  font-variation-settings: 'wdth' 100;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--red); color: var(--paper); }

.wrap { width: min(1320px, 100% - 32px); margin-inline: auto; }
.red { color: var(--red); }
.tag {
  margin: 0 0 20px; font-family: var(--mono); font-size: 12px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--dim);
}

/* ---------- Ticker ---------- */
.ticker { background: var(--red); color: var(--ink); overflow: hidden; white-space: nowrap; font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: .06em; }
.ticker-track { display: inline-flex; padding: 7px 0; animation: tick 40s linear infinite; }
.ticker-track span { padding-right: 48px; }
.ticker-track b { font-weight: 700; background: var(--ink); color: var(--paper); padding: 1px 6px; margin: 0 6px; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.top { position: sticky; top: 0; z-index: 30; background: var(--ink); border-bottom: 1px solid var(--line); }
.top-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 30px; height: 30px; color: var(--red); }
.logo-word { font-weight: 900; font-size: 20px; letter-spacing: .02em; font-variation-settings: 'wdth' 125; }
.nav { display: flex; height: 100%; }
.nav a {
  display: flex; align-items: center; gap: 8px; padding: 0 22px; height: 100%;
  font-weight: 600; font-size: 15px; border-left: 1px solid var(--line); color: var(--dim);
  transition: color .15s, background .15s;
}
.nav a:last-child { border-right: 1px solid var(--line); }
.nav a i { font-style: normal; font-family: var(--mono); font-size: 11px; color: var(--faint); }
.nav a:hover { color: var(--paper); }
.nav a.on { color: var(--paper); background: var(--ink-2); box-shadow: inset 0 -2px 0 var(--red); }
.nav a.on i { color: var(--red); }
.menu { display: none; width: 44px; height: 44px; background: none; border: 1px solid var(--line); cursor: pointer; padding: 0; position: relative; }
.menu span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--paper); transition: transform .2s; }
.menu span:first-child { top: 17px; }
.menu span:last-child { top: 25px; }
.menu[aria-expanded='true'] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu[aria-expanded='true'] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Type ---------- */
.mega {
  margin: 0 0 28px; font-weight: 900; line-height: .9; letter-spacing: -.02em; white-space: pre-line;
  font-size: clamp(52px, 9vw, 148px); font-variation-settings: 'wdth' 62; text-transform: uppercase;
}
.mega.sm { font-size: clamp(56px, 10vw, 160px); }
h2 { margin: 0; font-weight: 800; font-size: clamp(26px, 3vw, 36px); letter-spacing: -.01em; font-variation-settings: 'wdth' 75; text-transform: uppercase; }
h3 { margin: 0; font-weight: 700; }
.intro { max-width: 540px; color: var(--dim); font-size: 18px; line-height: 1.6; margin: 0 0 32px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 15px 22px; border: 1px solid transparent;
  font-weight: 700; font-size: 15px; cursor: pointer; white-space: nowrap; border-radius: 0;
  transition: background .15s, color .15s, border-color .15s;
}
.btn span { transition: transform .15s; }
.btn:hover span { transform: translateX(4px); }
.btn:disabled { opacity: .5; cursor: wait; }
.btn-red { background: var(--red); color: var(--paper); }
.btn-red:hover { background: var(--paper); color: var(--ink); }
.btn-line { border-color: var(--line); background: transparent; color: var(--paper); }
.btn-line:hover { border-color: var(--paper); }
.btn-sm { padding: 10px 14px; font-size: 14px; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Views ---------- */
[hidden] { display: none !important; }
.view { display: none; }
.view.on { display: block; animation: in .35s ease-out; }
@keyframes in { from { opacity: 0; } }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: end; padding: 72px 0 64px; border-bottom: 1px solid var(--line); }
.hero-stat { display: block; border: 1px solid var(--line); background: var(--ink-2); transition: border-color .15s; }
.hero-stat:hover { border-color: var(--red); }
.hs-head { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 12px; text-transform: uppercase; color: var(--dim); }
.hs-num { padding: 22px 18px 0; font-family: var(--mono); font-weight: 700; font-size: clamp(40px, 5vw, 60px); letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums; }
.hs-note { padding: 8px 18px 22px; color: var(--dim); font-size: 14px; }
.hs-grid { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-top: 1px solid var(--line); }
.hs-grid div:first-child { grid-column: 1 / -1; border-right: 0; border-bottom: 1px solid var(--line); }
.hs-grid div { padding: 14px 18px; border-right: 1px solid var(--line); }
.hs-grid div:last-child { border-right: 0; }
dt { font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--faint); }
dd { margin: 4px 0 0; font-family: var(--mono); font-weight: 700; font-size: 17px; font-variant-numeric: tabular-nums; }

.rec { width: 8px; height: 8px; background: var(--red); border-radius: 50%; display: inline-block; animation: blink 1.4s steps(2, jump-none) infinite; }
@keyframes blink { 50% { opacity: .2; } }

/* ---------- Blocks ---------- */
.block { padding: 56px 0 0; }
.block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.block-head p { margin: 6px 0 0; color: var(--dim); }
.more { font-family: var(--mono); font-size: 13px; color: var(--dim); }
.more:hover { color: var(--red); }
.count { font-family: var(--mono); font-size: 13px; color: var(--faint); }
.page-top { padding: 64px 0 20px; }

/* hairline grid: cells share borders */
.cells { display: grid; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.cells > * { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.games { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.products { grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); }
.videos { grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); }

/* ---------- Game cell ---------- */
.game { display: block; padding: 14px; transition: background .15s; position: relative; }
.game:hover { background: var(--ink-2); }
.g-img { aspect-ratio: 1; background: var(--ink-3); overflow: hidden; position: relative; }
.g-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.85) contrast(1.05); transition: filter .3s, transform .5s; }
.game:hover .g-img img { filter: none; transform: scale(1.03); }
.g-rank { position: absolute; top: 0; left: 0; background: var(--ink); font-family: var(--mono); font-size: 12px; padding: 5px 9px; }
.g-live { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: center; gap: 8px; background: var(--red); color: var(--paper); font-family: var(--mono); font-size: 12px; font-weight: 700; padding: 6px 10px; transform: translateY(100%); transition: transform .2s; }
.game:hover .g-live { transform: none; }
.g-live .rec { background: var(--paper); }
.g-name { display: flex; justify-content: space-between; gap: 10px; margin: 14px 0 2px; font-weight: 700; font-size: 18px; line-height: 1.2; }
.g-name span:first-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.g-name .arrow { color: var(--faint); transition: color .15s, transform .15s; }
.game:hover .g-name .arrow { color: var(--red); transform: translate(2px, -2px); }
.g-role { margin: 0 0 14px; color: var(--faint); font-size: 13px; }
.g-stats { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.g-stats div { padding-top: 10px; }
.g-stats div + div { padding-left: 12px; border-left: 1px solid var(--line); }
.g-stats dd { font-size: 16px; }
.g-stats .ccu { color: var(--paper); }
.g-stats .vis { color: var(--gold); }

/* ---------- Totals ---------- */
.totals { display: grid; grid-template-columns: repeat(4, 1fr); margin: 20px 0 0; border: 1px solid var(--line); }
.totals div { padding: 20px 22px; border-right: 1px solid var(--line); }
.totals div:last-child { border-right: 0; }
.totals dt { display: flex; align-items: center; gap: 8px; }
.totals dd { font-size: clamp(26px, 3.2vw, 44px); letter-spacing: -.04em; margin-top: 8px; }
.t-live { background: var(--ink-2); box-shadow: inset 3px 0 0 var(--red); }
.stamp { font-family: var(--mono); font-size: 11px; color: var(--faint); margin: 10px 0 0; }

/* ---------- Videos ---------- */
.video { padding: 14px; }
.v-frame { position: relative; aspect-ratio: 16 / 9; background: #000; cursor: pointer; overflow: hidden; }
.v-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.6); transition: filter .3s; }
.v-frame:hover img { filter: none; }
.v-frame iframe, .v-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.v-play { position: absolute; left: 0; bottom: 0; background: var(--red); color: var(--paper); font-family: var(--mono); font-weight: 700; font-size: 13px; padding: 10px 16px; }
.video p { margin: 12px 0 0; font-weight: 700; }

/* ---------- Store ---------- */
.filters { display: flex; flex-wrap: wrap; border: 1px solid var(--line); width: fit-content; max-width: 100%; }
.filters a { padding: 11px 18px; font-weight: 600; font-size: 14px; color: var(--dim); border-right: 1px solid var(--line); }
.filters a:last-child { border-right: 0; }
.filters a:hover { color: var(--paper); }
.filters a.on { background: var(--paper); color: var(--ink); }
.filters a i { font-style: normal; font-family: var(--mono); font-size: 11px; margin-left: 6px; opacity: .6; }

.product { display: flex; flex-direction: column; transition: background .15s; }
.product:hover { background: var(--ink-2); }
.p-cover { position: relative; aspect-ratio: 16 / 11; overflow: hidden; cursor: pointer; margin: 14px 14px 0; background: var(--ink-3); }
.p-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product:hover .p-cover img { transform: scale(1.03); }
.p-chip { position: absolute; top: 0; left: 0; z-index: 1; background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: 11px; font-weight: 700; padding: 6px 10px; text-transform: uppercase; }
.p-body { padding: 16px 14px 14px; display: flex; flex-direction: column; flex: 1; }
.p-meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--faint); margin-bottom: 8px; }
.p-meta .c { color: var(--cat-text); }
.p-body h3 { font-size: 21px; line-height: 1.15; margin-bottom: 6px; }
.p-body .p-tag { color: var(--dim); font-size: 14px; margin: 0 0 16px; }
.p-foot { margin-top: auto; display: flex; align-items: stretch; border: 1px solid var(--line); }
.p-price { flex: 1; display: flex; align-items: center; padding: 0 14px; font-family: var(--mono); font-weight: 700; font-size: 17px; }
.p-foot button { border: 0; border-left: 1px solid var(--line); background: none; cursor: pointer; font-weight: 700; font-size: 14px; padding: 12px 16px; transition: background .15s, color .15s; }
.p-foot .b-view:hover { background: var(--ink-3); }
.p-foot .b-buy { background: var(--red); color: var(--paper); border-left-color: var(--red); }
.p-foot .b-buy:hover { background: var(--paper); color: var(--ink); }

/* generated cover when no image is set: flat flag color + eagle */
.gen { position: absolute; inset: 0; background: var(--cat); color: var(--cat-ink); padding: 16px; display: flex; flex-direction: column; justify-content: flex-end; }
.gen svg { position: absolute; right: -8%; top: -10%; width: 70%; height: 120%; opacity: .16; }
.gen small { font-family: var(--mono); font-size: 11px; font-weight: 700; text-transform: uppercase; opacity: .7; position: relative; }
.gen b { position: relative; font-weight: 900; font-size: clamp(26px, 2.6vw, 34px); line-height: .92; text-transform: uppercase; font-variation-settings: 'wdth' 62; }

/* category colors (flat, from the flags); --cat-text is a readable version for text on black */
.c-template { --cat: var(--red); --cat-ink: var(--paper); --cat-text: #ff5a4f; }
.c-game { --cat: var(--blue); --cat-ink: var(--paper); --cat-text: #7d9cf0; }
.c-bundle { --cat: var(--gold); --cat-ink: var(--ink); --cat-text: var(--gold); }

.s-section { padding-top: 48px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(var(--steps, 3), 1fr); border: 1px solid var(--line); margin-bottom: 8px; }
.steps > div { padding: 26px 24px 30px; border-right: 1px solid var(--line); }
.steps > div:last-child { border-right: 0; }
.steps i { font-style: normal; font-family: var(--mono); font-size: 12px; color: var(--red); }
.steps h3 { font-size: 22px; margin: 26px 0 8px; }
.steps p { margin: 0; color: var(--dim); font-size: 15px; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.3fr; gap: 0; border: 1px solid var(--line); }
.reach { border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.r-discord { padding: 28px; border-bottom: 1px solid var(--line); background: var(--ink-2); }
.r-discord small, .r-item small { display: block; font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--faint); }
.r-discord b { display: block; font-weight: 900; font-size: clamp(44px, 6vw, 72px); line-height: 1; margin: 10px 0 18px; text-transform: uppercase; font-variation-settings: 'wdth' 62; }
.r-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 18px 28px; border-bottom: 1px solid var(--line); transition: background .15s; }
a.r-item:hover { background: var(--ink-2); }
.r-item b { font-weight: 600; word-break: break-all; }
.r-item .arrow { color: var(--faint); }
a.r-item:hover .arrow { color: var(--red); }
.r-note { padding: 18px 28px; margin-top: auto; color: var(--dim); font-size: 14px; }

.form { padding: 28px; display: grid; gap: 22px; align-content: start; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form label { display: grid; gap: 6px; }
.form label > span, .topics legend { font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--faint); }
.form input:not([type=radio]), .form select, .form textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line); padding: 10px 0; font-size: 17px; outline: none; border-radius: 0; transition: border-color .15s;
}
.form select { appearance: none; cursor: pointer; background: linear-gradient(45deg, transparent 50%, var(--dim) 50%) right 6px center / 6px 6px no-repeat, linear-gradient(-45deg, transparent 50%, var(--dim) 50%) right 0 center / 6px 6px no-repeat; }
.form select option { background: var(--ink-2); }
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { border-bottom-color: var(--red); }
.form ::placeholder { color: var(--faint); }
.topics { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.topics legend { margin-bottom: 10px; padding: 0; }
.topics label { display: block; cursor: pointer; }
.topics input { position: absolute; opacity: 0; pointer-events: none; }
.topics label span { display: block; padding: 9px 14px; border: 1px solid var(--line); font-size: 14px; font-weight: 600; color: var(--dim); transition: all .15s; }
.topics label:hover span { color: var(--paper); }
.topics input:checked + span { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.topics input:focus-visible + span { outline: 2px solid var(--red); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.f-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.f-msg { margin: 0; font-family: var(--mono); font-size: 13px; }
.f-msg.ok { color: var(--gold); }
.f-msg.err { color: var(--red); }

/* ---------- Footer ---------- */
.foot { margin-top: 96px; border-top: 1px solid var(--line); overflow: hidden; }
.foot-row { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 18px 0; font-family: var(--mono); font-size: 12px; color: var(--faint); }
.foot-word { display: flex; align-items: center; gap: 2vw; font-weight: 900; font-size: 15.5vw; line-height: .78; letter-spacing: -.02em; font-variation-settings: 'wdth' 62; color: var(--ink-3); user-select: none; padding-bottom: 8px; white-space: nowrap; }
.foot-word svg { width: .7em; height: .7em; color: var(--red); flex: none; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 16px; }
.modal[hidden] { display: none; }
.modal-bg { position: absolute; inset: 0; background: rgba(13, 13, 12, .88); }
.modal-box { position: relative; width: min(900px, 100%); max-height: calc(100vh - 32px); overflow: auto; background: var(--ink); border: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; animation: in .2s ease-out; }
.modal-cover { position: relative; min-height: 320px; background: var(--ink-3); }
.modal-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.modal-cover .gen b { font-size: clamp(34px, 4vw, 52px); }
.modal-info { padding: 28px; position: relative; }
.x { position: absolute; top: 0; right: 0; background: none; border: 0; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 10px 14px; cursor: pointer; font-family: var(--mono); font-size: 12px; color: var(--dim); }
.x:hover { color: var(--paper); background: var(--ink-2); }
.modal-info h3 { font-size: 34px; line-height: 1.05; margin-bottom: 12px; }
.m-desc { color: var(--dim); margin: 0 0 20px; }
.m-list { list-style: none; counter-reset: i; padding: 0; margin: 0 0 24px; border-top: 1px solid var(--line); }
.m-list li { counter-increment: i; display: flex; gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.m-list li::before { content: counter(i, decimal-leading-zero); font-family: var(--mono); font-size: 12px; color: var(--red); padding-top: 2px; }
.m-buy { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.m-buy small { display: block; font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--faint); }
.m-buy b { font-family: var(--mono); font-size: 30px; }
.m-fine { font-family: var(--mono); font-size: 11px; color: var(--faint); margin: 18px 0 0; }

/* "DM me on Discord" buy window */
.dm-box { position: relative; width: min(520px, 100%); max-height: calc(100vh - 32px); overflow: auto; background: var(--ink); border: 1px solid var(--line); padding: 28px; animation: in .2s ease-out; }
.dm-box h3 { font-size: 34px; line-height: 1; margin-bottom: 12px; text-transform: uppercase; font-weight: 900; font-variation-settings: 'wdth' 62; }
.dm-box .m-desc b { color: var(--paper); }
.dm-label { display: block; margin-top: 16px; font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--faint); }
.dm-box .key-row { margin-top: 6px; }
.dm-box .dm-msg { white-space: normal; font-weight: 500; font-size: 14px; line-height: 1.5; }
.dm-open { width: 100%; justify-content: space-between; margin-top: 22px; }
@media (max-width: 460px) { .dm-box { padding: 20px; } }

.toast { position: fixed; left: 16px; bottom: 16px; z-index: 200; background: var(--paper); color: var(--ink); padding: 12px 16px; font-weight: 600; font-size: 14px; max-width: calc(100% - 32px); border-left: 4px solid var(--red); }

.empty { padding: 36px; color: var(--dim); grid-column: 1 / -1; font-family: var(--mono); font-size: 13px; }
.ph { background: var(--ink-2); min-height: 320px; animation: ph 1.2s ease-in-out infinite alternate; }
@keyframes ph { to { background: var(--ink-3); } }

/* ---------- Success page ---------- */
.done { padding: 72px 0; }
.done-box { max-width: 640px; border: 1px solid var(--line); }
.done-box > * { padding-left: 28px; padding-right: 28px; }
.done-head { padding-top: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.done-head h1 { margin: 0; font-weight: 900; font-size: clamp(40px, 7vw, 64px); line-height: .95; text-transform: uppercase; font-variation-settings: 'wdth' 62; }
.done-key { padding-top: 22px; padding-bottom: 22px; border-bottom: 1px solid var(--line); background: var(--ink-2); }
.done-key small { font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--faint); }
.key-row { display: flex; gap: 0; margin-top: 10px; border: 1px solid var(--line); }
.key-row code { flex: 1; padding: 14px; font-family: var(--mono); font-weight: 700; font-size: clamp(13px, 3.4vw, 18px); overflow-x: auto; white-space: nowrap; }
.key-row button { border: 0; border-left: 1px solid var(--line); background: var(--ink); cursor: pointer; padding: 0 18px; font-weight: 700; }
.key-row button:hover { background: var(--paper); color: var(--ink); }
.done-dl { padding-top: 22px; padding-bottom: 26px; }
.done-dl .btn { width: 100%; justify-content: space-between; }
.done-dl p { font-family: var(--mono); font-size: 12px; color: var(--faint); margin: 14px 0 0; }
.loading-bar { height: 3px; background: var(--line); overflow: hidden; margin-top: 18px; }
.loading-bar::after { content: ''; display: block; width: 30%; height: 100%; background: var(--red); animation: load 1s ease-in-out infinite; }
@keyframes load { from { transform: translateX(-100%); } to { transform: translateX(340%); } }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 48px; }
  .totals { grid-template-columns: repeat(2, 1fr); }
  .totals div:nth-child(2) { border-right: 0; }
  .totals div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact { grid-template-columns: 1fr; }
  .reach { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 760px) {
  .menu { display: block; }
  .nav { display: none; position: absolute; top: 64px; left: 0; right: 0; height: auto; flex-direction: column; background: var(--ink); border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav a { border-left: 0; border-top: 1px solid var(--line); padding: 18px 16px; font-size: 18px; }
  .nav a:last-child { border-right: 0; }
  .steps { grid-template-columns: 1fr; }
  .steps > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .steps > div:last-child { border-bottom: 0; }
  .videos { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .modal-box { grid-template-columns: 1fr; }
  .modal-cover { min-height: 200px; }
  .block-head { flex-wrap: wrap; }
  .filters { width: 100%; }
  .filters a { flex: 1 1 auto; text-align: center; border-bottom: 1px solid var(--line); margin-bottom: -1px; }
}
@media (max-width: 460px) {
  .totals { grid-template-columns: 1fr; }
  .totals div { border-right: 0; border-bottom: 1px solid var(--line); }
  .totals div:last-child { border-bottom: 0; }
  .form, .r-discord, .modal-info { padding: 20px; }
  .r-item, .r-note { padding-left: 20px; padding-right: 20px; }
  .done-box > * { padding-left: 20px; padding-right: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
