<style>

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #090b0f;
    color: #e8e8e8;
}

/* =========================
   LEFT NAVIGATION
========================= */

.sidebar {
    position: fixed;
    left: 0;
    top: 0;

    width: 240px;
    height: 100vh;

    background: #0c0f13;

    border-right: 1px solid #7cff68;

    display: flex;
    flex-direction: column;

    z-index: 1000;
}

/* LOGO */

.logo {
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 32px;
    font-weight: 900;

    letter-spacing: 3px;

    color: #7cff68;

    border-bottom: 1px solid #7cff68;
}

.logo span {
    color: white;
}

/* NAVIGATION */

.sidebar-menu {
    list-style: none;

    padding: 25px 15px;
}

.sidebar-menu li {
    margin-bottom: 7px;
}

.sidebar-menu a {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 13px 15px;

    color: #888;

    text-decoration: none;

    font-size: 14px;

    font-weight: bold;

    border-radius: 5px;

    transition: 0.2s;
}

.sidebar-menu a:hover {
    color: white;

    background: #151a20;
}

.sidebar-menu a.active {
    color: #7cff68;

    background: rgba(124,255,104,0.08);

    border-left: 3px solid #7cff68;
}

/* ICON */

.nav-icon {
    width: 22px;

    text-align: center;

    font-size: 17px;
}

/* SIDEBAR BOTTOM */

.sidebar-bottom {
    margin-top: auto;

    padding: 20px;

    border-top: 1px solid #222831;
}

.server-status {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 12px;

    color: #777;
}

.status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #7cff68;

    box-shadow: 0 0 10px #7cff68;
}

/* =========================
   MAIN CONTENT
========================= */

.main {
    margin-left: 240px;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 80px 30px;

    background:
        linear-gradient(
            rgba(5,7,10,0.65),
            rgba(5,7,10,0.95)
        ),
        radial-gradient(
            circle at center,
            #203b28,
            #090b0f 70%
        );
}

.hero-content {
    max-width: 850px;
	min-height: 500px;
}

.hero-tag {
    display: inline-block;

    padding: 7px 14px;

    border: 1px solid rgba(124,255,104,0.35);

    color: #7cff68;

    font-size: 11px;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 2px;
}

.hero h1 {
    font-size: clamp(65px, 10vw, 130px);

    line-height: 0.9;

    font-weight: 900;

    letter-spacing: -6px;

    color: white;
}

.hero h1 span {
    color: #7cff68;
}

.hero p {
    max-width: 650px;

    margin: 30px auto;

    color: #aaa;

    font-size: 18px;
}

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;
}

/* =========================
   BUTTONS
========================= */

.button {
    display: inline-block;

    padding: 14px 27px;

    text-decoration: none;

    font-weight: bold;

    border-radius: 4px;

    transition: 0.2s;
}

.button-primary {
    background: #7cff68;

    color: #081008;
}

.button-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(124,255,104,0.2);
}

.button-secondary {
    border: 1px solid #444;

    color: white;
}

.button-secondary:hover {
    border-color: #7cff68;

    color: #7cff68;
}

/* =========================
   SERVER BAR
========================= */

.server-bar {
    max-width: 850px;

    margin: -35px auto 0;

    position: relative;

    padding: 20px 25px;

    background: #11151b;

    border: 1px solid #252b33;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.server-info small {
    display: block;

    color: #666;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.server-ip {
    color: #7cff68;

    font-family: monospace;

    font-size: 18px;

    font-weight: bold;
}

.copy-button {
    padding: 10px 18px;

    border: 1px solid #7cff68;

    background: transparent;

    color: #7cff68;

    cursor: pointer;
}

.copy-button:hover {
    background: #7cff68;

    color: #080a0d;
}

/* =========================
   SECTIONS
========================= */

section {
    padding: 100px 30px;
}

.container {
    max-width: 1100px;

    margin: auto;
}

.section-header {
    text-align: center;

    margin-bottom: 50px;
}

