* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #07090e;
    color: #fff;

    overflow-x: hidden;
}

button,
a {
    font-family: inherit;
}

button {
    cursor: pointer;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 76px;

    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(5, 7, 11, .82);

    border-bottom:
        1px solid rgba(255,255,255,.07);

    backdrop-filter: blur(18px);

    z-index: 1000;
}

.logo {
    color: #fff;

    text-decoration: none;

    font-size: 24px;
    font-weight: 900;

    letter-spacing: 2px;
}

.logo span {
    color: #e52d2d;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    position: relative;

    color: #9da3ad;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    transition: .25s;
}

nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #e52d2d;

    transition: .25s;
}

nav a:hover {
    color: #fff;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu {
    display: none;

    border: 0;

    background: transparent;

    color: #fff;

    font-size: 26px;
}

.mobile-nav {
    display: none;
}


/* =========================
   HERO
========================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding:
        120px 7% 100px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 45%,
            rgba(229,45,45,.25),
            transparent 35%
        ),

        radial-gradient(
            circle at 30% 90%,
            rgba(150,20,20,.14),
            transparent 40%
        ),

        linear-gradient(
            135deg,
            #040508,
            #0b0e15 50%,
            #140708
        );
}

.hero-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    opacity: .35;
}

.hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    right: 5%;
    top: 15%;

    border-radius: 50%;

    background:
        rgba(229,45,45,.12);

    filter: blur(90px);
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,5,8,.98),
            rgba(4,5,8,.72),
            rgba(4,5,8,.2)
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    max-width: 900px;
}

.server-badge {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding:
        9px 15px;

    margin-bottom: 22px;

    color: #82ff99;

    background:
        rgba(50,160,70,.08);

    border:
        1px solid rgba(70,220,100,.25);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;
}

.server-badge.offline {
    color: #ff8585;

    background:
        rgba(180,30,30,.08);

    border-color:
        rgba(229,45,45,.3);
}

.status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #39e85b;

    box-shadow:
        0 0 12px #39e85b;

    animation:
        pulse 1.6s infinite;
}

.status-dot.offline {
    background: #e52d2d;

    box-shadow:
        0 0 12px #e52d2d;
}

@keyframes pulse {
    50% {
        opacity: .35;
    }
}

.subtitle {
    margin-bottom: 18px;

    color: #e52d2d;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 6px;
}

.hero h1 {
    margin-bottom: 32px;

    font-size:
        clamp(60px, 10vw, 135px);

    line-height: .82;

    letter-spacing: -7px;

    text-shadow:
        0 20px 50px rgba(0,0,0,.65);
}

.hero h1 span {
    color: #e52d2d;
}

.hero h1 small {
    display: block;

    margin-top: 25px;

    color: #b7bcc5;

    font-size:
        clamp(15px, 2vw, 25px);

    line-height: 1.2;

    letter-spacing: 7px;
}

.description {
    max-width: 680px;

    color: #a1a8b3;

    font-size: 17px;

    line-height: 1.8;
}


/* =========================
   LIVE STATUS
========================= */

.live-server-info {
    display: flex;

    width: max-content;

    margin-top: 28px;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.07);

    border-left:
        3px solid #e52d2d;
}

.live-item {
    min-width: 145px;

    padding:
        15px 20px;

    border-right:
        1px solid rgba(255,255,255,.07);
}

.live-item:last-child {
    border-right: 0;
}

.live-item span {
    display: block;

    margin-bottom: 7px;

    color: #666e7a;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.live-item strong {
    font-size: 15px;
}

#server-online {
    color: #72ff8a;
}


/* =========================
   IP
========================= */

.server-ip {
    display: flex;

    align-items: center;

    gap: 18px;

    width: max-content;

    margin-top: 17px;

    padding:
        13px 14px 13px 18px;

    background:
        rgba(255,255,255,.035);

    border-left:
        3px solid #e52d2d;
}

.server-ip span {
    color: #666e7a;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
}

.server-ip strong {
    font-size: 15px;

    letter-spacing: 1px;
}

.copy-ip {
    padding:
        9px 14px;

    color: #fff;

    background:
        rgba(255,255,255,.04);

    border:
        1px solid rgba(255,255,255,.13);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;

    transition: .2s;
}

.copy-ip:hover {
    border-color: #e52d2d;

    background:
        rgba(229,45,45,.12);
}

.copy-message {
    max-height: 0;

    width: max-content;

    margin-top: 0;

    overflow: hidden;

    opacity: 0;

    color: #72ff8a;

    font-size: 10px;
    font-weight: 900;

    transition: .25s;
}

.copy-message.show {
    max-height: 30px;

    margin-top: 10px;

    opacity: 1;
}


/* =========================
   BUTTONS
========================= */

.buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 25px;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 170px;

    padding:
        15px 24px;

    border-radius: 3px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 1px;

    transition: .25s;
}

.primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            #d52222,
            #a91616
        );

    border: 0;

    box-shadow:
        0 12px 35px
        rgba(210,35,35,.18);
}

.primary:hover {
    transform:
        translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #ff3b3b,
            #c91e1e
        );

    box-shadow:
        0 18px 45px
        rgba(210,35,35,.3);
}

.secondary {
    color: #fff;

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.2);
}

.secondary:hover {
    transform:
        translateY(-3px);

    border-color: #e52d2d;
}


/* =========================
   HERO SCROLL
========================= */

.hero-scroll {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;

    color: #555d68;

    font-size: 8px;

    letter-spacing: 4px;
}

.hero-scroll div {
    width: 1px;
    height: 35px;

    background:
        linear-gradient(
            #777,
            transparent
        );
}


/* =========================
   SECTIONS
========================= */

.server-panel,
.features-section,
.news-section,
.shop-section {
    position: relative;

    padding:
        130px 7%;
}

.server-panel {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(229,45,45,.1),
            transparent 45%
        ),

        #0a0d13;
}

.features-section {
    background:
        #07090e;
}

.news-section {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(229,45,45,.08),
            transparent 45%
        ),

        #0a0d13;
}

.shop-section {
    background:
        #07090e;
}

.section-heading {
    max-width: 800px;

    margin:
        0 auto 65px;

    text-align: center;
}

.section-label {
    margin-bottom: 18px;

    color: #ff3b3b;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 5px;
}

.section-heading h2 {
    margin-bottom: 25px;

    font-size:
        clamp(42px, 6vw, 72px);

    line-height: .95;

    letter-spacing: -3px;
}

.section-heading h2 span {
    color: #e52d2d;
}

.section-heading > p:last-child {
    max-width: 680px;

    margin: auto;

    color: #8f97a3;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================
   SERVER CARDS
========================= */

.server-panel-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.server-info-card {
    display: flex;

    align-items: center;

    gap: 17px;

    padding: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.012)
        );

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 7px;

    transition: .3s;
}

.server-info-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(229,45,45,.45);

    box-shadow:
        0 20px 45px
        rgba(0,0,0,.3);
}

.server-info-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(229,45,45,.08);

    border:
        1px solid rgba(229,45,45,.2);

    border-radius: 6px;

    font-size: 23px;
}

.server-info-card span {
    display: block;

    margin-bottom: 6px;

    color: #5f6772;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.server-info-card strong {
    font-size: 14px;
}

.server-panel-bottom {
    max-width: 1100px;

    margin:
        30px auto 0;

    padding:
        23px 27px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    background:
        rgba(229,45,45,.04);

    border:
        1px solid rgba(229,45,45,.15);

    border-left:
        3px solid #e52d2d;

    border-radius: 5px;
}

.server-panel-bottom span {
    display: block;

    margin-bottom: 6px;

    color: #5f6772;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.server-panel-bottom strong {
    font-size: 17px;
}


/* =========================
   FEATURES
========================= */

.features-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.feature-card {
    position: relative;

    min-height: 270px;

    padding: 32px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.01)
        );

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 8px;

    transition: .3s;
}

.feature-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(229,45,45,.4);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.35);
}

.feature-number {
    position: absolute;

    top: 18px;
    right: 23px;

    color: rgba(255,255,255,.07);

    font-size: 38px;
    font-weight: 900;
}

.feature-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 23px;

    background:
        rgba(229,45,45,.08);

    border:
        1px solid rgba(229,45,45,.2);

    border-radius: 6px;

    font-size: 26px;
}

.feature-card h3 {
    margin-bottom: 12px;

    font-size: 17px;

    letter-spacing: 1px;
}

.feature-card p {
    color: #7f8793;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================
   NEWS
========================= */

.news-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1.4fr 1fr;

    gap: 18px;
}

.news-card {
    min-height: 245px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.01)
        );

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 8px;

    transition: .3s;
}

.news-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(229,45,45,.4);
}

.news-card.featured {
    grid-row:
        span 2;
}

.news-image {
    min-height: 190px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(229,45,45,.25),
            transparent 55%
        ),

        linear-gradient(
            135deg,
            #0d1018,
            #1a0809
        );

    border-bottom:
        1px solid rgba(255,255,255,.07);
}

.news-image span {
    color: rgba(255,255,255,.08);

    font-size: 35px;
    font-weight: 900;

    letter-spacing: 5px;
}

.news-content {
    padding: 28px;
}

.news-meta {
    display: flex;

    justify-content: space-between;

    margin-bottom: 15px;

    color: #e52d2d;

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}

.news-card h3 {
    margin-bottom: 12px;

    font-size: 22px;
}

