:root {
    --ink: #090a0d;
    --ink-soft: #0e1015;
    --panel: #12141a;
    --panel-2: #171920;
    --line: rgba(255, 255, 255, 0.09);
    --line-gold: rgba(217, 169, 78, 0.28);
    --text: #f4f0e8;
    --muted: #9b9ca3;
    --gold: #d9a94e;
    --gold-light: #f1d28a;
    --red: #9b2638;
    --red-hot: #d13f50;
    --green: #55d6a0;
    --violet: #7658d6;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    --glass: rgba(14, 17, 24, 0.48);
    --glass-soft: rgba(20, 23, 31, 0.34);
    --glass-strong: rgba(9, 11, 16, 0.68);
    --glass-line: rgba(255, 255, 255, 0.14);
    --glass-shine: rgba(255, 255, 255, 0.08);
    --glass-blur: 22px;
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --container: min(1180px, calc(100vw - 48px));
}

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

html {
    color-scheme: dark;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(rgba(7, 9, 13, 0.74), rgba(7, 9, 13, 0.9)),
        radial-gradient(circle at 24% 10%, rgba(118, 88, 214, 0.14), transparent 36rem),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center / cover fixed,
        var(--ink);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    pointer-events: none;
    mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 80%, transparent);
}

::selection {
    background: var(--gold);
    color: #07080a;
}

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

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: -0.025em;
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 0.95;
}

h1 em,
h2 em {
    color: var(--gold-light);
    font-weight: 400;
}

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 120px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--gold);
    color: var(--ink);
    font-weight: 800;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    background: rgba(7, 8, 11, 0.88);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    min-height: 82px;
    gap: 40px;
}

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

.brand-mark {
    display: grid;
    width: 50px;
    height: 58px;
    place-items: center;
    border: 0;
    background: none;
    transform: none;
    clip-path: none;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    max-height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 6px 13px rgba(0, 0, 0, 0.5));
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    font-family: var(--serif);
    font-size: 17px;
    letter-spacing: 0.13em;
}

.brand-copy small {
    margin-top: 6px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.site-nav a,
.nav-login {
    position: relative;
    color: #c8c7c6;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 150ms ease;
}

.site-nav a::after {
    position: absolute;
    right: 50%;
    bottom: -12px;
    left: 50%;
    height: 1px;
    background: var(--gold);
    content: "";
    transition: left 150ms ease, right 150ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.nav-login:hover {
    color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    right: 0;
    left: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    height: 1px;
    margin: 5px 0;
    background: var(--text);
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 1px;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

.button-icon-account,
.button-icon-download {
    gap: 11px;
}

.button-icon-account::before,
.button-icon-download::before {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background: currentColor;
    content: "";
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.button-icon-account::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Ccircle cx='9' cy='8' r='3.25'/%3E%3Cpath d='M3.5 19.5v-.75a5.5 5.5 0 0 1 11 0v.75M18 7v6M15 10h6'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Ccircle cx='9' cy='8' r='3.25'/%3E%3Cpath d='M3.5 19.5v-.75a5.5 5.5 0 0 1 11 0v.75M18 7v6M15 10h6'/%3E%3C/g%3E%3C/svg%3E");
}

.button-icon-download::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Cpath d='M12 3v11M7.5 10.5 12 15l4.5-4.5M4 18.5v2h16v-2'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8'%3E%3Cpath d='M12 3v11M7.5 10.5 12 15l4.5-4.5M4 18.5v2h16v-2'/%3E%3C/g%3E%3C/svg%3E");
}

.button:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
}

.button-primary {
    border-color: #e0b65c;
    background: linear-gradient(135deg, #e2b552, #ae7326);
    box-shadow: 0 12px 34px rgba(179, 118, 39, 0.22);
    color: #0b0b0c;
    text-shadow: 0 1px rgba(255, 255, 255, 0.25);
}

.button-primary:hover {
    background: linear-gradient(135deg, #f0ca76, #bd812d);
    box-shadow: 0 16px 42px rgba(179, 118, 39, 0.32);
}

.button-ghost,
.button-glass {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.025);
    color: #f1eee8;
}

.button-glass {
    background: rgba(7, 8, 10, 0.42);
    backdrop-filter: blur(12px);
}

.button-ghost:hover,
.button-glass:hover {
    border-color: rgba(217, 169, 78, 0.6);
    background: rgba(217, 169, 78, 0.08);
}

.button-danger {
    border-color: rgba(209, 63, 80, 0.35);
    background: rgba(209, 63, 80, 0.08);
    color: #ff9aa6;
}

.button-small {
    min-height: 38px;
    padding: 0 17px;
    font-size: 10px;
}

.button-large {
    min-height: 56px;
    padding-inline: 30px;
}

.button-full {
    width: 100%;
}

.account-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e8e6e1;
    font-size: 12px;
    font-weight: 700;
}

.status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(85, 214, 160, 0.09), 0 0 16px rgba(85, 214, 160, 0.6);
}

.status-dot-offline {
    background: #d86767;
    box-shadow: 0 0 0 4px rgba(216, 103, 103, 0.09), 0 0 16px rgba(216, 103, 103, 0.55);
}

.status-dot-maintenance {
    background: var(--gold);
    box-shadow: 0 0 0 4px rgba(217, 169, 78, 0.09), 0 0 16px rgba(217, 169, 78, 0.55);
}

.hero {
    position: relative;
    display: grid;
    min-height: 900px;
    overflow: hidden;
    align-items: center;
    background: #08090c;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background-image: url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp");
    background-position: center top;
    background-size: cover;
    opacity: 0.88;
    transform: scale(1.01);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 6, 9, 0.62) 0%, rgba(5, 6, 9, 0.06) 37%, rgba(5, 6, 9, 0.04) 64%, rgba(5, 6, 9, 0.2) 100%),
        linear-gradient(0deg, #08090c 0%, rgba(8, 9, 12, 0.15) 30%, rgba(8, 9, 12, 0.05) 70%, rgba(8, 9, 12, 0.5) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(350px, 0.55fr);
    align-items: end;
    padding-top: 140px;
    padding-bottom: 105px;
    gap: 46px;
}

.hero-copy {
    max-width: 680px;
    padding-bottom: 30px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 25px 0 20px;
    font-size: clamp(72px, 8.4vw, 132px);
    letter-spacing: -0.065em;
    line-height: 0.77;
    text-shadow: 0 8px 36px rgba(0, 0, 0, 0.72);
    text-transform: uppercase;
}

.hero h1 em {
    display: inline-block;
    margin-left: 0.21em;
    font-size: 0.72em;
    letter-spacing: -0.045em;
    text-transform: none;
}

.hero h1.hero-title-single {
    font-size: clamp(56px, 5.4vw, 88px);
    line-height: 0.92;
    white-space: nowrap;
}

.hero-lead {
    margin-bottom: 9px;
    color: #fff;
    font-size: 16px;
    font-weight: 850;
    letter-spacing: 0.2em;
}

.hero-sub {
    max-width: 580px;
    margin-bottom: 31px;
    color: #bebfc4;
    font-size: 16px;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
    gap: 18px 24px;
    color: #aaaab0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-trust b {
    color: #fff;
}

.season-card {
    align-self: end;
    justify-self: end;
    width: min(410px, 100%);
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(145deg, rgba(17, 19, 25, 0.74), rgba(7, 8, 11, 0.8)),
        radial-gradient(circle at top right, rgba(217, 169, 78, 0.18), transparent 56%);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.season-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
}

.season-card-head span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.season-card-head strong {
    color: var(--gold-light);
    font-family: var(--serif);
    font-weight: 400;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 24px 16px;
}

.countdown > div {
    display: grid;
    justify-items: center;
    border-right: 1px solid var(--line);
}

.countdown > div:last-child {
    border: 0;
}

.countdown strong {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
}

.countdown span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.season-services {
    display: grid;
    border-top: 1px solid var(--line);
}

.season-services > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45px;
    padding: 10px 20px;
    border-bottom: 1px solid var(--line);
}

.season-services > div:last-child {
    border-bottom: 0;
}

.season-services span {
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    gap: 10px;
}

.season-services strong {
    color: var(--green);
    font-size: 9px;
    letter-spacing: 0.18em;
}

.season-services .service-status-offline {
    color: #d86767;
}

.season-services .service-status-maintenance {
    color: var(--gold-light);
}

.section-heading h2 {
    margin: 18px 0 20px;
    font-size: clamp(48px, 6vw, 82px);
}

.section-heading p {
    max-width: 610px;
    color: var(--muted);
    font-size: 17px;
}

.section-heading.centered {
    display: grid;
    justify-items: center;
    margin-bottom: 65px;
    text-align: center;
}

.intro-section {
    background:
        radial-gradient(circle at 50% 0, rgba(217, 169, 78, 0.07), transparent 36rem),
        #090a0d;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
}

.feature-card {
    position: relative;
    min-height: 430px;
    padding: 48px 38px 42px;
    overflow: hidden;
    border-right: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
}

.feature-card:last-child {
    border: 0;
}

.feature-card-accent {
    background:
        radial-gradient(circle at 50% 0, rgba(141, 35, 52, 0.22), transparent 23rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.feature-number {
    position: absolute;
    top: 24px;
    right: 26px;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--serif);
    font-size: 24px;
}

.feature-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 36px;
    place-items: center;
    border: 1px solid var(--line-gold);
    background: rgba(217, 169, 78, 0.05);
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 27px;
    transform: rotate(45deg);
}

.feature-icon::first-letter {
    transform: rotate(-45deg);
}

.feature-card h3 {
    margin-bottom: 14px;
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 400;
}

.feature-card p {
    color: var(--muted);
}

.feature-card ul {
    display: grid;
    padding: 0;
    margin: 28px 0 0;
    gap: 8px;
    list-style: none;
}

.feature-card li {
    color: #c8c5c0;
    font-size: 12px;
}

.feature-card li::before {
    margin-right: 9px;
    color: var(--gold);
    content: "◆";
    font-size: 7px;
}

.rates-section {
    border-block: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(94, 19, 31, 0.14), transparent 36%),
        #0d0f14;
}

.split-heading {
    display: grid;
    grid-template-columns: 1fr 0.58fr;
    align-items: end;
    margin-bottom: 54px;
    gap: 80px;
}

.split-copy {
    padding-bottom: 7px;
    color: var(--muted);
    font-size: 17px;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid var(--line);
}

.rates-grid > div {
    display: grid;
    min-height: 178px;
    align-content: center;
    padding: 24px;
    border-right: 1px solid var(--line);
    text-align: center;
}

.rates-grid > div:last-child {
    border: 0;
}

.rates-grid small,
.rates-grid span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.rates-grid strong {
    margin: 8px 0;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 400;
}

.rates-grid span {
    font-size: 8px;
    letter-spacing: 0.05em;
    text-transform: none;
}

.ranking-section {
    background: #090a0d;
}

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

.ranking-panel,
.world-panel,
.panel {
    min-width: 0;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.ranking-panel {
    padding: 34px;
}

.panel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 27px;
    gap: 24px;
}

.panel-head h2 {
    margin: 8px 0 0;
    font-size: 43px;
}

.live-label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.ranking-table {
    border-top: 1px solid var(--line);
}

.ranking-tabs {
    display: flex;
    margin: 0 0 18px;
    overflow-x: auto;
    border: 1px solid var(--line);
    scrollbar-width: thin;
}

.ranking-tabs button {
    flex: 1 1 0;
    min-width: max-content;
    padding: 11px 15px;
    border: 0;
    border-right: 1px solid var(--line);
    background: rgba(7, 9, 13, 0.28);
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    cursor: pointer;
}

.ranking-tabs button:last-child {
    border-right: 0;
}

.ranking-tabs button[aria-selected="true"] {
    background: rgba(217, 169, 78, 0.12);
    color: var(--gold-light);
    box-shadow: inset 0 -2px 0 var(--gold);
}

.ranking-table[hidden] {
    display: none;
}

.ranking-row {
    display: grid;
    grid-template-columns: 45px minmax(140px, 1.1fr) minmax(120px, 0.8fr) 100px;
    min-height: 72px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    color: #c5c4c1;
    font-size: 13px;
}

.ranking-row > span:last-child {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 18px;
    text-align: right;
}

.ranking-head {
    min-height: 42px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.ranking-head > span:last-child {
    color: var(--muted);
    font-family: inherit;
    font-size: inherit;
}

.ranking-row b {
    display: block;
    color: #f5f2ed;
    font-size: 14px;
}

.ranking-row small {
    display: block;
    color: var(--muted);
    font-size: 9px;
}

.rank-first {
    background: linear-gradient(90deg, rgba(217, 169, 78, 0.08), transparent);
}

.rank-first > span:first-child {
    color: var(--gold);
}

.world-panel {
    position: relative;
    display: grid;
    min-height: 560px;
    align-content: end;
    padding: 40px;
    overflow: hidden;
    background:
        linear-gradient(0deg, #111319 0%, rgba(17, 19, 25, 0.78) 60%, rgba(17, 19, 25, 0.25)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center/cover;
}

.world-panel::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, transparent, rgba(7, 8, 10, 0.8));
    content: "";
}

.world-panel > * {
    position: relative;
}

.world-panel h2 {
    max-width: 340px;
    margin: 14px 0 30px;
    font-size: 48px;
}

.world-number {
    color: #fff;
    font-family: var(--serif);
    font-size: 64px;
    line-height: 1;
}

.world-number span {
    margin-left: 10px;
    color: var(--green);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.world-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 27px 0;
    padding-block: 22px;
    border-block: 1px solid var(--line);
}

.world-stats div {
    display: grid;
}

.world-stats strong {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
}

.world-stats span {
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.text-link {
    display: inline-flex;
    padding: 0;
    border: 0;
    background: none;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.text-link span {
    margin-left: 9px;
    transition: transform 150ms ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

.account-advantage {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background:
        radial-gradient(circle at 16% 50%, rgba(120, 34, 50, 0.16), transparent 32rem),
        #0d0f13;
}

.account-advantage-grid {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    align-items: center;
    gap: 110px;
}

.prefix-visual {
    position: relative;
    display: flex;
    min-height: 440px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle, rgba(217, 169, 78, 0.14), transparent 48%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 78px);
    letter-spacing: -0.05em;
}

.prefix-visual span {
    color: var(--gold);
}

.prefix-visual strong {
    font-weight: 400;
}

.prefix-visual::before,
.prefix-visual::after {
    position: absolute;
    width: 45px;
    height: 45px;
    border-color: var(--gold);
    border-style: solid;
    content: "";
}

.prefix-visual::before {
    top: 20px;
    left: 20px;
    border-width: 1px 0 0 1px;
}

.prefix-visual::after {
    right: 20px;
    bottom: 20px;
    border-width: 0 1px 1px 0;
}

.advantage-list {
    display: grid;
    margin: 34px 0;
    gap: 18px;
}

.advantage-list > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--line);
}

.advantage-list strong {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 23px;
    font-weight: 400;
}

