/* Arcade experience (fallback/missing view) */

.fca-experience {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #1f2338 0%, #0b0d1b 65%, #05060f 100%);
    color: #f5f7ff;
}

/* Force light text in all modes (protect from theme light-mode bleed) */
.fca-experience *,
.fca-experience *::before,
.fca-experience *::after {
    color: inherit;
}

.fca-experience__inner {
    background: rgba(15, 19, 35, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    max-width: 560px;
}

.fca-experience__inner h1 {
    margin: 0 0 0.75rem;
    font-size: 2rem;
}

.fca-experience__inner p {
    margin: 0 0 1.5rem;
    color: rgba(255, 255, 255, 0.75) !important;
}

.fca-experience__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #f5f7ff;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(245, 185, 66, 0.35);
    background: rgba(245, 185, 66, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fca-experience__back:hover {
    background: rgba(245, 185, 66, 0.25);
    box-shadow: 0 8px 18px rgba(245, 185, 66, 0.25);
}