/* =========================================================
   MockVest Market Games
   Guest Prediction
   ========================================================= */

:root {
    /* -----------------------------------------------------
       Brand / Gaming Colors
       ----------------------------------------------------- */

    --mv-game-purple: #7c3aed;
    --mv-game-purple-dark: #6d28d9;
    --mv-game-purple-light: #a78bfa;
    --mv-game-purple-muted: #b9a0ff;

    --mv-game-black: #111114;
    --mv-game-black-soft: #17171b;

    --mv-game-white: #ffffff;

    /* -----------------------------------------------------
       Text
       ----------------------------------------------------- */

    --mv-game-text: #151519;
    --mv-game-text-muted: #777780;
    --mv-game-text-subtle: #8d8d98;

    --mv-game-dark-text: #a8a8b3;
    --mv-game-dark-muted: #777783;
    --mv-game-dark-border: rgba(255, 255, 255, 0.09);

    /* -----------------------------------------------------
       Surfaces
       ----------------------------------------------------- */

    --mv-game-surface: #f5f5f7;
    --mv-game-surface-white: #ffffff;

    --mv-game-border: #e7e7eb;
    --mv-game-border-light: #e8e8ec;
    --mv-game-border-medium: #e2e2e7;

    /* -----------------------------------------------------
       Radius
       ----------------------------------------------------- */

    --mv-game-radius: 22px;
    --mv-game-radius-medium: 20px;
    --mv-game-radius-small: 12px;
    --mv-game-radius-mobile: 16px;

    /* -----------------------------------------------------
       Shadows
       ----------------------------------------------------- */

    --mv-game-shadow:
        0 25px 60px rgba(0, 0, 0, 0.25);

    --mv-game-purple-shadow:
        0 15px 35px rgba(124, 58, 237, 0.35);

    /* -----------------------------------------------------
       Market Colors
       ----------------------------------------------------- */

    --mv-game-negative: #ef4444;
    --mv-game-positive: #22c55e;

    /* -----------------------------------------------------
       Typography
       ----------------------------------------------------- */

    --mv-game-letter-tight: -0.045em;
    --mv-game-letter-wide: 0.14em;
}


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.mv-game-guest {
    width: 100%;
    max-width: 100%;
    overflow: hidden;

    border-radius: var(--mv-game-radius);
    border: 1px solid var(--mv-game-border);

    background: var(--mv-game-surface);

    box-sizing: border-box;
    font-family: inherit;
}


/* =========================================================
   MAIN
   ========================================================= */

.mv-game-guest-main {
    padding: 60px 64px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(124, 58, 237, 0.22),
            transparent 35%
        ),
        var(--mv-game-black);

    color: var(--mv-game-white);

    box-sizing: border-box;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mv-game-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 22px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: var(--mv-game-letter-wide);
    text-transform: uppercase;

    color: var(--mv-game-purple-muted);
}


.mv-game-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: var(--mv-game-purple);

    box-shadow:
        0 0 14px rgba(139, 92, 246, 0.8);
}


/* =========================================================
   MAIN HEADING
   ========================================================= */

.mv-game-guest-main h2 {
    margin: 0;

    max-width: 680px;

    font-size: clamp(40px, 5vw, 68px);
    line-height: 0.98;

    letter-spacing: var(--mv-game-letter-tight);

    font-weight: 800;

    color: var(--mv-game-white);
}


.mv-game-guest-main h2 span {
    color: var(--mv-game-purple-light);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.mv-game-guest-main > p {
    max-width: 590px;

    margin: 26px 0 0;

    font-size: 17px;
    line-height: 1.65;

    color: var(--mv-game-dark-text);
}


/* =========================================================
   CTA
   ========================================================= */

.mv-game-guest-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 11px;

    margin-top: 34px;
}


/* ---------------------------------------------------------
   Start Button
   --------------------------------------------------------- */