.advantage-list span {
    color: #d3d0ca;
    font-size: 13px;
}

.news-section {
    background: #090a0d;
}

.section-news-head {
    margin-bottom: 43px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 18px;
}

.news-card {
    min-height: 330px;
    padding: 33px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent);
}

.news-card-featured {
    background:
        linear-gradient(145deg, rgba(77, 20, 31, 0.28), rgba(255, 255, 255, 0.015)),
        #111319;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.news-card h3 {
    margin: 41px 0 17px;
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 400;
}

.news-card p {
    color: var(--muted);
    font-size: 14px;
}

.news-body {
    padding-top: 22px;
    color: #c8c5c0;
    font-size: 13px;
}

.final-cta {
    min-height: 570px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(rgba(7, 8, 10, 0.72), rgba(7, 8, 10, 0.9)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center 42% / cover;
}

.final-cta::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, transparent, rgba(7, 8, 10, 0.75));
    content: "";
}

.final-cta-inner {
    position: relative;
    display: grid;
    justify-items: center;
    text-align: center;
}

.final-cta h2 {
    margin: 18px 0 24px;
    font-size: clamp(56px, 7vw, 92px);
}

.final-cta p {
    color: #d8d5cf;
}

.site-footer {
    padding-top: 72px;
    border-top: 1px solid var(--line);
    background: #07080a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    padding-bottom: 55px;
    gap: 60px;
}

.brand-footer {
    margin-bottom: 20px;
}

.footer-grid p {
    max-width: 330px;
    color: var(--muted);
    font-size: 13px;
}

.footer-grid h2 {
    margin-bottom: 20px;
    color: #e6e2da;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-grid > div:not(:first-child) a {
    color: var(--muted);
    font-size: 12px;
}

.footer-grid a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 20px;
    border-top: 1px solid var(--line);
    color: #aaa8a3;
    font-size: 10px;
}

.footer-bottom p {
    margin: 0;
}

.flash-stack {
    position: fixed;
    top: 96px;
    right: 24px;
    z-index: 200;
    display: grid;
    width: min(420px, calc(100vw - 48px));
    gap: 10px;
}

.flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 17px;
    border: 1px solid var(--line);
    background: rgba(17, 19, 25, 0.95);
    box-shadow: var(--shadow);
    color: #ddd9d3;
    font-size: 13px;
    backdrop-filter: blur(16px);
}

.flash-success {
    border-color: rgba(85, 214, 160, 0.35);
}

.flash-error,
.flash-warning {
    border-color: rgba(209, 63, 80, 0.42);
}

.flash button {
    padding: 0 0 0 20px;
    border: 0;
    background: none;
    color: var(--muted);
    font-size: 20px;
}

.auth-page {
    display: grid;
    grid-template-columns: minmax(400px, 1fr) minmax(520px, 0.82fr);
    min-height: 100vh;
    background: var(--ink);
}

