/* ============================================================
   CENCRAFT DESIGN SYSTEM
   ============================================================ */

:root {

    --cc-bg: #06111f;
    --cc-bg-deep: #030a12;

    --cc-surface: #091827;
    --cc-surface-raised: #0c1d2d;

    --cc-glass: rgba(5, 17, 30, 0.82);
    --cc-glass-heavy: rgba(4, 14, 25, 0.94);

    --cc-cyan: #2dc9e6;
    --cc-cyan-bright: #40daf4;
    --cc-cyan-dark: #1598b2;

    --cc-text: #f7f9fb;
    --cc-text-secondary: #b7c3cd;
    --cc-text-muted: #748696;

    --cc-border: rgba(255,255,255,.08);
    --cc-border-bright: rgba(255,255,255,.13);
    --cc-border-cyan: rgba(45,201,230,.4);

    --cc-success: #42d58b;
    --cc-danger: #ef6262;

    --cc-container: 1380px;

    --cc-header-height: 82px;

    --cc-radius-sm: 6px;
    --cc-radius: 10px;
    --cc-radius-lg: 16px;

    --cc-transition: 180ms ease;
}


/* ============================================================
   RESET
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--cc-bg);
    color: var(--cc-text);

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

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
}

body.admin-bar .cc-header {
    top: 32px;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

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


/* ============================================================
   CONTAINER
   ============================================================ */

.cc-container {

    width: min(
        calc(100% - 64px),
        var(--cc-container)
    );

    margin-inline: auto;
}


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

.cc-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    height: var(--cc-header-height);

    background: rgba(4, 13, 22, .93);

    border-bottom: 1px solid var(--cc-border);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.cc-header::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: -1px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(45,201,230,.3),
            transparent
        );

    pointer-events: none;
}

.cc-header-inner {

    width: min(
        calc(100% - 64px),
        var(--cc-container)
    );

    height: 100%;

    margin-inline: auto;

    display: flex;

    align-items: center;
    justify-content: space-between;
}


/* BRAND */