.mv-game-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    min-height: 54px;

    padding: 0 24px 0 26px;

    border-radius: var(--mv-game-radius-small);

    background: var(--mv-game-white);
    color: var(--mv-game-black) !important;

    font-size: 15px;
    font-weight: 750;

    text-decoration: none !important;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.mv-game-login:hover {
    transform: translateY(-2px);

    background: #f3f3f5;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);
}


/* ---------------------------------------------------------
   CTA Icon
   --------------------------------------------------------- */

.mv-game-login-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    border-radius: 9px;

    background: var(--mv-game-purple);
    color: var(--mv-game-white);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}


.mv-game-login:hover .mv-game-login-icon {
    transform: translateX(2px);

    background: var(--mv-game-purple-dark);
}


/* ---------------------------------------------------------
   CTA Note
   --------------------------------------------------------- */

.mv-game-guest-note {
    font-size: 12px;

    color: var(--mv-game-dark-muted);
}


/* =========================================================
   FEATURES
   ========================================================= */

.mv-game-guest-features {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--mv-game-border-medium);

    background: var(--mv-game-surface-white);
}


.mv-game-guest-feature {
    padding: 30px 34px 32px;

    border-right: 1px solid var(--mv-game-border-light);
}


.mv-game-guest-feature:last-child {
    border-right: 0;
}


/* ---------------------------------------------------------
   Feature Number
   --------------------------------------------------------- */

.mv-game-feature-number {
    display: block;

    margin-bottom: 17px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.12em;

    color: var(--mv-game-purple-light);
}


/* ---------------------------------------------------------
   Feature Heading
   --------------------------------------------------------- */

.mv-game-guest-feature strong {
    display: block;

    font-size: 17px;
    font-weight: 750;

    color: var(--mv-game-text);
}


/* ---------------------------------------------------------
   Feature Description
   --------------------------------------------------------- */

.mv-game-guest-feature p {
    margin: 8px 0 0;

    font-size: 13px;
    line-height: 1.55;

    color: var(--mv-game-text-muted);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

    .mv-game-guest-main {
        padding: 48px 40px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .mv-game-guest {
        border-radius: var(--mv-game-radius-mobile);
    }


    .mv-game-guest-main {
        padding: 38px 24px 32px;
    }


    .mv-game-guest-main h2 {
        font-size: 42px;
    }


    .mv-game-guest-main > p {
        font-size: 15px;
        line-height: 1.6;
    }


    .mv-game-guest-action {
        margin-top: 28px;
    }


    .mv-game-login {
        width: 100%;

        box-sizing: border-box;
    }


    .mv-game-guest-features {
        grid-template-columns: 1fr;
    }


    .mv-game-guest-feature {
        padding: 24px;

        border-right: 0;
        border-bottom: 1px solid var(--mv-game-border-light);
    }


    .mv-game-guest-feature:last-child {
        border-bottom: 0;
    }

}

/* =========================================================
   PREDICTION SCREEN
   ========================================================= */

.mv-prediction {
    width: 100%;
    max-width: 100%;

    overflow: hidden;

    border-radius: var(--mv-game-radius);
    border: 1px solid var(--mv-game-border);

    background: var(--mv-game-surface-white);

    box-sizing: border-box;
    font-family: inherit;
}


/* =========================================================
   HEADER
   ========================================================= */

.mv-prediction-header {
    padding: 48px 56px 34px;

    background:
        radial-gradient(
            circle at 92% 0%,
            rgba(124, 58, 237, 0.12),
            transparent 32%
        ),
        var(--mv-game-white);

    box-sizing: border-box;
}


.mv-prediction-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 16px;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: var(--mv-game-letter-wide);
    text-transform: uppercase;

    color: var(--mv-game-purple);
}


.mv-prediction-eyebrow::before {
    content: "";

    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    border-radius: 50%;

    background: var(--mv-game-purple);

    box-shadow:
        0 0 12px rgba(124, 58, 237, 0.45);
}


.mv-prediction-header h2 {
    margin: 0;

    max-width: 760px;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;

    letter-spacing: var(--mv-game-letter-tight);

    font-weight: 800;

    color: var(--mv-game-text);
}