.auth-art {
    position: sticky;
    top: 0;
    display: grid;
    height: 100vh;
    align-items: end;
    padding: 80px max(48px, 7vw);
    overflow: hidden;
    background:
        linear-gradient(0deg, rgba(7, 8, 10, 0.92), rgba(7, 8, 10, 0.08) 62%),
        linear-gradient(90deg, rgba(7, 8, 10, 0.1), rgba(7, 8, 10, 0.5)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") 52% center / cover;
}

.auth-art-copy {
    position: relative;
    z-index: 1;
    max-width: 580px;
}

.auth-art h1 {
    margin: 22px 0;
    font-size: clamp(60px, 7vw, 106px);
    text-transform: uppercase;
}

.auth-art p {
    max-width: 520px;
    color: #d8d5cf;
}

.auth-panel {
    display: grid;
    min-height: 100vh;
    align-items: center;
    padding: 120px max(48px, 7vw) 70px;
    background:
        radial-gradient(circle at 100% 0, rgba(106, 25, 39, 0.14), transparent 30rem),
        #0b0c10;
}

.auth-box {
    width: min(460px, 100%);
    margin-inline: auto;
}

.back-link {
    display: inline-block;
    margin-bottom: 54px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-box h2 {
    margin: 14px 0;
    font-size: 45px;
}

.muted {
    color: var(--muted);
}

.form-stack {
    display: grid;
    margin-top: 32px;
    gap: 20px;
}

.form-stack label,
.admin-form-grid label,
.cashback-form label {
    display: grid;
    gap: 8px;
}

.form-stack label > span:first-child,
.admin-form-grid label > span,
.cashback-form label > span {
    color: #d6d2ca;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.025);
    color: #eeeae3;
    outline: none;
    transition: border-color 150ms ease, background 150ms ease;
}

textarea {
    min-height: 92px;
    resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(255, 255, 255, 0.22);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    background: rgba(217, 169, 78, 0.035);
}

.form-stack small {
    color: #bbb9b4;
    font-size: 10px;
}

.input-prefix-wrap,
.password-wrap {
    display: flex;
    align-items: stretch;
}

.input-prefix-wrap b {
    display: grid;
    min-width: 65px;
    place-items: center;
    border: 1px solid var(--line-gold);
    border-right: 0;
    background: rgba(217, 169, 78, 0.08);
    color: var(--gold-light);
    font-family: ui-monospace, monospace;
}

.input-prefix-wrap input {
    flex: 1;
}

.password-wrap input {
    flex: 1;
}

.password-wrap button {
    min-width: 68px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.check-label {
    grid-template-columns: 18px 1fr;
    align-items: start;
}

.check-label input {
    width: 16px;
    min-height: 16px;
    margin-top: 3px;
    accent-color: var(--gold);
}

.check-label > span {
    color: var(--muted) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    line-height: 1.5;
    text-transform: none !important;
}

.auth-switch {
    margin-top: 24px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.auth-switch a {
    color: var(--gold-light);
    font-weight: 700;
}

.form-errors {
    padding: 14px 16px;
    margin-top: 24px;
    border: 1px solid rgba(209, 63, 80, 0.35);
    background: rgba(209, 63, 80, 0.07);
    color: #f1b3bb;
    font-size: 12px;
}

.form-errors ul {
    padding-left: 18px;
    margin: 7px 0 0;
}

.security-note {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    margin-top: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    gap: 13px;
}

.security-note > span {
    color: var(--gold);
}

.security-note p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.dashboard-hero,
.acp-hero,
.sub-hero {
    padding: 160px 0 76px;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(90deg, rgba(7, 8, 10, 0.78), rgba(7, 8, 10, 0.45)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center 30% / cover;
}

.dashboard-head,
.acp-hero-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.dashboard-head h1,
.acp-hero h1,
.sub-hero h1 {
    margin: 16px 0;
    font-size: clamp(52px, 6vw, 82px);
}

.dashboard-head p,
.acp-hero p,
.sub-hero p {
    max-width: 620px;
    margin: 0;
    color: #d8d5cf;
}

.dashboard-balance {
    display: grid;
    min-width: 270px;
    padding: 22px 26px;
    border: 1px solid var(--line-gold);
    background: rgba(7, 8, 10, 0.62);
    backdrop-filter: blur(14px);
}

.dashboard-balance span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dashboard-balance strong {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 37px;
    font-weight: 400;
}

.dashboard-balance a {
    color: #d4d0c8;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.dashboard-section {
    padding-top: 70px;
}

body.page-account {
    background:
        linear-gradient(180deg, rgba(7, 9, 13, 0.42), rgba(7, 9, 13, 0.56)),
        radial-gradient(circle at 24% 10%, rgba(118, 88, 214, 0.08), transparent 36rem),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center / cover fixed no-repeat,
        var(--ink);
}

.page-account .dashboard-hero {
    border-bottom-color: transparent;
    background: transparent;
}

.page-account .dashboard-section {
    background: transparent;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: start;
    gap: 24px;
}

.dashboard-main,
.dashboard-side {
    display: grid;
    gap: 24px;
}

.panel {
    padding: 30px;
}

.badge {
    display: inline-flex;
    align-items: center;
    width: max-content;
    padding: 5px 9px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: #d2cfc9;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.badge-gold {
    border-color: var(--line-gold);
    background: rgba(217, 169, 78, 0.08);
    color: var(--gold-light);
}

.badge-paid,
.badge-active,
.badge-pending {
    border-color: rgba(85, 214, 160, 0.28);
    color: #8fe9c1;
}

.badge-pending {
    border-color: rgba(217, 169, 78, 0.28);
    color: var(--gold-light);
}

.badge-redeemed {
    border-color: rgba(174, 184, 255, 0.28);
    color: #c8ceff;
}

.badge-cancelled,
.badge-refunded {
    border-color: rgba(209, 63, 80, 0.28);
    color: #ed8794;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.detail-grid > div {
    display: grid;
    min-height: 105px;
    align-content: center;
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.detail-grid span {
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-grid strong {
    margin-top: 5px;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    overflow-wrap: anywhere;
}

.data-list {
    border-top: 1px solid var(--line);
}

.data-row {
    display: flex;
    min-height: 63px;
    align-items: center;
    justify-content: space-between;
    padding: 11px 4px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
    color: #c4c2be;
    font-size: 12px;
}

.data-row > div {
    display: grid;
}

.data-row strong {
    color: #eeebe5;
    font-size: 13px;
}

.data-row small {
    color: var(--muted);
    font-size: 9px;
}

.positive {
    color: var(--green);
}

.negative {
    color: var(--red-hot);
}

.empty-state {
    padding: 28px 4px;
    color: var(--muted);
    font-size: 12px;
}

.compact-form {
    gap: 14px;
}

.compact-list .data-row {
    min-height: 54px;
}

.donate-hero {
    text-align: center;
}

.sub-hero-content {
    display: grid;
    justify-items: center;
}

.wallet-pill {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    margin-top: 25px;
    border: 1px solid var(--line-gold);
    background: rgba(7, 8, 10, 0.65);
    gap: 15px;
}

.wallet-pill span {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.wallet-pill strong {
    color: var(--gold-light);
    font-family: var(--serif);
    font-weight: 400;
}

.donate-section {
    padding-top: 75px;
}

.login-gate {
    display: grid;
    min-height: 430px;
    justify-items: center;
    align-content: center;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 50% 30%, rgba(217, 169, 78, 0.09), transparent 24rem),
        var(--panel);
    text-align: center;
}

.login-gate h2 {
    margin: 20px 0 14px;
    font-size: 48px;
}

.login-gate p {
    max-width: 580px;
    color: var(--muted);
}

.bonus-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 30px 34px;
    margin-bottom: 28px;
    border: 1px solid var(--line);
    background: var(--panel);
    gap: 50px;
}

.bonus-banner.is-unlocked {
    border-color: var(--line-gold);
    background:
        radial-gradient(circle at 0 50%, rgba(217, 169, 78, 0.1), transparent 26rem),
        var(--panel);
}

.bonus-banner h2 {
    margin: 8px 0 0;
    font-size: 37px;
}

.bonus-banner p {
    margin: 0;
    color: var(--muted);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 18px;
}

.package-card {
    position: relative;
    display: grid;
    padding: 38px 32px 32px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent);
}

.package-featured {
    border-color: rgba(217, 169, 78, 0.52);
    background:
        radial-gradient(circle at 50% 0, rgba(217, 169, 78, 0.12), transparent 23rem),
        var(--panel);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.package-label {
    position: absolute;
    top: 0;
    right: 0;
    padding: 7px 10px;
    background: var(--gold);
    color: #08090c;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.package-coins {
    margin: 26px 0 22px;
    color: #fff;
    font-family: var(--serif);
    font-size: 48px;
    line-height: 1;
}

.package-coins small {
    display: block;
    margin-top: 9px;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.package-breakdown {
    display: grid;
    padding-block: 15px;
    border-block: 1px solid var(--line);
    gap: 7px;
}

.package-breakdown span {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 11px;
}

.package-breakdown b {
    color: #d7d4ce;
}

.package-price {
    margin: 24px 0;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
}

.donate-note {
    padding: 19px 22px;
    margin-top: 24px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
}

.donate-note strong {
    color: var(--gold-light);
    font-size: 12px;
}

.donate-note p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.download-page {
    min-height: 100vh;
    padding: 165px 0 105px;
    background:
        radial-gradient(circle at 50% 8%, rgba(217, 169, 78, 0.06), transparent 32rem),
        linear-gradient(180deg, rgba(5, 7, 10, 0.04), rgba(5, 7, 10, 0.16));
}

.download-shell {
    display: grid;
    gap: 48px;
}

.download-heading {
    max-width: 820px;
}

.download-heading h1 {
    margin: 18px 0 24px;
    font-size: clamp(64px, 7.2vw, 110px);
    letter-spacing: -0.06em;
    line-height: 0.82;
    text-transform: uppercase;
}

.download-heading h1 em {
    color: var(--gold-light);
    font-size: 0.82em;
    text-transform: none;
}

.download-heading > p {
    max-width: 650px;
    color: #bebfc4;
    font-size: 17px;
}

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

.download-card {
    position: relative;
    display: grid;
    min-height: 540px;
    align-content: space-between;
    padding: 42px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.004)),
        rgba(6, 8, 12, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 28px 80px rgba(0, 0, 0, 0.22);
    -webkit-backdrop-filter: blur(11px) saturate(108%);
    backdrop-filter: blur(11px) saturate(108%);
}

.download-card-featured {
    border-color: rgba(217, 169, 78, 0.42);
    background:
        radial-gradient(circle at 0 0, rgba(217, 169, 78, 0.11), transparent 27rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.005)),
        rgba(6, 8, 12, 0.26);
}

.download-number {
    position: absolute;
    top: 30px;
    right: 34px;
    color: rgba(255, 255, 255, 0.27);
    font-family: var(--serif);
    font-size: 30px;
}

.download-card h2 {
    margin: 15px 0 14px;
    font-size: clamp(42px, 4vw, 58px);
}

.download-card p {
    max-width: 480px;
    color: var(--muted);
}

.download-card ul {
    display: grid;
    padding: 24px 0;
    margin: 26px 0;
    border-block: 1px solid var(--line);
    color: #d0cfcb;
    font-size: 13px;
    gap: 11px;
    list-style: none;
}

.download-card li::before {
    margin-right: 10px;
    color: var(--gold);
    content: "◆";
    font-size: 7px;
}

.download-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 24px;
    border-block: 1px solid var(--line);
}

.download-specs > span {
    display: grid;
    min-width: 0;
    padding: 15px 0;
    gap: 5px;
}

.download-specs > span + span {
    padding-left: 22px;
    border-left: 1px solid var(--line);
}

.download-specs small {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.download-specs strong {
    overflow-wrap: anywhere;
    color: var(--cream);
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 400;
}

.download-checksum {
    display: block;
    margin-top: 14px;
    overflow-wrap: anywhere;
    color: rgba(232, 229, 222, 0.8);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 9px;
    line-height: 1.55;
}

.button.is-disabled {
    cursor: not-allowed;
    opacity: 0.48;
    pointer-events: none;
}

.download-note {
    display: flex;
    align-items: center;
    padding: 22px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 8, 12, 0.16);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    gap: 17px;
}

.download-note > div {
    display: grid;
    gap: 4px;
}

.download-note strong {
    color: var(--gold-light);
    font-size: 12px;
}

.download-note p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.simple-page {
    display: grid;
    min-height: 100vh;
    align-items: center;
    padding: 130px 0 80px;
    background:
        radial-gradient(circle at 50% 20%, rgba(98, 24, 38, 0.16), transparent 35rem),
        var(--ink);
}

.narrow-container {
    max-width: 660px;
}

.setup-panel h1,
.error-page h1 {
    margin: 17px 0 20px;
    font-size: 58px;
}

.error-page {
    text-align: center;
}

.error-code {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 90px;
}

.connection-state {
    display: flex;
    align-items: center;
    min-width: 240px;
    padding: 15px 18px;
    border: 1px solid var(--line);
    background: rgba(7, 8, 10, 0.68);
    gap: 13px;
}

.connection-state > div {
    display: grid;
}

.connection-state small {
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.connection-state strong {
    font-size: 12px;
}

.connection-state.is-offline .status-dot {
    background: var(--red-hot);
    box-shadow: 0 0 0 4px rgba(209, 63, 80, 0.1), 0 0 16px rgba(209, 63, 80, 0.45);
}

.acp-shell {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: start;
    padding-block: 55px 100px;
    gap: 34px;
}

.acp-nav {
    position: sticky;
    top: 105px;
    display: grid;
    border: 1px solid var(--line);
    background: var(--panel);
}

.acp-nav a {
    padding: 13px 16px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.acp-nav a:last-child {
    border: 0;
}

.acp-nav a:hover {
    background: rgba(217, 169, 78, 0.06);
    color: var(--gold-light);
}

.acp-content {
    display: grid;
    min-width: 0;
    gap: 28px;
}

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

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.metric-grid article {
    display: grid;
    min-height: 140px;
    align-content: center;
    padding: 22px;
    border: 1px solid var(--line);
    background: var(--panel);
}

.metric-grid span,
.metric-grid small {
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.metric-grid strong {
    margin: 4px 0;
    color: #f1ede6;
    font-family: var(--serif);
    font-size: 31px;
    font-weight: 400;
}

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

.form-span {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.search-form {
    display: flex;
    width: min(330px, 100%);
}

.search-form input {
    min-height: 40px;
}

.search-form button {
    padding: 0 15px;
    border: 1px solid var(--line-gold);
    background: rgba(217, 169, 78, 0.08);
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    border-top: 1px solid var(--line);
}

.admin-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    font-size: 11px;
}

.admin-table th,
.admin-table td {
    padding: 13px 11px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-table td {
    color: #c7c4be;
}

.admin-table td > strong,
.admin-table td > small {
    display: block;
}

.admin-table td > small {
    color: var(--muted);
    font-size: 8px;
}

.inline-form,
.order-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}

.inline-form select,
.order-actions input {
    min-height: 35px;
    padding: 6px 8px;
    font-size: 10px;
}

.inline-form button,
.order-actions button,
.icon-danger {
    min-height: 35px;
    padding: 6px 10px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: #d8d5cf;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.order-actions .confirm {
    border-color: rgba(85, 214, 160, 0.3);
    color: #8fe9c1;
}

.order-actions .cancel,
.icon-danger {
    border-color: rgba(209, 63, 80, 0.3);
    color: #ee8d99;
}

.cashback-form {
    display: grid;
    grid-template-columns: 1fr 1fr 140px auto;
    align-items: end;
    padding: 22px;
    margin: 24px 0;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    gap: 13px;
}

.cashback-form .button {
    min-height: 48px;
}

.news-admin-list {
    margin-top: 30px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1180px) {
    :root {
        --container: min(100% - 36px, 980px);
    }

    .site-nav {
        gap: 19px;
    }

    .nav-shell {
        gap: 22px;
    }

    .hero {
        min-height: 840px;
    }

    .hero-inner {
        grid-template-columns: 1fr 320px;
        gap: 35px;
    }

    .hero h1 {
        font-size: clamp(68px, 9vw, 104px);
    }

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

    .rates-grid > div:nth-child(3) {
        border-right: 0;
    }

    .rates-grid > div:nth-child(-n + 3) {
        border-bottom: 1px solid var(--line);
    }

    .account-advantage-grid {
        gap: 55px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr 330px;
    }

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

    .cashback-form {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .nav-toggle {
        display: block;
        grid-column: 3;
    }

    .site-nav {
        position: absolute;
        top: 82px;
        right: 0;
        left: 0;
        display: none;
        padding: 20px;
        border-bottom: 1px solid var(--line);
        background: rgba(7, 8, 11, 0.97);
        box-shadow: var(--shadow);
        text-align: center;
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        padding: 13px;
    }

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

    .nav-actions {
        display: none;
    }

    .hero {
        min-height: 980px;
    }

    .hero-backdrop {
        background-position: 50% top;
    }

    .hero-vignette {
        background:
            linear-gradient(0deg, #08090c 0%, rgba(8, 9, 12, 0.16) 50%, rgba(8, 9, 12, 0.45) 100%),
            linear-gradient(90deg, rgba(8, 9, 12, 0.55), rgba(8, 9, 12, 0.08), rgba(8, 9, 12, 0.45));
    }

    .hero-inner {
        grid-template-columns: 1fr;
        align-content: end;
        padding-top: 170px;
        padding-bottom: 90px;
    }

    .hero-copy {
        max-width: 640px;
    }

    .season-card {
        width: min(450px, 100%);
        margin: 0;
        justify-self: start;
    }

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

    .feature-card {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .split-heading,
    .ranking-layout,
    .account-advantage-grid,
    .bonus-banner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .ranking-panel {
        padding: 24px;
    }

    .prefix-visual {
        min-height: 330px;
    }

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

    .news-card-featured {
        grid-column: 1 / -1;
    }

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

    .auth-art {
        position: relative;
        height: 540px;
        min-height: auto;
    }

    .auth-panel {
        min-height: auto;
        padding-top: 70px;
    }

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

    .dashboard-side {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-side > form {
        grid-column: 1 / -1;
    }

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

    .package-card {
        max-width: 580px;
        width: 100%;
        margin-inline: auto;
    }

    .acp-shell {
        grid-template-columns: 1fr;
    }

    .acp-nav {
        position: static;
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (max-width: 680px) {
    :root {
        --container: calc(100% - 28px);
    }

    .section {
        padding: 80px 0;
    }

    .nav-shell {
        min-height: 72px;
    }

    .brand-copy strong {
        font-size: 14px;
    }

    .site-nav {
        top: 72px;
    }

    .hero {
        min-height: 1180px;
    }

    .hero-backdrop {
        background-position: 24% top;
    }

    .hero-vignette {
        background:
            linear-gradient(0deg, #08090c 0%, rgba(8, 9, 12, 0.26) 54%, rgba(8, 9, 12, 0.54) 100%),
            radial-gradient(circle at 50% 38%, transparent, rgba(8, 9, 12, 0.38));
    }

    .hero-inner {
        padding-top: 140px;
        padding-bottom: 70px;
    }

    .hero h1 {
        margin-top: 20px;
        font-size: clamp(57px, 18vw, 76px);
        line-height: 0.84;
    }

    .hero h1 em {
        margin-left: 0;
        font-size: 0.72em;
    }

    .hero h1.hero-title-single {
        font-size: clamp(38px, 11.2vw, 50px);
        line-height: 0.95;
        white-space: nowrap;
    }

    .hero-lead {
        font-size: 12px;
    }

    .hero-sub {
        font-size: 14px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-trust {
        gap: 10px 17px;
    }

    .season-card {
        display: block;
        width: 100%;
        margin-top: 8px;
    }

    .countdown {
        padding: 20px 8px;
    }

    .section-heading h2 {
        font-size: 48px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .feature-card {
        padding: 38px 28px;
    }

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

    .rates-grid > div {
        min-height: 145px;
    }

    .rates-grid > div:nth-child(3) {
        border-right: 1px solid var(--line);
    }

    .rates-grid > div:nth-child(2n) {
        border-right: 0;
    }

    .rates-grid > div:nth-child(-n + 4) {
        border-bottom: 1px solid var(--line);
    }

    .panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ranking-panel {
        padding: 16px;
    }

    .ranking-row {
        grid-template-columns: 30px minmax(110px, 1fr) 72px;
        min-height: 65px;
        font-size: 11px;
    }

    .ranking-row > span:nth-child(3) {
        display: none;
    }

    .world-panel {
        min-height: 500px;
        padding: 28px;
    }

    .world-panel h2 {
        font-size: 42px;
    }

    .world-number {
        font-size: 52px;
    }

    .prefix-visual {
        min-height: 250px;
        font-size: 44px;
    }

    .advantage-list > div {
        grid-template-columns: 72px 1fr;
    }

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

    .news-card-featured {
        grid-column: auto;
    }

    .final-cta {
        min-height: 560px;
    }

    .final-cta h2 {
        font-size: 53px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 28px;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .auth-art {
        height: 480px;
        padding: 120px 25px 50px;
        background-position: 20% center;
    }

    .auth-art h1 {
        font-size: 56px;
    }

    .auth-panel {
        padding: 65px 22px;
    }

    .back-link {
        margin-bottom: 40px;
    }

    .auth-box h2 {
        font-size: 39px;
    }

    .dashboard-hero,
    .acp-hero,
    .sub-hero {
        padding: 135px 0 55px;
    }

    .dashboard-head,
    .acp-hero-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-balance,
    .connection-state {
        width: 100%;
    }

    .dashboard-side {
        grid-template-columns: 1fr;
    }

    .dashboard-side > form {
        grid-column: auto;
    }

    .panel {
        padding: 21px;
    }

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

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

    .login-gate {
        padding: 35px 20px;
    }

    .login-gate h2 {
        font-size: 38px;
    }

    .bonus-banner {
        padding: 24px;
    }

    .acp-nav {
        grid-template-columns: 1fr 1fr;
    }

    .metric-grid,
    .admin-form-grid,
    .cashback-form {
        grid-template-columns: 1fr;
    }

    .search-form {
        width: 100%;
    }

    .cashback-form .button {
        width: 100%;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Transparent glass design system */

.site-header.is-scrolled {
    border-color: var(--glass-line);
    background: rgba(7, 9, 13, 0.48);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
    -webkit-backdrop-filter: blur(24px) saturate(130%);
    backdrop-filter: blur(24px) saturate(130%);
}

.hero-copy,
.season-card,
.feature-grid,
.feature-card,
.rates-grid,
.rates-grid > div,
.ranking-panel,
.world-panel,
.panel,
.prefix-visual,
.news-card,
.dashboard-balance,
.connection-state,
.login-gate,
.bonus-banner,
.package-card,
.metric-grid article,
.acp-nav,
.cashback-form,
.donate-note,
.wallet-pill,
.security-note,
.auth-box {
    border-color: var(--glass-line);
    background-color: var(--glass);
    box-shadow:
        inset 0 1px 0 var(--glass-shine),
        inset 0 -1px 0 rgba(255, 255, 255, 0.025),
        0 26px 70px rgba(0, 0, 0, 0.25);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(125%);
    backdrop-filter: blur(var(--glass-blur)) saturate(125%);
}

.hero-copy {
    max-width: 720px;
    padding: clamp(26px, 3vw, 44px);
    margin-left: clamp(-36px, -2vw, -12px);
    border: 1px solid var(--glass-line);
    background:
        linear-gradient(135deg, rgba(18, 22, 30, 0.58), rgba(9, 11, 16, 0.28)),
        rgba(10, 12, 17, 0.2);
}

.hero-copy::before,
.auth-box::before,
.panel::before,
.package-card::before {
    position: absolute;
    top: 0;
    right: 8%;
    left: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    content: "";
    pointer-events: none;
}

.hero-copy,
.auth-box,
.panel,
.package-card {
    position: relative;
}

.season-card {
    background:
        linear-gradient(145deg, rgba(26, 30, 40, 0.48), rgba(8, 10, 15, 0.36)),
        rgba(9, 11, 16, 0.28);
}

.season-card-beta {
    border-color: rgba(217, 169, 78, 0.3);
    background:
        radial-gradient(circle at 100% 0, rgba(217, 169, 78, 0.08), transparent 18rem),
        linear-gradient(145deg, rgba(26, 30, 40, 0.42), rgba(8, 10, 15, 0.28)),
        rgba(9, 11, 16, 0.2);
}

.season-card-beta .season-services > div {
    background: rgba(9, 11, 16, 0.1);
}

.countdown {
    padding-block: 31px;
}

.intro-section,
.rates-section,
.ranking-section,
.account-advantage,
.news-section,
.dashboard-section,
.donate-section {
    background:
        radial-gradient(circle at 50% 0, rgba(217, 169, 78, 0.055), transparent 32rem),
        linear-gradient(180deg, rgba(6, 8, 12, 0.48), rgba(6, 8, 12, 0.18));
}

.rates-section,
.account-advantage {
    border-color: var(--glass-line);
}

.feature-grid,
.rates-grid {
    overflow: hidden;
    background: rgba(13, 16, 22, 0.3);
}

.feature-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
        rgba(13, 16, 22, 0.32);
}

.feature-card-accent {
    background:
        radial-gradient(circle at 50% 0, rgba(151, 44, 63, 0.22), transparent 24rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.012)),
        rgba(13, 16, 22, 0.32);
}

.rates-grid > div {
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.045), transparent 60%),
        rgba(12, 15, 21, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.ranking-panel,
.panel,
.news-card,
.metric-grid article,
.acp-nav {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
        rgba(12, 15, 21, 0.44);
}

.world-panel {
    background:
        linear-gradient(0deg, rgba(9, 12, 18, 0.78), rgba(9, 12, 18, 0.24)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center / cover;
}

.prefix-visual {
    background:
        radial-gradient(circle, rgba(217, 169, 78, 0.16), transparent 48%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.008)),
        rgba(10, 13, 18, 0.38);
}

.news-card-featured {
    background:
        radial-gradient(circle at 0 0, rgba(147, 39, 57, 0.24), transparent 29rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
        rgba(12, 15, 21, 0.42);
}

.site-footer {
    border-color: var(--glass-line);
    background: rgba(6, 8, 12, 0.7);
    -webkit-backdrop-filter: blur(28px) saturate(120%);
    backdrop-filter: blur(28px) saturate(120%);
}

.auth-panel {
    background:
        radial-gradient(circle at 100% 0, rgba(118, 88, 214, 0.12), transparent 28rem),
        rgba(7, 9, 13, 0.4);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.auth-box {
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid var(--glass-line);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
        rgba(10, 13, 18, 0.5);
}

input,
select,
textarea {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.045);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(241, 210, 138, 0.75);
    background: rgba(217, 169, 78, 0.075);
    box-shadow: 0 0 0 3px rgba(217, 169, 78, 0.08);
}

.dashboard-hero,
.acp-hero,
.sub-hero {
    border-color: var(--glass-line);
    background:
        linear-gradient(90deg, rgba(7, 9, 13, 0.7), rgba(7, 9, 13, 0.22)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center 30% / cover;
}

.dashboard-balance,
.connection-state,
.wallet-pill {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent),
        rgba(8, 10, 15, 0.38);
}

.login-gate,
.bonus-banner,
.package-card,
.cashback-form,
.donate-note,
.security-note {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.01)),
        rgba(11, 14, 20, 0.4);
}

.bonus-banner.is-unlocked,
.package-featured {
    border-color: rgba(217, 169, 78, 0.48);
    background:
        radial-gradient(circle at 0 0, rgba(217, 169, 78, 0.14), transparent 30rem),
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
        rgba(11, 14, 20, 0.44);
}

.simple-page {
    background:
        linear-gradient(rgba(6, 8, 12, 0.58), rgba(6, 8, 12, 0.72)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center / cover fixed;
}

.flash {
    border-color: var(--glass-line);
    background: rgba(14, 17, 24, 0.64);
    -webkit-backdrop-filter: blur(22px) saturate(130%);
    backdrop-filter: blur(22px) saturate(130%);
}

@media (max-width: 900px) {
    .site-nav {
        border-color: var(--glass-line);
        background: rgba(7, 9, 13, 0.74);
        -webkit-backdrop-filter: blur(24px) saturate(130%);
        backdrop-filter: blur(24px) saturate(130%);
    }

    .hero-copy {
        margin-left: 0;
    }
}

@media (max-width: 680px) {
    body {
        background-attachment: scroll;
    }

    .hero-copy {
        padding: 24px 20px;
        background:
            linear-gradient(145deg, rgba(13, 16, 22, 0.58), rgba(8, 10, 15, 0.32)),
            rgba(8, 10, 15, 0.24);
    }

    .auth-box {
        padding: 26px 20px;
    }
}

/* Aesthetic refinement: restrained glass, original Interlude identity. */
body {
    background:
        radial-gradient(circle at 12% 8%, rgba(112, 24, 40, 0.1), transparent 30rem),
        radial-gradient(circle at 88% 38%, rgba(217, 169, 78, 0.045), transparent 28rem),
        #090a0d;
}

.hero-copy {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.hero-copy::before {
    display: none;
}

.intro-section,
.rates-section,
.ranking-section,
.account-advantage,
.news-section,
.dashboard-section,
.donate-section {
    background:
        radial-gradient(circle at 50% 0, rgba(217, 169, 78, 0.035), transparent 32rem),
        linear-gradient(180deg, rgba(9, 10, 13, 0.96), rgba(12, 14, 18, 0.94));
}

.feature-card,
.ranking-panel,
.world-panel,
.panel,
.prefix-visual,
.news-card,
.package-card,
.auth-box,
.metric-grid article {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
        rgba(10, 12, 17, 0.58);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.world-panel {
    background:
        linear-gradient(0deg, rgba(9, 12, 18, 0.78), rgba(9, 12, 18, 0.24)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center / cover;
}

.feature-card,
.news-card,
.package-card {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.news-card:hover,
.package-card:hover {
    transform: translateY(-3px);
    border-color: rgba(217, 169, 78, 0.32);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

input,
select,
textarea {
    border-radius: 1px;
}

@media (max-width: 680px) {
    .hero-copy {
        padding: 0;
        background: none;
    }
}

/* Continuous wallpaper: every page layer lets the artwork breathe. */
html {
    background: #050608;
}

body {
    background:
        linear-gradient(180deg, rgba(4, 6, 9, 0.48), rgba(5, 7, 10, 0.68)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center top / cover fixed no-repeat;
}

.hero,
.intro-section,
.rates-section,
.ranking-section,
.account-advantage,
.news-section,
.dashboard-section,
.donate-section,
.auth-panel,
.simple-page {
    background:
        linear-gradient(180deg, rgba(7, 9, 13, 0.2), rgba(7, 9, 13, 0.34));
}

.hero-backdrop {
    background-image: none;
    opacity: 1;
}

.hero-vignette {
    background:
        linear-gradient(90deg, rgba(4, 5, 8, 0.64) 0%, rgba(4, 5, 8, 0.16) 39%, rgba(4, 5, 8, 0.06) 66%, rgba(4, 5, 8, 0.22) 100%),
        linear-gradient(0deg, rgba(5, 7, 10, 0.48) 0%, transparent 34%, rgba(5, 7, 10, 0.22) 100%);
}

.rates-section,
.account-advantage,
.site-footer {
    border-color: rgba(255, 255, 255, 0.09);
}

.feature-grid,
.rates-grid {
    background: rgba(7, 9, 13, 0.15);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.feature-card,
.ranking-panel,
.world-panel,
.panel,
.prefix-visual,
.news-card,
.package-card,
.auth-box,
.metric-grid article {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006)),
        rgba(7, 9, 13, 0.42);
    -webkit-backdrop-filter: blur(12px) saturate(110%);
    backdrop-filter: blur(12px) saturate(110%);
}

.rates-grid > div,
.login-gate,
.bonus-banner,
.cashback-form,
.donate-note,
.security-note,
.dashboard-balance,
.connection-state,
.wallet-pill {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent),
        rgba(7, 9, 13, 0.34);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.final-cta {
    background: rgba(6, 8, 11, 0.26);
}

.final-cta::before {
    background: radial-gradient(circle at 50% 30%, transparent, rgba(5, 7, 10, 0.5));
}

.site-header.is-scrolled {
    background: rgba(6, 8, 11, 0.56);
}

.site-footer {
    background: rgba(5, 7, 10, 0.54);
    -webkit-backdrop-filter: blur(14px) saturate(110%);
    backdrop-filter: blur(14px) saturate(110%);
}

.nav-discord,
.footer-discord {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}

.discord-icon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 13px;
    flex: 0 0 auto;
    border: 1.5px solid currentColor;
    border-radius: 7px 7px 5px 5px;
    color: #aeb8ff;
    transform: translateY(-1px);
}

.discord-icon::before,
.discord-icon::after {
    position: absolute;
    top: 4px;
    width: 2.5px;
    height: 2.5px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.discord-icon::before {
    left: 4px;
}

.discord-icon::after {
    right: 4px;
}

.discord-icon i {
    position: absolute;
    right: 4px;
    bottom: 2px;
    left: 4px;
    height: 3px;
    border-bottom: 1.5px solid currentColor;
    border-radius: 0 0 50% 50%;
}

.nav-discord:hover .discord-icon,
.footer-discord:hover .discord-icon {
    color: #d2d7ff;
}

@media (max-width: 680px) {
    body {
        background-attachment: scroll;
        background-position: center top;
    }
}

.demo-login {
    display: grid;
    padding: 22px;
    border: 1px solid rgba(174, 184, 255, 0.22);
    margin-top: 22px;
    background:
        linear-gradient(145deg, rgba(174, 184, 255, 0.06), transparent),
        rgba(7, 9, 13, 0.34);
    gap: 18px;
}

.demo-login h3 {
    margin: 5px 0 4px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
}

.demo-login p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.demo-login-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.demo-login-actions form {
    margin: 0;
}

@media (max-width: 760px) {
    .demo-login-actions {
        grid-template-columns: 1fr;
    }
}

/* Modern custom-amount donate builder. */
.donate-hero {
    min-height: 470px;
    align-items: end;
    background:
        linear-gradient(90deg, rgba(5, 7, 10, 0.78), rgba(5, 7, 10, 0.08)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center 34% / cover;
}

.donate-hero .sub-hero-content {
    padding-top: 170px;
    padding-bottom: 72px;
}

.donate-hero h1 {
    max-width: 760px;
    font-size: clamp(58px, 7vw, 104px);
}

.donate-section {
    padding-top: 64px;
}

.donate-section .bonus-banner {
    margin-bottom: 22px;
    border-color: rgba(217, 169, 78, 0.28);
    background:
        linear-gradient(110deg, rgba(217, 169, 78, 0.12), transparent 48%),
        rgba(7, 9, 13, 0.48);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.coin-builder {
    display: grid;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(125deg, rgba(255, 255, 255, 0.035), transparent 42%),
        rgba(6, 8, 12, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 28px 84px rgba(0, 0, 0, 0.28);
    grid-template-columns: minmax(0, 1.24fr) minmax(360px, 0.76fr);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.coin-builder-main {
    padding: clamp(34px, 4vw, 54px);
}

.coin-builder-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 42px;
    gap: 24px;
}

.coin-builder-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(38px, 3.4vw, 52px);
    line-height: 0.98;
}

.rate-chip {
    padding: 9px 13px;
    border: 1px solid rgba(217, 169, 78, 0.34);
    background: rgba(217, 169, 78, 0.08);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
    white-space: nowrap;
    text-transform: uppercase;
}

.coin-amount-label {
    display: grid;
    gap: 11px;
}

.coin-amount-label > span:first-child,
.delivery-fieldset legend,
.character-picker > span {
    color: #d6d2ca;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.coin-amount-input {
    display: grid;
    align-items: center;
    border-bottom: 1px solid rgba(217, 169, 78, 0.42);
    background: none;
    grid-template-columns: minmax(0, 1fr) auto;
}

.coin-amount-input input {
    min-height: 100px;
    padding: 0;
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #f7f2e9;
    font-family: var(--serif);
    font-size: clamp(62px, 8vw, 108px);
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: textfield;
}

.coin-amount-input input::-webkit-inner-spin-button,
.coin-amount-input input::-webkit-outer-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.coin-amount-input input:focus {
    background: transparent;
    box-shadow: none;
}

.coin-amount-input b {
    max-width: 115px;
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-align: right;
    text-transform: uppercase;
}

.coin-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 22px;
    min-height: 22px;
    padding: 0;
    border: 0;
    margin: 26px 0 2px;
    background: transparent !important;
    box-shadow: none;
    accent-color: var(--gold);
    cursor: pointer;
}

.coin-range::-webkit-slider-runnable-track {
    height: 2px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.18));
    box-shadow: none;
}

.coin-range::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
    border: 3px solid rgba(13, 15, 19, 0.9);
    margin-top: -8px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 0 1px var(--gold), 0 0 20px rgba(217, 169, 78, 0.35);
    -webkit-appearance: none;
}

.coin-range::-moz-range-track {
    height: 2px;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: none;
}

.coin-range::-moz-range-progress {
    height: 2px;
    background: var(--gold);
}

.coin-range::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: 3px solid rgba(13, 15, 19, 0.9);
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 0 1px var(--gold), 0 0 20px rgba(217, 169, 78, 0.35);
}

.coin-range-labels {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 9px;
}

.coin-presets {
    display: flex;
    flex-wrap: wrap;
    margin-top: 21px;
    gap: 8px;
}

.coin-presets button {
    min-width: 76px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.025);
    color: #c9c6c0;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.coin-presets button:hover {
    border-color: rgba(217, 169, 78, 0.48);
    color: var(--gold-light);
}

.delivery-fieldset {
    padding: 0;
    border: 0;
    margin: 52px 0 0;
}

.delivery-fieldset legend {
    margin-bottom: 14px;
}

.delivery-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.delivery-option {
    position: relative;
    display: block;
    cursor: pointer;
}

.delivery-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.delivery-option > span {
    display: grid;
    min-height: 102px;
    align-content: center;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.022);
    gap: 4px;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.delivery-option b {
    color: #f0ece4;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
}

.delivery-option small {
    color: var(--muted);
    font-size: 10px;
}

.delivery-option input:checked + span {
    border-color: rgba(217, 169, 78, 0.62);
    background:
        linear-gradient(135deg, rgba(217, 169, 78, 0.11), transparent),
        rgba(255, 255, 255, 0.025);
    box-shadow: inset 0 0 0 1px rgba(217, 169, 78, 0.08);
    transform: translateY(-2px);
}

.delivery-option.is-disabled {
    cursor: not-allowed;
    opacity: 0.38;
}

.character-picker {
    display: grid;
    margin-top: 13px;
    gap: 8px;
}

.delivery-hint {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 10px;
}

.coin-receipt {
    position: relative;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: clamp(34px, 4vw, 54px);
    border-left: 1px solid rgba(255, 255, 255, 0.11);
    background:
        radial-gradient(circle at 100% 0, rgba(217, 169, 78, 0.12), transparent 25rem),
        linear-gradient(160deg, rgba(37, 30, 21, 0.38), rgba(7, 9, 13, 0.28));
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.receipt-total {
    display: grid;
    padding: 40px 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.receipt-total strong {
    color: #fff8ea;
    font-family: var(--serif);
    font-size: clamp(58px, 6vw, 82px);
    font-weight: 400;
    line-height: 0.95;
}

.receipt-total span {
    margin-top: 10px;
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.receipt-lines {
    display: grid;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    gap: 13px;
}

.receipt-lines div,
.receipt-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.receipt-lines span {
    color: var(--muted);
    font-size: 11px;
}

.receipt-lines b {
    color: #e6e1d8;
    font-size: 11px;
}

.receipt-lines div:nth-child(2) b {
    color: var(--green);
}

.receipt-price {
    padding: 34px 0;
}

.receipt-price span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.receipt-price strong {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
}

.coin-receipt .button {
    margin-top: auto;
}

.button:disabled {
    cursor: not-allowed;
    filter: grayscale(0.6);
    opacity: 0.46;
}

.stripe-copy {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 9px;
    line-height: 1.55;
    text-align: center;
}

.donate-faq {
    padding: clamp(28px, 4vw, 46px);
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(135deg, rgba(217, 169, 78, 0.055), transparent 38%),
        rgba(6, 8, 12, 0.34);
    -webkit-backdrop-filter: blur(10px) saturate(108%);
    backdrop-filter: blur(10px) saturate(108%);
}

.donate-faq-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 24px;
}

.donate-faq-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(34px, 4vw, 52px);
}

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

.donate-faq-grid details {
    min-height: 128px;
    padding: 24px 30px 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.donate-faq-grid details:nth-child(odd) {
    padding-right: 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.donate-faq-grid details:nth-child(even) {
    padding-left: 36px;
}

.donate-faq-grid details:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.donate-faq-grid summary {
    position: relative;
    padding-right: 28px;
    color: var(--cream);
    cursor: pointer;
    font-family: var(--serif);
    font-size: 20px;
    list-style: none;
}

.donate-faq-grid summary::-webkit-details-marker {
    display: none;
}

.donate-faq-grid summary::after {
    position: absolute;
    top: 1px;
    right: 0;
    color: var(--gold);
    content: "+";
    font-family: var(--sans);
    font-size: 15px;
}

.donate-faq-grid details[open] summary::after {
    content: "−";
}

.donate-faq-grid p {
    max-width: 560px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.75;
}

@media (max-width: 980px) {
    .coin-builder {
        grid-template-columns: 1fr;
    }

    .coin-receipt {
        border-top: 1px solid rgba(255, 255, 255, 0.11);
        border-left: 0;
    }

    .donate-faq-grid {
        grid-template-columns: 1fr;
    }

    .donate-faq-grid details,
    .donate-faq-grid details:nth-child(odd),
    .donate-faq-grid details:nth-child(even) {
        min-height: 0;
        padding: 22px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .donate-faq-grid details:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 620px) {
    .donate-hero {
        min-height: 420px;
    }

    .coin-builder-heading {
        display: grid;
        margin-bottom: 34px;
    }

    .rate-chip {
        justify-self: start;
    }

    .coin-amount-input input {
        min-height: 82px;
        font-size: 58px;
    }

    .delivery-options {
        grid-template-columns: 1fr;
    }

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

/* Homepage crystal-glass pass: keep the continuous artwork visible. */
.hero,
.intro-section,
.rates-section,
.ranking-section,
.account-advantage,
.news-section {
    background:
        radial-gradient(circle at 50% 0, rgba(217, 169, 78, 0.018), transparent 31rem),
        linear-gradient(180deg, rgba(5, 7, 10, 0.025), rgba(5, 7, 10, 0.105));
}

.hero-vignette {
    background:
        linear-gradient(90deg, rgba(4, 5, 8, 0.255) 0%, rgba(4, 5, 8, 0.038) 39%, rgba(4, 5, 8, 0.012) 68%, rgba(4, 5, 8, 0.052) 100%),
        linear-gradient(0deg, rgba(5, 7, 10, 0.125) 0%, transparent 34%, rgba(5, 7, 10, 0.06) 100%);
}

.season-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.018), rgba(8, 10, 15, 0.015)),
        rgba(5, 7, 11, 0.105);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 20px 52px rgba(0, 0, 0, 0.12);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.feature-grid,
.rates-grid {
    background: rgba(6, 8, 12, 0.035);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.feature-card,
.prefix-visual,
.news-card {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.004)),
        rgba(6, 8, 12, 0.17);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 24px 70px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(9px) saturate(108%);
    backdrop-filter: blur(9px) saturate(108%);
}

.ranking-panel {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006)),
        rgba(5, 7, 11, 0.29);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.065),
        0 24px 70px rgba(0, 0, 0, 0.22);
    -webkit-backdrop-filter: blur(12px) saturate(108%);
    backdrop-filter: blur(12px) saturate(108%);
}

.ranking-row {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.72);
}

.rates-grid > div {
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.025), transparent 60%),
        rgba(6, 8, 12, 0.075);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.world-panel {
    background:
        linear-gradient(0deg, rgba(5, 8, 13, 0.38), rgba(5, 8, 13, 0.035)),
        rgba(6, 8, 12, 0.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.075),
        0 24px 70px rgba(0, 0, 0, 0.18);
    -webkit-backdrop-filter: blur(5px) saturate(106%);
    backdrop-filter: blur(5px) saturate(106%);
}

.world-panel::before {
    background: radial-gradient(circle at 50% 28%, transparent, rgba(5, 7, 10, 0.28));
}

@media (max-width: 900px) {
    .download-grid {
        grid-template-columns: 1fr;
    }

    .download-card {
        min-height: 430px;
    }
}

@media (max-width: 680px) {
    .download-page {
        padding: 125px 0 80px;
    }

    .download-shell {
        gap: 32px;
    }

    .download-heading h1 {
        font-size: clamp(54px, 17vw, 74px);
    }

    .download-heading > p {
        font-size: 15px;
    }

    .download-card {
        min-height: 0;
        padding: 34px 26px 28px;
    }

    .download-card h2 {
        font-size: 42px;
    }

    .download-note {
        align-items: flex-start;
    }
}

.world-panel h2,
.world-number,
.world-stats,
.world-panel .text-link {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.82);
}

.ranking-tabs,
.ranking-tabs button {
    background-color: rgba(5, 7, 10, 0.15);
}

.site-footer {
    background: rgba(5, 7, 10, 0.28);
}

.site-header.is-scrolled {
    background: rgba(5, 7, 10, 0.4);
}

.final-cta {
    background: rgba(5, 7, 10, 0.16);
}

@media (max-width: 680px) {
    .feature-card,
    .prefix-visual,
    .news-card {
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006)),
            rgba(6, 8, 12, 0.26);
    }

    .ranking-panel {
        background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.007)),
            rgba(5, 7, 11, 0.36);
    }

    .world-panel {
        background:
            linear-gradient(0deg, rgba(5, 8, 13, 0.44), rgba(5, 8, 13, 0.08)),
            rgba(6, 8, 12, 0.12);
    }
}

/* Direct character coin delivery. */
.shop-product-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.item-icon {
    position: relative;
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    place-items: center;
    border: 1px solid rgba(217, 169, 78, 0.38);
    background:
        radial-gradient(circle, rgba(217, 169, 78, 0.2), transparent 68%),
        rgba(5, 7, 10, 0.86);
    box-shadow: inset 0 0 24px rgba(217, 169, 78, 0.08), 0 12px 32px rgba(0, 0, 0, 0.28);
}

.item-icon::before {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    content: "";
    inset: 5px;
}

.item-icon img,
.receipt-currency img {
    image-rendering: pixelated;
}

.item-icon img {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.7));
}

.item-icon-ancient {
    border-color: rgba(196, 153, 105, 0.42);
    background:
        radial-gradient(circle, rgba(151, 91, 46, 0.25), transparent 68%),
        rgba(5, 7, 10, 0.86);
}

.character-delivery {
    padding: 23px;
    border: 1px solid rgba(217, 169, 78, 0.25);
    background:
        linear-gradient(135deg, rgba(217, 169, 78, 0.09), transparent 45%),
        rgba(255, 255, 255, 0.018);
}

.character-delivery-copy {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 13px;
}

.character-delivery-copy div {
    display: grid;
    gap: 4px;
}

.character-delivery-copy b {
    color: #f0ece4;
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
}

.character-delivery-copy small {
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
}

.delivery-rune {
    color: var(--gold);
    font-size: 12px;
    line-height: 1.8;
}

.character-delivery .character-picker {
    margin-top: 0;
}

.receipt-currency {
    display: flex;
    align-items: center;
    gap: 7px;
}

.receipt-currency img {
    width: 22px;
    height: 22px;
}

@media (max-width: 520px) {
    .shop-product-title {
        align-items: flex-start;
    }

    .item-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

}

/* Keep the cinematic page edge clean while preserving native scrolling. */
html,
body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.scroll-cue {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 4;
    display: grid;
    justify-items: center;
    color: rgba(255, 255, 255, 0.82);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transform: translateX(-50%);
    gap: 10px;
}

.scroll-cue i {
    display: block;
    width: 11px;
    height: 11px;
    border-right: 1px solid var(--gold-light);
    border-bottom: 1px solid var(--gold-light);
    animation: scroll-cue-drop 1.8s ease-in-out infinite;
    transform: rotate(45deg);
}

.scroll-cue:hover {
    color: #fff;
}

@keyframes scroll-cue-drop {
    0%,
    100% {
        opacity: 0.45;
        transform: translateY(0) rotate(45deg);
    }

    50% {
        opacity: 1;
        transform: translateY(7px) rotate(45deg);
    }
}

@media (max-width: 680px) {
    .ranking-tabs button {
        flex: 0 0 auto;
    }

    .scroll-cue {
        bottom: 21px;
    }
}

/* Live auth polish: one continuous wallpaper with light glass forms. */
.auth-page {
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(5, 7, 10, 0.14), rgba(5, 7, 10, 0.22)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center / cover fixed no-repeat;
}

.auth-art {
    background:
        linear-gradient(0deg, rgba(5, 7, 10, 0.76), rgba(5, 7, 10, 0.03) 64%),
        linear-gradient(90deg, rgba(5, 7, 10, 0.06), rgba(5, 7, 10, 0.24));
}

.auth-panel {
    border-left: 1px solid rgba(255, 255, 255, 0.09);
    background:
        linear-gradient(90deg, rgba(5, 7, 10, 0.12), rgba(5, 7, 10, 0.28)),
        rgba(7, 9, 13, 0.12);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.auth-box {
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.006)),
        rgba(7, 9, 13, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 24px 80px rgba(0, 0, 0, 0.18);
    -webkit-backdrop-filter: blur(7px) saturate(106%);
    backdrop-filter: blur(7px) saturate(106%);
}

.check-label a,
.information-card a,
.fan-project-note a {
    color: var(--gold-light);
    text-decoration: underline;
    text-decoration-color: rgba(217, 169, 78, 0.4);
    text-underline-offset: 3px;
}

.checkout-consent {
    padding: 15px;
    margin-bottom: 16px;
    border: 1px solid rgba(217, 169, 78, 0.24);
    background: rgba(217, 169, 78, 0.045);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 18px;
}

.footer-legal a {
    color: var(--muted);
    font-size: 10px;
}

.footer-legal a:hover {
    color: var(--gold-light);
}

.account-service-notice {
    display: grid;
    grid-template-columns: auto 1fr;
    padding: 22px;
    margin: 30px 0 18px;
    border: 1px solid rgba(217, 169, 78, 0.34);
    background:
        linear-gradient(145deg, rgba(217, 169, 78, 0.08), transparent),
        rgba(8, 11, 16, 0.34);
    gap: 14px;
}

.account-service-notice .status-dot {
    margin-top: 7px;
    background: var(--gold);
    box-shadow: 0 0 0 5px rgba(217, 169, 78, 0.1);
}

.account-service-notice strong {
    display: block;
    margin-bottom: 8px;
    color: #f3ede2;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
}

.account-service-notice p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.information-page {
    min-height: 100vh;
    padding: 165px 0 100px;
    background:
        linear-gradient(180deg, rgba(5, 7, 10, 0.3), rgba(5, 7, 10, 0.48));
}

.information-shell {
    width: min(1180px, var(--container));
}

.information-heading {
    max-width: 830px;
    margin-bottom: 52px;
}

.information-heading h1 {
    margin: 15px 0 18px;
    font-size: clamp(55px, 7vw, 92px);
}

.information-heading p {
    max-width: 720px;
    color: #dedbd5;
    font-size: 16px;
}

.information-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 225px minmax(0, 1fr);
    gap: 22px;
}

.information-nav {
    position: sticky;
    top: 120px;
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(7, 9, 13, 0.28);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.information-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.information-nav a:last-child {
    border-bottom: 0;
}

.information-nav a:hover,
.information-nav a.is-active {
    background: rgba(217, 169, 78, 0.07);
    color: var(--gold-light);
}

.information-nav a.is-active {
    box-shadow: inset 2px 0 0 var(--gold);
}

.information-card {
    padding: clamp(30px, 5vw, 65px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.006)),
        rgba(7, 9, 13, 0.34);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(9px) saturate(106%);
    backdrop-filter: blur(9px) saturate(106%);
}

.information-card h2 {
    margin: 42px 0 12px;
    color: var(--cream);
    font-size: clamp(25px, 3vw, 34px);
}

.information-card h2:first-of-type {
    margin-top: 20px;
}

.information-card p,
.information-card li,
.information-card dd {
    color: #d8d5cf;
    font-size: 14px;
    line-height: 1.8;
}

.information-card ul {
    padding-left: 20px;
}

.information-card li + li {
    margin-top: 8px;
}

.operator-details {
    display: grid;
    margin: 22px 0 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.operator-details div {
    display: grid;
    padding: 17px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    gap: 5px;
}

.operator-details dt {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.operator-details dd {
    margin: 0;
    color: var(--cream);
}

.fan-project-note {
    display: grid;
    padding: 24px 28px;
    margin-top: 22px;
    border: 1px solid rgba(217, 169, 78, 0.22);
    background: rgba(7, 9, 13, 0.25);
    grid-template-columns: 190px 1fr;
    gap: 22px;
}

.fan-project-note strong {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
}

.fan-project-note p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.faq-list {
    display: grid;
}

.faq-list details {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.faq-list summary {
    position: relative;
    padding: 23px 44px 23px 0;
    color: var(--cream);
    cursor: pointer;
    font-family: var(--serif);
    font-size: 22px;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    position: absolute;
    top: 24px;
    right: 4px;
    color: var(--gold);
    content: "+";
    font-family: var(--sans);
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    padding: 0 35px 23px 0;
    margin: 0;
}

.acp-form-divider {
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.acp-form-divider p {
    margin: 7px 0 0;
}

@media (max-width: 900px) {
    .information-layout {
        grid-template-columns: 1fr;
    }

    .information-nav {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .footer-legal {
        justify-content: flex-start;
    }

    .information-page {
        padding: 120px 0 75px;
    }

    .information-heading {
        margin-bottom: 34px;
    }

    .information-nav {
        grid-template-columns: 1fr;
    }

    .information-card {
        padding: 28px 22px;
    }

    .operator-details {
        grid-template-columns: 1fr;
    }

    .fan-project-note {
        grid-template-columns: 1fr;
    }
}

/* Mirrored homepage concept using the original painted Interlude wallpapers. */
.page-prototype {
    background: #07080b;
}

.page-prototype .site-footer {
    display: none;
}

.prototype-hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    overflow: hidden;
    align-items: center;
    isolation: isolate;
    background: #090a0e;
}

.prototype-hero-backdrop,
.prototype-hero-vignette {
    position: absolute;
    inset: 0;
}

.prototype-hero-backdrop {
    z-index: -3;
    background-position: center;
    background-size: cover;
    transform: scaleX(-1) scale(1.012);
    transition: opacity 240ms ease, filter 240ms ease;
}

.prototype-hero[data-wallpaper="sunset"] .prototype-hero-backdrop {
    background-image: url("wallpapers/17-interlude-painted-sunset-party.webp");
}

.prototype-hero[data-wallpaper="arsenal"] .prototype-hero-backdrop {
    background-image: url("wallpapers/24-interlude-sunset-lineage-arsenal.webp");
}

.prototype-hero[data-wallpaper="refined"] .prototype-hero-backdrop {
    background-image: url("wallpapers/25-interlude-sunset-refined-faces.webp");
}

.prototype-hero[data-wallpaper="redraw"] .prototype-hero-backdrop {
    background-image: url("wallpapers/26-interlude-sunset-character-redraw.webp");
}

.prototype-hero[data-wallpaper="siege"] .prototype-hero-backdrop {
    background-image: url("wallpapers/18-interlude-painted-pvp-siege.webp");
}

.prototype-hero[data-wallpaper="elven"] .prototype-hero-backdrop {
    background-image: url("wallpapers/19-interlude-elven-sanctuary.webp");
}

.prototype-hero[data-wallpaper="shilen"] .prototype-hero-backdrop {
    background-image: url("wallpapers/20-interlude-shilen-temple.webp");
}

.prototype-hero[data-wallpaper="dwarven"] .prototype-hero-backdrop {
    background-image: url("wallpapers/21-interlude-dwarven-village.webp");
}

.prototype-hero[data-wallpaper="aden"] .prototype-hero-backdrop {
    background-image: url("wallpapers/22-interlude-aden-castle.webp");
}

.prototype-hero[data-wallpaper="ivory"] .prototype-hero-backdrop {
    background-image: url("wallpapers/23-interlude-ivory-tower.webp");
}

.prototype-hero-vignette {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(5, 6, 9, 0.12) 0%, rgba(5, 6, 9, 0.015) 42%, rgba(5, 6, 9, 0.28) 69%, rgba(5, 6, 9, 0.72) 100%),
        linear-gradient(0deg, rgba(5, 6, 9, 0.48) 0%, transparent 31%, rgba(5, 6, 9, 0.28) 100%);
}

.prototype-hero[data-wallpaper="sunset"] .prototype-hero-vignette,
.prototype-hero[data-wallpaper="arsenal"] .prototype-hero-vignette,
.prototype-hero[data-wallpaper="refined"] .prototype-hero-vignette,
.prototype-hero[data-wallpaper="redraw"] .prototype-hero-vignette {
    background:
        linear-gradient(90deg, rgba(28, 18, 24, 0.14) 0%, rgba(28, 18, 24, 0.01) 42%, rgba(15, 12, 18, 0.27) 69%, rgba(7, 7, 11, 0.7) 100%),
        linear-gradient(0deg, rgba(8, 7, 11, 0.45) 0%, transparent 34%, rgba(25, 18, 24, 0.18) 100%);
}

.prototype-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
    align-items: end;
    padding-top: 155px;
    padding-bottom: 132px;
    gap: clamp(70px, 10vw, 170px);
}

.prototype-season-card {
    width: min(390px, 100%);
    margin: 0 0 4px;
    justify-self: start;
    background:
        linear-gradient(145deg, rgba(14, 16, 22, 0.34), rgba(6, 7, 11, 0.16)),
        rgba(7, 8, 12, 0.13);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 24px 70px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(3px) saturate(110%);
    backdrop-filter: blur(3px) saturate(110%);
}

.prototype-hero-copy {
    max-width: 720px;
    justify-self: end;
    text-align: right;
}

.prototype-hero-copy .eyebrow {
    justify-content: flex-end;
}

.prototype-hero-copy h1 {
    margin: 24px 0 18px;
    color: var(--cream);
    font-size: clamp(58px, 5.8vw, 94px);
    letter-spacing: -0.062em;
    line-height: 0.88;
    text-shadow: 0 10px 38px rgba(0, 0, 0, 0.72);
    text-transform: uppercase;
    white-space: nowrap;
}

.prototype-hero-copy .hero-lead,
.prototype-hero-copy .hero-sub {
    margin-left: auto;
}

.prototype-hero-copy .hero-actions,
.prototype-hero-copy .hero-trust {
    justify-content: flex-end;
}

.prototype-wallpaper-switcher {
    position: absolute;
    z-index: 4;
    right: 50%;
    bottom: 30px;
    display: flex;
    align-items: center;
    max-width: calc(100% - 32px);
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(6, 8, 12, 0.26);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transform: translateX(50%);
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.prototype-wallpaper-switcher > span {
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.prototype-wallpaper-switcher button {
    padding: 9px 10px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.68);
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.prototype-wallpaper-switcher button:hover,
.prototype-wallpaper-switcher button:focus-visible,
.prototype-wallpaper-switcher button.is-active {
    background: rgba(217, 169, 78, 0.16);
    color: var(--gold-light);
}

@media (max-width: 1180px) {
    .prototype-hero-inner {
        grid-template-columns: 310px minmax(0, 1fr);
        gap: 48px;
    }

    .prototype-hero-copy h1 {
        font-size: clamp(52px, 6.6vw, 74px);
    }
}

@media (max-width: 900px) {
    .prototype-hero {
        min-height: 1060px;
    }

    .prototype-hero-backdrop {
        background-position: center top;
        opacity: 0.78;
    }

    .prototype-hero-vignette,
    .prototype-hero[data-wallpaper="sunset"] .prototype-hero-vignette,
    .prototype-hero[data-wallpaper="arsenal"] .prototype-hero-vignette,
    .prototype-hero[data-wallpaper="refined"] .prototype-hero-vignette,
    .prototype-hero[data-wallpaper="redraw"] .prototype-hero-vignette {
        background:
            linear-gradient(0deg, rgba(6, 7, 10, 0.88) 0%, rgba(6, 7, 10, 0.34) 56%, rgba(6, 7, 10, 0.4) 100%),
            linear-gradient(90deg, rgba(6, 7, 10, 0.18), rgba(6, 7, 10, 0.05));
    }

    .prototype-hero-inner {
        grid-template-columns: 1fr;
        align-content: end;
        padding-top: 155px;
        padding-bottom: 130px;
        gap: 34px;
    }

    .prototype-hero-copy {
        grid-row: 1;
        max-width: 660px;
        justify-self: end;
    }

    .prototype-season-card {
        grid-row: 2;
        width: min(430px, 100%);
    }
}

@media (max-width: 680px) {
    .prototype-hero {
        min-height: 1120px;
    }

    .prototype-hero-backdrop {
        background-position: 46% top;
    }

    .prototype-hero-inner {
        padding-top: 125px;
        padding-bottom: 145px;
    }

    .prototype-hero-copy {
        text-align: left;
    }

    .prototype-hero-copy .eyebrow,
    .prototype-hero-copy .hero-actions,
    .prototype-hero-copy .hero-trust {
        justify-content: flex-start;
    }

    .prototype-hero-copy .hero-sub,
    .prototype-hero-copy .hero-lead {
        margin-left: 0;
    }

    .prototype-hero-copy h1 {
        font-size: clamp(42px, 12.8vw, 58px);
        white-space: normal;
    }

    .prototype-wallpaper-switcher {
        bottom: 24px;
        width: calc(100% - 28px);
        justify-content: center;
    }

    .prototype-wallpaper-switcher > span {
        display: none;
    }
}

/* Refined Faces: selected site-wide composition, mirrored like the prototype. */
body.page-home {
    background:
        linear-gradient(180deg, rgba(4, 6, 9, 0.3), rgba(5, 7, 10, 0.5)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center top / cover fixed no-repeat;
}

.page-home .hero-inner {
    grid-template-columns: minmax(320px, 0.72fr) minmax(560px, 1.28fr);
    gap: clamp(70px, 10vw, 170px);
}

.page-home .hero-copy {
    grid-column: 2;
    grid-row: 1;
    max-width: 720px;
    justify-self: end;
    text-align: right;
}

.page-home .hero-copy .eyebrow {
    justify-content: flex-end;
}

.page-home .hero-copy .hero-lead,
.page-home .hero-copy .hero-sub {
    margin-left: auto;
}

.page-home .hero-copy .hero-actions,
.page-home .hero-copy .hero-trust {
    justify-content: flex-end;
}

.page-home .season-card {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
}

.page-home .hero-vignette {
    background:
        linear-gradient(90deg, rgba(28, 18, 24, 0.14) 0%, rgba(28, 18, 24, 0.01) 42%, rgba(15, 12, 18, 0.27) 69%, rgba(7, 7, 11, 0.7) 100%),
        linear-gradient(0deg, rgba(8, 7, 11, 0.45) 0%, transparent 34%, rgba(25, 18, 24, 0.18) 100%);
}

@media (max-width: 1180px) {
    .page-home .hero-inner {
        grid-template-columns: 310px minmax(0, 1fr);
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .page-home .hero-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .page-home .hero-copy {
        grid-column: 1;
        grid-row: 1;
        max-width: 660px;
    }

    .page-home .season-card {
        grid-column: 1;
        grid-row: 2;
        width: min(430px, 100%);
    }

    .page-home .hero-vignette {
        background:
            linear-gradient(0deg, rgba(6, 7, 10, 0.88) 0%, rgba(6, 7, 10, 0.34) 56%, rgba(6, 7, 10, 0.4) 100%),
            linear-gradient(90deg, rgba(6, 7, 10, 0.18), rgba(6, 7, 10, 0.05));
    }
}

@media (max-width: 680px) {
    .page-home .hero-copy {
        justify-self: start;
        text-align: left;
    }

    .page-home .hero-copy .eyebrow,
    .page-home .hero-copy .hero-actions,
    .page-home .hero-copy .hero-trust {
        justify-content: flex-start;
    }

    .page-home .hero-copy .hero-lead,
    .page-home .hero-copy .hero-sub {
        margin-left: 0;
    }

    .page-home .hero h1.hero-title-single {
        white-space: normal;
    }
}

/* Dedicated server news archive. */
body.page-news {
    background:
        linear-gradient(180deg, rgba(4, 6, 9, 0.3), rgba(5, 7, 10, 0.56)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center top / cover fixed no-repeat;
}

.news-page {
    min-height: 100vh;
    padding: clamp(145px, 13vw, 190px) 0 110px;
    background:
        linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.3));
}

.news-page-shell {
    display: grid;
    gap: 48px;
}

.news-page-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    align-items: end;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    gap: 60px;
}

.news-page-heading h1 {
    margin: 16px 0 0;
    color: var(--cream);
    font-family: var(--serif);
    font-size: clamp(58px, 6vw, 92px);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.94;
}

.news-page-heading > p {
    max-width: 520px;
    margin: 0 0 4px;
    color: rgba(235, 231, 225, 0.72);
    font-size: 16px;
}

.news-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.news-page .news-card {
    min-height: 360px;
    padding: clamp(30px, 3vw, 44px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.006)),
        rgba(6, 8, 12, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 28px 80px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px) saturate(108%);
    backdrop-filter: blur(10px) saturate(108%);
}

.news-page .news-card-featured {
    border-color: rgba(217, 169, 78, 0.32);
    background:
        linear-gradient(145deg, rgba(98, 42, 32, 0.22), rgba(255, 255, 255, 0.008)),
        rgba(7, 8, 12, 0.32);
}

.news-page .news-card h2 {
    margin: 42px 0 18px;
    color: var(--cream);
    font-family: var(--serif);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.news-page .news-card > p {
    max-width: 610px;
    color: rgba(235, 231, 225, 0.68);
    font-size: 15px;
}

.news-page .news-body {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(235, 231, 225, 0.78);
    font-size: 14px;
}

.news-empty {
    max-width: 720px;
    padding: 46px;
}

.news-empty h2 {
    margin: 18px 0 12px;
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
}

.news-empty p {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 1040px) and (min-width: 901px) {
    .nav-toggle {
        display: block;
        grid-column: 3;
    }

    .site-nav {
        position: absolute;
        top: 82px;
        right: 0;
        left: 0;
        display: none;
        padding: 20px;
        border-bottom: 1px solid var(--glass-line);
        background: rgba(7, 9, 13, 0.84);
        -webkit-backdrop-filter: blur(24px) saturate(130%);
        backdrop-filter: blur(24px) saturate(130%);
        box-shadow: var(--shadow);
        text-align: center;
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a {
        padding: 13px;
    }

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

@media (max-width: 900px) {
    .news-page-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

@media (max-width: 680px) {
    .news-page {
        padding: 125px 0 80px;
    }

    .news-page-shell {
        gap: 30px;
    }

    .news-page-heading {
        padding-bottom: 27px;
    }

    .news-page-heading h1 {
        font-size: clamp(52px, 16vw, 70px);
    }

    .news-page-heading > p {
        font-size: 14px;
    }

    .news-page .news-card,
    .news-empty {
        min-height: 0;
        padding: 27px 22px;
    }
}

/* Centered landing experiment — prototype only. */
.prototype-hero-centered .prototype-hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 100svh;
    align-content: start;
    align-items: start;
    padding-top: 126px;
    padding-bottom: 122px;
    gap: 30px;
}

.prototype-hero-centered .prototype-hero-copy {
    grid-column: 1;
    grid-row: 1;
    width: min(1060px, 100%);
    max-width: none;
    justify-self: center;
    text-align: center;
}

.prototype-hero-centered .prototype-hero-copy .eyebrow,
.prototype-hero-centered .prototype-hero-copy .hero-actions,
.prototype-hero-centered .prototype-hero-copy .hero-trust {
    justify-content: center;
}

.prototype-hero-centered .prototype-hero-copy .hero-lead,
.prototype-hero-centered .prototype-hero-copy .hero-sub {
    margin-right: auto;
    margin-left: auto;
}

.prototype-hero-centered .prototype-hero-copy h1 {
    margin: 20px 0 16px;
    font-size: clamp(64px, 7vw, 108px);
    letter-spacing: -0.064em;
    line-height: 0.88;
}

.prototype-hero-centered .prototype-hero-copy .hero-sub {
    max-width: 690px;
    margin-bottom: 25px;
}

.prototype-hero-centered .prototype-hero-copy .hero-trust {
    margin-top: 24px;
}

.prototype-hero-centered .prototype-season-card {
    grid-column: 1;
    grid-row: 2;
    width: min(720px, 100%);
    align-self: start;
    justify-self: center;
    margin: 0;
}

.prototype-hero-centered .prototype-season-card .season-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prototype-hero-centered .prototype-season-card .season-services > div {
    border-bottom: 0;
}

.prototype-hero-centered .prototype-season-card .season-services > div:first-child {
    border-right: 1px solid var(--line);
}

.prototype-hero-centered .prototype-hero-vignette {
    background:
        linear-gradient(180deg, rgba(7, 7, 11, 0.68) 0%, rgba(15, 12, 18, 0.12) 31%, rgba(12, 10, 15, 0.06) 68%, rgba(7, 7, 11, 0.55) 100%),
        radial-gradient(ellipse at 50% 18%, rgba(6, 7, 11, 0.32), transparent 52%);
}

@media (max-width: 900px) {
    .prototype-hero-centered {
        min-height: 1100px;
    }

    .prototype-hero-centered .prototype-hero-inner {
        min-height: 1100px;
        padding-top: 125px;
        padding-bottom: 140px;
        gap: 30px;
    }

    .prototype-hero-centered .prototype-hero-copy {
        max-width: 720px;
        justify-self: center;
    }

    .prototype-hero-centered .prototype-season-card {
        grid-row: 2;
        align-self: start;
        justify-self: center;
    }
}

@media (max-width: 680px) {
    .prototype-hero-centered {
        min-height: 1160px;
    }

    .prototype-hero-centered .prototype-hero-inner {
        min-height: 1160px;
        padding-top: 118px;
        padding-bottom: 150px;
    }

    .prototype-hero-centered .prototype-hero-copy {
        text-align: center;
    }

    .prototype-hero-centered .prototype-hero-copy .eyebrow,
    .prototype-hero-centered .prototype-hero-copy .hero-actions,
    .prototype-hero-centered .prototype-hero-copy .hero-trust {
        justify-content: center;
    }

    .prototype-hero-centered .prototype-hero-copy h1 {
        font-size: clamp(43px, 13vw, 58px);
        white-space: normal;
    }

    .prototype-hero-centered .prototype-season-card {
        width: 100%;
    }

    .prototype-hero-centered .prototype-season-card .season-services {
        grid-template-columns: 1fr;
    }

    .prototype-hero-centered .prototype-season-card .season-services > div:first-child {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
}

/* Dedicated live rankings archive. */
.rankings-page {
    min-height: 100vh;
    padding: clamp(142px, 12vw, 180px) 0 110px;
    background:
        radial-gradient(circle at 50% 4%, rgba(217, 169, 78, 0.055), transparent 32rem),
        linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.28));
}

.rankings-page-shell {
    display: grid;
    gap: 46px;
}

.rankings-page-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.72fr);
    align-items: end;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    gap: clamp(42px, 7vw, 95px);
}

.rankings-page-heading h1 {
    margin: 18px 0 0;
    color: var(--cream);
    font-size: clamp(62px, 7vw, 104px);
    letter-spacing: -0.062em;
    line-height: 0.82;
    text-transform: uppercase;
}

.rankings-page-heading h1 em {
    font-size: 0.78em;
    text-transform: none;
}

.rankings-page-intro {
    display: grid;
    gap: 22px;
}

.rankings-page-intro p {
    margin: 0;
    color: rgba(235, 231, 225, 0.72);
    font-size: 16px;
}

.ranking-connection {
    display: inline-flex;
    align-items: center;
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    gap: 10px;
}

.rankings-page-panel {
    padding: clamp(24px, 3vw, 42px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.006)),
        rgba(5, 7, 11, 0.27);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.065),
        0 30px 90px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px) saturate(108%);
    backdrop-filter: blur(10px) saturate(108%);
}

.rankings-page-panel .ranking-row {
    min-height: 76px;
}

.ranking-empty {
    display: grid;
    min-height: 300px;
    place-content: center;
    padding: 50px 24px;
    text-align: center;
}

.ranking-empty strong {
    margin: 15px 0 9px;
    color: var(--cream);
    font-family: var(--serif);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 400;
}

.ranking-empty p {
    max-width: 540px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 900px) {
    .rankings-page-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .rankings-page {
        padding: 122px 0 80px;
    }

    .rankings-page-shell {
        gap: 30px;
    }

    .rankings-page-heading {
        padding-bottom: 27px;
    }

    .rankings-page-heading h1 {
        font-size: clamp(48px, 15vw, 64px);
    }

    .rankings-page-intro p {
        font-size: 14px;
    }

    .rankings-page-panel {
        padding: 16px;
    }

    .ranking-empty {
        min-height: 240px;
        padding: 38px 18px;
    }
}

/* Unified Refined Faces composition.
   Every live page uses one fixed wallpaper layer so sections never restart it. */
body:not(.page-prototype) {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
    background: transparent !important;
}

body:not(.page-prototype)::after {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(180deg, rgba(6, 7, 11, 0.34), rgba(6, 8, 12, 0.58)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center top / cover no-repeat;
    content: "";
    pointer-events: none;
}

body:not(.page-prototype) main {
    position: relative;
}

body:not(.page-prototype) :is(
    .hero,
    .rankings-page,
    .news-page,
    .download-page,
    .information-page,
    .donate-section,
    .dashboard-section,
    .simple-page
) {
    background:
        radial-gradient(circle at 72% 4%, rgba(217, 169, 78, 0.04), transparent 34rem),
        linear-gradient(180deg, rgba(5, 7, 10, 0.06), rgba(5, 7, 10, 0.24));
}

body:not(.page-prototype) :is(
    .sub-hero,
    .dashboard-hero,
    .acp-hero,
    .auth-page,
    .auth-art
) {
    background-image:
        linear-gradient(90deg, rgba(5, 7, 10, 0.18), rgba(5, 7, 10, 0.08)),
        linear-gradient(180deg, rgba(5, 7, 10, 0.08), rgba(5, 7, 10, 0.24));
    background-color: transparent;
}

body:not(.page-prototype) :is(
    .information-nav,
    .information-card,
    .fan-project-note,
    .rankings-page-panel,
    .news-card,
    .download-card,
    .login-gate,
    .bonus-banner,
    .coin-builder,
    .donate-faq,
    .panel,
    .auth-box
) {
    border-color: rgba(255, 255, 255, 0.13);
    background-color: rgba(6, 8, 12, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 28px 80px rgba(0, 0, 0, 0.2);
    -webkit-backdrop-filter: blur(10px) saturate(108%);
    backdrop-filter: blur(10px) saturate(108%);
}

body:not(.page-prototype) .site-header {
    background: linear-gradient(180deg, rgba(6, 7, 11, 0.38), rgba(6, 7, 11, 0.12));
    -webkit-backdrop-filter: blur(7px) saturate(108%);
    backdrop-filter: blur(7px) saturate(108%);
}

body:not(.page-prototype) .site-header.is-scrolled {
    background: rgba(6, 8, 12, 0.58);
    -webkit-backdrop-filter: blur(16px) saturate(112%);
    backdrop-filter: blur(16px) saturate(112%);
}

body:not(.page-prototype) .site-footer {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent),
        rgba(5, 7, 10, 0.4);
    -webkit-backdrop-filter: blur(12px) saturate(108%);
    backdrop-filter: blur(12px) saturate(108%);
}

/* Mirrored page headings sit in the open half of the artwork. */
.page-donate .donate-hero {
    min-height: clamp(470px, 64svh, 650px);
    padding: 0;
    text-align: right;
}

.page-donate .donate-hero .sub-hero-content {
    width: min(700px, 56%);
    min-height: inherit;
    align-content: center;
    justify-items: end;
    padding-top: 132px;
    padding-bottom: 72px;
    margin-right: max(24px, calc((100vw - var(--container)) / 2));
    margin-left: auto;
}

.page-donate .donate-hero p {
    margin-left: auto;
}

.page-download .download-heading,
.information-heading {
    margin-right: 0;
    margin-left: auto;
    text-align: right;
}

.page-download .download-heading > p,
.information-heading p {
    margin-right: 0;
    margin-left: auto;
}

.page-news .news-page-heading,
.page-rankings .rankings-page-heading {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.1fr);
}

.page-news .news-page-heading > div,
.page-rankings .rankings-page-heading > div:first-child {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
}

.page-news .news-page-heading > p,
.page-rankings .rankings-page-intro {
    grid-column: 1;
    grid-row: 1;
}

.page-account .dashboard-head,
.page-acp .acp-hero-inner {
    flex-direction: row-reverse;
}

.page-account .dashboard-head > div:first-child,
.page-acp .acp-hero-inner > div:first-child {
    margin-left: auto;
    text-align: right;
}

@media (max-width: 900px) {
    .page-news .news-page-heading,
    .page-rankings .rankings-page-heading {
        grid-template-columns: 1fr;
    }

    .page-news .news-page-heading > div,
    .page-rankings .rankings-page-heading > div:first-child,
    .page-news .news-page-heading > p,
    .page-rankings .rankings-page-intro {
        grid-column: 1;
        grid-row: auto;
    }

    .page-news .news-page-heading > div,
    .page-rankings .rankings-page-heading > div:first-child {
        text-align: left;
    }
}

@media (max-width: 680px) {
    body:not(.page-prototype)::after {
        background-position: 34% top;
    }

    .page-donate .donate-hero {
        min-height: 500px;
        text-align: left;
    }

    .page-donate .donate-hero .sub-hero-content {
        width: var(--container);
        min-height: inherit;
        justify-items: start;
        padding-top: 138px;
        padding-bottom: 62px;
        margin-inline: auto;
    }

    .page-donate .donate-hero p,
    .page-download .download-heading > p,
    .information-heading p {
        margin-left: 0;
    }

    .page-download .download-heading,
    .information-heading {
        text-align: left;
    }

    .page-account .dashboard-head,
    .page-acp .acp-hero-inner {
        flex-direction: column;
    }

    .page-account .dashboard-head > div:first-child,
    .page-acp .acp-hero-inner > div:first-child {
        margin-left: 0;
        text-align: left;
    }
}

/* Prototype: typography-first controls that leave the artwork unobstructed. */
.page-prototype .prototype-hero-centered .prototype-hero-inner {
    gap: clamp(18px, 2.4vh, 28px);
}

.page-prototype .prototype-hero-centered .prototype-season-card {
    width: min(760px, 100%);
    border: 0;
    background: transparent;
    box-shadow: none;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.92);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.page-prototype .prototype-season-card .season-card-head {
    padding: 0 4px 12px;
    border: 0;
}

.page-prototype .prototype-season-card .season-card-head span {
    color: rgba(255, 255, 255, 0.74);
}

.page-prototype .prototype-season-card .season-card-head strong {
    color: var(--gold-light);
    font-size: 19px;
}

.page-prototype .prototype-season-card .countdown {
    padding: 10px 0 18px;
}

.page-prototype .prototype-season-card .countdown > div {
    border-color: rgba(255, 255, 255, 0.12);
}

.page-prototype .prototype-season-card .countdown strong {
    color: #fffaf0;
    font-size: clamp(31px, 3vw, 39px);
}

.page-prototype .prototype-season-card .countdown span {
    color: rgba(255, 255, 255, 0.62);
}

.page-prototype .prototype-season-card .season-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 0;
    gap: clamp(28px, 6vw, 72px);
}

.page-prototype .prototype-season-card .season-services > div,
.page-prototype .prototype-season-card .season-services > div:first-child {
    min-height: 40px;
    padding: 10px 4px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    background: transparent;
}

.page-prototype .prototype-season-card .season-services span {
    color: rgba(255, 255, 255, 0.68);
}

.page-prototype .prototype-hero-copy .hero-actions {
    align-items: center;
    gap: clamp(24px, 4vw, 54px);
}

.page-prototype .prototype-hero-copy .hero-actions .button {
    position: relative;
    min-height: 0;
    padding: 12px 2px 11px;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.page-prototype .prototype-hero-copy .hero-actions .button-primary {
    color: var(--gold-light);
}

.page-prototype .prototype-hero-copy .hero-actions .button::after {
    position: absolute;
    right: 50%;
    bottom: 2px;
    left: 50%;
    height: 1px;
    background: currentColor;
    content: "";
    opacity: 0.65;
    transition: right 180ms ease, left 180ms ease, opacity 180ms ease;
}

.page-prototype .prototype-hero-copy .hero-actions .button:hover {
    background: transparent;
    box-shadow: none;
    color: #ffe09a;
    transform: translateY(-1px);
}

.page-prototype .prototype-hero-copy .hero-actions .button:hover::after,
.page-prototype .prototype-hero-copy .hero-actions .button:focus-visible::after {
    right: 2px;
    left: 2px;
    opacity: 1;
}

@media (max-width: 680px) {
    .page-prototype .prototype-hero-copy .hero-actions {
        gap: 16px 26px;
    }

    .page-prototype .prototype-hero-copy .hero-actions .button {
        padding-inline: 0;
        font-size: 10px;
    }

    .page-prototype .prototype-season-card .season-services {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .page-prototype .prototype-season-card .season-services > div:first-child {
        border-bottom: 0;
    }
}

/* Rankings: retain table clarity while allowing more of the artwork through. */
body.page-rankings .rankings-page-panel {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.004)),
        rgba(5, 7, 11, 0.19);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 26px 76px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(7px) saturate(106%);
    backdrop-filter: blur(7px) saturate(106%);
}

.page-rankings .rankings-page-intro {
    align-self: end;
    padding-bottom: 10px;
    gap: 0;
}

.page-rankings .ranking-tabs,
.page-rankings .ranking-tabs button {
    background-color: rgba(5, 7, 10, 0.1);
}

.page-rankings .ranking-tabs button[aria-selected="true"] {
    background-color: rgba(217, 169, 78, 0.1);
}

@media (max-width: 900px) {
    .page-rankings .rankings-page-intro {
        padding-bottom: 0;
    }
}

/* Brightness alignment: keep the live site as vivid as the approved prototype. */
body:not(.page-prototype)::after {
    background:
        linear-gradient(180deg, rgba(6, 7, 11, 0.16), rgba(6, 8, 12, 0.32)),
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center top / cover no-repeat;
}

body:not(.page-prototype) :is(
    .hero,
    .rankings-page,
    .news-page,
    .download-page,
    .information-page,
    .donate-section,
    .dashboard-section,
    .simple-page
) {
    background:
        radial-gradient(circle at 72% 4%, rgba(217, 169, 78, 0.025), transparent 34rem),
        linear-gradient(180deg, rgba(5, 7, 10, 0.035), rgba(5, 7, 10, 0.16));
}

body:not(.page-prototype) .site-header {
    background: linear-gradient(180deg, rgba(6, 7, 11, 0.28), rgba(6, 7, 11, 0.07));
    -webkit-backdrop-filter: blur(5px) saturate(106%);
    backdrop-filter: blur(5px) saturate(106%);
}

body.page-home::after {
    background:
        url("wallpapers/25-interlude-sunset-refined-faces-mirrored.webp") center top / cover no-repeat;
}

body.page-home :is(
    .hero,
    .intro-section,
    .rates-section,
    .ranking-section,
    .account-advantage,
    .news-section
) {
    background:
        radial-gradient(circle at 72% 4%, rgba(217, 169, 78, 0.015), transparent 34rem),
        linear-gradient(180deg, rgba(5, 7, 10, 0.008), rgba(5, 7, 10, 0.08));
}

body.page-home .hero {
    background: transparent;
}

body.page-home .site-header {
    background: linear-gradient(180deg, rgba(6, 7, 11, 0.16), rgba(6, 7, 11, 0.025));
    -webkit-backdrop-filter: blur(3px) saturate(104%);
    backdrop-filter: blur(3px) saturate(104%);
}

@media (max-width: 900px) {
    body.page-home .hero-vignette {
        background:
            linear-gradient(0deg, rgba(6, 7, 10, 0.58) 0%, rgba(6, 7, 10, 0.16) 56%, rgba(6, 7, 10, 0.2) 100%),
            linear-gradient(90deg, rgba(6, 7, 10, 0.12), rgba(6, 7, 10, 0.025));
    }
}

/* Readability pass for secondary copy over the brighter artwork. */
:root {
    --muted: #c7c5c0;
}

body main p {
    color: #d8d5cf;
}

body main :is(small, .muted) {
    color: #c7c5c0;
}

.hero-sub,
.download-heading > p,
.news-page-heading > p,
.news-page .news-card > p,
.news-page .news-body,
.rankings-page-intro p {
    color: #dedbd5;
}

.hero-trust {
    color: #ceccc7;
}

body :is(
    .hero-copy,
    .prototype-hero-copy,
    .prototype-season-card,
    .rankings-page-heading,
    .news-page-heading,
    .download-heading,
    .sub-hero-content,
    .dashboard-head,
    .final-cta-inner,
    .section-heading
) {
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.82),
        0 0 16px rgba(0, 0, 0, 0.34);
}

input::placeholder,
textarea::placeholder {
    color: #aaa9a6;
    opacity: 1;
}

/* Core experience carousel: one open, fully transparent feature at a time. */
.feature-carousel {
    position: relative;
    max-width: 1080px;
    margin-inline: auto;
    outline: none;
}

.feature-carousel:focus-visible {
    outline: 1px solid rgba(217, 169, 78, 0.46);
    outline-offset: 12px;
}

.feature-carousel-stage {
    display: grid;
    min-height: 335px;
    align-items: center;
}

.feature-slide {
    grid-area: 1 / 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
    align-items: center;
    padding: 34px clamp(72px, 9vw, 126px);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(32px, 0, 0);
    transition:
        opacity 320ms ease,
        transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 320ms;
    gap: clamp(48px, 7vw, 92px);
}

.feature-carousel[data-direction="previous"] .feature-slide {
    transform: translate3d(-32px, 0, 0);
}

.feature-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.feature-slide-heading {
    position: relative;
    display: grid;
    justify-items: start;
}

.feature-slide .feature-number {
    position: static;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.95),
        0 3px 16px rgba(0, 0, 0, 0.88);
}

.feature-slide .feature-icon {
    width: 68px;
    height: 68px;
    margin: 0 0 30px 6px;
    border-color: rgba(217, 169, 78, 0.48);
    background: rgba(217, 169, 78, 0.025);
    color: var(--gold-light);
    box-shadow: 0 0 34px rgba(217, 169, 78, 0.08);
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.82));
}

.feature-slide h3 {
    margin: 0;
    color: var(--cream);
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 67px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 0.95;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.98),
        0 4px 22px rgba(0, 0, 0, 0.92);
}

.feature-slide-copy {
    max-width: 540px;
    padding-top: 42px;
}

.feature-slide-copy p {
    margin: 0;
    color: #f1eee8;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.75;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 1),
        0 3px 15px rgba(0, 0, 0, 0.95);
}

.feature-slide-copy ul {
    display: grid;
    padding: 0;
    margin: 28px 0 0;
    gap: 10px;
    list-style: none;
}

.feature-slide-copy li {
    color: #eeeae3;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.02em;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 1),
        0 2px 12px rgba(0, 0, 0, 0.98);
}

.feature-slide-copy li::before {
    margin-right: 10px;
    color: var(--gold);
    content: "◆";
    font-size: 7px;
}

.feature-carousel-controls {
    display: grid;
    grid-template-columns: 60px auto 60px;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    gap: 34px;
}

.feature-carousel-arrow {
    display: grid;
    width: 60px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    place-items: center;
    transition: color 180ms ease, transform 180ms ease;
}

.feature-carousel-arrow span {
    font-size: 30px;
    font-weight: 300;
    line-height: 1;
}

.feature-carousel-arrow:hover,
.feature-carousel-arrow:focus-visible {
    color: var(--gold-light);
}

.feature-carousel-arrow:first-child:hover {
    transform: translateX(-4px);
}

.feature-carousel-arrow:last-child:hover {
    transform: translateX(4px);
}

.feature-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.feature-carousel-dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition:
        width 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease;
}

