* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #050505;
    --black2: #0b0b0b;
    --dark: #111111;
    --red: #8f1118;
    --red2: #bd2028;
    --cream: #e6d7b7;
    --cream2: #b9a98a;
    --gray: #888;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: "Oswald", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(3, 3, 3, .96);
    border-bottom: 1px solid rgba(230, 215, 183, .15);
}

.header-inner {
    max-width: 1400px;
    height: 90px;
    margin: auto;
    padding: 0 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    font-family: "Cinzel", serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navigation > a,
.dropdown-button {
    position: relative;

    background: none;
    border: 0;

    color: var(--cream);

    font-family: "Oswald", sans-serif;
    font-size: 14px;
    letter-spacing: 2px;

    cursor: pointer;
}

.navigation > a::after,
.dropdown-button::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--red2);

    transition: .3s;
}

.navigation > a:hover::after,
.dropdown-button:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-button span {
    font-size: 9px;
    margin-left: 5px;
}

.dropdown-content {
    position: absolute;

    top: 35px;
    left: -20px;

    min-width: 210px;

    background: #090909;

    border: 1px solid rgba(230, 215, 183, .15);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: .25s;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;

    padding: 14px 18px;

    font-size: 13px;
    letter-spacing: 1px;

    border-bottom: 1px solid rgba(255,255,255,.05);
}

.dropdown-content a:hover {
    background: var(--red);
}

.menu-toggle {
    display: none;

    background: none;
    border: 0;

    color: var(--cream);

    font-size: 28px;

    cursor: pointer;
}


/* HERO */

.hero {
    position: relative;

    min-height: 850px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.85)
        ),
        radial-gradient(
            circle at center,
            #461016 0%,
            #120609 30%,
            #030303 75%
        );

    overflow: hidden;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(130, 10, 20, .15),
            transparent
        );

    animation: pulse 7s infinite;
}

@keyframes pulse {
    0%,100% {
        opacity: .3;
    }

    50% {
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 1000px;
    padding: 30px;
}

.hero-small {
    color: var(--red2);

    font-size: 14px;
    letter-spacing: 6px;

    margin-bottom: 25px;
}

.hero h1 {
    font-family: "Cinzel", serif;

    font-size: clamp(70px, 11vw, 160px);

    line-height: .85;

    letter-spacing: 5px;

    text-shadow:
        0 10px 30px #000;
}

.hero h1 span {
    color: var(--red2);
}

.hero p {
    margin-top: 35px;

    font-size: 20px;

    color: var(--cream2);

    letter-spacing: 3px;
}

.hero-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 40px;
}

.btn {
    display: inline-block;

    padding: 15px 30px;

    font-size: 13px;
    letter-spacing: 2px;

    transition: .3s;
}

.btn-red {
    background: var(--red);

    border: 1px solid var(--red);
}

.btn-red:hover {
    background: var(--red2);

    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid var(--cream2);
}

.btn-outline:hover {
    background: var(--cream);
    color: #000;
}

.scroll-down {
    position: absolute;

    bottom: 25px;

    left: 50%;
    transform: translateX(-50%);

    font-size: 10px;

    letter-spacing: 3px;

    color: var(--cream2);
}

.scroll-down span {
    display: block;

    font-size: 20px;

    margin-top: 5px;
}


/* SECTIONS */

.intro,
.cards-section,
.steps,
.classes,
.rules,
.legal {
    max-width: 1250px;

    margin: auto;

    padding: 120px 30px;
}

.section-title {
    text-align: center;

    margin-bottom: 60px;
}

.section-title span,
.rules-intro > span {
    color: var(--red2);

    font-size: 13px;

    letter-spacing: 5px;
}

.section-title h2,
.rules-intro h2 {
    font-family: "Cinzel", serif;

    font-size: clamp(35px, 5vw, 65px);

    margin-top: 10px;
}

.line {
    width: 70px;
    height: 2px;

    background: var(--red);

    margin: 20px auto;
}

.intro-text {
    max-width: 850px;

    margin: auto;

    text-align: center;

    color: #aaa;

    font-size: 18px;
}

.intro-text p {
    margin-bottom: 20px;
}


