.mp-tour-active {
    overscroll-behavior: contain;
}

.mp-tour-spotlight {
    position: fixed;
    z-index: 99980;
    border: 2px solid var(--accent-gold, #f2c14e);
    border-radius: 12px;
    box-shadow:
        0 0 0 9999px rgba(5, 8, 18, 0.72),
        0 0 26px rgba(242, 193, 78, 0.32);
    pointer-events: none;
    transition: top 0.18s ease, left 0.18s ease, width 0.18s ease, height 0.18s ease;
}

.mp-tour-card {
    position: fixed;
    z-index: 99990;
    width: min(380px, calc(100vw - 2rem));
    background: #171c31;
    border: 1px solid rgba(242, 193, 78, 0.35);
    border-radius: 12px;
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.55);
    padding: 1rem;
    color: #eef0ff;
    font-family: "Nunito", sans-serif;
}

.mp-tour-kicker {
    color: var(--accent-gold, #f2c14e);
    font-family: "Cinzel", serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin-bottom: 0.45rem;
    text-align: center;
    text-transform: uppercase;
}

.mp-tour-title {
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.45rem;
}

.mp-tour-body {
    color: rgba(238, 240, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.45;
    margin: 0;
}

.mp-tour-actions {
    align-items: center;
    display: flex;
    gap: 0.55rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.mp-tour-progress {
    color: rgba(238, 240, 255, 0.42);
    font-size: 0.78rem;
    margin-right: auto;
}

.mp-tour-btn {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(238, 240, 255, 0.78);
    cursor: pointer;
    font: 700 0.84rem "Nunito", sans-serif;
    padding: 0.55rem 0.85rem;
}

.mp-tour-btn:hover {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.mp-tour-btn-primary {
    background: linear-gradient(135deg, #c8960c, #f2c14e);
    border-color: rgba(242, 193, 78, 0.7);
    color: #0a0d1a;
}

.mp-tour-btn-ghost {
    background: transparent;
    border-color: transparent;
    color: rgba(238, 240, 255, 0.48);
}

.mp-tour-btn:disabled {
    cursor: default;
    opacity: 0.35;
}

@media (max-width: 640px) {
    .mp-tour-card {
        max-height: calc(100vh - 1.5rem);
        overflow-y: auto;
        width: min(350px, calc(100vw - 1.5rem));
    }
}