.cc-brand {

    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.cc-brand-logo {

    display: block;

    width: auto;
    height: 48px;
}


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

.cc-header-navigation {

    display: flex;
    align-items: center;

    gap: 30px;
}

.cc-nav-list {

    display: flex;
    align-items: center;

    gap: 4px;

    list-style: none;

    margin: 0;
    padding: 0;
}

.cc-nav-list > li {
    position: relative;
}

.cc-nav-list > li > a,
.cc-nav-dropdown-toggle {

    min-height: 44px;

    display: flex;
    align-items: center;

    padding: 0 15px;

    border: 0;

    color: var(--cc-text-secondary);

    background: transparent;

    text-decoration: none;

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;

    transition:
        color var(--cc-transition),
        background var(--cc-transition);
}

.cc-nav-list > li > a:hover,
.cc-nav-dropdown-toggle:hover,
.cc-nav-list > .current-menu-item > a {

    color: var(--cc-text);

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


/* CHEVRON */

.cc-chevron {

    width: 7px;
    height: 7px;

    margin-left: 10px;

    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;

    transform: rotate(45deg) translateY(-2px);

    transition: transform var(--cc-transition);
}


/* ============================================================
   DROPDOWNS
   ============================================================ */

.cc-dropdown-menu {

    position: absolute;

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

    min-width: 220px;

    margin: 0;
    padding: 8px;

    list-style: none;

    background: var(--cc-glass-heavy);

    border: 1px solid var(--cc-border-bright);
    border-radius: var(--cc-radius);

    box-shadow:
        0 24px 60px rgba(0,0,0,.45);

    backdrop-filter: blur(20px);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-6px);

    transition:
        opacity var(--cc-transition),
        visibility var(--cc-transition),
        transform var(--cc-transition);
}

.cc-nav-dropdown.is-open .cc-dropdown-menu {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.cc-nav-dropdown.is-open .cc-chevron {
    transform: rotate(225deg) translate(-2px,-2px);
}

.cc-dropdown-menu a {

    display: block;

    padding: 11px 13px;

    border-radius: 6px;

    color: var(--cc-text-secondary);

    text-decoration: none;

    font-size: 14px;

    transition:
        background var(--cc-transition),
        color var(--cc-transition);
}

.cc-dropdown-menu a:hover {

    color: var(--cc-text);

    background: rgba(45,201,230,.1);
}


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

.cc-account {
    position: relative;
}

.cc-account-toggle {

    height: 46px;

    display: flex;
    align-items: center;

    padding: 4px 13px 4px 5px;

    border: 1px solid transparent;
    border-radius: 24px;

    background: transparent;

    color: var(--cc-text);

    cursor: pointer;

    transition:
        background var(--cc-transition),
        border-color var(--cc-transition);
}

.cc-account-toggle:hover,
.cc-account.is-open .cc-account-toggle {

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

    border-color: var(--cc-border);
}

.cc-account-avatar {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

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

    overflow: hidden;

    border-radius: 50%;
}


.cc-account-avatar img {
    width: 40px;
    height: 40px;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}

.cc-account-name {
    margin-left: 4px;

    white-space: nowrap;

    font-weight: 600;
}

.cc-account-menu {

    position: absolute;

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

    width: 280px;

    padding: 8px;

    background: var(--cc-glass-heavy);

    border: 1px solid var(--cc-border-bright);
    border-radius: var(--cc-radius);

    box-shadow:
        0 24px 60px rgba(0,0,0,.45);

    backdrop-filter: blur(20px);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-6px);

    transition:
        opacity var(--cc-transition),
        visibility var(--cc-transition),
        transform var(--cc-transition);
}

.cc-account.is-open .cc-account-menu {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

.cc-account-summary {

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px;
}

.cc-account-summary-avatar {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: block;

    overflow: hidden;

    border-radius: 50%;
}

.cc-account-summary-avatar img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: inherit;
}

.cc-account-summary strong,
.cc-account-summary span {
    display: block;
}

.cc-account-summary strong {

    color: var(--cc-text);

    font-size: 14px;
}

.cc-account-summary span {

    max-width: 180px;

    margin-top: 2px;

    overflow: hidden;

    color: var(--cc-text-muted);

    font-size: 12px;

    text-overflow: ellipsis;
}

.cc-account-divider {

    height: 1px;

    margin: 6px 4px;

    background: var(--cc-border);
}

.cc-account-menu > a {

    display: block;

    padding: 11px 13px;

    border-radius: 6px;

    color: var(--cc-text-secondary);

    text-decoration: none;

    font-size: 14px;
}

.cc-account-menu > a:hover {

    color: var(--cc-text);

    background: rgba(45,201,230,.1);
}

.cc-account-menu .cc-account-logout:hover {

    color: #ff8a8a;

    background: rgba(239,98,98,.1);
}


/* SIGN IN */

.cc-signin {

    height: 42px;

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

    padding: 0 22px;

    border: 1px solid var(--cc-border-cyan);
    border-radius: 22px;

    color: var(--cc-cyan);

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition:
        color var(--cc-transition),
        background var(--cc-transition),
        border-color var(--cc-transition);
}

.cc-signin:hover {

    color: #031018;

    background: var(--cc-cyan);

    border-color: var(--cc-cyan);
}


/* ============================================================
   MOBILE BUTTON
   ============================================================ */

.cc-mobile-toggle {

    display: none;

    width: 44px;
    height: 44px;

    padding: 10px;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.cc-mobile-toggle span {

    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--cc-text);

    transition: var(--cc-transition);
}


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

.cc-hero {

    position: relative;

    min-height:
        calc(100vh - var(--cc-header-height));

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 65% 45%,
            rgba(20,120,160,.25),
            transparent 40%
        ),
        linear-gradient(
            110deg,
            #06111f 0%,
            #071827 55%,
            #04101c 100%
        );
}