/* CARDS */

.cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.world-card {
    min-height: 300px;

    padding: 40px;

    background:
        linear-gradient(
            145deg,
            #161616,
            #080808
        );

    border: 1px solid rgba(230,215,183,.1);

    transition: .3s;
}

.world-card:hover {
    transform: translateY(-8px);

    border-color: var(--red);
}

.card-number {
    color: var(--red2);

    font-size: 40px;

    font-family: "Cinzel", serif;
}

.world-card h3 {
    font-family: "Cinzel", serif;

    font-size: 25px;

    margin: 30px 0 15px;
}

.world-card p {
    color: #888;
}


/* MYSTIC */

.mystic-preview {
    min-height: 550px;

    display: flex;

    align-items: center;

    padding: 80px;

    background:
        radial-gradient(
            circle at 75% 50%,
            #3b090e,
            #070707 55%
        );
}

.mystic-content {
    max-width: 700px;

    margin-left: max(0px, calc((100vw - 1200px) / 2));
}

.mystic-content span {
    color: var(--red2);

    letter-spacing: 5px;
}

.mystic-content h2 {
    font-family: "Cinzel", serif;

    font-size: clamp(50px, 7vw, 90px);

    margin: 15px 0;
}

.mystic-content p {
    color: #999;

    font-size: 18px;

    margin-bottom: 30px;
}


/* STEPS */

.steps-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.step {
    padding: 35px;

    background: #0b0b0b;

    border-top: 2px solid var(--red);
}

.step-number {
    font-family: "Cinzel", serif;

    font-size: 45px;

    color: #333;
}

.step h3 {
    margin: 15px 0;

    font-family: "Cinzel", serif;
}

.step p {
    color: #777;

    margin-bottom: 20px;
}

.step a {
    color: var(--red2);

    font-size: 12px;

    letter-spacing: 1px;
}

.coming {
    color: #666;

    font-size: 11px;

    letter-spacing: 1px;
}


/* DISCORD */

.discord-cta {
    padding: 120px 30px;

    text-align: center;

    background:
        linear-gradient(
            rgba(120,0,10,.2),
            rgba(0,0,0,.8)
        );
}

.discord-cta span {
    color: var(--red2);

    letter-spacing: 4px;
}

.discord-cta h2 {
    font-family: "Cinzel", serif;

    font-size: clamp(35px, 5vw, 65px);

    margin: 15px auto;

    max-width: 900px;
}

.discord-cta p {
    color: #888;

    margin-bottom: 30px;
}


/* PAGE HERO */

.page-hero {
    min-height: 480px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 100px 30px 50px;

    background:
        radial-gradient(
            circle,
            #36090e,
            #050505 65%
        );
}

.page-hero span {
    color: var(--red2);

    letter-spacing: 5px;
}

.page-hero h1 {
    font-family: "Cinzel", serif;

    font-size: clamp(45px, 7vw, 90px);

    margin: 15px 0;
}

.page-hero p {
    color: #888;

    font-size: 18px;
}


/* RULES */

.rules-intro {
    text-align: center;

    margin-bottom: 60px;
}

.rules-intro p {
    max-width: 700px;

    margin: 20px auto;

    color: #888;
}

.rule {
    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 30px;

    padding: 35px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.rule-number {
    font-family: "Cinzel", serif;

    font-size: 24px;

    color: var(--red2);
}

.rule h3 {
    font-family: "Cinzel", serif;

    margin-bottom: 10px;
}

.rule p {
    color: #888;

    max-width: 900px;
}

.rules-footer {
    margin-top: 70px;

    text-align: center;

    padding: 50px;

    background: #0b0b0b;
}

.rules-footer h3 {
    font-family: "Cinzel", serif;

    font-size: 28px;

    margin-bottom: 10px;
}

.rules-footer p {
    color: #777;

    margin-bottom: 25px;
}


/* MYSTIC SIDES */

.mystic-sides {
    margin-top: 80px;

    text-align: center;
}

.mystic-sides h2 {
    font-family: "Cinzel", serif;

    font-size: 40px;
}

.side-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 30px;
}

