:root {
    --ink: #11141a;
    --muted: #657180;
    --paper: #f4f0e7;
    --white: #ffffff;
    --line: rgba(17, 20, 26, 0.14);
    --night: #111822;
    --panel: #172231;
    --blue: #246bfe;
    --red: #d83131;
    --yellow: #e2a528;
    --green: #2f7d54;
    --shadow: 0 22px 60px rgba(17, 24, 34, 0.22);
    --radius: 8px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    transition: background 180ms ease, border 180ms ease, color 180ms ease;
}

.site-header.is-solid {
    color: var(--ink);
    background: rgba(244, 240, 231, 0.96);
    border-bottom-color: var(--line);
    backdrop-filter: blur(14px);
}

.nav {
    width: min(var(--max), calc(100% - 32px));
    min-height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand img {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--radius);
    object-fit: cover;
    background: var(--night);
}

.site-header.is-solid .brand img {
    border-color: rgba(17, 20, 26, 0.18);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 0.93rem;
    font-weight: 800;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.16);
    outline: none;
}

.site-header.is-solid .nav-links a:hover,
.site-header.is-solid .nav-links a:focus-visible,
.site-header.is-solid .nav-links a[aria-current="page"] {
    background: rgba(36, 107, 254, 0.1);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    color: inherit;
    background: transparent;
    place-items: center;
    cursor: pointer;
}

.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;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.button-primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 16px 32px rgba(36, 107, 254, 0.28);
}

.button-primary:hover {
    background: #1d56cb;
}

.button-primary.is-locked {
    color: rgba(255, 255, 255, 0.86);
    background: #4a5564;
    box-shadow: none;
}

.button-primary.is-locked:hover {
    background: #3e4855;
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.1);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
}

.button-light {
    color: var(--ink);
    background: var(--white);
    border-color: var(--line);
}

.hero,
.page-hero {
    position: relative;
    color: var(--white);
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(9, 14, 22, 0.9), rgba(9, 14, 22, 0.64) 48%, rgba(9, 14, 22, 0.2)),
        var(--hero-image) center/cover;
}

.hero {
    min-height: min(860px, 92svh);
}

.page-hero {
    min-height: 430px;
}

.hero::after,
.page-hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 120px;
    background: linear-gradient(180deg, rgba(244, 240, 231, 0), var(--paper));
}

.hero-inner,
.page-hero-inner {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    align-items: center;
}

.hero-inner {
    min-height: inherit;
    padding: 148px 0 92px;
}

.page-hero-inner {
    min-height: inherit;
    padding: 126px 0 78px;
}

.hero-copy,
.page-copy {
    width: min(790px, 100%);
}

.eyebrow,
.kicker {
    margin-bottom: 12px;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero .eyebrow,
.page-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffd16d;
}

.hero .eyebrow::before,
.page-hero .eyebrow::before {
    content: '';
    width: 34px;
    height: 3px;
    background: var(--yellow);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 860px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 7.5vw, 6.4rem);
    line-height: 0.94;
    letter-spacing: 0;
}

.page-hero h1 {
    font-size: clamp(2.7rem, 6vw, 5rem);
}

.hero-lede,
.page-lede {
    max-width: 690px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.05rem, 2.1vw, 1.32rem);
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.launch-panel {
    width: min(680px, 100%);
    margin-top: 28px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    background: rgba(17, 24, 34, 0.68);
    backdrop-filter: blur(12px);
}

.launch-panel.is-live {
    border-color: rgba(47, 125, 84, 0.58);
    background: rgba(18, 71, 47, 0.72);
}

