/* =========================================================
   SPELLBOUND GAME PAGE
   ========================================================= */


/* ---------------------------------------------------------
   Spellbound Title & Byline
   --------------------------------------------------------- */

.spellbound-title {
    display: inline-block;
    text-align: right;
}

.spellbound-title h1 {
    margin-bottom: 0;
}

.game-byline {
    margin: -25px 0 10px;

    color: white;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;

    text-align: right;
    text-transform: uppercase;

    transform: translateX(-7px);
}


/* =========================================================
   SPELLBOUND HERO
   ========================================================= */

.spellbound-hero {
    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(9, 10, 20, 0.22),
            rgba(12, 13, 25, 0.55)
        ),
        url("magicBackground.jpg");

    background-size: cover;
    background-position: center;
}

.spellbound-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(198, 161, 91, 0.14),
            transparent 50%
        ),
        radial-gradient(
            circle at 70% 30%,
            rgba(81, 64, 111, 0.22),
            transparent 55%
        );
}

.spellbound-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;

    padding: 100px 30px 40px;
}

.spellbound-hero h1 {
    margin-bottom: 15px;

    color: var(--cream);

    font-family: 'Cinzel', serif;
    font-size: clamp(55px, 9vw, 110px);
    font-weight: 500;
    line-height: 1;

    letter-spacing: 5px;
}

.spellbound-hero h1 span {
    color: var(--gold);
}

.spellbound-subtitle {
    margin-bottom: 30px;

    color: #d4d0c8;

    font-size: 17px;
    letter-spacing: 3px;
}

.spellbound-hero-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 30px;

    margin-top: 35px;
}

.spellbound-hero-details div {
    min-width: 120px;

    padding-top: 12px;

    border-top: 1px solid var(--border-strong);
}

.spellbound-hero-details span {
    display: block;

    margin-bottom: 4px;

    color: var(--gold);

    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.spellbound-hero-details strong {
    display: block;

	
    color: var(--cream);

    font-size: 12px;
    font-weight: 400;
	
    line-height: 1.25;

    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.9);
}


/* ---------------------------------------------------------
   Hero Schedule Button
   --------------------------------------------------------- */

.spellbound-hero-content .button {
    display: block;
    width: fit-content;

    margin: 45px auto 0;
}


/* ---------------------------------------------------------
   Schedule Availability
   --------------------------------------------------------- */

.schedule-availability {
    color: var(--muted);

    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;

    letter-spacing: 0.04em;
    text-align: center;
}

.spellbound-hero-content > .schedule-availability {
    margin: 0.75rem 0 0;
}


/* =========================================================
   STORY SECTION
   ========================================================= */

.spellbound-story-section {
    position: relative;

    padding: 70px 8% 45px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(81, 64, 111, 0.18),
            transparent 35%
        ),
        #141923;
}

.spellbound-story-container {
    max-width: 800px;

    margin: auto;
}

.spellbound-story-text {
    text-align: center;
}

.spellbound-story-text h2 {
    margin-bottom: 30px;

    color: var(--cream);

    font-family: 'Cinzel', serif;
    font-size: clamp(35px, 5vw, 55px);
    font-weight: 500;
    line-height: 1.2;
}

.spellbound-story-text h2 span {
    color: var(--gold);
}

.spellbound-story-text p {
    margin-bottom: 20px;

    color: var(--muted);
}


/* =========================================================
   WHAT'S INCLUDED / BETA OFFER
   ========================================================= */

.spellbound-included {
    width: 100%;
    box-sizing: border-box;

    padding: 0 2rem 3.5rem;

    /*
     * The top begins close to the story-section color,
     * then gradually becomes the slightly lighter pricing
     * background. This creates a smoother transition.
     */

    background:
        linear-gradient(
            180deg,
            #141923 0%,
            #181d27 18%,
            #181d27 100%
        );
}

.spellbound-included-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    box-sizing: border-box;
}


/* =========================================================
   BETA OFFER / PRICE BOX
   ========================================================= */

.spellbound-price {
    width: 100%;
    max-width: 600px;

    margin: 0 auto;

    padding: 3.5rem 3rem;

    box-sizing: border-box;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(81, 64, 111, 0.25),
            rgba(30, 34, 46, 0.92)
        );

    border: 1px solid rgba(198, 161, 91, 0.55);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.25);
}


/* ---------------------------------------------------------
   Beta Heading
   --------------------------------------------------------- */

.spellbound-price-eyebrow {
    margin: 0 0 0.5rem;

    color: var(--gold);

    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;

    letter-spacing: 0.15em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Remaining Beta Spots
   --------------------------------------------------------- */

.spellbound-spots-remaining {
    margin: 0 0 1.75rem;

    color: var(--muted);

    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   Main Price
   --------------------------------------------------------- */

.spellbound-price-amount {
    margin: 0;

    color: var(--cream);

    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1;
}


/* ---------------------------------------------------------
   Sales Tax
   --------------------------------------------------------- */

.spellbound-tax-note {
    margin: 0.45rem 0 1.25rem;

    color: var(--muted);

    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    font-style: italic;
}


/* ---------------------------------------------------------
   Deposit
   --------------------------------------------------------- */

.spellbound-deposit-note {
    margin: 0 0 1.25rem;

    color: var(--gold);

    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}


/* ---------------------------------------------------------
   Beta Explanation
   --------------------------------------------------------- */

.spellbound-beta-note {
    max-width: 470px;

    margin: 0 auto 1.5rem;

    color: var(--muted);

    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   Price Description
   --------------------------------------------------------- */

.spellbound-price-description {
    margin: 0;

    color: var(--cream);

    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   Per Person Note
   --------------------------------------------------------- */

.spellbound-price-per-person {
    margin: 1rem 0 0;

    color: var(--muted);

    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-style: italic;
}


/* ---------------------------------------------------------
   Schedule Button Inside Beta Box
   --------------------------------------------------------- */

.spellbound-price .schedule-button {
    margin-top: 2rem;
}

.spellbound-price .schedule-availability {
    margin: 0.75rem 0 0;
}


/* =========================================================
   MOBILE WIDTH FIX
   ========================================================= */

.spellbound-hero,
.spellbound-story-section,
.spellbound-included,
.game-credit {
    width: 100%;
    box-sizing: border-box;
}

.spellbound-hero-content,
.spellbound-story-container,
.spellbound-included-container {
    width: 100%;
    box-sizing: border-box;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .spellbound-hero {
        min-height: 650px;
    }

    .spellbound-hero-content {
        padding: 100px 20px 40px;
    }

    .spellbound-hero h1 {
        font-size: clamp(42px, 13vw, 55px);
        letter-spacing: 2px;
    }

    .spellbound-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .spellbound-hero-details {
        gap: 15px;
    }

    .spellbound-hero-details div {
        min-width: 100px;
    }


    /* Story */

    .spellbound-story-section {
        padding: 80px 20px 45px;
    }


    /* Pricing */

    .spellbound-included {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 5rem;
    }

    .spellbound-price {
        padding: 3rem 1.5rem;
    }

    .spellbound-price-amount {
        font-size: 3.75rem;
    }

}


/* =========================================================
   GAME CREDIT
   ========================================================= */

.game-credit {
    text-align: center;
}


/* =========================================================
   END
   ========================================================= */
