/* ============================================
   MULTIVERSAL QUEST
============================================ */

.multiversal-quest {
    padding: 2rem;
    border-radius: 1rem;
    color: #e8eaff;
    background: radial-gradient(1200px 600px at 10% 10%, #2a2b5e 0%, #0c0f1f 60%, #070914 100%);
    border: 1px solid #2f3366;
    box-shadow: 0 1.25rem 3.125rem rgba(0,0,0,.55), inset 0 0 5rem rgba(150,120,255,.12);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.mq-header {
    text-align: center;
    margin-bottom: 1.25rem;
}

.mq-eyebrow {
    display: inline-flex;
    margin-bottom: .65rem;
    padding: .375rem .65rem;
    border-radius: 999px;
    color: #c9cbdf;
    background: rgba(159,167,255,.23);
    border: 1px solid rgba(66,72,133,.29);
    font-size: .75rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mq-title {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2rem);
    line-height: 1.2;
    font-weight: 900;
    text-shadow: 0 0 1.125rem rgba(150,120,255,.35);
}

.mq-sub,
.mq-footer {
    color: #d4d5e1;
    font-size: .875rem;
}

.mq-sub {
    margin-top: .65rem;
}

.mq-footer {
    margin-top: 1.125rem;
    text-align: center;
}

.mq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.125rem;
    margin-top: 1.5rem;
}

.mq-card {
    padding: 1.125rem;
    border-radius: .9rem;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(160,150,255,.25);
    backdrop-filter: blur(6px);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.mq-card:hover {
    transform: translateY(-2px);
    border-color: #ffcc66;
    box-shadow: 0 0 1.875rem rgba(255,204,102,.18);
}

.mq-card h3 {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 0 0 .65rem;
    color: #fff;
    font-size: 1rem;
}

.mq-card ul {
    display: grid;
    gap: .5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mq-card li {
    position: relative;
    padding-left: 1.375rem;
    color: #e1e1e1;
}

.mq-card li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: .125rem;
    color: #e1e1e1;
    font-size: .75rem;
}

.mq-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-top: 1.625rem;
}

.mq-aura {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.mq-aura::after {
    content: "";
    position: absolute;
    inset: -40%;
    z-index: 0;
    background: linear-gradient(135deg, #1e30f3 0%, #e21e80 100%);
    filter: blur(40px);
    opacity: .45;
    pointer-events: none;
}

.mq-content {
    position: relative;
    z-index: 1;
}

.mq-filters {
    margin: .3em;
    padding: .5em;
    border-radius: .75rem;
    color: #fff;
    background: #6a5dff;
    border: .2em solid #6a5dff;
}

.authenticator-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.authenticator-section .mp-button-modern {
    text-align: center;
    padding: .75rem 1rem;
}

.authenticator-section .mp-button-modern + .mp-button-modern {
    margin-top: 1px;
}

.flip-horizontal {
    display: inline-block;
    transform: scaleX(-1);
}
