:root {
    --ink: #26343c;
    --ink-soft: #52626b;
    --nav: #33454f;
    --nav-dark: #263740;
    --green: #91b66f;
    --green-dark: #71964f;
    --green-pale: #e9f0e3;
    --line: #dce2e4;
    --paper: #ffffff;
    --canvas: #eef1f2;
    --danger: #b34c4c;
    --shadow: 0 18px 50px rgba(31, 48, 57, .12);
    --shell: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    margin: 0;
    background:
        radial-gradient(circle at 50% 0, rgba(255, 255, 255, .9), transparent 520px),
        var(--canvas);
    color: var(--ink);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

img {
    max-width: 100%;
}

.shell {
    width: min(var(--shell), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 100;
    padding: 9px 14px;
    transform: translateY(-150%);
    background: #fff;
    color: #111;
}

.skip-link:focus {
    transform: none;
}

.topbar {
    min-height: 36px;
    background: #202d34;
    color: #b9c5ca;
    font-size: 12px;
}

.topbar-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.server-state,
.topbar-links {
    display: flex;
    align-items: center;
    gap: 9px;
}

.topbar-links {
    gap: 20px;
}

.topbar-links a {
    text-decoration: none;
}

.topbar-links a:hover {
    color: #fff;
}

.state-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #d9a84d;
    box-shadow: 0 0 10px rgba(217, 168, 77, .8);
}

.state-dot.is-online {
    background: #83c65d;
    box-shadow: 0 0 10px rgba(131, 198, 93, .8);
}

.state-dot.is-offline {
    background: #d45a5a;
    box-shadow: 0 0 10px rgba(212, 90, 90, .75);
}

.site-header {
    position: relative;
    min-height: 235px;
    overflow: hidden;
    background-color: #6e777d;
    background-image: url('../img/hero.jpg');
    background-repeat: no-repeat;
    background-position: center 42%;
    background-size: cover;
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42px;
    background: linear-gradient(transparent, rgba(22, 34, 40, .45));
}

.header-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(23, 34, 40, .88) 0, rgba(23, 34, 40, .38) 42%, rgba(23, 34, 40, .18) 70%, rgba(23, 34, 40, .72) 100%),
        linear-gradient(0deg, rgba(18, 28, 33, .35), transparent 70%);
}

.header-content {
    position: relative;
    z-index: 1;
    min-height: 235px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    position: relative;
    width: 370px;
    min-height: 112px;
    display: grid;
    grid-template-columns: 105px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 4px 18px #000;
}

.brand-mark {
    grid-row: 1 / 3;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .66);
    transform: rotate(-4deg);
    background: rgba(29, 43, 50, .75);
    color: #fff;
    font-family: Georgia, serif;
    font-size: 31px;
    font-weight: 800;
    letter-spacing: -4px;
    box-shadow: inset 0 0 0 7px rgba(255, 255, 255, .08), 0 12px 26px rgba(0, 0, 0, .32);
}

.brand-name {
    align-self: end;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 57px);
    font-weight: 700;
    line-height: .95;
    letter-spacing: -2px;
}

.brand-name span {
    color: #b7d498;
}

.brand-subtitle {
    align-self: start;
    margin-top: 9px;
    color: #d7dfe2;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-callout {
    max-width: 330px;
    padding: 18px 23px;
    border-left: 3px solid var(--green);
    background: rgba(24, 36, 42, .64);
    color: #d4dcdf;
    text-align: right;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.header-callout span,
.header-callout strong {
    display: block;
}

.header-callout span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-callout strong {
    color: #fff;
    font-family: Georgia, serif;
    font-size: 21px;
}

.main-nav {
    position: relative;
    z-index: 4;
    border-bottom: 4px solid var(--green);
    background: var(--paper);
    box-shadow: 0 7px 22px rgba(38, 52, 60, .14);
}

.nav-inner {
    min-height: 62px;
    display: flex;
    align-items: stretch;
    scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar {
    display: none;
}

.nav-link {
    min-width: 118px;
    display: grid;
    place-items: center;
    padding: 0 20px;
    border-right: 1px solid #e9edef;
    color: #45545c;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color .18s ease, background .18s ease;
}

.nav-link:first-child {
    border-left: 1px solid #e9edef;
}

.nav-link:hover,
.nav-link.is-active {
    background: #f2f6ef;
    color: var(--green-dark);
}

.nav-link.is-active {
    box-shadow: inset 0 -4px 0 var(--green);
}

.nav-register {
    margin-left: auto;
    background: var(--green);
    color: #fff;
}

.nav-register:hover,
.nav-register.is-active {
    background: var(--green-dark);
    color: #fff;
}

.page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 295px;
    gap: 26px;
    padding-block: 34px 60px;
}

.content-column {
    min-width: 0;
}

.hero-slider {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    background: #293840;
    box-shadow: var(--shadow);
}

.hero-slider::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(25, 39, 45, .92), rgba(25, 39, 45, .58) 54%, rgba(25, 39, 45, .12)),
        url('../img/hero.jpg') center 54% / cover no-repeat;
    transform: scale(1.015);
}