.feature-carousel-dots button:hover,
.feature-carousel-dots button:focus-visible {
    border-color: var(--gold-light);
}

.feature-carousel-dots button.is-active {
    width: 22px;
    border-color: var(--gold);
    border-radius: 99px;
    background: var(--gold);
    box-shadow: 0 0 18px rgba(217, 169, 78, 0.5);
}

@media (max-width: 760px) {
    .feature-carousel-stage {
        min-height: 520px;
    }

    .feature-slide {
        grid-template-columns: 1fr;
        align-content: center;
        padding: 28px 24px;
        gap: 24px;
    }

    .feature-slide .feature-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 24px;
    }

    .feature-slide h3 {
        font-size: clamp(39px, 12vw, 54px);
    }

    .feature-slide-copy {
        padding-top: 0;
    }

    .feature-slide-copy p {
        font-size: 15px;
    }

    .feature-carousel-controls {
        grid-template-columns: 44px auto 44px;
        gap: 18px;
    }

    .feature-carousel-arrow {
        width: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-slide,
    .feature-carousel-arrow,
    .feature-carousel-dots button {
        transition: none;
    }
}

/* Searchable player wiki. */
.wiki-page {
    min-height: 100vh;
    padding: clamp(142px, 12vw, 180px) 0 110px;
    background:
        radial-gradient(circle at 72% 5%, rgba(217, 169, 78, 0.04), transparent 32rem),
        linear-gradient(180deg, rgba(5, 7, 10, 0.035), rgba(5, 7, 10, 0.16));
}

