/* ══════════════════════════════════════════
   Global Dark Theme (default)
   ══════════════════════════════════════════ */

:root,
[data-theme="dark"] {
    --bg: #0f1623;
    --panel: #1a2236;
    --panelSoft: #1e2840;
    --panelDeep: rgba(15, 23, 42, 0.5);
    --text: #e2e8f0;
    --textSoft: #c8d5e4;
    --muted: #94a3b8;
    --mutedFaint: #64748b;
    --border: #2a3550;
    --borderSoft: rgba(148, 163, 184, 0.10);
    --blue: #3b82f6;
    --blueLight: #60a5fa;
    --red: #ef4444;
    --shadow: 0 12px 30px rgba(0, 0, 0, 0.30);
    --shadowSoft: 0 8px 18px rgba(0, 0, 0, 0.20);
    --hoverShadow: 0 12px 40px rgba(59, 130, 246, 0.12), 0 4px 12px rgba(0, 0, 0, 0.3);
    --hoverGlow: rgba(255, 255, 255, 0.06);
    --radius: 16px;
    --radiusSm: 12px;
    --navGlass: rgba(15, 22, 35, 0.3);
    --navGlassScrolled: rgba(15, 22, 35, 0.85);
    --navBorder: rgba(148, 163, 184, 0.08);
    --navBorderScrolled: rgba(148, 163, 184, 0.12);
    --mobileMenu: rgba(26, 34, 54, 0.95);
    --overlayBg: rgba(0, 0, 0, 0.5);
    --footerBg: rgba(15, 23, 42, 0.6);
    --tooltipBg: #1e293b;
    --tooltipText: #e2e8f0;
    --tooltipBorder: rgba(148, 163, 184, 0.15);
    color-scheme: dark;
}

/* ══════════════════════════════════════════
   Light Theme
   ══════════════════════════════════════════ */

[data-theme="light"] {
    --bg: #e8ecf4;
    --panel: #ffffff;
    --panelSoft: #f0f2f8;
    --panelDeep: rgba(220, 225, 238, 0.6);
    --text: #1a2236;
    --textSoft: #3d4f66;
    --muted: #5b6b82;
    --mutedFaint: #7a8ba0;
    --border: #d0d6e0;
    --borderSoft: rgba(100, 116, 139, 0.12);
    --blue: #2563eb;
    --blueLight: #3b82f6;
    --red: #dc2626;
    --shadow: 0 4px 16px rgba(30, 40, 60, 0.08), 0 1px 4px rgba(30, 40, 60, 0.05);
    --shadowSoft: 0 2px 8px rgba(30, 40, 60, 0.05);
    --hoverShadow: 0 8px 28px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(30, 40, 60, 0.06);
    --hoverGlow: rgba(0, 0, 0, 0.03);
    --radius: 16px;
    --radiusSm: 12px;
    --navGlass: rgba(255, 255, 255, 0.7);
    --navGlassScrolled: rgba(255, 255, 255, 0.92);
    --navBorder: rgba(100, 116, 139, 0.12);
    --navBorderScrolled: rgba(100, 116, 139, 0.18);
    --mobileMenu: rgba(255, 255, 255, 0.97);
    --overlayBg: rgba(30, 40, 60, 0.3);
    --footerBg: rgba(240, 242, 248, 0.8);
    --tooltipBg: #ffffff;
    --tooltipText: #1a2236;
    --tooltipBorder: rgba(100, 116, 139, 0.2);
    color-scheme: light;
}

html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: background 0.3s ease, color 0.3s ease;
}

a, .btn-link {
    color: var(--blue);
}

button.btn-link {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
}

.btn-primary {
    color: #fff;
    background-color: #2563eb;
    border-color: #1d4ed8;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem rgba(15, 22, 35, 0.5), 0 0 0 0.25rem rgba(59, 130, 246, 0.4);
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #ef4444;
}

