body {
    background: black;
    color: white;
}

.hero h1 span {
    color: purple !important;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #08060d;
    color: white;
}

body::before {
    content: "";
    position: fixed;
    width: 600px;
    height: 600px;
    background: #7c3cff;
    filter: blur(180px);
    opacity: 0.12;
    top: -250px;
    left: -200px;
    pointer-events: none;
}


/* NAVBAR */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 6, 13, 0.75);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 25px;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: #9b5cff;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.nav-links a:hover {
    color: white;
}

.discord-btn {
    text-decoration: none;
    color: white;

    background: #7c3cff;

    padding: 11px 20px;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 0 25px rgba(124,60,255,0.3);
}


/* HERO */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 100px 20px 50px;

    background:
        radial-gradient(circle at 50% 40%,
        rgba(124,60,255,0.2),
        transparent 35%);
}

.hero-content {
    max-width: 850px;
}

.badge {
    display: inline-block;

    padding: 8px 15px;

    border: 1px solid rgba(155,92,255,0.35);
    border-radius: 30px;

    color: #b991ff;

    font-size: 11px;
    letter-spacing: 2px;

    margin-bottom: 25px;

    background: rgba(124,60,255,0.08);
}

.hero h1 {
    font-size: clamp(55px, 9vw, 110px);
    line-height: 0.9;
    letter-spacing: -6px;
    font-weight: 800;
}

.hero h1 span {
    color: #9b5cff;

    text-shadow:
        0 0 30px rgba(155,92,255,0.5);
}

.hero p {
    max-width: 600px;

    margin: 30px auto;

    color: #999;

    line-height: 1.7;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.primary-btn,
.secondary-btn {
    display: inline-block;

    padding: 14px 25px;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 600;
    font-size: 14px;
}

.primary-btn {
    color: white;
    background: #7c3cff;

    box-shadow:
        0 0 30px rgba(124,60,255,0.3);
}

.secondary-btn {
    color: white;

    border: 1px solid #292432;

    background: #100d16;
}


/* SECTIONS */

.section {
    max-width: 1200px;

    margin: auto;

    padding: 120px 25px;
}

.section-title {
    display: flex;
    gap: 20px;

    margin-bottom: 50px;
}

.section-title > span {
    color: #7c3cff;
    font-weight: 700;
}

.small-title {
    color: #777;
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.section h2 {
    font-size: 40px;
}

.section h2 span {
    color: #9b5cff;
}


/* PRODUCTS */

.products {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.product-card {
    position: relative;

    padding: 35px;

    background: #0d0a13;

    border: 1px solid #211b2b;

    border-radius: 14px;

    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);

    border-color: #7c3cff;

    box-shadow:
        0 15px 50px rgba(124,60,255,0.12);
}

.product-card.featured {
    border-color: rgba(124,60,255,0.6);
}

.popular {
    position: absolute;

    top: 15px;
    right: 15px;

    background: #7c3cff;

    padding: 5px 9px;

    border-radius: 5px;

    font-size: 9px;
    font-weight: 700;
}

.product-icon {
    font-size: 28px;
    color: #9b5cff;

    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 22px;
}

.product-card p {
    color: #777;
    font-size: 14px;

    margin: 12px 0 25px;
}

.price {
    font-size: 30px;
    font-weight: 800;

    margin-bottom: 25px;
}

.product-card button {
    width: 100%;

    padding: 13px;

    border: none;
    border-radius: 7px;

    background: #17121f;

    color: white;

    cursor: pointer;

    font-weight: 600;

    transition: 0.2s;
}

.product-card button:hover {
    background: #7c3cff;
}


/* SERVICES */

.services {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.service {
    padding: 30px;

    background: #0d0a13;

    border: 1px solid #211b2b;

    border-radius: 12px;
}

.service > div {
    color: #7c3cff;

    font-weight: 700;

    margin-bottom: 30px;
}

.service h3 {
    margin-bottom: 10px;
}

.service p {
    color: #777;
    font-size: 14px;
}


/* FAQ */

.faq {
    max-width: 850px;
}

.faq-item {
    border-bottom: 1px solid #211b2b;
}

.faq-item button {
    width: 100%;

    padding: 22px 0;

    background: none;
    border: none;

    color: white;

    text-align: left;

    font-size: 15px;

    cursor: pointer;

    display: flex;
    justify-content: space-between;
}

.faq-item p {
    display: none;

    color: #777;

    font-size: 14px;

    padding-bottom: 20px;

    line-height: 1.6;
}

.faq-item.active p {
    display: block;
}


/* CONTACT */

.contact {
    text-align: center;

    padding: 130px 20px;

    background:
        radial-gradient(circle,
        rgba(124,60,255,0.15),
        transparent 55%);
}

.contact h2 {
    font-size: clamp(40px, 7vw, 75px);

    margin-bottom: 20px;
}

.contact h2 span {
    color: #9b5cff;
}

.contact > p:not(.small-title) {
    color: #777;

    margin-bottom: 30px;
}


/* FOOTER */

footer {
    max-width: 1200px;

    margin: auto;

    padding: 30px 25px;

    border-top: 1px solid #211b2b;

    display: flex;
    justify-content: space-between;

    color: #555;

    font-size: 12px;
}


/* MOBILE */

@media (max-width: 800px) {

    .nav-links {
        display: none;
    }

    .products,
    .services {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    footer {
        flex-direction: column;
        gap: 15px;
    }
}.hero h1 span {
    color: #a855f7 !important;
}/* PRODUCT POPUP */

.modal {
    display: none;

    position: fixed;
    inset: 0;

    z-index: 2000;

    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(10px);
}

.modal.show {
    display: flex;
}

.modal-box {
    position: relative;

    width: 90%;
    max-width: 450px;

    padding: 40px;

    text-align: center;

    background: #100819;

    border: 1px solid #8b3dff;

    border-radius: 18px;

    box-shadow:
        0 0 60px rgba(139, 61, 255, 0.3);

    animation: popup 0.2s ease;
}

@keyframes popup {

    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }

}

.close-modal {
    position: absolute;

    top: 15px;
    right: 18px;

    border: none;
    background: none;

    color: #777;

    font-size: 28px;

    cursor: pointer;
}

.close-modal:hover {
    color: white;
}

.modal-icon {
    font-size: 45px;

    color: #a855f7;

    margin-bottom: 15px;

    text-shadow:
        0 0 25px #8b3dff;
}

.modal-status {
    color: #a855f7;

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.modal-box h2 {
    font-size: 30px;

    margin-bottom: 12px;
}

.modal-box p {
    color: #777;

    line-height: 1.6;

    margin-bottom: 20px;
}

.modal-price {
    font-size: 32px;

    font-weight: 900;

    color: white;

    margin-bottom: 25px;
}

.modal-buy {
    width: 100%;

    padding: 14px;

    border: none;

    border-radius: 8px;

    background: #8b3dff;

    color: white;

    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;
}

.modal-buy:hover {
    background: #a855f7;

    box-shadow:
        0 0 25px rgba(139, 61, 255, 0.4);
}