/*
 * Homepage hero artwork.
 */

.cc-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image:
        url("../images/hero.png");

    background-size: cover;
    background-position: center;

    opacity: .66;

    z-index: 0;
}

.cc-hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(2,9,16,.95) 0%,
            rgba(3,13,23,.82) 37%,
            rgba(3,13,23,.35) 70%,
            rgba(3,13,23,.5) 100%
        ),
        linear-gradient(
            0deg,
            var(--cc-bg) 0%,
            transparent 28%
        );
}

.cc-hero-content {

    position: relative;

    z-index: 2;

    padding-top: 40px;
    padding-bottom: 100px;
}

.cc-hero-copy {
    max-width: 720px;
}

.cc-eyebrow {

    margin-bottom: 20px;

    color: var(--cc-cyan);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .22em;
}

.cc-hero h1 {

    margin: 0;

    color: var(--cc-text);

    font-size: clamp(58px, 7vw, 106px);
    font-weight: 750;

    line-height: .94;

    letter-spacing: -.055em;
}

.cc-hero h1 span {

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.75);
}

.cc-hero-description {

    max-width: 590px;

    margin: 30px 0 0;

    color: var(--cc-text-secondary);

    font-size: 19px;
    line-height: 1.7;
}

.cc-hero-actions {

    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 38px;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.cc-button {

    min-height: 52px;

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

    gap: 16px;

    padding: 0 24px;

    border-radius: 7px;

    text-decoration: none;

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

    letter-spacing: .04em;

    cursor: pointer;

    transition:
        transform var(--cc-transition),
        background var(--cc-transition),
        border-color var(--cc-transition);
}

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

.cc-button-primary {

    border: 1px solid var(--cc-cyan);

    color: #031017;

    background: var(--cc-cyan);
}

.cc-button-primary:hover {
    background: var(--cc-cyan-bright);
}

.cc-button-secondary {

    border: 1px solid var(--cc-border-bright);

    color: var(--cc-text);

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

.cc-button-secondary:hover {

    border-color: var(--cc-border-cyan);

    background: rgba(45,201,230,.06);
}

.cc-copy-label {

    padding-left: 16px;

    border-left: 1px solid rgba(0,0,0,.25);

    font-size: 11px;

    opacity: .75;
}


/* SCROLL */

.cc-scroll-indicator {

    position: absolute;

    z-index: 3;

    left: 50%;
    bottom: 34px;

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

    gap: 5px;

    color: var(--cc-text-muted);

    text-decoration: none;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: .18em;

    text-transform: uppercase;

    transform: translateX(-50%);
}

.cc-scroll-arrow {

    color: var(--cc-cyan);

    font-size: 18px;
}


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

.cc-section {

    position: relative;

    padding: 120px 0;
}

.cc-section-heading {

    max-width: 650px;

    margin-bottom: 60px;
}

.cc-section-heading h2,
.cc-community-panel h2 {

    margin: 0;

    color: var(--cc-text);

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -.035em;
}

.cc-section-heading p {

    margin: 20px 0 0;

    color: var(--cc-text-secondary);

    font-size: 17px;
}


/* ============================================================
   NETWORK SHOWCASE
   ============================================================ */

.cc-network-section {

    position: relative;

    overflow: hidden;

    padding: 135px 0;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(45,201,230,.06),
            transparent 35%
        ),
        var(--cc-bg);
}

.cc-network-section::before {

    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    top: -500px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: rgba(45,201,230,.045);

    filter: blur(100px);

    pointer-events: none;
}


/* INTRO */

.cc-network-intro {

    position: relative;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 64px;
}

.cc-network-intro .cc-section-heading {
    margin-bottom: 0;
}

.cc-network-meta {

    display: flex;
    align-items: center;

    gap: 10px;

    padding-bottom: 7px;

    color: var(--cc-text-muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .15em;

    text-transform: uppercase;
}

.cc-network-meta-dot {

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: var(--cc-cyan);

    box-shadow:
        0 0 9px rgba(45,201,230,.6);
}


/* ============================================================
   SERVER SHOWCASE GRID
   ============================================================ */

.cc-server-showcase {

    position: relative;

    display: grid;

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

    gap: 1px;

    overflow: hidden;

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

    border-radius:
        var(--cc-radius);

    background:
        var(--cc-border);
}


/* ============================================================
   WORLD CARD
   ============================================================ */

.cc-world-card {

    position: relative;

    min-height: 390px;

    display: flex;
    flex-direction: column;

    padding: 31px;

    overflow: hidden;

    color: var(--cc-text);

    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(45,201,230,.035),
            transparent 42%
        ),
        #071421;

    text-decoration: none;

    isolation: isolate;

    transition:
        background 300ms ease;
}

.cc-world-card::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: -1;

    opacity: 0;

    background:
        linear-gradient(
            145deg,
            rgba(45,201,230,.075),
            transparent 55%
        );

    transition:
        opacity 300ms ease;
}