.blazor-error-boundary {
    background: var(--panel, #1a2236);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 10px;
    padding: 24px;
    margin: 16px 0;
    text-align: center;
    color: var(--muted, #94a3b8);
}

    .blazor-error-boundary::after {
        content: "Something went wrong loading this section. Please refresh the page.";
        font-size: 0.9rem;
        line-height: 1.5;
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--muted);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

/* ══════════════════════════════════════════
   Bootstrap Dark Overrides
   ══════════════════════════════════════════ */

.form-control, .form-select {
    background-color: var(--panelSoft);
    color: var(--text);
    border-color: var(--border);
}

.form-control:focus, .form-select:focus {
    background-color: var(--panel);
    color: var(--text);
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* ══════════════════════════════════════════
   Page Transitions & Animations
   ══════════════════════════════════════════ */

article.content {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════
   Card Hover Effects
   ══════════════════════════════════════════ */

.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15), 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ══════════════════════════════════════════
   Auth pages (SignIn / SignUp)
   ══════════════════════════════════════════ */

.auth-card {
    width: 100%;
    max-width: 400px;
    background: var(--panel);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border);
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.25rem;
    text-align: center;
}

.auth-subtitle {
    font-size: 0.88rem;
    color: var(--muted);
    text-align: center;
    margin: 0 0 1.5rem;
}

.auth-error {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #ef4444;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.auth-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.auth-email-hint {
    color: #60a5fa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    word-break: break-all;
}

.verification-code-input {
    font-size: 1.5rem;
    letter-spacing: 8px;
    text-align: center;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.form-input {
    width: 100%;
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    background: var(--panelSoft);
    color: var(--text);
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    background: var(--panel);
}

.form-input::placeholder {
    color: var(--muted);
}

.btn-auth {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.7rem 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s, box-shadow 0.15s;
}

.btn-primary-auth {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: #fff;
    margin-top: 0.5rem;
}

.btn-primary-auth:hover {
    background: linear-gradient(135deg, #4338ca, #4f46e5);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-google {
    background: var(--panelSoft);
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-google:hover {
    background: var(--panel);
    border-color: var(--muted);
    text-decoration: none;
    color: var(--text);
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.25rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    padding: 0 0.75rem;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.auth-footer a {
    color: #818cf8;
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* League name highlights in model descriptions (injected via MarkupString) */
.leagueHighlight {
    color: #fbbf24;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════
   Light Theme — Specific Overrides
   ══════════════════════════════════════════ */

[data-theme="light"] .btn-primary {
    background-color: #2563eb;
    border-color: #1d4ed8;
}

[data-theme="light"] .btn:focus,
[data-theme="light"] .btn:active:focus,
[data-theme="light"] .form-control:focus {
    box-shadow: 0 0 0 0.1rem rgba(30, 40, 60, 0.08), 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

[data-theme="light"] .hover-lift:hover {
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.10), 0 4px 12px rgba(30, 40, 60, 0.08);
}

[data-theme="light"] .auth-card {
    box-shadow: 0 20px 60px rgba(30, 40, 60, 0.12);
}

/* ── Upgrade Card (shared by GateCard and Account page) ── */

.upgradeCard {
    max-width: 520px;
    margin: 40px auto;
    background: var(--panel);
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.upgradeCard::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.upgradeHeader {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.upgradeIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(251, 191, 36, 0.1);
    flex-shrink: 0;
}

.upgradeTitle {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.perksList {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.perkItem {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.perkIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.08);
    flex-shrink: 0;
    margin-top: 2px;
}

.perkText {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.perkTitle {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
}

.perkDesc {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}

a.upgradeCta,
button.upgradeCta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #451a03;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
}

a.upgradeCta:hover,
button.upgradeCta:hover {
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.35);
    transform: translateY(-1px);
    text-decoration: none;
    color: #451a03;
}

@media (max-width: 600px) {
    .upgradeCard {
        margin: 24px 16px;
        padding: 24px 20px;
    }

    .upgradeTitle {
        font-size: 1.05rem;
    }
}

/* ── Gate Card (shown to unauthenticated users on protected pages) ── */

.gateCard {
    max-width: 480px;
    margin: 60px auto;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.30);
}

.gateIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(251, 191, 36, 0.1);
    margin-bottom: 8px;
}

.gateTitle {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.01em;
    margin: 0;
}

.gateText {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 380px;
    margin: 4px 0 4px;
}

.gateFeatures {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0 16px;
}

.gateFeature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.gateFeature svg {
    flex-shrink: 0;
}

.gateActions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    margin-top: 4px;
}

.gateCta {
    display: block;
    width: 100%;
    padding: 13px 24px;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    letter-spacing: 0.02em;
}

.gateCta:hover {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
    transform: translateY(-1px);
    text-decoration: none;
    color: #fff;
}

.gateCtaSecondary {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    opacity: 0.85;
}

.gateCtaSecondary:hover {
    opacity: 1;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.35);
}

@media (max-width: 600px) {
    .gateCard {
        margin: 30px 16px;
        padding: 36px 24px;
    }

    .gateTitle {
        font-size: 1.1rem;
    }
}

[data-theme="light"] .gateCard {
    box-shadow: 0 12px 30px rgba(30, 40, 60, 0.12);
}

[data-theme="light"] .blazor-error-boundary {
    background: #fef2f2;
    border-color: rgba(239, 68, 68, 0.2);
    color: #64748b;
}

[data-theme="light"] .auth-footer a {
    color: #4f46e5;
}

[data-theme="light"] .leagueHighlight {
    color: #b45309;
}

[data-theme="light"] .validation-message {
    color: #dc2626;
}

/* ══════════════════════════════════════════
   Theme Toggle Icon Visibility
   ══════════════════════════════════════════ */

/* Dark mode: show sun icon (click to go light) */
[data-theme="dark"] .icon-sun  { display: inline; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .theme-label-dark  { display: inline; }
[data-theme="dark"] .theme-label-light { display: none; }

/* Light mode: show moon icon (click to go dark) */
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: inline; }
[data-theme="light"] .theme-label-dark  { display: none; }
[data-theme="light"] .theme-label-light { display: inline; }

/* Light theme: softer backgrounds for glass elements */
[data-theme="light"] .theme-toggle:hover {
    background: rgba(0, 0, 0, 0.08);
}

/* ── Global Loading Indicator ── */
.pageLoader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    gap: 20px;
}

.pageLoaderRing {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(99, 102, 241, 0.15);
    border-top-color: #6366f1;
    animation: loaderSpin 0.8s linear infinite;
}

.pageLoaderRing::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(99, 102, 241, 0.3);
    animation: loaderSpin 1.6s linear infinite reverse;
}

.pageLoaderText {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.04em;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ── Draft Prediction Loading ── */
.draftPredLoading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 16px;
    margin: 8px 0;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 10px;
}

.draftPredLoadingRing {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2.5px solid rgba(99, 102, 241, 0.15);
    border-top-color: #6366f1;
    animation: loaderSpin 0.8s linear infinite;
    flex-shrink: 0;
}

.draftPredLoadingRing::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    border-top-color: rgba(99, 102, 241, 0.3);
    animation: loaderSpin 1.6s linear infinite reverse;
}

.draftPredLoadingText {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

/* ── Skeleton Shimmer ── */
@keyframes skeletonShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.skeletonBar {
    display: block;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(148,163,184,0.08) 25%, rgba(148,163,184,0.16) 50%, rgba(148,163,184,0.08) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.8s ease-in-out infinite;
}

.skeletonBar--sm { height: 12px; }
.skeletonBar--md { height: 20px; }
.skeletonBar--lg { height: 32px; }
.skeletonBar--w60 { width: 60%; }
.skeletonBar--w80 { width: 80%; }
.skeletonBar--w100 { width: 100%; }

/* ── Section Descriptions (static SEO content) ── */
.sectionDesc {
    color: rgba(148,163,184,0.85);
    font-size: 0.93rem;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 20px;
    padding: 0 4px;
    text-align: center;
}

/* ── Sandbox Feature List ── */
.featureList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 16px auto 28px;
    max-width: 800px;
}

.featureItem {
    background: linear-gradient(135deg, rgba(30,40,64,0.8), rgba(26,34,54,0.5));
    border: 1px solid rgba(59,130,246,0.18);
    border-radius: 12px;
    padding: 18px 22px;
    flex: 1 1 220px;
    max-width: 260px;
    transition: border-color 0.2s ease, transform 0.15s ease;
}

.featureItem:hover {
    border-color: rgba(59,130,246,0.35);
    transform: translateY(-2px);
}

.featureItem h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px;
    letter-spacing: 0.01em;
}

.featureItem p {
    font-size: 0.82rem;
    color: rgba(148,163,184,0.75);
    margin: 0;
    line-height: 1.5;
}

/* ── Navigation Spinner (on <html> — survives Blazor DOM patching) ── */
html.nav-loading::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 36px;
    margin: -18px 0 0 -18px;
    border: 3px solid rgba(59,130,246,0.15);
    border-top-color: #3b82f6;
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    animation: navSpin 0.7s linear infinite;
}

@keyframes navSpin {
    to { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════
   Error / Not-Found Pages
   ══════════════════════════════════════════ */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 40px 20px;
}
.error-icon {
    margin-bottom: 24px;
    opacity: 0.85;
}
.error-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
.error-message {
    font-size: 1rem;
    color: rgba(255,255,255,0.55);
    max-width: 420px;
    line-height: 1.6;
    margin: 0 0 32px;
}
.error-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}
.error-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
}
.error-btn:hover { transform: translateY(-1px); }
.error-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}
.error-btn-primary:hover { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.error-btn-secondary {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.1);
}
.error-btn-secondary:hover { background: rgba(255,255,255,0.1); }
.error-request-id {
    margin-top: 32px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    font-family: monospace;
}
