/* ==========================================
   GUMWORLD
========================================== */

:root {

    --bg: #0b0710;
    --bg-2: #100817;

    --card: #171020;
    --card-2: #1d1428;

    --pink: #ff48c4;
    --pink-light: #ff82dc;

    --purple: #a64cff;
    --purple-light: #c47aff;

    --green: #59e49c;

    --white: #f8f4ff;
    --text: #d9cfdf;
    --muted: #978a9e;

    --border: rgba(213, 126, 255, 0.16);
    --border-strong: rgba(225, 126, 255, 0.30);

    --container: 1180px;
}


/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(255, 72, 196, 0.08),
            transparent 32%
        ),

        radial-gradient(
            circle at 90% 25%,
            rgba(166, 76, 255, 0.09),
            transparent 35%
        ),

        var(--bg);

    color: var(--white);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


img {
    display: block;

    max-width: 100%;
}


.container {

    width:
        min(
            calc(100% - 40px),
            var(--container)
        );

    margin: 0 auto;
}


/* ==========================================
   HEADER
========================================== */

.header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(10, 6, 15, 0.93);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.06);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


.header-inner {

    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 28px;
}


/* ==========================================
   LOGO
========================================== */

.logo {

    display: flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}


.logo-icon {

    width: 44px;

    height: 44px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--purple)
        );

    box-shadow:
        4px 4px 0
        rgba(88, 25, 133, 0.70);

    font-size: 21px;
}


.logo-text strong {

    display: block;

    font-size: 18px;

    line-height: 1;
}


.logo-text small {

    display: block;

    margin-top: 5px;

    color: var(--pink-light);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.4px;
}


/* ==========================================
   NAVIGATION
========================================== */

.navigation {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    color: #b8abbf;

    font-size: 12px;

    font-weight: 700;
}


.navigation a {

    position: relative;

    padding: 10px 0;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.navigation a::after {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    bottom: 3px;

    height: 2px;

    transform: scaleX(0);

    transform-origin: center;

    background:
        linear-gradient(
            90deg,
            var(--pink),
            var(--purple)
        );

    transition:
        transform 0.2s ease;
}


.navigation a:hover {

    color: white;

    transform:
        translateY(-1px);
}


.navigation a:hover::after {

    transform:
        scaleX(1);
}


.discord-header {

    flex-shrink: 0;

    padding:
        10px 15px;

    border-radius: 9px;

    background:
        rgba(159, 70, 255, 0.10);

    border:
        1px solid
        rgba(188, 106, 255, 0.25);

    color: #d9b6ff;

    font-size: 12px;

    font-weight: 800;

    transition:
        0.2s ease;
}


.discord-header:hover {

    transform:
        translateY(-2px);

    background:
        rgba(159, 70, 255, 0.18);
}


/* ==========================================
   HERO
========================================== */

.hero {

    position: relative;

    min-height:
        calc(100vh - 76px);

    display: flex;

    align-items: center;

    overflow: hidden;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);
}


.hero-background {

    position: absolute;

    inset: 0;

    background-image:
        url("assets/banner.png");

    background-size: cover;

    background-position: center;

    opacity: 0.48;

    transform:
        scale(1.015);
}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(8, 4, 13, 0.97) 0%,
            rgba(8, 4, 13, 0.87) 38%,
            rgba(8, 4, 13, 0.48) 68%,
            rgba(8, 4, 13, 0.36) 100%
        ),

        linear-gradient(
            0deg,
            var(--bg) 0%,
            rgba(11, 7, 16, 0.15) 42%,
            rgba(11, 7, 16, 0.18) 75%,
            var(--bg) 100%
        );
}


.hero-glow {

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    filter:
        blur(130px);

    pointer-events: none;
}


.hero-glow-1 {

    top: -260px;

    right: 8%;

    background:
        rgba(166, 76, 255, 0.20);
}


.hero-glow-2 {

    bottom: -300px;

    left: 8%;

    background:
        rgba(255, 72, 196, 0.15);
}


.hero-inner {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    align-items: center;

    gap: 80px;

    padding:
        80px 0;
}


.hero-content {

    max-width: 720px;
}


.hero-badge {

    width: fit-content;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 21px;

    padding:
        7px 11px;

    border:
        1px solid
        rgba(200, 112, 255, 0.20);

    background:
        rgba(165, 76, 255, 0.09);

    color: #ddb5ff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.3px;
}