.mv-prediction-header p {
    max-width: 620px;

    margin: 16px 0 0;

    font-size: 16px;
    line-height: 1.6;

    color: var(--mv-game-text-muted);
}


/* =========================================================
   CONTENT
   ========================================================= */

.mv-prediction-content {
    padding: 0 56px 46px;

    box-sizing: border-box;
}


/* =========================================================
   PREDICTION OPTIONS
   ========================================================= */

.mv-prediction-options {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}


/* Groups */

.mv-prediction-options-side,
.mv-prediction-options-flat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* Section labels */

.mv-prediction-options-label {
    display: block;
    margin-bottom: 4px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--mv-text-muted, #8b8b98);
}


/* Buttons */

.mv-prediction-options button {
    width: 100%;
    min-height: 46px;

    padding: 11px 14px;

    border: 1px solid var(--mv-border, #e7e7ed);
    border-radius: 10px;

    background: var(--mv-surface, #fff);
    color: var(--mv-text, #24242c);

    font: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        border-color 0.18s ease,
        background-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
}

.mv-prediction-options button:hover {
    transform: translateY(-1px);
}


/* Negative side */

.mv-prediction-options-negative button:hover,
.mv-prediction-options-negative button.selected {
    border-color: #e7b5b5;
    background: #fff5f5;
    color: #b83d3d;
}


/* Positive side */

.mv-prediction-options-positive button:hover,
.mv-prediction-options-positive button.selected {
    border-color: #afd9bd;
    background: #f2fbf5;
    color: #23804a;
}


/* Flat */

.mv-prediction-options-flat {
    justify-content: center;
}

.mv-prediction-options-flat button:hover,
.mv-prediction-options-flat button.selected {
    border-color: var(--mv-primary, #6d45d8);
    background: #f7f3ff;
    color: var(--mv-primary, #6d45d8);
}

/* ---------------------------------------------------------
   Selected Option
   --------------------------------------------------------- */

.mv-prediction-options button.selected,
.mv-prediction-options button.active {
    border-color: var(--mv-game-purple);

    background:
        linear-gradient(
            135deg,
            #f5efff 0%,
            #eee6ff 100%
        );

    color: var(--mv-game-purple-dark);

    box-shadow:
        0 0 0 2px rgba(124, 58, 237, 0.10),
        0 10px 25px rgba(124, 58, 237, 0.10);
}


.mv-prediction-options button.selected::after,
.mv-prediction-options button.active::after {
    content: "✓";

    position: absolute;

    top: 8px;
    right: 10px;

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

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: var(--mv-game-purple);

    color: var(--mv-game-white);

    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   SUBMIT AREA
   ========================================================= */

#mv-submit-prediction {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 56px;

    margin-top: 22px;

    padding: 0 24px;

    border: 0;

    border-radius: 14px;

    background: var(--mv-game-black);

    color: var(--mv-game-white);

    font-family: inherit;
    font-size: 15px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease,
        opacity 0.18s ease;
}


#mv-submit-prediction:not(:disabled):hover {
    transform: translateY(-2px);

    background: var(--mv-game-purple);

    box-shadow:
        0 12px 28px rgba(124, 58, 237, 0.25);
}


#mv-submit-prediction:not(:disabled):active {
    transform: translateY(0);
}


#mv-submit-prediction:disabled {
    cursor: not-allowed;

    background: #e8e8eb;

    color: #a0a0a8;

    opacity: 1;
}


/* =========================================================
   MESSAGE
   ========================================================= */

#mv-prediction-message {
    margin-top: 14px;

    padding: 12px 15px;

    border-radius: 10px;

    background: #f5f5f7;

    color: var(--mv-game-text-muted);

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   FOOTER / STATS
   ========================================================= */

.mv-prediction-footer {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 64px;

    padding: 0 30px;

    border-top: 1px solid var(--mv-game-border-light);

    background: #fafafa;

    box-sizing: border-box;
}


.mv-prediction-footer a {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--mv-game-purple);

    font-size: 13px;
    font-weight: 750;

    text-decoration: none !important;

    transition:
        color 0.18s ease,
        transform 0.18s ease;
}


.mv-prediction-footer a:hover {
    color: var(--mv-game-purple-dark);

    transform: translateX(2px);
}


/* =========================================================
   CLOSED / RESULT COMMON
   ========================================================= */

.mv-prediction-result,
.mv-prediction-closed {
    min-height: 360px;

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

    padding: 56px;

    text-align: center;

    box-sizing: border-box;
}


.mv-prediction-result .mv-prediction-header,
.mv-prediction-closed .mv-prediction-header {
    padding: 0;

    background: transparent;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 850px) {

    .mv-prediction-header {
        padding: 42px 40px 30px;
    }

    .mv-prediction-content {
        padding: 0 40px 40px;
    }

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

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .mv-prediction {
        border-radius: var(--mv-game-radius-mobile);
    }


    .mv-prediction-header {
        padding: 34px 22px 26px;
    }


    .mv-prediction-header h2 {
        font-size: 34px;
        line-height: 1.04;
    }


    .mv-prediction-header p {
        margin-top: 14px;

        font-size: 14px;
        line-height: 1.6;
    }


    .mv-prediction-content {
        padding: 0 22px 30px;
    }


    .mv-prediction-options {
        grid-template-columns: 1fr 1fr;

        gap: 9px;
    }


    .mv-prediction-options button {
        min-height: 58px;

        padding: 12px 10px;

        border-radius: 12px;

        font-size: 13px;
    }


    .mv-prediction-options button.selected::after,
    .mv-prediction-options button.active::after {
        top: 5px;
        right: 6px;

        width: 18px;
        height: 18px;

        font-size: 10px;
    }


    #mv-submit-prediction {
        min-height: 54px;

        margin-top: 18px;
    }


    .mv-prediction-footer {
        min-height: 58px;

        padding: 0 20px;
    }


    .mv-prediction-result,
    .mv-prediction-closed {
        min-height: 320px;

        padding: 40px 24px;
    }

}

