:root {
    color-scheme: dark;

    --bg: #050507;
    --bg-soft: #08070c;

    --panel: #0c0912;
    --panel-2: #100b19;

    --text: #f7f5fa;
    --muted: #918a99;
    --muted-2: #66606d;

    --purple: #a855f7;
    --purple-2: #7c3aed;
    --pink: #ec4899;

    --green: #26e07f;
    --red: #ff5877;

    --line: rgba(180, 115, 255, .12);
    --line-strong: rgba(180, 115, 255, .27);

    --page: 1200px;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    min-width: 320px;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(103, 49, 176, .09),
            transparent 32rem
        ),
        var(--bg);

    color: var(--text);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    -webkit-font-smoothing:
        antialiased;
}


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


button {
    font: inherit;
}


/* =========================================================
   TOP STRIP
========================================================= */

.network-strip {
    height: 35px;

    overflow: hidden;

    border-bottom:
        1px solid rgba(174, 80, 255, .18);

    background:
        #070509;
}


.strip-inner {
    height: 100%;

    display: flex;
    align-items: center;

    margin: auto;
}


.strip-brand {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 7px;

    flex: 0 0 auto;

    padding: 0 18px;

    border-right:
        1px solid rgba(255,255,255,.08);

    color: #dbc4ff;

    font-size: 9px;
    font-weight: 950;
}


.strip-brand span {
    color: var(--pink);
}


.strip-feed {
    min-width: 0;

    flex: 1;

    display: flex;
    align-items: center;

    gap: 42px;

    overflow: hidden;

    white-space: nowrap;

    padding-left: 28px;

    color: #7f7786;

    font-size: 8px;
}


.strip-item {
    display: flex;
    align-items: center;

    gap: 7px;
}


.strip-item i {
    width: 5px;
    height: 5px;

    flex: 0 0 5px;

    border-radius: 50%;

    background: var(--pink);

    box-shadow:
        0 0 12px var(--pink);
}


.strip-item strong {
    color: #e5dfe9;

    font-weight: 900;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    height: 72px;

    border-bottom:
        1px solid rgba(255,255,255,.055);

    background:
        rgba(5,5,8,.94);

    backdrop-filter:
        blur(18px);
}


.header-inner {
    width:
        min(
            calc(100% - 34px),
            var(--page)
        );

    height: 100%;

    margin: auto;

    display: flex;
    align-items: center;

    gap: 28px;
}


.brand {
    display: flex;
    align-items: center;

    gap: 11px;

    flex: 0 0 auto;
}


.brand-mark {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple-2)
        );

    color: white;

    font-size: 13px;
    font-weight: 1000;

    box-shadow:
        0 8px 25px
        rgba(124,58,237,.23);
}


.brand-copy {
    display: flex;
    flex-direction: column;
}


.brand-copy strong {
    color: white;

    font-size: 13px;
    font-weight: 950;

    letter-spacing: .025em;
}


.brand-copy small {
    margin-top: 2px;

    color: #777080;

    font-size: 7px;
    font-weight: 750;

    letter-spacing: .12em;
}


.main-nav {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 22px;
}


.main-nav a {
    position: relative;

    height: 72px;

    display: flex;
    align-items: center;

    color: #9a939f;

    font-size: 9px;
    font-weight: 850;

    transition:
        color .15s ease;
}


.main-nav a:hover,
.main-nav a.active {
    color: white;
}


.main-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;

    border-radius:
        10px 10px 0 0;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--pink)
        );
}


.header-actions {
    display: flex;
    align-items: center;

    gap: 9px;

    flex: 0 0 auto;
}


.store-button {
    height: 39px;

    display: inline-flex;
    align-items: center;

    padding: 0 16px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink)
        );

    color: white;

    font-size: 8px;
    font-weight: 950;

    box-shadow:
        0 9px 26px
        rgba(168,85,247,.20);

    transition:
        transform .15s ease;
}


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