.status-dot {

    width: 8px;

    height: 8px;

    display: inline-block;

    flex-shrink: 0;

    border-radius: 2px;

    background: var(--green);

    box-shadow:
        0 0 10px
        rgba(89, 228, 156, 0.75);
}


.status-dot.offline {

    background: #ff5d75;

    box-shadow:
        0 0 10px
        rgba(255, 93, 117, 0.6);
}


.hero h1 {

    max-width: 720px;

    font-size:
        clamp(
            50px,
            6.4vw,
            84px
        );

    line-height: 0.96;

    letter-spacing: -3px;

    text-shadow:
        0 5px 22px
        rgba(0, 0, 0, 0.45);
}


.hero h1 span {

    display: block;

    margin-top: 8px;

    background:
        linear-gradient(
            90deg,
            var(--pink-light),
            var(--purple-light)
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;
}


.hero-description {

    max-width: 620px;

    margin-top: 25px;

    color: #e2d9e7;

    font-size: 16px;

    text-shadow:
        0 2px 7px
        rgba(0, 0, 0, 0.70);
}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 30px;
}


/* ==========================================
   BUTTONS
========================================== */

.button {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    padding:
        0 20px;

    border-radius: 9px;

    border: 0;

    cursor: pointer;

    font-size: 13px;

    font-weight: 900;

    transition:
        transform 0.15s ease,
        background 0.15s ease,
        border-color 0.15s ease;
}


.button-primary {

    color: white;

    border:
        1px solid
        rgba(247, 180, 255, 0.72);

    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--purple)
        );

    box-shadow:
        0 5px 0
        #642684,
        0 15px 40px
        rgba(166, 76, 255, 0.17);
}


.button-primary:hover {

    transform:
        translateY(-2px);
}


.button-primary:active {

    transform:
        translateY(3px);

    box-shadow:
        0 2px 0
        #642684;
}


.button-secondary {

    color: white;

    border:
        1px solid
        rgba(255, 255, 255, 0.16);

    background:
        rgba(19, 12, 26, 0.76);
}


.button-secondary:hover {

    transform:
        translateY(-2px);

    background:
        rgba(36, 23, 47, 0.94);
}


.copy-message {

    min-height: 20px;

    margin-top: 14px;

    color: var(--pink-light);

    font-size: 12px;

    font-weight: 700;
}


/* ==========================================
   SERVER WIDGET
========================================== */

.server-widget {

    width: 100%;

    padding: 17px;

    border-radius: 13px;

    background:
        rgba(16, 10, 22, 0.88);

    border:
        1px solid
        rgba(212, 143, 255, 0.22);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 24px 70px
        rgba(0, 0, 0, 0.36);
}


.server-widget-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding-bottom: 13px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.server-caption {

    display: block;

    color: #8f8197;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1.2px;
}


.server-widget-top h2 {

    margin-top: 2px;

    font-size: 16px;
}


.server-status {

    display: flex;

    align-items: center;

    gap: 6px;

    padding:
        6px 8px;

    border:
        1px solid
        rgba(89, 228, 156, 0.17);

    background:
        rgba(89, 228, 156, 0.06);

    color: #7aefae;

    font-size: 7px;

    font-weight: 900;
}


.server-status.offline {

    color: #ff8698;

    border-color:
        rgba(255, 93, 117, 0.18);

    background:
        rgba(255, 93, 117, 0.05);
}


.server-stats {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 8px;

    margin-top: 11px;
}


.server-stat,
.server-ip {

    display: flex;

    align-items: center;

    gap: 9px;

    min-width: 0;

    padding: 9px;

    border:
        1px solid
        rgba(255, 255, 255, 0.055);

    background:
        rgba(255, 255, 255, 0.035);

    color: white;
}


.server-stat-icon {

    width: 31px;

    height: 31px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 6px;

    background:
        rgba(166, 76, 255, 0.10);

    font-size: 14px;
}


.server-stat small,
.server-ip small {

    display: block;

    color: #817487;

    font-size: 6px;

    font-weight: 900;

    letter-spacing: 0.8px;
}


.server-stat strong,
.server-ip strong {

    display: block;

    margin-top: 1px;

    overflow: hidden;

    text-overflow: ellipsis;

    color: white;

    font-size: 10px;

    white-space: nowrap;
}


.server-ip {

    width: 100%;

    margin-top: 8px;

    text-align: left;

    cursor: pointer;

    font-family: inherit;
}


.server-ip:hover {

    border-color:
        rgba(224, 130, 255, 0.24);
}