/* =========================================================
   CLOSED PREDICTION STATE
   ========================================================= */

.mv-prediction-closed {
    width: 100%;
    min-height: 470px;

    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    align-items: center;

    gap: 70px;

    padding: 72px 64px;

    box-sizing: border-box;

    background:
        radial-gradient(
            circle at 18% 15%,
            rgba(124, 58, 237, 0.055),
            transparent 32%
        ),
        #ffffff;

    border: 1px solid #e7e7eb;
    border-radius: 22px;

    overflow: hidden;
}


/* =========================================================
   LEFT SIDE
   ========================================================= */

.mv-prediction-closed-main {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.mv-prediction-closed-icon {
    width: 56px;
    height: 56px;

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

    margin-bottom: 24px;

    border-radius: 16px;

    color: var(--mv-game-primary);

    background:
        linear-gradient(
            145deg,
            #faf7ff,
            #f2eaff
        );

    border: 1px solid #e2d5ff;

    box-shadow:
        0 12px 30px rgba(124, 58, 237, 0.08);
}


.mv-prediction-closed .mv-prediction-header {
    width: 100%;
    max-width: 720px;
}


.mv-prediction-closed .mv-prediction-eyebrow {
    margin-bottom: 18px;
}


.mv-prediction-closed .mv-prediction-header h2 {
    margin: 0;

    font-size: clamp(42px, 4.5vw, 62px);
    line-height: 1.02;

    letter-spacing: -0.045em;
    font-weight: 800;

    color: #111114;
}


.mv-prediction-closed .mv-prediction-header p {
    max-width: 650px;

    margin: 22px auto 0;

    font-size: 16px;
    line-height: 1.65;

    color: #777783;
}


/* =========================================================
   MOTIVATIONAL MESSAGE
   ========================================================= */

.mv-prediction-closed-message {
    width: 100%;
    max-width: 650px;

    display: flex;
    flex-direction: column;
    gap: 7px;

    margin-top: 30px;
    padding: 20px 24px;

    box-sizing: border-box;

    border: 1px solid #e4d8ff;
    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #fcfaff,
            #f8f3ff
        );
}