.wiki-page-shell {
    display: grid;
    gap: 34px;
}

.wiki-page-heading {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.1fr);
    align-items: end;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    gap: clamp(42px, 7vw, 95px);
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.82),
        0 0 16px rgba(0, 0, 0, 0.34);
}

.wiki-heading-copy {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
}

.wiki-page-heading h1 {
    margin: 18px 0 0;
    color: var(--text);
    font-size: clamp(64px, 7vw, 104px);
    letter-spacing: -0.062em;
    line-height: 0.82;
    text-transform: uppercase;
}

.wiki-page-heading h1 em {
    font-size: 0.78em;
    text-transform: none;
}

.wiki-page-intro {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    gap: 22px;
}

.wiki-page-intro > p {
    max-width: 500px;
    margin: 0;
    color: #dedbd5;
    font-size: 16px;
}

.wiki-search {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    width: min(500px, 100%);
    min-height: 56px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 7, 11, 0.24);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
    -webkit-backdrop-filter: blur(8px) saturate(108%);
    backdrop-filter: blur(8px) saturate(108%);
}

.wiki-search > span:first-child {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 26px;
    text-align: center;
}

.wiki-search input {
    width: 100%;
    height: 54px;
    padding: 0 18px 0 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #fff;
}

.wiki-search:focus-within {
    border-color: rgba(217, 169, 78, 0.62);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.06),
        0 0 0 3px rgba(217, 169, 78, 0.08);
}

