/* =====================================================
   NOVA-X CENTER STUDIO
   GLOBAL STYLE
===================================================== */


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        radial-gradient(
            circle at top,
            #24103f 0%,
            #0b0710 38%,
            #08060b 100%
        );

    color: #fff;

    overflow-x: hidden;
}


/* =====================================================
   LINKS
===================================================== */

a {
    color: inherit;
    text-decoration: none;
}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    width: 100%;

    min-height: 76px;

    padding: 0 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    z-index: 1000;

    background:
        rgba(8, 6, 11, .88);

    border-bottom:
        1px solid
        rgba(255,255,255,.05);

    backdrop-filter: blur(12px);
}


/* =====================================================
   LOGO
===================================================== */

.logo {
    font-size: 21px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #ffffff;

    white-space: nowrap;
}


.logo span {
    color: #8b4dff;
}


/* =====================================================
   NAVIGATION
===================================================== */

.navbar nav {
    display: flex;

    align-items: center;

    gap: 8px;
}


.navbar nav > a {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 10px 14px;

    color: #999;

    font-size: 13px;

    font-weight: 600;

    border-radius: 7px;

    transition:
        color .2s ease,
        background .2s ease;
}


.navbar nav > a:hover {
    color: #fff;

    background:
        rgba(139,77,255,.08);
}


.navbar nav > a.active {
    color: #fff;
}


.navbar nav > a.active::after {
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;

    bottom: 3px;

    height: 2px;

    background: #8b4dff;

    border-radius: 10px;
}


/* =====================================================
   LOGIN BUTTON
===================================================== */

.login-btn {
    margin-left: 5px;

    border:
        1px solid
        #8b4dff !important;

    background:
        rgba(139,77,255,.10);

    color: #fff !important;
}


.login-btn:hover {
    background: #8b4dff !important;

    color: #fff !important;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height:
        calc(100vh - 76px);

    padding:
        80px 6%;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;
}


/* =====================================================
   HERO BACKGROUND
===================================================== */

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    top: -250px;
    left: 50%;

    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(139,77,255,.20),
            transparent 68%
        );

    pointer-events: none;
}


.hero::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    bottom: -220px;
    right: -100px;

    background:
        radial-gradient(
            circle,
            rgba(94,43,155,.14),
            transparent 70%
        );

    pointer-events: none;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    width: 100%;

    max-width: 850px;

    position: relative;

    z-index: 2;
}


.small-title {
    margin-bottom: 14px;

    color: #9d6aff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.hero h1 {
    margin-bottom: 20px;

    color: #fff;

    font-size: clamp(
        45px,
        8vw,
        86px
    );

    line-height: .95;

    font-weight: 900;

    letter-spacing: -3px;
}


.hero h1 span {
    display: inline-block;

    color: #8b4dff;

    text-shadow:
        0 0 35px
        rgba(139,77,255,.25);
}


.description {
    max-width: 600px;

    margin:
        0 auto 32px;

    color: #888;

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-buttons {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


.discord-btn,
.shop-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding: 0 22px;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .5px;

    transition:
        transform .2s ease,
        background .2s ease,
        border .2s ease;
}


.discord-btn {
    background: #8b4dff;

    color: #fff;

    box-shadow:
        0 10px 30px
        rgba(139,77,255,.18);
}


.discord-btn:hover {
    background: #9c64ff;

    transform: translateY(-2px);
}


.shop-btn {
    border:
        1px solid
        #302044;

    background:
        rgba(17,13,26,.8);

    color: #ddd;
}


.shop-btn:hover {
    border-color: #8b4dff;

    color: #fff;

    transform: translateY(-2px);
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding:
        30px 6%
        100px;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {
    min-height: 210px;

    padding: 28px 22px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    text-align: center;

    background:
        rgba(17,13,26,.78);

    border:
        1px solid
        #241a31;

    border-radius: 14px;

    transition:
        transform .25s ease,
        border .25s ease,
        background .25s ease;
}


.service-card:hover {
    transform: translateY(-6px);

    border-color: #583187;

    background:
        rgba(25,17,38,.95);
}


.service-card .icon {
    width: 48px;
    height: 48px;

    margin:
        0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background:
        rgba(139,77,255,.10);

    border:
        1px solid
        rgba(139,77,255,.15);

    color: #9c68ff;

    font-size: 21px;

    font-weight: bold;
}


.service-card h3 {
    margin-bottom: 10px;

    color: #fff;

    font-size: 17px;
}


.service-card p {
    color: #777;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   INFORMATION
===================================================== */

.information {
    width: 100%;

    padding:
        110px 6%;

    border-top:
        1px solid
        rgba(255,255,255,.04);

    border-bottom:
        1px solid
        rgba(255,255,255,.04);

    background:
        rgba(10,7,14,.65);
}


.information-content {
    max-width: 700px;

    margin: 0 auto;

    text-align: center;
}


.information h2 {
    margin-bottom: 18px;

    font-size: 38px;

    color: #fff;
}


.information p:not(.small-title) {
    margin-bottom: 25px;

    color: #777;

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    padding:
        28px 20px;

    text-align: center;

    background: #08060b;

    border-top:
        1px solid
        rgba(255,255,255,.04);
}


footer p {
    color: #555;

    font-size: 11px;

    letter-spacing: .5px;
}


/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar {
    width: 7px;
}


::-webkit-scrollbar-track {
    background: #08060b;
}


::-webkit-scrollbar-thumb {
    background: #302044;

    border-radius: 20px;
}


::-webkit-scrollbar-thumb:hover {
    background: #8b4dff;
}


/* =====================================================
   SELECTION
===================================================== */

::selection {
    background: #8b4dff;

    color: #fff;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 950px) {

    .navbar {
        padding: 0 4%;
    }


    .services {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .navbar {
        min-height: auto;

        padding:
            18px 20px;

        flex-direction: column;

        gap: 15px;
    }


    .navbar nav {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;
    }


    .navbar nav > a {
        padding:
            8px 10px;

        font-size: 12px;
    }


    .hero {
        min-height:
            calc(100vh - 130px);

        padding:
            60px 20px;
    }


    .hero h1 {
        letter-spacing: -2px;
    }


    .services {
        padding:
            20px 20px 70px;

        grid-template-columns: 1fr;
    }


    .information {
        padding:
            80px 20px;
    }


    .information h2 {
        font-size: 30px;
    }

}


@media (max-width: 480px) {

    .logo {
        font-size: 19px;
    }


    .navbar nav {
        gap: 3px;
    }


    .hero-buttons {
        flex-direction: column;
    }


    .discord-btn,
    .shop-btn {
        width: 100%;

        max-width: 280px;
    }


    .hero h1 {
        font-size: 44px;
    }


    .description {
        font-size: 13px;
    }

}