.slide {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 58px 56px 74px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity .45s ease, transform .45s ease;
}

.slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.slide-copy {
    max-width: 570px;
    color: #e9eef0;
}

.eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.slide h1,
.slide h2 {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 59px);
    line-height: 1.05;
    text-shadow: 0 4px 18px rgba(0, 0, 0, .56);
}

.slide p {
    max-width: 530px;
    margin: 19px 0 0;
    color: #d1dadd;
    font-size: 16px;
}

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

.button {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .6px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .18s ease, transform .18s ease, color .18s ease;
}

.button:hover:not(:disabled) {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 8px 20px rgba(113, 150, 79, .24);
}

.button-primary:hover:not(:disabled) {
    background: var(--green-dark);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, .54);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.button:disabled {
    cursor: not-allowed;
    opacity: .56;
}

.button-full {
    width: 100%;
}

.button-small {
    min-height: 35px;
    padding-inline: 13px;
    background: #e7ecee;
    color: #3b4a52;
}

.slider-dots {
    position: absolute;
    z-index: 2;
    bottom: 25px;
    left: 56px;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 32px;
    height: 4px;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, .36);
}

.slider-dot.is-active {
    background: var(--green);
}

.section-block,
.page-panel {
    margin-top: 26px;
    padding: 30px;
    background: var(--paper);
    box-shadow: var(--shadow);
}

