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

html {
    scroll-behavior: smooth;
}

body {
    background: #08070b;
    color: #f4edf5;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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


/* NAVBAR */

.navbar {
    height: 76px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(8, 7, 11, 0.92);

    position: sticky;
    top: 0;
    z-index: 50;

    backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.logo-mark {
    width: 32px;
    height: 32px;

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

    border: 1px solid #d89bc8;

    color: #f2c5e8;

    font-weight: 800;
}

.navbar nav {
    display: flex;
    gap: 30px;

    font-size: 13px;
    color: #a9a0aa;
}

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


/* HERO */

.hero {
    min-height: 650px;

    display: flex;
    align-items: center;

    padding: 100px 8%;

    background:
        radial-gradient(
            circle at 75% 40%,
            rgba(190, 48, 145, 0.20),
            transparent 35%
        ),
        radial-gradient(
            circle at 25% 70%,
            rgba(210, 155, 80, 0.07),
            transparent 30%
        );
}

.hero-content {
    max-width: 850px;
}

.eyebrow {
    margin-bottom: 18px;

    color: #d59bc6;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 94px);
    line-height: 0.98;

    letter-spacing: -4px;
}

.hero h1 span {
    display: block;

    color: #e2a6d0;
}

.hero-description {
    max-width: 600px;

    margin: 30px 0;

    color: #aaa2ad;

    font-size: 17px;
}


/* BUTTONS */

.primary-button,
.buy-button {
    border: none;
    cursor: pointer;

    font-weight: 700;
    letter-spacing: 1px;

    transition: 0.2s ease;
}

.primary-button {
    display: inline-flex;

    padding: 15px 26px;

    background: #d6a0c7;

    color: #100b11;
}

.primary-button:hover {
    transform: translateY(-2px);

    background: #efc3e2;
}


/* STORE */

.store-section {
    padding: 110px 7%;
}

.section-heading {
    margin-bottom: 55px;
}

.section-heading h2,
.info-section h2 {
    font-size: clamp(36px, 5vw, 60px);

    line-height: 1;
}

.section-heading p:last-child {
    margin-top: 15px;

    color: #8e8790;
}


/* ACCOUNT */

.account-box {
    margin-bottom: 50px;

    padding: 28px;

    border: 1px solid rgba(255, 255, 255, 0.09);

    background: #0d0b11;
}

.account-box label {
    display: block;

    margin-bottom: 10px;

    color: #d6a0c7;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.game-id-row {
    display: flex;
    gap: 10px;
}

.game-id-row input {
    flex: 1;

    min-width: 0;

    padding: 15px;

    border: 1px solid #2b2630;

    outline: none;

    background: #08070b;

    color: white;

    font-size: 15px;
}

.game-id-row input:focus {
    border-color: #d6a0c7;
}

.game-id-row button {
    padding: 0 25px;

    border: 1px solid #d6a0c7;

    background: transparent;

    color: #d6a0c7;

    font-weight: 700;

    cursor: pointer;
}

.game-id-row button:hover {
    background: #d6a0c7;
    color: #100b11;
}

.verification-message {
    margin-top: 12px;

    color: #77717a;

    font-size: 13px;
}


/* PRODUCTS */

.products {
    display: grid;

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

    gap: 18px;
}

.product-card {
    position: relative;

    padding: 35px 25px;

    min-height: 310px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: #0d0b11;

    transition: 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);

    border-color: rgba(214, 160, 199, 0.55);
}

.product-card.popular {
    border-color: rgba(214, 160, 199, 0.65);
}

.popular-label {
    position: absolute;

    top: 0;
    right: 0;

    padding: 7px 12px;

    background: #d6a0c7;

    color: #100b11;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.diamond-icon {
    margin-bottom: 30px;

    color: #e5aed5;

    font-size: 30px;
}

.product-card h3 {
    font-size: 20px;
}

.product-description {
    margin-top: 7px;

    color: #77717a;

    font-size: 13px;
}

.price {
    margin-top: auto;
    margin-bottom: 20px;

    font-size: 28px;
    font-weight: 700;
}

.buy-button {
    width: 100%;

    padding: 13px;

    border: 1px solid #3a333d;

    background: transparent;

    color: #d6a0c7;
}

.buy-button:hover {
    border-color: #d6a0c7;

    background: #d6a0c7;

    color: #100b11;
}


/* INFO */

.info-section {
    padding: 100px 7%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.info-section > p {
    max-width: 500px;

    color: #969099;

    font-size: 17px;
}

.support {
    padding-bottom: 150px;
}


/* FOOTER */

footer {
    padding: 35px 7%;

    display: flex;
    justify-content: space-between;

    border-top: 1px solid rgba(255, 255, 255, 0.07);

    color: #615b64;

    font-size: 12px;
}


/* MODAL */

.modal {
    position: fixed;

    inset: 0;

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

    padding: 20px;

    background: rgba(0, 0, 0, 0.78);

    z-index: 100;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;

    width: min(500px, 100%);

    padding: 40px;

    border: 1px solid rgba(214, 160, 199, 0.35);

    background: #0d0b11;
}

.close-modal {
    position: absolute;

    top: 15px;
    right: 18px;

    border: none;

    background: none;

    color: #77717a;

    font-size: 28px;

    cursor: pointer;
}

.order-details {
    margin: 30px 0;
}

.order-details div {
    display: flex;
    justify-content: space-between;

    padding: 15px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.order-details span {
    color: #77717a;

    font-size: 11px;
    letter-spacing: 1px;
}

.order-details strong {
    color: #eee;

    font-size: 13px;
}

.modal-button {
    width: 100%;

    justify-content: center;
}

.modal-note {
    margin-top: 18px;

    color: #67616a;

    font-size: 11px;

    text-align: center;
}


/* MOBILE */

@media (max-width: 900px) {

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

    .info-section {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 600px) {

    .navbar {
        padding: 0 20px;
    }

    .navbar nav {
        display: none;
    }

    .hero {
        min-height: 550px;

        padding: 70px 25px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .store-section,
    .info-section {
        padding: 75px 20px;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .game-id-row {
        flex-direction: column;
    }

    .game-id-row button {
        padding: 14px;
    }

    footer {
        padding: 30px 20px;

        flex-direction: column;

        gap: 8px;
    }

    .modal-content {
        padding: 30px 22px;
    }
}