.mv-prediction-closed-message strong {
    display: block;

    font-size: 14px;
    font-weight: 800;

    color: var(--mv-game-primary);
}


.mv-prediction-closed-message span {
    display: block;

    font-size: 13px;
    line-height: 1.55;

    color: #77727f;
}


/* =========================================================
   RIGHT SIDE / NEXT CHALLENGE
   ========================================================= */

.mv-prediction-closed-action {
    width: 100%;
    min-height: 310px;

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

    padding: 48px;

    box-sizing: border-box;

    border-radius: 22px;

    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(124, 58, 237, 0.24),
            transparent 45%
        ),
        #111114;

    color: #ffffff;

    box-shadow:
        0 25px 60px rgba(17, 17, 20, 0.16);
}


.mv-prediction-closed-action-content {
    padding-left: 24px;

    border-left: 2px solid var(--mv-game-primary);
}


.mv-prediction-closed-action-eyebrow {
    display: block;

    margin-bottom: 16px;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #a78bfa;
}


.mv-prediction-closed-action h3 {
    margin: 0;

    font-size: 25px;
    line-height: 1.2;

    letter-spacing: -0.02em;
    font-weight: 800;

    color: #ffffff;
}


.mv-prediction-closed-action p {
    max-width: 390px;

    margin: 12px 0 0;

    font-size: 14px;
    line-height: 1.6;

    color: #a8a5b1;
}


/* =========================================================
   STATS BUTTON
   ========================================================= */

.mv-prediction-closed-action-button {
    margin-top: 38px;
}


.mv-prediction-closed-action-button a {
    width: 100%;
    min-height: 64px;

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

    padding: 0 20px 0 24px;

    box-sizing: border-box;

    border-radius: 13px;

    background: var(--mv-game-primary);
    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 14px 30px rgba(124, 58, 237, 0.28);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.mv-prediction-closed-action-button a:hover {
    transform: translateY(-2px);

    background: var(--mv-game-primary-dark);

    box-shadow:
        0 18px 36px rgba(124, 58, 237, 0.36);
}


.mv-prediction-action-icon {
    width: 36px;
    height: 36px;

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

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.13);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

    .mv-prediction-closed {
        grid-template-columns: 1fr;

        gap: 44px;

        padding: 56px 42px;
    }

    .mv-prediction-closed-action {
        max-width: 620px;
        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .mv-prediction-closed {
        min-height: auto;

        padding: 42px 22px;

        gap: 34px;

        border-radius: 16px;
    }


    .mv-prediction-closed-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 20px;
    }


    .mv-prediction-closed .mv-prediction-header h2 {
        font-size: 40px;
        line-height: 1.03;
    }


    .mv-prediction-closed .mv-prediction-header p {
        margin-top: 18px;

        font-size: 15px;
        line-height: 1.6;
    }


    .mv-prediction-closed-message {
        margin-top: 24px;

        padding: 18px 20px;
    }


    .mv-prediction-closed-action {
        min-height: auto;

        padding: 32px 24px;

        border-radius: 18px;
    }


    .mv-prediction-closed-action-content {
        padding-left: 18px;
    }


    .mv-prediction-closed-action h3 {
        font-size: 22px;
    }


    .mv-prediction-closed-action-button {
        margin-top: 30px;
    }


    .mv-prediction-closed-action-button a {
        min-height: 60px;
    }
}

/* =========================================================
   SUBMITTED PREDICTION
   ========================================================= */

.mv-prediction-submitted {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;

    border: 1px solid var(--mv-border);
    border-radius: var(--mv-radius-lg);

    background: var(--mv-surface);
    color: var(--mv-text);

    font-family: inherit;
}


/* =========================================================
   TOP / LOCKED INDICATOR
   ========================================================= */