.news-card p {
    color: #818995;

    font-size: 14px;

    line-height: 1.7;
}

.news-more,
.news-link {
    display: inline-block;

    margin-top: 20px;

    color: #ff3b3b;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-decoration: none;
}


/* =========================
   SHOP
========================= */

.shop-grid {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}

.shop-card {
    min-height: 290px;

    padding: 30px;

    display: flex;

    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.045),
            rgba(255,255,255,.01)
        );

    border:
        1px solid rgba(255,255,255,.07);

    border-radius: 8px;

    transition: .3s;
}

.shop-card:hover {
    transform:
        translateY(-7px);

    border-color:
        rgba(229,45,45,.4);
}

.shop-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    background:
        rgba(229,45,45,.08);

    border:
        1px solid rgba(229,45,45,.2);

    border-radius: 6px;

    font-size: 28px;
}

.shop-card h3 {
    margin-bottom: 12px;

    font-size: 18px;
}

.shop-card p {
    flex: 1;

    color: #7f8793;

    font-size: 13px;

    line-height: 1.7;
}

.shop-card > span {
    width: max-content;

    margin-top: 20px;

    padding:
        7px 11px;

    color: #ff7777;

    background:
        rgba(229,45,45,.07);

    border:
        1px solid rgba(229,45,45,.2);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 2px;
}


/* =========================
   DISCORD
========================= */

.discord-section {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        100px 7%;

    overflow: hidden;

    text-align: center;

    background:
        radial-gradient(
            circle,
            rgba(229,45,45,.18),
            transparent 50%
        ),

        #090b11;
}

.discord-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background:
        rgba(229,45,45,.13);

    filter: blur(90px);
}

.discord-content {
    position: relative;

    z-index: 2;

    max-width: 700px;
}

.discord-content h2 {
    margin-bottom: 25px;

    font-size:
        clamp(42px, 6vw, 70px);

    line-height: .95;

    letter-spacing: -3px;
}

.discord-content h2 span {
    color: #e52d2d;
}

.discord-content > p:not(.section-label) {
    color: #8d95a0;

    font-size: 17px;

    line-height: 1.8;
}

.discord-content .button {
    margin-top: 30px;
}


/* =========================
   FOOTER
========================= */

footer {
    padding:
        35px 7%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-top:
        1px solid rgba(255,255,255,.07);

    color: #656d78;
}

footer strong {
    color: #fff;

    font-size: 18px;

    letter-spacing: 1px;
}

footer strong span {
    color: #e52d2d;
}

footer p {
    margin-top: 6px;

    font-size: 11px;
}


/* =========================
   SCROLL ANIMATION
========================= */

.reveal {
    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

    nav {
        gap: 15px;
    }

    .features-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .shop-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .server-panel-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {

    .navbar {
        padding:
            0 6%;
    }

    nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-nav {
        position: fixed;

        top: 76px;
        left: 0;
        right: 0;

        z-index: 999;

        padding: 20px;

        display: flex;

        flex-direction: column;

        gap: 4px;

        background:
            rgba(5,7,11,.97);

        border-bottom:
            1px solid rgba(255,255,255,.08);

        transform:
            translateY(-120%);

        transition: .3s;
    }

    .mobile-nav.open {
        transform:
            translateY(0);
    }

    .mobile-nav a {
        padding: 15px;

        color: #aaa;

        text-decoration: none;

        font-size: 12px;
        font-weight: 900;

        letter-spacing: 1px;
    }

    .mobile-nav a:hover {
        color: #fff;

        background:
            rgba(229,45,45,.08);
    }

    .hero {
        min-height: 100svh;

        padding:
            110px 6% 80px;
    }

    .hero h1 {
        font-size: 58px;

        letter-spacing: -4px;
    }

    .hero h1 small {
        font-size: 13px;

        letter-spacing: 3px;
    }

    .subtitle {
        font-size: 9px;

        letter-spacing: 3px;
    }

    .description {
        font-size: 15px;
    }

    .live-server-info {
        width: 100%;

        display: grid;

        grid-template-columns:
            1fr 1fr;
    }

    .live-item {
        min-width: 0;
    }

    .live-item:last-child {
        grid-column:
            1 / -1;

        border-top:
            1px solid rgba(255,255,255,.07);
    }

    .server-ip {
        width: 100%;

        flex-wrap: wrap;
    }

    .buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-scroll {
        display: none;
    }

    .server-panel,
    .features-section,
    .news-section,
    .shop-section {
        padding:
            90px 6%;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .server-panel-grid,
    .features-grid,
    .shop-grid,
    .news-grid {
        grid-template-columns:
            1fr;
    }

    .news-card.featured {
        grid-row:
            auto;
    }

    .server-panel-bottom {
        flex-direction: column;

        align-items: stretch;

        gap: 20px;
    }

    footer {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }
}