.section-header small {
    color: #7cff68;

    font-size: 11px;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-header h2 {
    font-size: 42px;

    margin-top: 10px;

    color: white;
}

.section-header p {
    max-width: 600px;

    margin: 15px auto;

    color: #777;
}

/* =========================
   FEATURES
========================= */

.features {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.feature {
    padding: 35px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.9)
        ),
        #171c22;

    border: 1px solid #34BC24;

    transition: 0.25s;
}

.feature:hover {
    transform: translateY(-5px);

    border-color: #7cff68;
}

.feature-icon {
    font-size: 35px;

    margin-bottom: 20px;
}

.feature h3 {
    color: white;

    margin-bottom: 10px;
}

.feature p {
    color: #888;

    font-size: 14px;
}

/* =========================
   GAME MODES
========================= */

.dark-section {
    background: #0d1015;
}

.modes {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.mode {
    min-height: 100px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,0.9)
        ),
        #171c22;

    border: 1px solid #34BC24;

}

.mode h3 {
    color: white;

    font-size: 25px;
}

.mode p {
    color: #999;

    font-size: 14px;
}

/* =========================
   STATS
========================= */

.stats {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    border-top: 1px solid #7cff68;

    border-bottom: 1px solid #7cff68;
}

.stat {
    text-align: center;

    padding: 40px 20px;

    border-right: 1px solid #252a31;
}

.stat:last-child {
    border-right: none;
}

.stat strong {
    display: block;

    color: #7cff68;

    font-size: 38px;
}

.stat span {
    color: #777;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;
}

/* =========================
   RANKS
========================= */

.ranks {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.rank {
    padding: 35px;

    text-align: center;

    background: #11151b;

    border: 1px solid #7cff68;
}

.rank h3 {
    color: #7cff68;

    font-size: 25px;

    margin-bottom: 10px;
}

.price {
    font-size: 32px;

    font-weight: bold;

    color: white;

    margin-bottom: 20px;
}

.rank ul {
    list-style: none;

    text-align: left;

    margin-bottom: 25px;
}

.rank li {
    color: #888;

    padding: 8px 0;

    border-bottom: 1px solid #7cff68;
}

/* =========================
   COMMUNITY
========================= */

.community {
    text-align: center;

    background:
        radial-gradient(
            circle,
            #1c3321,
            #090b0f 65%
        );
}

.community h2 {
    color: white;

    font-size: 45px;

    margin-bottom: 15px;
}

.community p {
    max-width: 600px;

    margin: auto;

    color: #888;

    margin-bottom: 30px;
}

/* =========================
   FOOTER
========================= */

footer {
    padding: 40px 30px;

    background: #07090c;

    border-top: 1px solid #1c2026;

    text-align: center;
}

footer p {
    color: #555;

    font-size: 12px;

    margin: 5px;
}

/* =========================
   MOBILE NAV
========================= */

.mobile-header {
    display: none;
}

/* =========================
   MOBILE
========================= */

@media(max-width: 850px) {

    .sidebar {
        width: 70px;
    }

    .logo {
        font-size: 18px;

        height: 70px;
    }

    .logo span {
        display: none;
    }

    .sidebar-menu a {
        justify-content: center;

        padding: 15px 5px;
    }

    .sidebar-menu a span:not(.nav-icon) {
        display: none;
    }

    .sidebar-bottom {
        padding: 15px 5px;
    }

    .server-status {
        justify-content: center;
    }

    .server-status span {
        display: none;
    }

    .main {
        margin-left: 70px;
    }

    .features,
    .modes,
    .ranks {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid #252a31;
    }

    .server-bar {
        margin-left: 20px;
        margin-right: 20px;

        flex-direction: column;

        text-align: center;
    }

}

@media(max-width: 500px) {

    .sidebar {
        display: none;
    }

    .main {
        margin-left: 0;
    }

    section {
        padding: 70px 20px;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 70px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: none !important;

        border-bottom: 1px solid #252a31;
    }

    .stat:last-child {
        border-bottom: none;
    }

}

</style>