.server-widget-bottom {

    display: flex;

    justify-content: space-between;

    gap: 10px;

    margin-top: 10px;

    color: #817587;

    font-size: 6px;

    font-weight: 900;

    letter-spacing: 0.7px;
}


/* ==========================================
   SECTIONS
========================================== */

.section {

    position: relative;

    padding:
        100px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.04);
}


.section-alt {

    background:
        linear-gradient(
            180deg,
            #0e0914,
            #100817
        );
}


.section-heading {

    max-width: 730px;

    margin-bottom: 42px;
}


.eyebrow {

    display: inline-block;

    margin-bottom: 12px;

    color: var(--pink-light);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.7px;
}


.section-heading h2,
.requirements-heading h2 {

    font-size:
        clamp(
            34px,
            5vw,
            54px
        );

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.section-heading p,
.requirements-heading > p {

    margin-top: 13px;

    color: var(--text);

    font-size: 15px;
}


/* ==========================================
   FEATURES
========================================== */

.features {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}


.feature-card {

    position: relative;

    min-height: 245px;

    padding: 25px;

    overflow: hidden;

    border-radius: 13px;

    border:
        1px solid
        var(--border);

    background:
        linear-gradient(
            145deg,
            #181020,
            #120c18
        );

    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}


.feature-card:hover {

    transform:
        translateY(-4px);

    border-color:
        var(--border-strong);
}


.feature-number {

    position: absolute;

    top: 16px;

    right: 18px;

    color:
        rgba(255, 255, 255, 0.055);

    font-size: 34px;

    font-weight: 900;
}


.feature-icon {

    width: 44px;

    height: 44px;

    display: grid;

    place-items: center;

    margin-bottom: 20px;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 72, 196, 0.12),
            rgba(166, 76, 255, 0.14)
        );

    font-size: 20px;
}


.feature-card h3 {

    font-size: 20px;
}


.feature-card p {

    margin-top: 8px;

    color: var(--text);

    font-size: 13px;
}


/* ==========================================
   DOWNLOAD
========================================== */

.downloads {

    display: grid;

    gap: 14px;
}


.download-card {

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 20px;

    padding: 22px;

    border-radius: 13px;

    background: var(--card);

    border:
        1px solid
        var(--border);
}


.download-icon {

    width: 54px;

    height: 54px;

    display: grid;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(167, 73, 255, 0.10);

    font-size: 25px;
}


.download-caption {

    color: var(--pink-light);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.2px;
}


.download-content h3 {

    margin-top: 2px;

    font-size: 20px;
}


.download-content p {

    margin-top: 2px;

    color: var(--text);

    font-size: 12px;
}


.download-button {

    min-width: 190px;

    padding:
        12px 16px;

    border-radius: 8px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            var(--pink),
            var(--purple)
        );

    color: white;

    font-size: 12px;

    font-weight: 900;

    transition:
        transform 0.2s ease;
}


.download-button:hover {

    transform:
        translateY(-2px);
}


.download-button-alt {

    background:
        rgba(164, 75, 255, 0.12);

    border:
        1px solid
        rgba(193, 115, 255, 0.25);

    color: #d9b5ff;
}


/* ==========================================
   WORLD
========================================== */

.world-section {

    overflow: hidden;

    background:
        radial-gradient(
            circle at 5% 50%,
            rgba(255, 72, 196, 0.05),
            transparent 28%
        ),

        radial-gradient(
            circle at 95% 30%,
            rgba(166, 76, 255, 0.07),
            transparent 30%
        ),

        var(--bg);
}


.world-glow {

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    filter:
        blur(140px);

    opacity: 0.13;

    pointer-events: none;
}


.world-glow-left {

    left: -280px;

    top: 5%;

    background: var(--pink);
}


.world-glow-right {

    right: -280px;

    bottom: 5%;

    background: var(--purple);
}


.world-gallery {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


.world-card {

    position: relative;

    height: 325px;

    overflow: hidden;

    border-radius: 14px;

    border:
        1px solid
        rgba(210, 126, 255, 0.15);

    background: #08050c;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.world-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(231, 114, 255, 0.35);

    box-shadow:
        0 20px 55px
        rgba(0, 0, 0, 0.30);
}


.world-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


.world-card:hover img {

    transform:
        scale(1.035);

    filter:
        saturate(1.07);
}


.world-card-shade {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(7, 3, 11, 0.88) 100%
        );

    pointer-events: none;
}