.side {
    padding: 40px;

    border: 1px solid rgba(255,255,255,.08);

    background: #0a0a0a;
}

.side h3 {
    font-family: "Cinzel", serif;

    color: var(--red2);
}

.side p {
    color: #777;

    margin-top: 10px;
}


/* CLASSES */

.class-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.class-card {
    padding: 45px;

    background:
        linear-gradient(
            145deg,
            #161616,
            #080808
        );

    border: 1px solid rgba(255,255,255,.08);

    transition: .3s;
}

.class-card:hover {
    transform: translateY(-8px);

    border-color: var(--red);
}

.class-icon {
    font-size: 45px;

    color: var(--red2);

    margin-bottom: 20px;
}

.class-side {
    color: #777;

    font-size: 11px;

    letter-spacing: 3px;
}

.class-card h3 {
    font-family: "Cinzel", serif;

    font-size: 32px;

    margin: 10px 0 15px;
}

.class-card p {
    color: #888;

    margin-bottom: 25px;
}

.class-card ul {
    list-style: none;

    margin-bottom: 30px;
}

.class-card li {
    color: #aaa;

    padding: 7px 0;

    border-bottom: 1px solid rgba(255,255,255,.05);
}

.class-card li::before {
    content: "◆";

    color: var(--red2);

    margin-right: 10px;

    font-size: 8px;
}

.class-card > a {
    color: var(--red2);

    font-size: 12px;

    letter-spacing: 2px;
}

.class-warning {
    margin-top: 60px;

    padding: 50px;

    text-align: center;

    background: #0a0a0a;

    border: 1px solid rgba(255,255,255,.08);
}

.class-warning h3 {
    font-family: "Cinzel", serif;

    font-size: 28px;
}

.class-warning p {
    max-width: 700px;

    margin: 15px auto 30px;

    color: #888;
}


/* LEGAL */

.legal {
    max-width: 1000px;
}

.legal h2 {
    font-family: "Cinzel", serif;

    font-size: 50px;

    margin-bottom: 15px;
}

.legal > p {
    color: #777;

    margin-bottom: 50px;
}

.legal-box {
    margin-bottom: 30px;

    padding: 35px;

    background: #0b0b0b;

    border-left: 2px solid var(--red);
}

.legal-box h3 {
    font-family: "Cinzel", serif;

    margin-bottom: 15px;
}

.legal-box p {
    color: #888;

    margin-bottom: 10px;
}

.legal-box a {
    color: var(--red2);
}


/* FOOTER */

.footer {
    background: #030303;

    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-content {
    max-width: 1200px;

    margin: auto;

    padding: 70px 30px;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 50px;
}

.footer h2 {
    font-family: "Cinzel", serif;

    letter-spacing: 3px;
}

.footer-brand p {
    max-width: 400px;

    color: #666;

    margin-top: 15px;
}

.footer h3 {
    font-size: 13px;

    letter-spacing: 3px;

    color: var(--red2);

    margin-bottom: 20px;
}

.footer-links,
.footer-connect {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.footer-links a,
.footer-connect a,
.footer-connect span {
    color: #777;

    font-size: 14px;
}

.footer-links a:hover,
.footer-connect a:hover {
    color: var(--cream);
}

.footer-bottom {
    padding: 20px;

    text-align: center;

    color: #444;

    font-size: 12px;

    border-top: 1px solid rgba(255,255,255,.05);
}


/* MOBILE */

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .navigation {
        display: none;

        position: absolute;

        top: 90px;
        left: 0;

        width: 100%;

        padding: 20px;

        background: #060606;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

    .navigation.active {
        display: flex;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;

        display: none;

        opacity: 1;
        visibility: visible;

        transform: none;

        margin-top: 15px;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .cards,
    .class-grid,
    .side-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .header-inner {
        height: 75px;

        padding: 0 15px;
    }

    .logo img {
        width: 45px;
        height: 45px;
    }

    .logo {
        font-size: 13px;
    }

    .hero {
        min-height: 700px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .rule {
        grid-template-columns: 1fr;

        gap: 5px;
    }

    .mystic-preview {
        padding: 60px 30px;
    }

}