.cc-world-card:hover::after {
    opacity: 1;
}


/* GLOW */

.cc-world-card-glow {

    position: absolute;

    z-index: -1;

    width: 240px;
    height: 240px;

    right: -170px;
    bottom: -170px;

    border-radius: 50%;

    background:
        rgba(45,201,230,.16);

    filter: blur(55px);

    opacity: .3;

    transition:
        right 450ms ease,
        bottom 450ms ease,
        opacity 450ms ease;
}

.cc-world-card:hover
.cc-world-card-glow {

    right: -90px;
    bottom: -90px;

    opacity: .8;
}


/* CARD TOP */

.cc-world-card-top {

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.cc-world-number {

    color: var(--cc-cyan);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .18em;
}

.cc-world-type {

    color: var(--cc-text-muted);

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

    letter-spacing: .18em;
}


/* CARD CONTENT */

.cc-world-card-content {
    margin-top: auto;
}

.cc-world-kicker {

    display: block;

    margin-bottom: 12px;

    color: var(--cc-text-muted);

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

    letter-spacing: .18em;
}

.cc-world-card h3 {

    margin: 0;

    color: var(--cc-text);

    font-size: 37px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: -.045em;

    transition:
        color 200ms ease;
}

.cc-world-card:hover h3 {
    color: var(--cc-cyan-bright);
}

.cc-world-card p {

    max-width: 330px;

    min-height: 67px;

    margin: 18px 0 0;

    color: var(--cc-text-muted);

    font-size: 13px;

    line-height: 1.7;
}

.cc-world-link {

    display: flex;

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

    margin-top: 28px;

    padding-top: 18px;

    border-top: 1px solid var(--cc-border);

    color: var(--cc-text-secondary);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    transition:
        color 180ms ease,
        border-color 180ms ease;
}

.cc-world-link > span {

    color: var(--cc-cyan);

    font-size: 17px;

    transition:
        transform 180ms ease;
}

.cc-world-card:hover
.cc-world-link {

    color: var(--cc-text);

    border-color:
        var(--cc-border-cyan);
}

.cc-world-card:hover
.cc-world-link > span {

    transform:
        translateX(5px);
}


/* ============================================================
   FEATURED SURVIVAL
   ============================================================ */

.cc-world-card-featured {

    grid-column: span auto;

    background:
        radial-gradient(
            circle at 80% 60%,
            rgba(45,201,230,.085),
            transparent 45%
        ),
        linear-gradient(
            120deg,
            #071421,
            #091b2a
        );
}

.cc-world-card-featured h3 {
    font-size: 48px;
}

.cc-world-card-featured p {
    max-width: 440px;
}


/* HUB */

.cc-world-card-hub {

    background:
        radial-gradient(
            circle at 70% 60%,
            rgba(45,201,230,.08),
            transparent 50%
        ),
        #06111d;
}


/* ============================================================
   NETWORK STATUS CTA
   ============================================================ */

.cc-network-status-bar {

    display: flex;

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

    gap: 30px;

    margin-top: 22px;

    padding: 23px 26px;

    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius);

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

.cc-network-status-copy {

    display: flex;
    align-items: center;

    gap: 15px;
}

.cc-network-live-dot {

    position: relative;

    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--cc-success);

    box-shadow:
        0 0 12px rgba(66,213,139,.5);
}