.launch-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.launch-label strong {
    color: var(--white);
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.countdown-unit {
    min-height: 86px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    align-content: center;
    gap: 6px;
}

.countdown-unit strong {
    font-size: clamp(1.6rem, 4vw, 2.35rem);
    line-height: 1;
    letter-spacing: 0;
}

.countdown-unit span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.launch-status {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 700;
}

.live-strip {
    width: min(var(--max), calc(100% - 32px));
    margin: -54px auto 0;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
}

.stat-card {
    min-height: 136px;
    padding: 23px 24px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-card strong {
    color: var(--blue);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: 0;
}

.stat-card small {
    color: var(--muted);
    font-weight: 700;
}

.container {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 92px 0;
}

.section-white {
    background: var(--white);
}

.section-dark {
    color: var(--white);
    background: var(--night);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
    gap: 44px;
    align-items: end;
    margin-bottom: 42px;
}

.section-dark .kicker {
    color: #ffd16d;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: 0;
}

.section-head p,
.copy-block p,
.event-body p,
.empty-panel {
    color: var(--muted);
    font-size: 1.05rem;
}

.section-dark .section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.game-panel,
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.78fr);
    gap: 40px;
    align-items: center;
}

.media-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--night);
    box-shadow: var(--shadow);
}

.media-frame img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.status-pill {
    position: absolute;
    left: 18px;
    top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: var(--white);
    background: rgba(17, 24, 34, 0.78);
    backdrop-filter: blur(12px);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(47, 125, 84, 0.16);
}

.meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.meta-item {
    min-height: 84px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.meta-item span {
    display: block;
    color: var(--muted);
    font-size: 0.77rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.meta-item strong {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
}

.event-countdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 42px;
}

.event-countdown-card {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 32px rgba(17, 24, 34, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease, border 160ms ease, background 160ms ease;
}

.event-countdown-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(17, 24, 34, 0.12);
}

.event-countdown-card h3 {
    margin: 8px 0 18px;
    font-size: 1.35rem;
    line-height: 1.08;
}

.event-countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.event-countdown-timer div {
    min-height: 78px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    display: grid;
    align-content: center;
    gap: 6px;
    text-align: center;
}

.event-countdown-timer strong {
    color: var(--blue);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1;
    font-weight: 900;
}

.event-countdown-timer span {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.event-countdown-card.event-live {
    border-color: rgba(47, 125, 84, 0.4);
    background: rgba(47, 125, 84, 0.06);
}

.event-countdown-card.event-live .event-countdown-timer strong {
    color: var(--green);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.event-card {
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 32px rgba(17, 24, 34, 0.08);
}

.event-image {
    position: relative;
    background: var(--night);
}

.event-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    left: 14px;
    top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(17, 24, 34, 0.82);
    backdrop-filter: blur(10px);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.event-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
}

.event-body {
    flex: 1;
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.event-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.35;
}

.event-body h3 {
    margin-bottom: 8px;
    font-size: 1.45rem;
    line-height: 1.08;
    letter-spacing: 0;
}

.event-subtitle {
    margin-bottom: 10px;
    color: var(--blue);
    font-weight: 900;
}

.event-body .button {
    width: 100%;
    margin-top: auto;
}

.roster-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.45fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.role-list {
    display: grid;
    gap: 10px;
}

.role-item {
    min-height: 62px;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.role-item strong {
    font-size: 0.96rem;
}

.role-item span {
    color: var(--blue);
    font-weight: 900;
    white-space: nowrap;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.member-card {
    min-height: 118px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 13px;
    align-items: center;
}

.member-card:hover,
.member-card:focus-visible {
    border-color: rgba(36, 107, 254, 0.45);
    box-shadow: 0 12px 28px rgba(17, 24, 34, 0.1);
    outline: none;
}

.member-card img {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    object-fit: cover;
    background: var(--paper);
}

.member-name {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    font-weight: 900;
}

.member-name span,
.member-card small,
.member-role {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.member-card small {
    display: block;
    color: var(--muted);
    font-weight: 700;
}

.member-role {
    display: inline-flex;
    max-width: 100%;
    margin-top: 8px;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--white);
    background: var(--night);
    font-size: 0.73rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.verified-mark {
    width: 16px;
    height: 16px;
    color: var(--blue);
    flex: 0 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    min-height: 255px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: var(--panel);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.section:not(.section-dark) .feature-card {
    color: var(--ink);
    border-color: var(--line);
    background: var(--white);
}

.feature-card svg {
    width: 28px;
    height: 28px;
    color: #ffd16d;
}

.section:not(.section-dark) .feature-card svg {
    color: var(--red);
}

.feature-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.section-dark .feature-card span {
    color: #ffd16d;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.feature-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

.section:not(.section-dark) .feature-card p {
    color: var(--muted);
}

.empty-panel {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.shout-panel {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
}

.shout-icon {
    width: 76px;
    height: 76px;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--blue);
    display: grid;
    place-items: center;
    box-shadow: 0 16px 32px rgba(36, 107, 254, 0.24);
}

.shout-icon svg {
    width: 34px;
    height: 34px;
}

.shout-content {
    min-width: 0;
}

.shout-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.shout-meta span {
    color: var(--red);
}

.shout-panel blockquote {
    margin: 0;
    padding: 24px;
    border-left: 4px solid var(--yellow);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--paper);
    font-size: clamp(1.2rem, 2.3vw, 1.75rem);
    line-height: 1.28;
    font-weight: 900;
}

.shout-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 22px;
}

.shout-author {
    display: inline-grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-width: min(100%, 260px);
}

.shout-author img {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    object-fit: cover;
    background: var(--paper);
}

.shout-author small,
.shout-times {
    color: var(--muted);
    font-weight: 800;
}

.shout-author small {
    display: block;
}

.shout-times {
    display: grid;
    gap: 4px;
    text-align: right;
    font-size: 0.86rem;
}

.status-board {
    display: grid;
    gap: 18px;
}

.status-overview {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
}

.status-overview h2 {
    margin-bottom: 10px;
}

.status-overview p:last-child {
    margin-bottom: 0;
    color: var(--muted);
    font-weight: 800;
}

.status-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 10px;
}

.status-summary span {
    min-height: 74px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    display: grid;
    align-content: center;
    gap: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-summary strong {
    color: var(--blue);
    font-size: 1.75rem;
    line-height: 1;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.status-card {
    min-height: 220px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 14px 32px rgba(17, 24, 34, 0.08);
}

.status-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-card-head strong {
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--white);
    background: var(--muted);
    white-space: nowrap;
}

.status-card h3 {
    margin-bottom: 0;
    font-size: 1.35rem;
    line-height: 1.1;
}

.status-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-weight: 700;
}

.status-card-meta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.status-card-meta span {
    padding: 6px 8px;
    border-radius: 999px;
    color: var(--muted);
    background: var(--paper);
    font-size: 0.76rem;
    font-weight: 900;
}

.status-ok .status-card-head strong {
    background: var(--green);
}

.status-warning .status-card-head strong,
.status-planned .status-card-head strong {
    color: var(--ink);
    background: var(--yellow);
}

.status-down .status-card-head strong {
    background: var(--red);
}

.status-overview.status-ok {
    border-color: rgba(47, 125, 84, 0.35);
}

.status-overview.status-warning,
.status-overview.status-planned {
    border-color: rgba(226, 165, 40, 0.45);
}

.status-overview.status-down {
    border-color: rgba(216, 49, 49, 0.42);
}

.roadmap-timeline {
    position: relative;
    display: grid;
    gap: 18px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: rgba(36, 107, 254, 0.18);
}

.roadmap-card {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.roadmap-marker {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(36, 107, 254, 0.2);
    border-radius: var(--radius);
    color: var(--white);
    background: var(--blue);
    display: grid;
    place-items: center;
    box-shadow: 0 12px 24px rgba(36, 107, 254, 0.22);
}

.roadmap-marker svg {
    width: 24px;
    height: 24px;
}

.roadmap-card-body {
    min-height: 188px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 32px rgba(17, 24, 34, 0.08);
}

.roadmap-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.roadmap-meta span {
    color: var(--red);
}

.roadmap-card h3 {
    margin-bottom: 16px;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    line-height: 1;
}

.roadmap-list,
.expectation-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.roadmap-list {
    columns: 2;
    column-gap: 30px;
}

.roadmap-list li,
.expectation-list li {
    position: relative;
    break-inside: avoid;
    padding-left: 28px;
    color: var(--muted);
    font-weight: 800;
}

.roadmap-list li + li,
.expectation-list li + li {
    margin-top: 10px;
}

.roadmap-list li::before,
.expectation-list li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
}

.roadmap-list li::before {
    content: '*';
    color: var(--blue);
}

.launch-roadmap {
    display: grid;
    gap: 34px;
}

.launch-roadmap-head {
    max-width: 780px;
}

.launch-roadmap-head p:last-child {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
    font-weight: 800;
}

.expectation-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.expectation-panel {
    min-height: 100%;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: var(--panel);
}

.expectation-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.expectation-heading svg {
    width: 26px;
    height: 26px;
    color: #ffd16d;
}

.expectation-heading h3 {
    margin-bottom: 0;
    font-size: 1.35rem;
}

.expectation-list li {
    color: rgba(255, 255, 255, 0.78);
}

.expectation-list.is-ready li::before {
    content: '+';
    color: #66d28d;
}

.expectation-list.is-planned li::before {
    content: '!';
    color: #ffd16d;
}

.roadmap-note {
    max-width: 920px;
    margin-bottom: 0;
    padding: 20px 22px;
    border-left: 4px solid #ffd16d;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
}

.cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

.cta-band p {
    max-width: 720px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.07rem;
}

.site-footer {
    padding: 34px 0;
    color: rgba(255, 255, 255, 0.68);
    background: #0b1017;
}

.footer-wrap {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-wrap strong {
    color: var(--white);
}

@media (max-width: 1080px) {
    .feature-grid,
    .events-grid,
    .event-countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1120px) {
    .menu-button {
        display: grid;
    }

    .nav-links {
        position: absolute;
        top: 76px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border-radius: var(--radius);
        color: var(--ink);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible,
    .nav-links a[aria-current="page"] {
        background: rgba(36, 107, 254, 0.1);
    }

    .live-strip,
    .section-head,
    .game-panel,
    .about-grid,
    .roster-layout,
    .status-overview,
    .expectation-grid,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .live-strip {
        margin-top: -34px;
    }

    .stat-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat-card:last-child {
        border-bottom: 0;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .nav,
    .container,
    .hero-inner,
    .page-hero-inner,
    .live-strip,
    .footer-wrap {
        width: min(100% - 24px, var(--max));
    }

    .brand span {
        max-width: 210px;
        white-space: normal;
        line-height: 1.1;
    }

    .hero {
        min-height: 900px;
        background-position: 62% center;
    }

    .hero-inner {
        padding-top: 118px;
        padding-bottom: 76px;
    }

    .page-hero {
        min-height: 390px;
    }

    .page-hero-inner {
        padding-top: 112px;
        padding-bottom: 64px;
    }

    h1 {
        font-size: clamp(2.75rem, 14vw, 4.4rem);
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .launch-label {
        align-items: flex-start;
        flex-direction: column;
    }

    .countdown-grid,
    .event-countdown-timer {
        grid-template-columns: repeat(2, 1fr);
    }

    .button {
        width: 100%;
    }

    .section {
        padding: 68px 0;
    }

    .feature-grid,
    .events-grid,
    .member-grid,
    .meta-grid,
    .event-countdown-grid,
    .status-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-timeline::before {
        left: 21px;
    }

    .roadmap-card {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
    }

    .roadmap-marker {
        width: 44px;
        height: 44px;
    }

    .roadmap-marker svg {
        width: 20px;
        height: 20px;
    }

    .roadmap-card-body,
    .expectation-panel,
    .shout-panel {
        padding: 18px;
    }

    .roadmap-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .roadmap-list {
        columns: 1;
    }

    .shout-panel {
        grid-template-columns: 1fr;
    }

    .shout-icon {
        width: 54px;
        height: 54px;
    }

    .shout-icon svg {
        width: 26px;
        height: 26px;
    }

    .shout-footer,
    .shout-times {
        align-items: start;
        text-align: left;
    }
}