/* =========================================================
   ACCOUNT
========================================================= */

#global-account {
    flex: 0 0 auto;
}


.account-loading {
    width: 155px;
    height: 39px;

    border:
        1px solid var(--line);

    border-radius: 10px;

    background:
        rgba(255,255,255,.02);
}


.login-discord {
    height: 39px;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 0 13px;

    border:
        1px solid var(--line-strong);

    border-radius: 10px;

    background:
        rgba(168,85,247,.07);

    color: white;

    font-size: 8px;
    font-weight: 950;
}


.account-wrap {
    position: relative;
}


.account-pill {
    height: 39px;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 4px 10px 4px 5px;

    border:
        1px solid rgba(168,85,247,.30);

    border-radius: 999px;

    background:
        rgba(21,12,31,.85);

    cursor: pointer;

    color: white;

    min-width: 155px;
}


.account-avatar {
    width: 29px;
    height: 29px;

    flex: 0 0 29px;

    display: grid;
    place-items: center;

    overflow: hidden;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink)
        );

    font-size: 9px;
    font-weight: 950;
}


.account-avatar img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


.account-text {
    min-width: 0;

    flex: 1;

    display: flex;
    flex-direction: column;

    text-align: left;
}


.account-text strong {
    max-width: 90px;

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;

    font-size: 9px;
}


.account-text small {
    margin-top: 2px;

    color: #b38dce;

    font-size: 7px;
    font-weight: 800;
}


.account-caret {
    color: #817488;

    font-size: 7px;
}


.account-dropdown {
    position: absolute;

    top: calc(100% + 9px);
    right: 0;

    width: 245px;

    overflow: hidden;

    border:
        1px solid var(--line-strong);

    border-radius: 13px;

    background:
        rgba(11,7,16,.99);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.55);

    opacity: 0;

    pointer-events: none;

    transform:
        translateY(-5px);

    transition:
        .15s ease;
}


.account-wrap.open
.account-dropdown {
    opacity: 1;

    pointer-events: auto;

    transform:
        translateY(0);
}


.account-dropdown-head {
    padding: 15px;

    border-bottom:
        1px solid rgba(255,255,255,.06);

    background:
        linear-gradient(
            135deg,
            rgba(168,85,247,.08),
            transparent
        );
}


.account-dropdown-head strong {
    display: block;

    font-size: 13px;
}


.account-dropdown-head span {
    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 8px;
}


.dropdown-balance {
    margin-top: 13px !important;

    color: #d8b7f3 !important;

    font-size: 16px !important;
    font-weight: 950;
}


.account-links {
    padding: 6px;
}


.account-links a {
    min-height: 35px;

    display: flex;
    align-items: center;

    padding: 0 9px;

    border-radius: 7px;

    color: #b7afbc;

    font-size: 8px;
    font-weight: 800;
}


.account-links a:hover {
    color: white;

    background:
        rgba(168,85,247,.08);
}


.account-links hr {
    height: 1px;

    border: 0;

    margin: 5px;

    background:
        rgba(255,255,255,.06);
}


/* =========================================================
   ACTIVITY STRIP
========================================================= */

.activity-strip {
    border-bottom:
        1px solid rgba(255,255,255,.04);

    background:
        #07060a;
}


.activity-inner {
    width:
        min(
            calc(100% - 34px),
            1000px
        );

    min-height: 34px;

    margin: auto;

    display: flex;
    align-items: center;

    gap: 18px;

    color: #756f7a;

    font-size: 8px;
}


.activity-live {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #e1dce5;

    font-weight: 900;
}


.live-dot,
.live-indicator i {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--green);

    box-shadow:
        0 0 11px var(--green);
}


.activity-badge {
    padding: 5px 8px;

    border:
        1px solid rgba(168,85,247,.17);

    border-radius: 999px;

    color: #a69cab;
}