.wiki-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.wiki-filters button {
    min-height: 38px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 7, 11, 0.16);
    color: #cfccc6;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.wiki-filters button:hover,
.wiki-filters button:focus-visible,
.wiki-filters button.is-active {
    border-color: rgba(217, 169, 78, 0.55);
    background: rgba(217, 169, 78, 0.1);
    color: var(--gold-light);
}

.wiki-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: start;
    gap: 24px;
}

.wiki-sidebar {
    position: sticky;
    top: 108px;
    padding: 28px 26px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent),
        rgba(5, 7, 11, 0.2);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.05),
        0 24px 70px rgba(0, 0, 0, 0.16);
    -webkit-backdrop-filter: blur(8px) saturate(108%);
    backdrop-filter: blur(8px) saturate(108%);
}

.wiki-sidebar nav {
    display: grid;
    margin-top: 22px;
}

.wiki-sidebar nav a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    color: #e5e1da;
    font-size: 12px;
    font-weight: 700;
    transition: color 150ms ease, padding-left 150ms ease;
}

.wiki-sidebar nav a span {
    color: rgba(255, 255, 255, 0.38);
    font-family: var(--serif);
    font-size: 16px;
}

.wiki-sidebar nav a:hover {
    padding-left: 4px;
    color: var(--gold-light);
}

