@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #07050b;
    color: #fff;
    font-family: "Vazirmatn", sans-serif;
    overflow-x: hidden;
}

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


/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 76px;

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

    padding: 0 7%;

    background: rgba(7, 5, 11, .78);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(170, 0, 255, .15);

    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo span {
    color: #a800ff;
}

.navbar nav {
    display: flex;
    gap: 32px;
}

.navbar nav a {
    color: #aaa;
    font-size: 14px;
    transition: .25s;
}

.navbar nav a:hover {
    color: #b400ff;
}

.nav-button {
    background: linear-gradient(
        135deg,
        #8f00ff,
        #d100ff
    );

    padding: 11px 20px;

    border-radius: 10px;

    font-weight: 700;

    box-shadow:
        0 0 25px rgba(160, 0, 255, .3);
}


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

.hero {
    min-height: 850px;

    position: relative;

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

    text-align: center;

    padding: 120px 20px 80px;

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(145, 0, 255, .23),
            transparent 35%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(65, 0, 130, .2),
            transparent 35%
        ),
        #07050b;
}

.hero-background::before {
    content: "";

    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: 50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent
        );
}

.hero-content {
    position: relative;

    max-width: 900px;

    z-index: 2;
}

.badge {
    display: inline-block;

    padding: 8px 18px;

    border:
        1px solid
        rgba(190, 0, 255, .4);

    background:
        rgba(150, 0, 255, .08);

    color: #d580ff;

    border-radius: 100px;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 90px);

    line-height: 1.05;

    font-weight: 900;

    margin-bottom: 25px;
}

.hero h1 span {
    background:
        linear-gradient(
            90deg,
            #a400ff,
            #ed75ff
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}

.hero p {
    max-width: 650px;

    margin: auto;

    color: #aaa;

    font-size: 17px;

    line-height: 2;
}

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 35px;
}

.primary-btn,
.secondary-btn {
    padding: 14px 25px;

    border-radius: 12px;

    font-weight: 800;

    transition: .25s;
}

.primary-btn {
    background:
        linear-gradient(
            135deg,
            #8800ff,
            #d100ff
        );

    box-shadow:
        0 0 35px
        rgba(145, 0, 255, .25);
}

.secondary-btn {
    border:
        1px solid
        #302738;

    background: #100d16;
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-3px);
}


/* ================= SERVER IP ================= */

.server-ip {
    width: min(500px, 100%);

    margin: 45px auto 0;

    padding: 13px 15px 13px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

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

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

    border-radius: 15px;

    text-align: right;
}

.server-ip small {
    display: block;

    color: #777;

    font-size: 11px;
}

.server-ip strong {
    font-family: monospace;

    font-size: 16px;

    color: #d994ff;
}

.server-ip button {
    border: none;

    padding: 10px 15px;

    border-radius: 9px;

    background: #a000ff;

    color: white;

    cursor: pointer;

    font-family: inherit;

    font-weight: 700;
}


/* ================= SERVER STATUS ================= */

.server-status {
    width: min(500px, 100%);

    margin: 15px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 14px 20px;

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

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

    border-radius: 15px;
}

.status-dot {
    width: 11px;
    height: 11px;

    border-radius: 50%;

    background: #777;

    box-shadow:
        0 0 12px
        rgba(255,255,255,.2);

    flex-shrink: 0;
}

.status-info {
    display: flex;

    flex-direction: column;

    text-align: right;
}

.status-info strong {
    font-size: 14px;
}

.status-info span {
    color: #777;

    font-size: 11px;

    margin-top: 2px;
}

.copy-message {
    opacity: 0;

    margin-top: 10px;

    color: #c96aff;

    font-size: 12px;

    transition: .3s;
}

.copy-message.show {
    opacity: 1;
}


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

.features {
    position: relative;

    display: grid;

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

    max-width: 1100px;

    margin: -60px auto 100px;

    padding: 0 20px;

    gap: 15px;

    z-index: 10;
}

.feature-card {
    background:
        rgba(18, 14, 24, .9);

    border:
        1px solid
        #251b2e;

    padding: 25px;

    border-radius: 18px;

    text-align: center;

    transition: .3s;
}

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

    border-color: #8700c8;

    box-shadow:
        0 15px 50px
        rgba(130,0,200,.15);
}

.feature-icon {
    font-size: 30px;

    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 17px;

    margin-bottom: 7px;
}

.feature-card p {
    color: #777;

    font-size: 12px;
}


/* ================= SECTION ================= */

.section {
    max-width: 1200px;

    margin: auto;

    padding: 100px 20px;
}

.section-title {
    text-align: center;

    margin-bottom: 55px;
}

.section-title > span {
    color: #a800ff;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 3px;
}

.section-title h2 {
    font-size: 40px;

    margin: 10px 0;
}

.section-title h2 b {
    color: #a800ff;
}

.section-title p {
    color: #777;
}


/* ================= SHOP ================= */

.shop-category {
    margin-bottom: 80px;
}

.shop-category > h3 {
    font-size: 20px;

    margin-bottom: 25px;
}

.cards {
    display: grid;

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

    gap: 20px;
}