.cc-network-live-dot::after {

    content: "";

    position: absolute;

    inset: -5px;

    border:
        1px solid rgba(66,213,139,.25);

    border-radius: 50%;
}

.cc-network-status-copy strong,
.cc-network-status-copy span {
    display: block;
}

.cc-network-status-copy strong {

    color: var(--cc-text);

    font-size: 13px;
}

.cc-network-status-copy div > span {

    margin-top: 2px;

    color: var(--cc-text-muted);

    font-size: 11px;
}

.cc-network-status-bar > a {

    display: flex;
    align-items: center;

    gap: 16px;

    color: var(--cc-cyan);

    text-decoration: none;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}

.cc-network-status-bar > a span {

    font-size: 17px;

    transition:
        transform 180ms ease;
}

.cc-network-status-bar > a:hover span {
    transform: translateX(4px);
}


/* ============================================================
   COMMUNITY
   ============================================================ */

.cc-community-section {

    padding-top: 30px;

    background: var(--cc-bg);
}

.cc-community-panel {

    display: grid;

    grid-template-columns:
        1fr auto;

    align-items: center;

    gap: 60px;

    padding: 65px;

    border:
        1px solid var(--cc-border-cyan);

    border-radius:
        var(--cc-radius);

    background:
        radial-gradient(
            circle at 85% 50%,
            rgba(45,201,230,.12),
            transparent 30%
        ),
        var(--cc-surface);
}

.cc-community-panel > div:first-child {
    max-width: 720px;
}

.cc-community-panel p {

    margin: 22px 0 0;

    color: var(--cc-text-secondary);

    font-size: 16px;
}


/* ============================================================
   NORMAL PAGES
   ============================================================ */

.cc-page {

    min-height: 70vh;

    padding: 90px 0 120px;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(45,201,230,.055),
            transparent 30%
        ),
        var(--cc-bg);
}

.cc-page-container {
    max-width: 1180px;
}

.cc-page-header {

    margin-bottom: 50px;

    padding-bottom: 25px;

    border-bottom:
        1px solid var(--cc-border);
}

