/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-zhcmbz0kww] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--bg);
}

main[b-zhcmbz0kww] {
    flex: 1;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.nav-item[b-vjf405eq8h] {
    font-size: 0.875rem;
}

.nav-item[b-vjf405eq8h]  a.active {
    color: var(--nav-active) !important;
    font-weight: 600;
    opacity: 1 !important;
}

.nav-item[b-vjf405eq8h]  a:hover {
    opacity: 1 !important;
}

@media (max-width: 767.98px) {
    .navbar-collapse[b-vjf405eq8h] {
        background-color: var(--nav-bg);
        padding: 0.5rem 0 1rem;
        border-top: 1px solid oklch(90% 0.015 75 / 0.12);
    }

    .navbar-collapse .nav-item[b-vjf405eq8h] {
        padding: 0;
    }

    .navbar-collapse .nav-link[b-vjf405eq8h] {
        padding: 10px 24px;
    }

    .navbar-collapse .dropdown-menu[b-vjf405eq8h] {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 24px;
    }

    .navbar-collapse .dropdown-item[b-vjf405eq8h] {
        color: var(--nav-text);
        opacity: 0.75;
    }

    .navbar-collapse .dropdown-item:hover[b-vjf405eq8h] {
        background-color: oklch(90% 0.015 75 / 0.08);
        color: var(--nav-text);
        opacity: 1;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.landing[b-1llmpbbiak] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    user-select: none;
}

/* ── Book mark ─────────────────────────────────────────────────────────────── */

.landing-mark[b-1llmpbbiak] {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-mark.show[b-1llmpbbiak] {
    opacity: 1;
    transform: translateY(0);
}

/* ── Wordmark row ──────────────────────────────────────────────────────────── */

.landing-row[b-1llmpbbiak] {
    display: flex;
    align-items: center;
    gap: 0;
    transform: translateX(-19px);
}

/* ── Slot window ───────────────────────────────────────────────────────────── */

.landing-slot[b-1llmpbbiak] {
    height: 81px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

/* Invisible in-flow element that sizes the slot to the widest word */
.landing-ghost[b-1llmpbbiak] {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    visibility: hidden;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

/* Top / bottom softening fades */
.landing-fade[b-1llmpbbiak] {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.landing-fade-top[b-1llmpbbiak] {
    top: 0;
    height: 15px;
    background: linear-gradient(to bottom, var(--bg), transparent);
}

.landing-fade-bottom[b-1llmpbbiak] {
    bottom: 0;
    height: 10px;
    background: linear-gradient(to top, var(--bg), transparent);
}

.landing-fade.hidden[b-1llmpbbiak] {
    opacity: 0;
}

/* Scrolling strip of words */
.landing-strip[b-1llmpbbiak] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: none;
}

.landing-strip.sliding[b-1llmpbbiak] {
    transition: transform 320ms cubic-bezier(0.32, 0, 0.18, 1);
}

/* Each word: right-aligned so its trailing edge is flush with "Loki" */
.landing-word[b-1llmpbbiak] {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    height: 81px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--text-muted);
}

/* ── "Loki" — anchored, never moves ───────────────────────────────────────── */

.landing-loki[b-1llmpbbiak] {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    white-space: nowrap;
    height: 81px;
    display: flex;
    align-items: center;
    color: var(--text);
}

/* ── Tagline ───────────────────────────────────────────────────────────────── */

.landing-tagline[b-1llmpbbiak] {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.45s ease 0.1s, transform 0.45s ease 0.1s;
}

.landing-tagline.show[b-1llmpbbiak] {
    opacity: 1;
    transform: translateY(0);
}

.landing-tagline span[b-1llmpbbiak] {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-muted);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
}

.landing-line[b-1llmpbbiak] {
    height: 1px;
    width: 0;
    background: var(--border);
    transition: width 0.5s ease 0.2s;
}

.landing-line.show[b-1llmpbbiak] {
    width: 28px;
}

/* ── CTA buttons ───────────────────────────────────────────────────────────── */

.landing-ctas[b-1llmpbbiak] {
    margin-top: 40px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.48s, transform 0.4s ease 0.48s;
}

.landing-ctas.show[b-1llmpbbiak] {
    opacity: 1;
    transform: translateY(0);
}

.landing-btn-primary[b-1llmpbbiak] {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--accent-text);
    border: 1px solid var(--accent);
    cursor: pointer;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}

.landing-btn-primary:hover[b-1llmpbbiak],
.landing-btn-primary:focus[b-1llmpbbiak] {
    background: var(--accent-hover);
    color: var(--accent-text);
    text-decoration: none;
}

.landing-btn-secondary[b-1llmpbbiak] {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--radius);
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}

.landing-btn-secondary:hover[b-1llmpbbiak],
.landing-btn-secondary:focus[b-1llmpbbiak] {
    background: var(--bg-alt);
    color: var(--text-muted);
    text-decoration: none;
}

/* ── Sleek Modern (dark) overrides ────────────────────────────────────────── */
/* DM Sans is geometric sans-serif — tighter tracking reads cleaner at display */
/* sizes; weight 300 for the cycling words contrasts the heavy 700 "Loki".    */

[data-theme="dark"] .landing-word[b-1llmpbbiak],
[data-theme="dark"] .landing-ghost[b-1llmpbbiak] {
    font-weight: 300;
    letter-spacing: -0.01em;
}

[data-theme="dark"] .landing-loki[b-1llmpbbiak] {
    letter-spacing: -0.01em;
}

[data-theme="dark"] .landing-tagline span[b-1llmpbbiak] {
    letter-spacing: 0.18em;
}

/* ── Minimal Editorial overrides ──────────────────────────────────────────── */
/* Cormorant Garamond is a high-contrast display serif — weight 300 for the   */
/* cycling words is refined; 600 for "Loki" remains elegant. Wider tracking   */
/* and uppercase small CTAs match the minimal editorial aesthetic.             */

[data-theme="editorial"] .landing-word[b-1llmpbbiak],
[data-theme="editorial"] .landing-ghost[b-1llmpbbiak] {
    font-weight: 300;
    letter-spacing: 0.03em;
}

[data-theme="editorial"] .landing-loki[b-1llmpbbiak] {
    font-weight: 600;
    letter-spacing: 0.03em;
}

[data-theme="editorial"] .landing-tagline span[b-1llmpbbiak] {
    letter-spacing: 0.28em;
    font-size: 13px;
}

[data-theme="editorial"] .landing-line.show[b-1llmpbbiak] {
    width: 40px;
}

[data-theme="editorial"] .landing-btn-primary[b-1llmpbbiak],
[data-theme="editorial"] .landing-btn-secondary[b-1llmpbbiak] {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

[data-theme="editorial"] .landing-btn-primary[b-1llmpbbiak] {
    padding: 12px 36px;
}

[data-theme="editorial"] .landing-btn-secondary[b-1llmpbbiak] {
    padding: 12px 28px;
}
/* /Pages/Onboarding.razor.rz.scp.css */
.onboarding-container[b-0my32b9ybz] {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

.onboarding-header[b-0my32b9ybz] {
    text-align: center;
}

.onboarding-step[b-0my32b9ybz] {
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefits-list[b-0my32b9ybz] {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1rem;
}

.genre-grid[b-0my32b9ybz] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.genre-btn[b-0my32b9ybz] {
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border-width: 2px;
}

.genre-btn:hover[b-0my32b9ybz] {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.author-badge[b-0my32b9ybz] {
    font-size: 0.875rem;
    padding: 0.4em 0.75em;
    display: inline-flex;
    align-items: center;
    border-radius: 1rem;
}

.suggestion-chips[b-0my32b9ybz] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.selected-chips[b-0my32b9ybz] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.onboarding-actions[b-0my32b9ybz] {
    padding-top: 1rem;
}

/* Completion screen specific styles */
.card[b-0my32b9ybz] {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
}

.card-body[b-0my32b9ybz] {
    padding: 1.5rem;
}

blockquote[b-0my32b9ybz] {
    margin: 0;
    padding: 0;
}

blockquote p[b-0my32b9ybz] {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 0.75rem;
}

.blockquote-footer[b-0my32b9ybz] {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.blockquote-footer[b-0my32b9ybz]::before {
    content: "— ";
}

/* Progress bar styling */
.progress[b-0my32b9ybz] {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
}

.progress-bar[b-0my32b9ybz] {
    background-color: #0d6efd;
    transition: width 0.3s ease;
}

/* Alert styling for imported data */
.alert-info[b-0my32b9ybz] {
    background-color: #cfe2ff;
    border-color: #b6d4fe;
    color: #084298;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .onboarding-container[b-0my32b9ybz] {
        padding: 1rem 0.5rem 2rem;
    }

    .onboarding-step[b-0my32b9ybz] {
        padding: 1.5rem 1rem;
    }

    .genre-btn[b-0my32b9ybz] {
        font-size: 0.8rem;
        padding: 0.3rem 0.75rem;
    }
}

/* Loading spinner in importing state */
.spinner-border[b-0my32b9ybz] {
    width: 3rem;
    height: 3rem;
}

/* Button hover effects */
.btn-outline-primary:hover[b-0my32b9ybz] {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.2);
}

.btn-primary:hover[b-0my32b9ybz] {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.3);
}

/* Success and warning icons */
.text-success[b-0my32b9ybz] {
    color: #10b981 !important;
}

.text-warning[b-0my32b9ybz] {
    color: #f59e0b !important;
}

/* OAuth button styling */
.btn-lg[b-0my32b9ybz] {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.btn-outline-primary[b-0my32b9ybz] {
    border-width: 2px;
}

/* Card styling for completion screen */
.bg-light[b-0my32b9ybz] {
    background-color: #f8f9fa !important;
}

/* Ensure proper spacing */
.mb-4[b-0my32b9ybz] {
    margin-bottom: 1.5rem !important;
}

.mt-4[b-0my32b9ybz] {
    margin-top: 1.5rem !important;
}

.gap-3[b-0my32b9ybz] {
    gap: 1rem !important;
}