.page-panel {
    margin-top: 0;
    min-height: 520px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 21px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.section-heading h2,
.page-title h1 {
    margin: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.15;
}

.text-link,
.news-card a,
.side-secondary {
    color: var(--green-dark);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.news-card {
    min-height: 225px;
    display: flex;
    flex-direction: column;
    padding: 22px;
    border: 1px solid var(--line);
    border-top: 3px solid #9fabb0;
    background: #fbfcfc;
}

.news-card-featured {
    border-top-color: var(--green);
    background: linear-gradient(145deg, #f5f8f3, #fff);
}

.news-date {
    color: #859198;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.news-card h3 {
    margin: 10px 0 7px;
    font-family: Georgia, serif;
    font-size: 19px;
    line-height: 1.25;
}

.news-card p {
    margin: 0 0 18px;
    color: var(--ink-soft);
    font-size: 13px;
}

.news-card a {
    margin-top: auto;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 26px;
    background: var(--nav);
    color: #fff;
    box-shadow: var(--shadow);
}

.stat-strip div {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.stat-strip div:last-child {
    border: 0;
}

.stat-strip strong {
    font-family: Georgia, serif;
    font-size: 29px;
    line-height: 1;
}

.stat-strip span {
    margin-top: 8px;
    color: #c8d0d4;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.side-panel {
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 30px rgba(31, 48, 57, .1);
}

.side-title {
    padding: 13px 18px;
    border-left: 4px solid var(--green);
    background: var(--nav);
    color: #fff;
    font-family: Georgia, serif;
    font-size: 17px;
}

.side-panel form,
.server-panel,
.top-players,
.account-mini {
    padding-bottom: 17px;
}

.side-panel label {
    display: block;
    margin: 15px 17px 0;
}

.side-panel label span,
.auth-form label > span {
    display: block;
    margin-bottom: 5px;
    color: #66747b;
    font-size: 11px;
    font-weight: 700;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    min-height: 41px;
    padding: 8px 11px;
    border: 1px solid #ced6d9;
    border-radius: 2px;
    outline: none;
    background: #fbfcfc;
    color: var(--ink);
    transition: border-color .18s ease, box-shadow .18s ease;
}

input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(145, 182, 111, .16);
}

.side-panel .button {
    width: calc(100% - 34px);
    margin: 15px 17px 0;
}

.side-secondary {
    display: block;
    margin: 12px 17px 0;
    text-align: center;
}

.as-button {
    width: calc(100% - 34px);
    padding: 0;
    border: 0;
    cursor: pointer;
    background: transparent;
}

.form-message {
    display: none;
    margin-top: 12px;
    padding: 9px 11px;
    border: 1px solid transparent;
    font-size: 12px;
    line-height: 1.45;
}

.side-panel .form-message {
    margin-inline: 17px;
}

.form-message.is-visible {
    display: block;
}

.form-message.is-error {
    border-color: #efc4c4;
    background: #fff1f1;
    color: #943a3a;
}

.form-message.is-success {
    border-color: #cce1bd;
    background: #f0f7eb;
    color: #537c35;
}

.server-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-inline: 17px;
    padding: 11px 0;
    border-bottom: 1px solid #edf0f1;
    font-size: 12px;
}

.server-line strong {
    color: var(--green-dark);
}

.server-line strong.is-offline {
    color: var(--danger);
}

.top-players ol {
    margin: 0;
    padding: 0 17px;
    list-style: none;
    counter-reset: rank;
}

.top-players li {
    min-height: 48px;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #edf0f1;
    counter-increment: rank;
    font-size: 12px;
}

.top-players li::before {
    content: counter(rank);
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 800;
}

.top-players li strong {
    color: var(--green-dark);
    font-size: 11px;
}

.discord-card {
    min-height: 115px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    border-left: 4px solid #7785e9;
    background: linear-gradient(135deg, #495267, #30394e);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(31, 48, 57, .13);
}

.discord-card span {
    color: #cbd0e4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.discord-card strong {
    margin-top: 4px;
    font-family: Georgia, serif;
    font-size: 19px;
}

.page-title {
    margin-bottom: 27px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.page-title span {
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.article-list {
    display: grid;
    gap: 2px;
}

.article-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 22px;
    padding: 23px 0;
    border-bottom: 1px solid var(--line);
}

.article-date {
    width: 62px;
    height: 67px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--nav);
    color: #fff;
}

.article-date strong {
    font-family: Georgia, serif;
    font-size: 27px;
    line-height: 1;
}

.article-date span {
    margin-top: 3px;
    color: var(--green);
    font-size: 9px;
    font-weight: 800;
}

.article-item h2 {
    margin: 0 0 6px;
    font-family: Georgia, serif;
    font-size: 20px;
}

.article-item p {
    margin: 0;
    color: var(--ink-soft);
}

.ranking-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 15px;
}

.ranking-tab {
    min-width: 112px;
    padding: 10px 16px;
    border: 0;
    cursor: pointer;
    background: #e9edef;
    color: #5c6a71;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.ranking-tab.is-active {
    background: var(--green);
    color: #fff;
}

.table-wrap {
    overflow-x: auto;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.ranking-table th {
    padding: 11px 12px;
    background: var(--nav);
    color: #fff;
    font-size: 10px;
    letter-spacing: .5px;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.ranking-table td {
    padding: 12px;
    border-bottom: 1px solid #e6eaec;
    color: #56656c;
}

.ranking-table tbody tr:nth-child(even) {
    background: #f8fafa;
}

.ranking-table tbody tr:hover {
    background: #f1f6ed;
}

.ranking-table td:first-child {
    color: var(--green-dark);
    font-weight: 800;
}

.player-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    font-weight: 700;
}

.job-icon {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.job-fallback {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 900;
}

.loading-row {
    padding: 30px !important;
    text-align: center;
}

.rule-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: rules;
}

.rule-list li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    counter-increment: rules;
}

.rule-list li::before {
    content: counter(rules);
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid #d6e2ce;
    border-radius: 50%;
    background: var(--green-pale);
    color: var(--green-dark);
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 800;
}

.rule-list strong {
    font-family: Georgia, serif;
    font-size: 17px;
}

.rule-list p,
.rules-note {
    margin: 4px 0 0;
    color: var(--ink-soft);
}

.rules-note {
    margin-top: 24px;
    padding: 16px;
    border-left: 3px solid var(--green);
    background: #f4f7f2;
}

.download-hero {
    display: grid;
    grid-template-columns: 210px 1fr;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: #f5f7f7;
}

.download-hero img {
    width: 190px;
}

.download-hero h2,
.requirements h3,
.account-page h2 {
    margin: 0 0 8px;
    font-family: Georgia, serif;
}

.download-hero p {
    color: var(--ink-soft);
}

.requirements {
    margin-top: 25px;
}

.requirements dl,
.account-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.requirements dl div,
.account-details div {
    padding: 13px 15px;
    background: #f6f8f8;
}

.requirements dt,
.account-details dt {
    color: #849097;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.requirements dd,
.account-details dd {
    margin: 2px 0 0;
    color: var(--ink);
    font-weight: 700;
}

.auth-form {
    max-width: 680px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.auth-form label small {
    display: block;
    margin-top: 5px;
    color: #8b979c;
    font-size: 10px;
}

.auth-form label em {
    color: #98a3a8;
    font-style: normal;
    font-weight: 400;
}

.check-row {
    display: flex;
    align-items: start;
    gap: 9px;
    margin-top: 22px;
}

.check-row input {
    margin-top: 5px;
}

.check-row span {
    margin: 0 !important;
}

.auth-form > .button {
    margin-top: 20px;
}

.profile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
    padding: 18px;
    background: var(--nav);
    color: #fff;
}

.profile-head span,
.profile-head strong {
    display: block;
}

.profile-head span {
    color: #b7c2c7;
    font-size: 10px;
    text-transform: uppercase;
}

.profile-head strong {
    font-family: Georgia, serif;
    font-size: 23px;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.character-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--line);
    background: #fbfcfc;
}

.character-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.character-card .job-fallback {
    width: 48px;
    height: 48px;
    font-size: 16px;
}

.character-card strong,
.character-card span {
    display: block;
}

.character-card span {
    color: #7c898f;
    font-size: 11px;
}

.account-mini p {
    margin: 17px 17px 0;
}

.site-footer {
    background: #2d3e47;
    color: #b6c1c6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: 45px;
    padding-block: 45px;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-grid strong {
    margin-bottom: 5px;
    color: #fff;
    font-family: Georgia, serif;
    font-size: 16px;
}

.footer-grid .footer-brand {
    color: var(--green);
    font-size: 27px;
}

.footer-grid a,
.footer-grid p {
    margin: 0;
    color: #aab6bb;
    font-size: 12px;
    text-decoration: none;
}

.footer-grid a:hover {
    color: #fff;
}

.footer-bottom {
    padding-block: 16px;
    background: #23323a;
    color: #7f8e95;
    font-size: 11px;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 1000px) {
    .page-layout {
        grid-template-columns: minmax(0, 1fr) 260px;
    }

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

    .news-card {
        min-height: 0;
    }

    .nav-link {
        min-width: 0;
        padding-inline: 14px;
    }
}

@media (max-width: 820px) {
    .header-callout {
        display: none;
    }

    .nav-inner {
        width: 100%;
        overflow-x: auto;
    }

    .nav-link {
        min-width: 118px;
    }

    .nav-register {
        margin-left: 0;
    }

    .page-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: start;
    }

    .discord-card {
        min-height: 100%;
    }

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

@media (max-width: 600px) {
    .shell {
        width: min(100% - 24px, var(--shell));
    }

    .topbar-links a:first-child,
    .header-callout {
        display: none;
    }

    .site-header,
    .header-content {
        min-height: 190px;
    }

    .brand {
        width: 100%;
        grid-template-columns: 78px 1fr;
    }

    .brand-mark {
        width: 66px;
        height: 66px;
        font-size: 24px;
    }

    .brand-name {
        font-size: 39px;
    }

    .brand-subtitle {
        letter-spacing: 2px;
    }

    .page-layout {
        padding-top: 20px;
    }

    .hero-slider {
        min-height: 440px;
    }

    .slide {
        padding: 40px 24px 72px;
    }

    .slider-dots {
        left: 24px;
    }

    .section-block,
    .page-panel {
        padding: 21px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .stat-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-strip div:nth-child(2) {
        border-right: 0;
    }

    .stat-strip div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .sidebar,
    .form-grid,
    .requirements dl,
    .account-details,
    .character-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .article-item {
        grid-template-columns: 1fr;
    }

    .download-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .download-hero img {
        margin-inline: auto;
    }
}

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