.activity-message {
    min-width: 0;

    display: flex;
    align-items: center;

    gap: 6px;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
}


.activity-pip {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--pink);
}


.activity-message strong {
    color: #e1dce5;
}


/* =========================================================
   MAIN
========================================================= */

main {
    width: 100%;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    border-bottom:
        1px solid rgba(255,255,255,.035);

    background:
        radial-gradient(
            circle at 77% 28%,
            rgba(112,49,180,.16),
            transparent 24rem
        ),
        linear-gradient(
            180deg,
            #08070b,
            #050507
        );
}


.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    opacity: .23;

    pointer-events: none;

    background-image:
        radial-gradient(
            rgba(168,85,247,.28) 1px,
            transparent 1px
        );

    background-size:
        28px 28px;
}


.hero-grid {
    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 34px),
            1000px
        );

    min-height: 565px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    gap: 70px;

    padding: 75px 0;
}


.hero-pill {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 7px 11px;

    border:
        1px solid rgba(168,85,247,.23);

    border-radius: 999px;

    background:
        rgba(168,85,247,.06);

    color: #bfa7d1;

    font-size: 8px;
    font-weight: 900;
}


.hero-pill span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--purple);

    box-shadow:
        0 0 11px var(--purple);
}


.hero h1 {
    margin: 24px 0 17px;

    font-size:
        clamp(
            3.4rem,
            5.5vw,
            5.2rem
        );

    line-height: .96;

    letter-spacing: -.055em;
}


.hero h1 em {
    color: transparent;

    font-style: normal;

    -webkit-text-stroke:
        1.5px var(--purple);
}


.hero-description {
    max-width: 580px;

    margin: 0;

    color: #8e8794;

    font-size: 14px;

    line-height: 1.7;
}


.hero-actions,
.economy-actions {
    display: flex;

    gap: 10px;

    margin-top: 26px;
}


.primary-button,
.secondary-button {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 18px;

    border-radius: 9px;

    font-size: 9px;
    font-weight: 950;
}


.primary-button {
    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink)
        );

    color: white;

    box-shadow:
        0 11px 30px
        rgba(168,85,247,.18);
}


.secondary-button {
    border:
        1px solid rgba(255,255,255,.10);

    background:
        rgba(255,255,255,.018);

    color: #d9d4dc;
}


.hero-stats {
    display: flex;

    gap: 38px;

    margin-top: 26px;
}


.hero-stats div {
    display: flex;
    flex-direction: column;
}


.hero-stats strong {
    font-size: 17px;
}


.hero-stats span {
    margin-top: 3px;

    color: #716a76;

    font-size: 8px;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 370px;

    display: grid;
    place-items: center;
}


.realm-orb {
    position: absolute;

    border-radius: 50%;

    filter:
        blur(1px);
}


.realm-orb-one {
    width: 310px;
    height: 310px;

    border:
        1px solid rgba(168,85,247,.14);

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(168,85,247,.23),
            rgba(27,12,42,.04) 58%,
            transparent 70%
        );
}


.realm-orb-two {
    width: 235px;
    height: 235px;

    border:
        1px solid rgba(236,72,153,.09);

    transform:
        translate(80px, 50px);
}


.hero-server-preview {
    position: relative;

    z-index: 2;

    width: min(100%, 350px);

    padding: 24px;

    border:
        1px solid rgba(168,85,247,.26);

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            rgba(17,10,25,.92),
            rgba(7,6,11,.96)
        );

    box-shadow:
        0 35px 80px
        rgba(0,0,0,.38);
}


.preview-label,
.section-kicker,
.server-type,
.data-card-title span {
    color: #a894b8;

    font-size: 7px;

    font-weight: 950;

    letter-spacing: .14em;
}


.hero-server-preview h3 {
    margin: 8px 0 4px;

    font-size: 25px;
}


.hero-server-preview p {
    margin: 0;

    color: #77707d;

    font-size: 8px;
}