.mv-prediction-submitted-top {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 30px 34px 0;
}


.mv-prediction-submitted-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border-radius: 12px;

    background: var(--mv-purple);
    color: #ffffff;

    box-shadow:
        0 8px 22px var(--mv-purple-shadow);
}


/* =========================================================
   HEADER
   ========================================================= */

.mv-prediction-submitted .mv-prediction-header {
    padding: 22px 34px 0;
}


.mv-prediction-submitted .mv-prediction-eyebrow {
    margin: 0;
}


.mv-prediction-submitted .mv-prediction-header h2 {
    margin: 0;

    max-width: 760px;

    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;

    color: var(--mv-text);
}


.mv-prediction-submitted .mv-prediction-header p {
    max-width: 650px;

    margin: 18px 0 0;

    font-size: 16px;
    line-height: 1.65;

    color: var(--mv-muted);
}


/* =========================================================
   PREDICTION CARD
   ========================================================= */

.mv-prediction-submitted-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin: 32px 34px 0;
    padding: 28px 30px;

    border: 1px solid var(--mv-purple-border);
    border-radius: var(--mv-radius-md);

    background:
        radial-gradient(
            circle at 100% 0%,
            var(--mv-purple-soft),
            transparent 45%
        ),
        var(--mv-surface-alt);

    box-sizing: border-box;
}


.mv-prediction-submitted-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--mv-muted);
}


.mv-prediction-submitted-card strong {
    margin-top: 8px;

    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.035em;
    font-weight: 800;

    color: var(--mv-text);
}


.mv-prediction-submitted-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 14px;

    font-size: 12px;
    font-weight: 700;

    color: var(--mv-purple);
}


.mv-prediction-submitted-status svg {
    display: block;
}


/* =========================================================
   WHAT HAPPENS NEXT
   ========================================================= */

.mv-prediction-submitted-note {
    display: flex;
    flex-direction: column;
    gap: 6px;

    margin: 22px 34px 0;
    padding: 18px 20px;

    border-left: 3px solid var(--mv-purple);

    background: var(--mv-surface-alt);
}


.mv-prediction-submitted-note strong {
    font-size: 13px;
    font-weight: 800;

    color: var(--mv-text);
}


.mv-prediction-submitted-note span {
    font-size: 13px;
    line-height: 1.55;

    color: var(--mv-muted);
}


/* =========================================================
   FOOTER
   ========================================================= */

.mv-prediction-submitted .mv-prediction-footer {
    margin-top: 30px;
    padding: 20px 34px;

    border-top: 1px solid var(--mv-border);
}


.mv-prediction-submitted .mv-prediction-footer a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 13px;
    font-weight: 750;

    color: var(--mv-purple);
    text-decoration: none;
}


.mv-prediction-submitted .mv-prediction-footer a span {
    transition: transform 0.2s ease;
}


.mv-prediction-submitted .mv-prediction-footer a:hover span {
    transform: translateX(3px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .mv-prediction-submitted {
        border-radius: var(--mv-radius-md);
    }

    .mv-prediction-submitted-top {
        padding: 24px 20px 0;
    }

    .mv-prediction-submitted .mv-prediction-header {
        padding: 20px 20px 0;
    }

    .mv-prediction-submitted .mv-prediction-header h2 {
        font-size: 36px;
    }

    .mv-prediction-submitted .mv-prediction-header p {
        font-size: 15px;
    }

    .mv-prediction-submitted-card {
        margin: 26px 20px 0;
        padding: 24px;
    }

    .mv-prediction-submitted-note {
        margin: 18px 20px 0;
    }

    .mv-prediction-submitted .mv-prediction-footer {
        padding: 18px 20px;
    }
}

/* =========================================================
   Prediction Results
   ========================================================= */

.mv-prediction-result {
    --mv-game-purple: #7c3aed;
    --mv-game-purple-dark: #6d28d9;
    --mv-game-purple-soft: #f3edff;

    width: 100%;
    max-width: none;
    min-height: 390px;

    box-sizing: border-box;

    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);

    border: 1px solid #e5e5ea;
    border-radius: 22px;

    overflow: hidden;

    background: #ffffff;

    font-family: inherit;
}