.wiki-sidebar-links {
    display: grid;
    margin-top: 26px;
    gap: 10px;
}

.wiki-sidebar-links a {
    color: #c9c6c0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wiki-sidebar-links a:hover {
    color: var(--gold-light);
}

.wiki-entries {
    display: grid;
    gap: 12px;
}

.wiki-entry,
.wiki-empty {
    scroll-margin-top: 110px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.033), rgba(255, 255, 255, 0.004)),
        rgba(5, 7, 11, 0.2);
    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.05),
        0 26px 76px rgba(0, 0, 0, 0.14);
    -webkit-backdrop-filter: blur(7px) saturate(106%);
    backdrop-filter: blur(7px) saturate(106%);
}

.wiki-entry[hidden],
.wiki-empty[hidden] {
    display: none !important;
}

.wiki-entry summary {
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: space-between;
    padding: 24px clamp(24px, 4vw, 44px);
    cursor: pointer;
    list-style: none;
    gap: 22px;
}

.wiki-entry summary::-webkit-details-marker {
    display: none;
}

.wiki-entry summary > span {
    display: grid;
    gap: 7px;
}

.wiki-entry summary small {
    color: var(--gold-light);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wiki-entry summary strong {
    color: #f8f4ec;
    font-family: var(--serif);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.08;
}

.wiki-entry summary i {
    position: relative;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.wiki-entry summary i::before,
.wiki-entry summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1px;
    background: var(--gold-light);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 180ms ease;
}

.wiki-entry summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.wiki-entry[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.wiki-entry[open] summary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.wiki-entry-body {
    padding: clamp(28px, 4vw, 46px);
}

.wiki-entry-body > p:first-child {
    max-width: 780px;
    margin-bottom: 28px;
    color: #dedbd5;
    font-size: 16px;
}

.wiki-entry-body b {
    color: #f4efe6;
}

.wiki-steps,
.wiki-list {
    display: grid;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 1px;
}

.wiki-steps {
    counter-reset: wiki-step;
}

.wiki-steps li,
.wiki-list li {
    display: grid;
    grid-template-columns: minmax(170px, 0.42fr) minmax(0, 1fr);
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    gap: 24px;
}

.wiki-steps li {
    position: relative;
    padding-left: 42px;
    counter-increment: wiki-step;
}

.wiki-steps li::before {
    position: absolute;
    top: 18px;
    left: 0;
    color: var(--gold-light);
    content: counter(wiki-step, decimal-leading-zero);
    font-family: var(--serif);
    font-size: 18px;
}

.wiki-steps span,
.wiki-list span {
    color: #cfccc6;
    font-size: 14px;
}

.wiki-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.wiki-stat-grid > div {
    display: grid;
    min-height: 120px;
    align-content: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    gap: 10px;
}

.wiki-stat-grid small {
    color: #bbb9b4;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wiki-stat-grid strong {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: clamp(21px, 2.4vw, 29px);
    font-weight: 400;
    line-height: 1.05;
}

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

.wiki-copy-grid > div {
    padding: 0 clamp(18px, 2.4vw, 30px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.wiki-copy-grid > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.wiki-copy-grid h2 {
    margin-bottom: 13px;
    color: #f5f0e7;
    font-size: 23px;
    line-height: 1.12;
}

.wiki-copy-grid p {
    margin: 0;
    color: #cfccc6;
    font-size: 14px;
}

.wiki-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 28px;
    gap: 18px 34px;
}

.wiki-empty {
    display: grid;
    min-height: 260px;
    place-content: center;
    padding: 40px;
    text-align: center;
}

.wiki-empty strong {
    margin-top: 14px;
    color: #f6f1e8;
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
}

@media (max-width: 1040px) {
    .wiki-layout {
        grid-template-columns: 210px minmax(0, 1fr);
    }

    .wiki-copy-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .wiki-copy-grid > div,
    .wiki-copy-grid > div:first-child {
        padding: 0 0 26px;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 820px) {
    .wiki-page-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .wiki-heading-copy,
    .wiki-page-intro {
        grid-column: 1;
        grid-row: auto;
        text-align: left;
    }

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

    .wiki-sidebar {
        position: static;
    }

    .wiki-sidebar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 22px;
    }

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

@media (max-width: 560px) {
    .wiki-page {
        padding: 120px 0 76px;
    }

    .wiki-page-shell {
        gap: 24px;
    }

    .wiki-page-heading {
        padding-bottom: 26px;
    }

    .wiki-page-heading h1 {
        font-size: clamp(50px, 17vw, 68px);
    }

    .wiki-page-intro > p {
        font-size: 14px;
    }

    .wiki-filters {
        gap: 7px;
    }

    .wiki-filters button {
        padding-inline: 12px;
    }

    .wiki-sidebar {
        padding: 24px 20px;
    }

    .wiki-sidebar nav {
        grid-template-columns: 1fr;
    }

    .wiki-entry summary {
        min-height: 92px;
        padding: 20px;
    }

    .wiki-entry-body {
        padding: 24px 20px;
    }

    .wiki-steps li,
    .wiki-list li {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .wiki-stat-grid {
        grid-template-columns: 1fr;
    }
}

/* News publishing images */
.news-page .news-card {
    padding: 0;
    overflow: hidden;
}

.news-card-content {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(30px, 3vw, 44px);
}

.news-card-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(6, 8, 12, 0.38);
}

.news-card-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(6, 8, 12, 0.28));
    content: "";
    pointer-events: none;
}

.news-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.news-card.has-image:hover .news-card-media img {
    transform: scale(1.025);
}

.news-card-content .text-link {
    margin-top: auto;
}

.news-card-content .news-meta {
    width: 100%;
}

.news-page .news-card-content h2 {
    margin-top: 38px;
}

.news-editor {
    padding-top: 4px;
}

.news-image-editor {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    align-items: stretch;
    gap: 18px;
}

.news-image-editor.is-empty .news-image-drop {
    grid-column: 1 / -1;
}

.news-image-drop {
    align-content: center;
    min-height: 210px;
    padding: 24px;
    border: 1px dashed rgba(217, 169, 78, 0.42);
    background:
        radial-gradient(circle at 0 0, rgba(217, 169, 78, 0.1), transparent 18rem),
        rgba(255, 255, 255, 0.02);
}

.news-image-drop strong {
    color: var(--cream);
    font-family: var(--serif);
    font-size: 27px;
    font-weight: 400;
}

.news-image-drop small {
    color: #c9c5be;
}

.news-image-drop input[type="file"] {
    min-height: 46px;
    padding: 7px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 11px;
}

.news-image-drop input[type="file"]::file-selector-button {
    min-height: 32px;
    padding: 7px 12px;
    margin-right: 12px;
    border: 1px solid rgba(217, 169, 78, 0.45);
    background: rgba(217, 169, 78, 0.12);
    color: var(--gold-light);
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.news-image-preview {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(6, 8, 12, 0.35);
}

.news-image-preview[hidden] {
    display: none;
}

.news-image-preview img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
}

.news-image-preview .icon-danger {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(8, 9, 12, 0.84);
    backdrop-filter: blur(12px);
}

.news-admin-row {
    justify-content: flex-start;
}

.news-admin-row > div {
    min-width: 0;
    flex: 1;
}

.news-admin-row > form {
    margin-left: auto;
}

.news-admin-thumb {
    width: 78px;
    height: 50px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.13);
    object-fit: cover;
}

@media (min-width: 901px) {
    .news-page .news-card-featured.has-image {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    }

    .news-page .news-card-featured.has-image .news-card-media {
        min-height: 460px;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        border-bottom: 0;
        aspect-ratio: auto;
    }

    .news-page .news-card-featured.has-image .news-card-content {
        min-height: 460px;
    }
}

@media (max-width: 760px) {
    .news-image-editor {
        grid-template-columns: 1fr;
    }

    .news-card-content {
        min-height: 310px;
    }

    .news-admin-thumb {
        width: 58px;
        height: 44px;
    }
}