.preview-player-count {
    display: flex;
    align-items: baseline;

    gap: 6px;

    margin-top: 26px;
}


.preview-player-count strong {
    color: var(--purple);

    font-size: 51px;

    line-height: 1;
}


.preview-player-count span {
    color: #aaa2ae;

    font-size: 18px;
    font-weight: 800;
}


.preview-bar {
    height: 5px;

    margin-top: 13px;

    overflow: hidden;

    border-radius: 99px;

    background:
        rgba(255,255,255,.055);
}


.preview-bar i {
    width: 0%;
    height: 100%;

    display: block;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--purple),
            var(--pink)
        );

    transition:
        width .4s ease;
}


.preview-meta {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 20px;

    padding-top: 17px;

    border-top:
        1px solid rgba(255,255,255,.06);
}


.preview-meta small {
    display: block;

    color: #635d67;

    font-size: 6px;

    font-weight: 900;
}


.preview-meta strong {
    display: block;

    margin-top: 4px;

    overflow: hidden;

    color: #eee9f1;

    font-size: 9px;

    text-overflow: ellipsis;

    white-space: nowrap;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    width:
        min(
            calc(100% - 34px),
            1000px
        );

    margin: auto;

    padding: 72px 0 0;
}


.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 28px;
}


.section-heading.centered {
    display: block;

    text-align: center;
}


.section-heading h2,
.economy-copy h2,
.final-cta h2 {
    margin: 7px 0 0;

    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );

    letter-spacing: -.04em;
}


.section-heading p {
    max-width: 410px;

    margin: 0;

    color: #77707d;

    font-size: 9px;

    line-height: 1.6;
}


.section-heading.centered p {
    margin: 10px auto 0;
}


/* =========================================================
   SERVER CARDS
========================================================= */

.server-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;
}


.server-card {
    min-height: 250px;

    padding: 23px;

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            #0c0a10,
            #08070b
        );
}


.live-server-card {
    border-color:
        rgba(168,85,247,.20);
}


.server-card-top {
    display: flex;
    align-items: start;
    justify-content: space-between;

    gap: 20px;
}


.server-card h3 {
    margin: 7px 0 0;

    font-size: 19px;
}


.status-badge {
    padding: 6px 9px;

    border-radius: 999px;

    font-size: 7px;
    font-weight: 950;
}


.status-badge.online {
    border:
        1px solid rgba(38,224,127,.18);

    background:
        rgba(38,224,127,.07);

    color: #5ff0a0;
}


.status-badge.offline {
    background:
        rgba(255,88,119,.08);

    color: #ff8da1;
}


.status-badge.soon {
    background:
        rgba(255,255,255,.045);

    color: #807987;
}


.server-subtitle {
    margin: 13px 0 0;

    color: #7c7581;

    font-size: 9px;

    line-height: 1.6;
}


.server-numbers {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 12px;

    margin-top: 26px;
}


.server-numbers span {
    display: block;

    color: #615b65;

    font-size: 6px;
    font-weight: 900;
}


.server-numbers strong {
    display: block;

    margin-top: 5px;

    font-size: 15px;
}


.server-card-actions {
    display: flex;

    gap: 8px;

    margin-top: 24px;
}


.mini-primary,
.mini-secondary {
    min-height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 13px;

    border-radius: 7px;

    cursor: pointer;

    font-size: 8px;
    font-weight: 900;
}


.mini-primary {
    border: 0;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--pink)
        );

    color: white;
}


.mini-secondary {
    border:
        1px solid rgba(255,255,255,.08);

    background: transparent;

    color: #c6c0ca;
}


.coming-visual {
    height: 95px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 26px;

    border:
        1px dashed rgba(255,255,255,.07);

    border-radius: 10px;

    color: #615a67;

    font-size: 9px;
}


.coming-visual span {
    color: var(--purple);

    font-size: 18px;
}


/* =========================================================
   FEATURES
========================================================= */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}