/* =========================================================
   LEFT / MAIN
   ========================================================= */

.mv-prediction-result-main {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 64px 72px;

    box-sizing: border-box;
}


.mv-prediction-result-top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 auto 26px;
}


/* =========================================================
   RESULT ICON
   ========================================================= */

.mv-prediction-result-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

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

    border-radius: 15px;

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

    box-sizing: border-box;
}


.mv-prediction-success .mv-prediction-result-icon {
    background: #ede9fe;
    color: var(--mv-game-purple);
}


.mv-prediction-failure .mv-prediction-result-icon {
    background: #f3f3f5;
    color: #777780;
}


.mv-prediction-result-icon svg {
    display: block;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.mv-prediction-result .mv-prediction-eyebrow {
    margin: 0;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--mv-game-purple);
}


/* =========================================================
   HEADER / MAIN TEXT
   ========================================================= */

.mv-prediction-result .mv-prediction-header {
    max-width: 720px;
}


.mv-prediction-result .mv-prediction-header h2 {
    margin: 0;

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.045em;
    font-weight: 800;

    color: #111114;
}


.mv-prediction-result .mv-prediction-header p {
    max-width: 650px;

    margin: 24px 0 0;

    font-size: 17px;
    line-height: 1.65;

    color: #71717c;
}


/* =========================================================
   RIGHT / ACTION PANEL
   ========================================================= */

.mv-prediction-result-side {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 52px;

    box-sizing: border-box;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(124, 58, 237, 0.20),
            transparent 42%
        ),
        #111114;

    color: #ffffff;
    border-radius: 22px;
}


/* =========================================================
   MESSAGE
   ========================================================= */

.mv-prediction-result-message {
    display: flex;
    flex-direction: column;
    gap: 12px;

    max-width: 430px;

    padding-left: 20px;

    border-left: 2px solid var(--mv-game-purple);
}


.mv-prediction-result-message strong {
    display: block;

    font-size: 21px;
    line-height: 1.25;
    font-weight: 750;

    color: #ffffff;
}


.mv-prediction-result-message span {
    display: block;

    font-size: 14px;
    line-height: 1.65;

    color: #a8a8b3;
}


/* =========================================================
   STATS CTA
   ========================================================= */

.mv-prediction-result-action {
    margin-top: 34px;
}


.mv-prediction-result-action a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    width: 100%;
    min-height: 64px;

    padding: 0 20px 0 24px;

    box-sizing: border-box;

    border-radius: 14px;

    background: var(--mv-game-purple);
    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 15px;
    font-weight: 750;

    box-shadow:
        0 14px 30px rgba(124, 58, 237, 0.28);

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}


.mv-prediction-result-action a:hover {
    background: var(--mv-game-purple-dark);

    transform: translateY(-2px);

    box-shadow:
        0 18px 36px rgba(124, 58, 237, 0.36);
}


.mv-prediction-result-action a svg {
    flex: 0 0 auto;

    transition: transform 0.2s ease;
}


.mv-prediction-result-action a:hover svg {
    transform: translateX(3px);
}


/* =========================================================
   SUCCESS
   ========================================================= */

.mv-prediction-success {
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(124, 58, 237, 0.055),
            transparent 30%
        ),
        #ffffff;
}


/* =========================================================
   FAILURE
   ========================================================= */