.world-card-info {

    position: absolute;

    left: 18px;

    right: 18px;

    bottom: 16px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 11px;
}


.world-card-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 9px;

    border:
        1px solid
        rgba(213, 136, 255, 0.20);

    background:
        rgba(19, 10, 26, 0.80);

    backdrop-filter:
        blur(8px);
}


.world-card-info small {

    display: block;

    color: #c48dff;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 1px;
}


.world-card-info strong {

    display: block;

    margin-top: 1px;

    font-size: 14px;
}


/* ==========================================
   TEAM
========================================== */

.team-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}


.member-card {

    display: grid;

    grid-template-columns:
        130px
        minmax(0, 1fr);

    min-height: 245px;

    overflow: hidden;

    border-radius: 14px;

    background: var(--card);

    border:
        1px solid
        var(--border);
}


.member-avatar {

    width: 130px;

    min-height: 245px;

    overflow: hidden;

    background: #09060c;
}


.member-avatar img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.member-content {

    min-width: 0;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.member-title {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 12px;
}


.member-symbol {

    display: block;

    margin-bottom: 2px;

    font-size: 14px;
}


.member-title h3 {

    overflow-wrap: anywhere;

    font-size: 20px;

    line-height: 1.1;
}


.rank {

    flex-shrink: 0;

    padding:
        5px 7px;

    border-radius: 6px;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 0.6px;
}


.rank-owner {

    color: #ffc85e;

    border:
        1px solid
        rgba(255, 190, 72, 0.20);

    background:
        rgba(255, 190, 72, 0.08);
}


.rank-admin {

    color: #cb91ff;

    border:
        1px solid
        rgba(166, 76, 255, 0.22);

    background:
        rgba(166, 76, 255, 0.08);
}


.member-roles {

    display: flex;

    flex-wrap: wrap;

    gap: 6px;

    margin-top: 13px;
}


.member-roles span {

    padding:
        5px 7px;

    border-radius: 6px;

    border:
        1px solid
        rgba(166, 76, 255, 0.16);

    background:
        rgba(166, 76, 255, 0.07);

    color: #cfa8ff;

    font-size: 8px;

    font-weight: 700;
}


.member-roles .role-support {

    color: #79e6aa;

    border-color:
        rgba(70, 218, 137, 0.15);

    background:
        rgba(70, 218, 137, 0.06);
}


.member-content > p {

    margin-top: 13px;

    color: var(--text);

    font-size: 12px;
}


.member-details {

    display: grid;

    gap: 4px;

    margin-top: 13px;

    color: #a696b1;

    font-size: 9px;
}


/* ==========================================
   REQUIREMENTS
========================================== */

.requirements {

    margin-top: 55px;

    padding: 30px;

    border-radius: 15px;

    border:
        1px solid
        var(--border);

    background:
        linear-gradient(
            145deg,
            #17101f,
            #120b18
        );
}


.requirements-heading {

    max-width: 760px;
}


.requirements-heading h2 {

    font-size:
        clamp(
            30px,
            4vw,
            42px
        );
}


.requirements-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 11px;

    margin-top: 25px;
}


.requirement-card {

    display: flex;

    gap: 14px;

    padding: 17px;

    border-radius: 10px;

    border:
        1px solid
        rgba(255, 255, 255, 0.055);

    background:
        rgba(255, 255, 255, 0.025);
}


.requirement-icon {

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 9px;

    background:
        linear-gradient(
            135deg,
            rgba(255, 72, 196, 0.12),
            rgba(166, 76, 255, 0.14)
        );

    font-size: 18px;
}


.requirement-card h3 {

    font-size: 14px;
}


.requirement-card p {

    margin-top: 3px;

    color: var(--text);

    font-size: 11px;
}


.requirements-note {

    margin-top: 15px;

    padding:
        13px 15px;

    border-radius: 9px;

    border:
        1px solid
        rgba(255, 72, 196, 0.12);

    background:
        rgba(255, 72, 196, 0.05);

    color: #cbb9d3;

    font-size: 10px;
}


/* ==========================================
   RECRUITMENT
========================================== */

.recruitment {

    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 20px;

    margin-top: 15px;

    padding: 23px;

    border-radius: 13px;

    border:
        1px solid
        rgba(186, 91, 255, 0.16);

    background:
        rgba(164, 74, 255, 0.055);
}


.recruitment-icon {

    width: 55px;

    height: 55px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    background:
        rgba(166, 76, 255, 0.11);

    font-size: 23px;
}