.feature-card {
    min-height: 220px;

    display: flex;
    flex-direction: column;

    padding: 20px;

    border:
        1px solid rgba(255,255,255,.065);

    border-radius: 13px;

    background:
        #0a080e;

    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease;
}


.feature-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(168,85,247,.28);

    background:
        #0d0913;
}


.feature-icon {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 9px;

    background:
        rgba(168,85,247,.10);

    color: #c08cff;

    font-size: 17px;
}


.feature-card h3 {
    margin: 17px 0 7px;

    font-size: 14px;
}


.feature-card p {
    margin: 0;

    color: #746d79;

    font-size: 9px;

    line-height: 1.7;
}


.feature-card strong {
    margin-top: auto;

    padding-top: 20px;

    color: #b993dc;

    font-size: 8px;
}


/* =========================================================
   ECONOMY
========================================================= */

.economy-section {
    width:
        min(
            calc(100% - 34px),
            1000px
        );

    margin:
        80px auto 0;

    display: grid;

    grid-template-columns:
        1fr .8fr;

    align-items: center;

    gap: 60px;

    padding: 50px;

    overflow: hidden;

    border:
        1px solid rgba(168,85,247,.18);

    border-radius: 18px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(168,85,247,.10),
            transparent 20rem
        ),
        #09070d;
}


.economy-copy p {
    max-width: 560px;

    color: #807884;

    font-size: 10px;

    line-height: 1.8;
}


.economy-points {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 10px;

    margin-top: 22px;
}


.economy-points div {
    color: #aca3b1;

    font-size: 8px;
}


.economy-points i {
    display: inline-grid;
    place-items: center;

    width: 18px;
    height: 18px;

    margin-right: 6px;

    border-radius: 50%;

    background:
        rgba(168,85,247,.11);

    color: #ca98ff;

    font-style: normal;
}


.coin-card {
    position: relative;

    min-height: 275px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border:
        1px solid rgba(168,85,247,.19);

    border-radius: 16px;

    background:
        rgba(8,6,12,.78);

    text-align: center;
}


.coin-glow {
    position: absolute;

    width: 190px;
    height: 190px;

    border-radius: 50%;

    background:
        rgba(168,85,247,.16);

    filter:
        blur(65px);
}


.coin-symbol {
    position: relative;

    width: 100px;
    height: 100px;

    display: grid;
    place-items: center;

    border:
        2px solid #c68cff;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #c673ff,
            #6f24ad 70%
        );

    box-shadow:
        0 0 50px
        rgba(168,85,247,.22);

    color: white;

    font-size: 37px;
    font-weight: 1000;
}


.coin-card > span {
    position: relative;

    margin-top: 20px;

    color: #756d7b;

    font-size: 7px;

    font-weight: 950;

    letter-spacing: .15em;
}


.coin-card > strong {
    position: relative;

    margin-top: 6px;

    font-size: 17px;
}


/* =========================================================
   LIVE DATA
========================================================= */

.live-grid {
    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    gap: 14px;
}


.data-card {
    min-height: 330px;

    padding: 22px;

    border:
        1px solid rgba(255,255,255,.065);

    border-radius: 14px;

    background:
        #09070d;
}


.data-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding-bottom: 16px;

    border-bottom:
        1px solid rgba(255,255,255,.055);
}


.data-card-title h3 {
    margin: 5px 0 0;

    font-size: 18px;
}


.data-card-title > strong {
    width: 33px;
    height: 33px;

    display: grid;
    place-items: center;

    border:
        1px solid rgba(168,85,247,.20);

    border-radius: 8px;

    background:
        rgba(168,85,247,.07);

    color: #ceb0e6;
}


.live-indicator {
    display: flex;
    align-items: center;

    gap: 6px;

    color: #dbd5de;

    font-size: 7px;
    font-weight: 900;
}


