@import url("navigation.css");
@import url("cards.css");
@import url("home.css");
@import url("callingcards.css");
@import url("emblems.css");
@import url("animations.css");
@import url("item.css");
@import url("creators.css");
@import url("footer.css");
@import url("guide.css");
@import url("error.css");

/* ---------- GENERAL ---------- */

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at top,
            rgba(255, 122, 0, 0.09),
            transparent 38%
        ),
        linear-gradient(
            to bottom,
            #0b0b0b,
            #050505
        );

    background-attachment: fixed;

    color: white;
    font-family: "Orbitron", sans-serif;

    position: relative;
}

main {
    width: min(1200px, 100%);
    margin: auto;
    padding: 50px;
}

h2 {
    color: #ff7a00;
    margin-bottom: 25px;
}

img {
    max-width: 100%;
}

button,
input,
a {
    font-family: inherit;
}

/* ---------- MOBILE GENERAL ---------- */

@media (max-width: 700px) {
    main {
        padding: 30px 18px;
    }
}

/* ---------- DOWNLOAD COUNTER ---------- */

.download-count {
    margin-top: 12px;

    color: #8fd3ff;

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

    text-align: center;

    text-shadow:
        0 0 10px rgba(30, 167, 255, 0.35);
}

/* ---------- DISCORD COMMUNITY SECTION ---------- */

.discord-section {
    margin: 70px 0;
    padding: 3px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #5865f2,
            transparent
        );

    box-shadow:
        0 0 28px rgba(88, 101, 242, 0.25);
}

.discord-section-content {
    padding: 46px 38px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            rgba(88, 101, 242, 0.12),
            transparent 55%
        ),
        #101010;
}

.discord-section h2 {
    margin: 10px 0 18px;

    color: white;
    font-size: clamp(27px, 4vw, 42px);
    letter-spacing: 2px;

    text-shadow:
        0 0 18px rgba(88, 101, 242, 0.4);
}

.discord-description {
    max-width: 720px;
    margin: 0 auto;

    color: #999999;
    line-height: 1.8;
}

.discord-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    margin: 28px 0;
}

.discord-features span {
    padding: 9px 13px;

    color: #b8beff;
    background: rgba(88, 101, 242, 0.09);

    border: 1px solid rgba(88, 101, 242, 0.55);

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

.discord-btn {
    background:
        linear-gradient(
            to bottom,
            #7289ff,
            #5865f2
        );
}

.discord-btn:hover {
    background:
        linear-gradient(
            to bottom,
            #8d9cff,
            #6875ff
        );

    box-shadow:
        0 0 26px rgba(88, 101, 242, 0.55);
}

@media (max-width: 600px) {
    .discord-section-content {
        padding: 36px 22px;
    }

    .discord-btn {
        display: block;
        width: 100%;
    }
}

/* =========================
   SUPPORT THE VAULT
========================= */

.support-vault-section {
    max-width: 1200px;
    margin: 70px auto;
    padding: 55px 30px;
    border-top: 3px solid #ff7a00;
    border-bottom: 1px solid #333;
    background: linear-gradient(
        135deg,
        rgba(255, 122, 0, 0.12),
        rgba(15, 15, 15, 0.98) 45%
    );
    text-align: center;
    box-shadow: 0 0 35px rgba(255, 122, 0, 0.12);
}

.support-vault-content {
    max-width: 800px;
    margin: 0 auto;
}

.support-vault-section h2 {
    margin: 10px 0 22px;
    font-size: 38px;
    color: #ff7a00;
    text-shadow: 0 0 14px rgba(255, 122, 0, 0.65);
}

.support-vault-section p {
    margin: 12px 0;
    color: #c4c4c4;
    line-height: 1.8;
}

.support-free-message {
    margin-top: 24px !important;
    color: #ffffff !important;
    font-weight: 700;
}

.support-vault-btn {
    display: inline-block;
    margin-top: 28px;
}