.cc-page-header h1 {

    margin: 0;

    color: var(--cc-text);

    font-size:
        clamp(42px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -.04em;
}

.cc-page-content {
    color: var(--cc-text-secondary);
}


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

.cc-footer {

    border-top:
        1px solid var(--cc-border);

    background:
        var(--cc-bg-deep);
}

.cc-footer-inner {

    min-height: 180px;

    display: flex;

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

    gap: 50px;
}

.cc-footer-brand img {

    width: auto;
    height: 42px;
}

.cc-footer-brand p {

    margin: 12px 0 0;

    color: var(--cc-text-muted);

    font-size: 12px;
}

.cc-footer-links {

    display: flex;

    gap: 30px;
}

.cc-footer-links a {

    color: var(--cc-text-muted);

    text-decoration: none;

    font-size: 13px;
}

.cc-footer-links a:hover {
    color: var(--cc-cyan);
}

.cc-footer-bottom {

    padding: 20px 0;

    border-top:
        1px solid var(--cc-border);

    color: var(--cc-text-muted);

    font-size: 11px;
}


/* ============================================================
   RESPONSIVE — NAVIGATION
   ============================================================ */

@media (max-width: 1050px) {

    .cc-mobile-toggle {
        display: block;
    }

    .cc-header-navigation {

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 20px;

        padding:
            24px 32px 30px;

        background:
            var(--cc-glass-heavy);

        border-bottom:
            1px solid var(--cc-border);

        backdrop-filter:
            blur(20px);
    }

    .cc-header.is-mobile-open
    .cc-header-navigation {
        display: flex;
    }

    .cc-nav-list {

        flex-direction: column;

        align-items: stretch;

        gap: 2px;
    }

    .cc-nav-list > li > a,
    .cc-nav-dropdown-toggle {

        width: 100%;

        justify-content:
            space-between;

        padding: 12px;

        font-size: 16px;
    }

    .cc-dropdown-menu {

        position: static;

        display: none;

        min-width: 0;

        margin:
            5px 0 10px 18px;

        border: 0;

        box-shadow: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        background: transparent;
    }

    .cc-nav-dropdown.is-open
    .cc-dropdown-menu {
        display: block;
    }

    .cc-account-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    }

    .cc-account-menu {

        position: static;

        display: none;

        width: 100%;

        margin-top: 10px;

        opacity: 1;
        visibility: visible;

        transform: none;
    }

    .cc-account.is-open
    .cc-account-menu {
        display: block;
    }

    .cc-signin {
        width: 100%;
    }


    /* SHOWCASE */

    .cc-server-showcase {

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

    .cc-world-card-featured {
        grid-column: span 2;
    }

}


/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .cc-container,
    .cc-header-inner {

        width: min(
            calc(100% - 36px),
            var(--cc-container)
        );
    }

    .cc-brand-logo {
        height: 40px;
    }


    /* HERO */

    .cc-hero {

        min-height:
            calc(
                100svh -
                var(--cc-header-height)
            );
    }

    .cc-hero::before {

        background-position:
            62% center;
    }

    .cc-hero-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(2,9,16,.95) 0%,
                rgba(3,13,23,.78) 70%,
                rgba(3,13,23,.48) 100%
            ),
            linear-gradient(
                0deg,
                var(--cc-bg) 0%,
                transparent 32%
            );
    }

    .cc-hero h1 {

        font-size:
            clamp(52px, 17vw, 78px);
    }

    .cc-hero-description {
        font-size: 16px;
    }

    .cc-hero-actions {
        flex-direction: column;
    }

    .cc-button {
        width: 100%;
    }


    /* SECTIONS */

    .cc-section {
        padding: 85px 0;
    }

    .cc-network-section {
        padding: 90px 0;
    }


    /* NETWORK INTRO */

    .cc-network-intro {

        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        margin-bottom: 45px;
    }


    /* WORLD CARDS */

    .cc-server-showcase {

        display: block;

        overflow: visible;

        border: 0;

        background: transparent;
    }

    .cc-world-card {

        min-height: 300px;

        margin-bottom: 1px;

        border:
            1px solid var(--cc-border);
    }

    .cc-world-card:first-child {

        border-radius:
            var(--cc-radius)
            var(--cc-radius)
            0
            0;
    }

    .cc-world-card:last-child {

        border-radius:
            0
            0
            var(--cc-radius)
            var(--cc-radius);
    }

    .cc-world-card-featured h3 {
        font-size: 37px;
    }

    .cc-world-card p {
        min-height: 0;
    }


    /* NETWORK STATUS */

    .cc-network-status-bar {

        align-items: flex-start;

        flex-direction: column;
    }


    /* COMMUNITY */

    .cc-community-panel {

        grid-template-columns: 1fr;

        padding: 36px 28px;
    }


    /* FOOTER */

    .cc-footer-inner {

        flex-direction: column;

        align-items: flex-start;

        padding: 50px 0;
    }

    .cc-footer-links {
        flex-wrap: wrap;
    }

}


/* ============================================================
   WORDPRESS ADMIN BAR
   ============================================================ */

@media (max-width: 782px) {

    body.admin-bar .cc-header {
        top: 46px;
    }

}