.recruitment-content > span {

    color: var(--pink-light);

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.2px;
}


.recruitment-content h3 {

    margin-top: 2px;

    font-size: 19px;
}


.recruitment-roles {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 8px;
}


.recruitment-roles span {

    padding:
        6px 8px;

    border-radius: 6px;

    background:
        rgba(255, 255, 255, 0.035);

    color: #b7a8c0;

    font-size: 9px;
}


/* ==========================================
   FOOTER
========================================== */

.footer {

    padding:
        36px 0;

    background: #08050b;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.05);
}


.footer-inner {

    display: grid;

    grid-template-columns:
        1fr
        auto
        auto;

    align-items: center;

    gap: 30px;
}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 10px;
}


.footer-brand strong {

    display: block;
}


.footer-brand small {

    display: block;

    margin-top: 3px;

    color: var(--pink-light);

    font-size: 7px;

    letter-spacing: 1px;
}


.footer-links {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 13px;

    color: #8f8197;

    font-size: 9px;
}


.footer-links a:hover {

    color: var(--pink-light);
}


.footer-copy {

    color: #665c6b;

    font-size: 9px;

    white-space: nowrap;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1050px) {

    .navigation {
        display: none;
    }


    .hero {
        min-height: auto;
    }


    .hero-inner {

        grid-template-columns:
            1fr;

        gap: 35px;

        padding:
            75px 0;
    }


    .server-widget {

        max-width: 420px;
    }


    .features {

        grid-template-columns:
            1fr;
    }


    .team-grid {

        grid-template-columns:
            1fr;
    }


    .footer-inner {

        grid-template-columns:
            1fr;

        text-align: center;
    }


    .footer-brand,
    .footer-links {

        justify-content: center;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 700px) {

    .container {

        width:
            calc(100% - 28px);
    }


    .header-inner {

        min-height: 66px;
    }


    .logo-icon {

        width: 38px;

        height: 38px;

        font-size: 18px;
    }


    .logo-text strong {

        font-size: 15px;
    }


    .logo-text small {

        font-size: 6px;
    }


    .discord-header {

        padding:
            8px 10px;

        font-size: 11px;
    }


    .hero-background {

        opacity: 0.33;

        background-position:
            center;
    }


    .hero-overlay {

        background:
            rgba(8, 4, 13, 0.76);
    }


    .hero-inner {

        padding:
            65px 0;
    }


    .hero h1 {

        font-size:
            clamp(
                44px,
                14vw,
                62px
            );

        letter-spacing:
            -2px;
    }


    .hero-description {

        font-size: 14px;
    }


    .hero-buttons {

        flex-direction:
            column;
    }


    .hero-buttons .button {

        width: 100%;
    }


    .server-widget {

        max-width: none;
    }


    .server-stats {

        grid-template-columns:
            1fr 1fr;
    }


    .section {

        padding:
            70px 0;
    }


    .download-card {

        grid-template-columns:
            1fr;
    }


    .download-button {

        width: 100%;

        min-width: 0;
    }


    .world-gallery {

        grid-template-columns:
            1fr;
    }


    .world-card {

        height: 245px;
    }


    .member-card {

        grid-template-columns:
            96px
            minmax(0, 1fr);

        min-height: 220px;
    }


    .member-avatar {

        width: 96px;

        min-height: 220px;
    }


    .member-content {

        padding: 15px;
    }


    .member-title {

        flex-direction:
            column;
    }


    .member-title h3 {

        font-size: 17px;
    }


    .member-details {

        display: none;
    }


    .requirements {

        padding: 20px;
    }


    .requirements-grid {

        grid-template-columns:
            1fr;
    }


    .recruitment {

        grid-template-columns:
            1fr;

        text-align: center;
    }


    .recruitment-icon {

        margin:
            0 auto;
    }


    .recruitment-roles {

        justify-content: center;
    }


    .recruitment .button {

        width: 100%;
    }

}


/* ==========================================
   VERY SMALL MOBILE
========================================== */

@media (max-width: 430px) {

    .logo-text small {

        display: none;
    }


    .discord-header {

        font-size: 0;
    }


    .discord-header::after {

        content: "💬";

        font-size: 18px;
    }


    .server-stats {

        grid-template-columns:
            1fr;
    }


    .member-card {

        grid-template-columns:
            1fr;
    }


    .member-avatar {

        width: 100%;

        height: 260px;

        min-height: 0;
    }


    .member-title {

        flex-direction:
            row;
    }

}