.mv-prediction-failure {
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(124, 58, 237, 0.035),
            transparent 30%
        ),
        #ffffff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .mv-prediction-result {
        grid-template-columns: 1fr;
    }

    .mv-prediction-result-main {
        padding: 52px 44px;
    }

    .mv-prediction-result-side {
        padding: 42px 44px;
    }

    .mv-prediction-result .mv-prediction-header h2 {
        font-size: 52px;
    }

    .mv-prediction-result-message {
        max-width: 600px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .mv-prediction-result {
        min-height: auto;

        border-radius: 16px;
    }

    .mv-prediction-result-main {
        padding: 40px 24px 38px;
    }

    .mv-prediction-result-side {
        padding: 34px 24px 28px;
    }

    .mv-prediction-result-top {
        margin-bottom: 22px;
    }

    .mv-prediction-result-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;

        border-radius: 13px;
    }

    .mv-prediction-result .mv-prediction-header h2 {
        font-size: 42px;
        line-height: 1.02;
    }

    .mv-prediction-result .mv-prediction-header p {
        margin-top: 18px;

        font-size: 15px;
        line-height: 1.6;
    }

    .mv-prediction-result-message {
        padding-left: 16px;
    }

    .mv-prediction-result-message strong {
        font-size: 19px;
    }

    .mv-prediction-result-message span {
        font-size: 13px;
    }

    .mv-prediction-result-action {
        margin-top: 28px;
    }

    .mv-prediction-result-action a {
        min-height: 60px;
    }

}

/* =====================================================
   RESULT — CALL VS ACTUAL
   ===================================================== */

.mv-prediction-result-market {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    margin-top: 28px;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}


.mv-prediction-result-market-item {
    flex: 1;
    padding: 18px 24px;
    border: 1px solid rgba(20, 18, 25, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    text-align: center;
}


.mv-prediction-result-market-item span {
    display: block;
    margin-bottom: 7px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #8a8494;
}


.mv-prediction-result-market-item strong {
    display: block;

    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;

    color: #15131a;
}


/* VS */

.mv-prediction-result-market-divider {
    position: relative;

    width: 44px;
    flex: 0 0 44px;

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


.mv-prediction-result-market-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;

    height: 1px;

    background: rgba(20, 18, 25, 0.08);
}


.mv-prediction-result-market-divider span {
    position: relative;
    z-index: 1;

    padding: 5px 7px;

    border-radius: 999px;

    background: #fff;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #9a95a2;
}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .mv-prediction-result-market {
        max-width: none;
    }

    .mv-prediction-result-market-item {
        padding: 15px 12px;
    }

    .mv-prediction-result-market-item strong {
        font-size: 16px;
    }

    .mv-prediction-result-market-divider {
        width: 34px;
        flex-basis: 34px;
    }
}

/* =========================================================
   HOW IT WORKS
   ========================================================= */

.mv-prediction-home-info {

    margin-top: 22px;
    padding: 18px 20px;

    border: 1px solid var(--mv-game-border-light);
    border-radius: 12px;

    background: #fafafa;
}


.mv-prediction-home-info strong {
    display: block;

    margin-bottom: 6px;

    font-size: 12px;
    font-weight: 750;

    color: var(--mv-game-text);
}


.mv-prediction-home-info p {
    margin: 0;

    max-width: 760px;

    font-size: 12px;
    line-height: 1.6;

    color: var(--mv-game-text-muted);
}

/* =========================================================
   SECONDARY ACTION
   ========================================================= */

.mv-prediction-result-action-secondary a {
    background: rgba(255, 255, 255, 0.08);

    color: #ffffff !important;

    box-shadow: none;

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


.mv-prediction-result-action-secondary a:hover {
    background: rgba(255, 255, 255, 0.13);

    box-shadow: none;
}


.mv-prediction-result-action-secondary
.mv-prediction-action-icon {

    background: rgba(255, 255, 255, 0.10);

    color: #ffffff;
}

/* =========================================================
   FOOTER
   ========================================================= */

.mv-prediction-footer > span {
    font-size: 12px;

    color: var(--mv-game-text-muted);
}


@media (max-width: 600px) {

    .mv-prediction-home-action {
        min-height: 66px;

        padding-left: 16px;

        border-radius: 12px;
    }


    .mv-prediction-home-action-content strong {
        font-size: 13px;
    }


    .mv-prediction-home-action-content small {
        font-size: 11px;
    }


    .mv-prediction-home-info {
        margin-top: 18px;

        padding: 16px;
    }

}