.shop-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            #131018,
            #09070d
        );

    border:
        1px solid
        #28212d;

    border-radius: 22px;

    padding: 35px 28px;

    text-align: center;

    overflow: hidden;

    transition: .3s;
}

.shop-card:hover {
    transform: translateY(-8px);
}

.shop-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #999;
}

.shop-card.nova::before {
    background: #2ecc71;
}

.shop-card.vanta::before {
    background: #3498db;
}

.shop-card.apex::before {
    background: #a020f0;
}

.rank-icon {
    font-size: 35px;
}

.shop-card h3 {
    font-size: 25px;

    margin: 12px 0;
}

.price {
    font-size: 25px;

    font-weight: 900;

    color: #d26aff;

    margin-bottom: 20px;
}

.price small {
    color: #777;

    font-size: 12px;
}

.shop-card ul {
    list-style: none;

    text-align: right;

    color: #aaa;

    line-height: 2.3;

    font-size: 13px;

    margin-bottom: 25px;
}

.shop-card button,
.key-card button {
    width: 100%;

    border: none;

    background:
        linear-gradient(
            135deg,
            #8200e8,
            #c000ff
        );

    color: white;

    padding: 13px;

    border-radius: 11px;

    cursor: pointer;

    font-family: inherit;

    font-weight: 800;

    transition: .2s;
}

.shop-card button:hover,
.key-card button:hover {
    filter: brightness(1.2);
}


/* ================= KEYS ================= */

.key-cards {
    grid-template-columns:
        repeat(4, 1fr);
}

.key-card {
    padding: 30px 20px;

    background: #0e0b13;

    border:
        1px solid
        #27202e;

    border-radius: 18px;

    text-align: center;
}

.key-card > span {
    font-size: 38px;
}

.key-card h3 {
    margin: 12px 0;
}

.key-card strong {
    display: block;

    color: #c65aff;

    margin-bottom: 20px;
}

.key-card button {
    padding: 10px;
}


/* ================= RULES ================= */

.rules-section {
    border-top:
        1px solid
        #18131c;
}

.rules-grid {
    display: grid;

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

    gap: 20px;
}

.rule {
    position: relative;

    background: #0d0a11;

    border:
        1px solid
        #211a28;

    border-radius: 18px;

    padding: 30px;
}

.rule > span {
    color: #8f00ff;

    font-size: 12px;

    font-weight: 900;
}

.rule h3 {
    margin: 10px 0;
}

.rule p {
    color: #777;

    line-height: 1.9;

    font-size: 13px;
}


/* ================= DISCORD ================= */

.discord-section {
    max-width: 1200px;

    margin: auto;

    padding: 40px 20px 100px;
}

.discord-box {
    display: flex;

    align-items: center;

    gap: 25px;

    padding: 40px;

    border-radius: 25px;

    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(120,0,255,.25),
            transparent 35%
        ),
        #0e0b13;

    border:
        1px solid
        #2b2135;
}

.discord-icon {
    font-size: 50px;
}

.discord-box > div:nth-child(2) {
    flex: 1;
}

.discord-box span {
    color: #a800ff;

    font-size: 11px;

    letter-spacing: 2px;
}

.discord-box h2 {
    margin: 5px 0;
}

.discord-box p {
    color: #777;

    font-size: 13px;
}

.discord-btn {
    background: #5865f2;

    padding: 13px 25px;

    border-radius: 11px;

    font-weight: 800;
}


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

footer {
    border-top:
        1px solid
        #18131c;

    padding: 45px 20px;

    text-align: center;

    background: #050408;
}

.footer-logo {
    font-size: 22px;

    font-weight: 900;

    margin-bottom: 10px;
}

footer p {
    color: #555;

    font-size: 12px;
}

.footer-links {
    display: flex;

    justify-content: center;

    gap: 20px;

    margin-top: 20px;
}

.footer-links a {
    color: #777;

    font-size: 12px;
}

.footer-links a:hover {
    color: #b000ff;
}


/* ================= TOAST ================= */

.toast {
    position: fixed;

    bottom: 25px;
    right: 25px;

    background: #17121c;

    border:
        1px solid
        #7c00bd;

    padding: 14px 20px;

    border-radius: 10px;

    transform: translateY(100px);

    opacity: 0;

    transition: .3s;

    z-index: 9999;
}

.toast.show {
    transform: translateY(0);

    opacity: 1;
}


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

@media (max-width: 900px) {

    .navbar {
        padding: 0 20px;
    }

    .navbar nav {
        display: none;
    }

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

        margin-top: -30px;
    }

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

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

}


@media (max-width: 600px) {

    .navbar {
        height: 65px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-button {
        padding: 9px 13px;

        font-size: 12px;
    }

    .hero {
        min-height: 760px;

        padding-top: 100px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .server-ip {
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }

    .server-ip button {
        width: 100%;
    }

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

        margin-top: 0;
    }

    .cards,
    .key-cards,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .discord-box {
        flex-direction: column;

        text-align: center;
    }

    .discord-btn {
        width: 100%;

        text-align: center;
    }

}