.player-row,
.combat-row {
    display: flex;
    align-items: center;

    gap: 11px;

    min-height: 57px;

    border-bottom:
        1px solid rgba(255,255,255,.045);
}


.player-avatar,
.combat-avatar {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    flex: 0 0 30px;

    border-radius: 7px;

    background:
        rgba(168,85,247,.12);

    color: #ce9cff;

    font-size: 9px;
    font-weight: 950;
}


.player-info,
.combat-info {
    min-width: 0;

    flex: 1;
}


.player-info strong,
.combat-info strong {
    display: block;

    overflow: hidden;

    font-size: 10px;

    text-overflow: ellipsis;
    white-space: nowrap;
}


.player-info span,
.combat-info span {
    display: block;

    margin-top: 3px;

    color: #736c78;

    font-size: 7px;
}


.player-metrics {
    display: flex;

    gap: 18px;

    text-align: right;
}


.player-metrics small {
    display: block;

    color: #605a64;

    font-size: 6px;

    font-weight: 900;
}


.player-metrics strong {
    display: block;

    margin-top: 3px;

    font-size: 9px;
}


.combat-damage {
    flex: 0 0 auto;

    color: #b592d4;

    font-size: 8px;

    font-weight: 900;
}


.empty {
    min-height: 190px;

    display: grid;
    place-items: center;

    text-align: center;

    color: #68616c;

    font-size: 9px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    width:
        min(
            calc(100% - 34px),
            1000px
        );

    margin:
        80px auto 0;

    padding:
        65px 25px;

    border-top:
        1px solid rgba(255,255,255,.055);

    text-align: center;
}


.final-cta p {
    max-width: 500px;

    margin:
        13px auto 24px;

    color: #79717e;

    font-size: 10px;

    line-height: 1.7;
}


.final-cta > div {
    display: flex;

    justify-content: center;

    gap: 10px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    margin-top: 30px;

    border-top:
        1px solid rgba(255,255,255,.055);

    background:
        #050507;
}


.footer-inner {
    width:
        min(
            calc(100% - 34px),
            1000px
        );

    min-height: 90px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-inner > div {
    display: flex;
    flex-direction: column;
}


.footer-inner strong {
    font-size: 12px;
}


.footer-inner span,
.footer-inner p {
    color: #68616d;

    font-size: 7px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 13px;
    }


    .main-nav a {
        font-size: 8px;
    }


    .store-button {
        display: none;
    }


    .hero-grid {
        gap: 30px;
    }


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

}


@media (max-width: 800px) {

    .network-strip {
        display: none;
    }


    .site-header {
        height: auto;
    }


    .header-inner {
        min-height: 65px;

        flex-wrap: wrap;

        padding: 10px 0;
    }


    .brand {
        flex: 1;
    }


    .main-nav {
        order: 3;

        width: 100%;

        overflow-x: auto;

        justify-content: flex-start;

        gap: 20px;
    }


    .main-nav a {
        height: 40px;

        flex: 0 0 auto;
    }


    .activity-inner {
        overflow: hidden;
    }


    .hero-grid {
        grid-template-columns: 1fr;

        min-height: auto;

        padding: 60px 0;
    }


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


    .server-grid,
    .economy-section,
    .live-grid {
        grid-template-columns: 1fr;
    }


    .economy-section {
        gap: 35px;

        padding: 30px;
    }

}


@media (max-width: 560px) {

    .header-actions {
        gap: 0;
    }


    .account-pill {
        min-width: 125px;
    }


    .account-text strong {
        max-width: 65px;
    }


    .hero h1 {
        font-size: 3rem;
    }


    .hero-stats {
        gap: 22px;
    }


    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }


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


    .section-heading {
        display: block;
    }


    .section-heading p {
        margin-top: 10px;
    }


    .economy-points {
        grid-template-columns: 1fr;
    }


    .footer-inner {
        flex-direction: column;
        align-items: flex-start;

        justify-content: center;
    }

}
