/* ========================
   Focus Outline Reset
   — Blazor FocusOnNavigate focuses h1 on each navigation;
     suppress the browser focus ring on all headings and non-interactive elements.
   ======================== */
h1:focus, h2:focus, h3:focus, h4:focus, h5:focus, h6:focus,
[tabindex="-1"]:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* ========================
   Outlined Button Fix
   — MudBlazor renders the outlined border via CSS custom property
     --mud-ripple-color and its own box-shadow stack, not a real border.
     Target the actual rendered element structure to enforce uniform stroke.
   ======================== */
.mud-button-root.mud-button-outlined {
    border-width: 1.5px !important;
    border-style: solid !important;
}

.mud-button-root.mud-button-outlined.mud-button-outlined-primary {
    border-color: #00BCD4 !important;
}

/* Remove any pseudo-border shadow MudBlazor adds that thins certain sides */
.mud-button-root.mud-button-outlined::before {
    display: none !important;
}

/* ========================
   Project Detail Layout Fix
   ======================== */
.project-detail-body {
    padding-bottom: 80px;
    overflow: hidden;
}

.project-detail-grid {
    align-items: flex-start !important;
}

/* ========================
   Base & Reset
   ======================== */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #0A0E1A;
    color: #E2E8F0;
    font-family: 'Inter', system-ui, sans-serif;
    overflow-x: hidden;
}

/* ========================
   Fixed Background Layer
   — One animated background covers the entire viewport, fixed in place.
     All page content scrolls over it. Sections use transparent or
     semi-transparent overlays to create light/dark rhythm without
     introducing different background colors.
   ======================== */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background: #0A0E1A;
}

.site-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 188, 212, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 188, 212, 0.035) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridDrift 20s ease-in-out infinite alternate;
    will-change: transform;
}

.site-bg-glow-1 {
    position: absolute;
    top: -20vh;
    left: -15vw;
    width: 55vw;
    height: 55vw;
    max-width: 800px;
    max-height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,188,212,0.11) 0%, transparent 68%);
    animation: glowPulse 7s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

.site-bg-glow-2 {
    position: absolute;
    bottom: -20vh;
    right: -15vw;
    width: 60vw;
    height: 60vw;
    max-width: 900px;
    max-height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,77,255,0.09) 0%, transparent 68%);
    animation: glowPulse 9s ease-in-out infinite alternate-reverse;
    will-change: transform, opacity;
}

.site-bg-glow-3 {
    position: absolute;
    top: 35%;
    left: 40%;
    width: 50vw;
    height: 50vw;
    max-width: 700px;
    max-height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,229,255,0.045) 0%, transparent 60%);
    animation: glowPulse 11s ease-in-out infinite alternate;
    will-change: transform, opacity;
}

.site-bg-particles {
    position: absolute;
    inset: 0;
}

/* ========================
   Main Content Stack
   — sits above the fixed bg layer
   ======================== */
.main-content {
    position: relative;
    z-index: 1;
    padding: 0 !important;
    min-height: 100vh;
}

/* ========================
   Section Overlays
   — sections are transparent by default so the fixed BG shows through.
     .section-light and .section-dark add a semi-transparent wash to
     create the alternating light/dark rhythm.
   ======================== */
.section {
    position: relative;
    padding: 100px 0;
    background: transparent;
}

/* Slightly lighter tint — BG animation clearly visible */
.section-light {
    background: rgba(255, 255, 255, 0.018);
}

/* Slightly darker tint — BG animation still visible but muted */
.section-dark {
    background: rgba(0, 0, 0, 0.28);
}

/* ========================
   Loading Screen
   ======================== */
.app-loading {
    position: fixed;
    inset: 0;
    background: #0A0E1A;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.app-loading-inner {
    text-align: center;
}

.loading-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    font-family: 'JetBrains Mono', monospace;
}

.loading-bracket { color: #00BCD4; }
.loading-name { color: #E2E8F0; margin: 0 4px; }

.loading-bar {
    width: 200px;
    height: 2px;
    background: #1E293B;
    border-radius: 2px;
    margin: 0 auto 1rem;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #00BCD4, #7C4DFF);
    animation: loadingBar 1.5s ease-in-out infinite;
}

@keyframes loadingBar {
    0%   { width: 0%;  margin-left: 0; }
    50%  { width: 60%; margin-left: 20%; }
    100% { width: 0%;  margin-left: 100%; }
}

.loading-text {
    color: #475569;
    font-size: 0.8rem;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.1em;
}

/* ========================
   App Bar / Navigation
   ======================== */
.app-bar {
    background: transparent !important;
    backdrop-filter: none;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 1px solid transparent;
}

.app-bar-scrolled {
    background: rgba(10, 14, 26, 0.88) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    box-shadow: 0 4px 32px rgba(0,0,0,0.4) !important;
}

.nav-logo {
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo-bracket { color: #00BCD4; }
.logo-name    { color: #E2E8F0; margin: 0 2px; }

.nav-btn {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.02em !important;
    color: #94A3B8 !important;
    transition: color 0.2s ease !important;
    text-transform: none !important;
    min-width: auto !important;
    white-space: nowrap !important;
}

.nav-btn:hover { color: #E2E8F0 !important; }

.mobile-drawer { background: #0D1120 !important; }

/* ========================
   Hero Section
   — no own background; the fixed site-bg shows through
   ======================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #00BCD4;
    margin-bottom: 1.5rem;
    padding: 6px 14px;
    border: 1px solid rgba(0,188,212,0.25);
    border-radius: 100px;
    background: rgba(0,188,212,0.06);
    animation: fadeInDown 0.6s ease both;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00BCD4;
    animation: dotBlink 1.5s ease-in-out infinite;
}

@keyframes dotBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-title-line-1 { display: block; color: #E2E8F0; }

.hero-title-line-2 {
    display: block;
    background: linear-gradient(135deg, #00BCD4 0%, #7C4DFF 50%, #00E5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite alternate, fadeInUp 0.7s ease 0.2s both;
}

@keyframes gradientShift {
    from { background-position: 0% 50%; }
    to   { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
    color: #94A3B8 !important;
    max-width: 580px;
    line-height: 1.7 !important;
    margin-bottom: 2.5rem !important;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-code-block {
    background: rgba(17, 24, 39, 0.75);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    line-height: 1.8;
    animation: fadeInRight 0.8s ease 0.5s both;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-code-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00BCD4, transparent);
    animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
    0%   { opacity: 0; transform: translateX(-100%); }
    50%  { opacity: 1; }
    100% { opacity: 0; transform: translateX(100%); }
}

.code-window-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot-red    { background: #FF5F57; }
.code-dot-yellow { background: #FFBD2E; }
.code-dot-green  { background: #28C941; }

.code-filename {
    margin-left: 8px;
    color: #475569;
    font-size: 0.72rem;
}

.code-kw   { color: #7C4DFF; }
.code-type { color: #00E5FF; }
.code-prop { color: #00BCD4; }
.code-str  { color: #A8FF78; }
.code-cmt  { color: #475569; }
.code-num  { color: #FF9800; }

/* ========================
   Section Typography
   ======================== */
.section-label {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #00BCD4;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    font-weight: 700 !important;
    color: #E2E8F0 !important;
    margin-bottom: 1rem !important;
}

.section-subtitle {
    color: #64748B !important;
    font-size: 1.05rem !important;
    max-width: 560px;
    line-height: 1.7 !important;
}

/* ========================
   Focus Cards
   ======================== */
.focus-card {
    background: rgba(17, 24, 39, 0.55);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
    backdrop-filter: blur(8px);
}

.focus-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 188, 212, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), 0 0 40px rgba(0,188,212,0.05);
}

.focus-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
}

.focus-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #E2E8F0 !important;
    margin-bottom: 0.5rem !important;
}

.focus-desc {
    color: #64748B !important;
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
}

/* ========================
   Tech Stack
   ======================== */
.tech-category-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-category-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.05);
}

.tech-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(17,24,39,0.55);
    color: #94A3B8;
    transition: all 0.2s ease;
    cursor: default;
    margin: 4px;
    backdrop-filter: blur(6px);
}

.tech-chip:hover {
    border-color: rgba(0,188,212,0.4);
    color: #00BCD4;
    background: rgba(0,188,212,0.06);
}

.tech-chip-primary {
    border-color: rgba(0,188,212,0.3);
    color: #00BCD4;
    background: rgba(0,188,212,0.08);
}

/* ========================
   Platform Cards
   ======================== */
.platform-card {
    background: rgba(17, 24, 39, 0.55);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(8px);
}

.platform-card:hover {
    border-color: rgba(124,77,255,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ========================
   Project Cards
   ======================== */
.project-card {
    background: rgba(17, 24, 39, 0.72);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: blur(8px);
}

.project-card:hover {
    border-color: rgba(0,188,212,0.25);
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 60px rgba(0,188,212,0.04);
}

.project-card-header {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.project-card-header-bg {
    position: absolute;
    inset: 0;
    opacity: 0.07;
    background-size: 30px 30px;
    background-image:
        linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
}

.project-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.project-card-body {
    padding: 0 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title    { font-size: 1.1rem !important; font-weight: 700 !important; color: #E2E8F0 !important; margin-bottom: 0.25rem !important; }
.project-subtitle { font-size: 0.8rem !important; color: #475569 !important; margin-bottom: 0.75rem !important; font-family: 'JetBrains Mono', monospace; }
.project-desc     { font-size: 0.875rem !important; color: #64748B !important; line-height: 1.65 !important; flex: 1; }

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 1rem;
}

.project-tag {
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.08);
    color: #64748B;
    background: rgba(255,255,255,0.03);
    font-family: 'JetBrains Mono', monospace;
}

.project-platforms {
    display: flex;
    gap: 6px;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.project-platform-chip {
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 500;
    border: 1px solid rgba(124,77,255,0.3);
    color: #7C4DFF;
    background: rgba(124,77,255,0.06);
    font-family: 'JetBrains Mono', monospace;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.status-active    { background: rgba(34,197,94,0.12);  color: #22C55E; border: 1px solid rgba(34,197,94,0.25); }
.status-stable    { background: rgba(0,188,212,0.10);  color: #00BCD4; border: 1px solid rgba(0,188,212,0.25); }
.status-prototype { background: rgba(255,152,0,0.10);  color: #FF9800; border: 1px solid rgba(255,152,0,0.25); }

.status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    animation: dotBlink 1.5s ease-in-out infinite;
}

/* ========================
   Project Detail Page
   ======================== */
.project-hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.project-hero-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(80px);
    pointer-events: none;
}

.project-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #64748B !important;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 2rem;
}

.project-back-btn:hover { color: #00BCD4 !important; }

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.feature-item:last-child { border-bottom: none; }

.feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00BCD4;
    margin-top: 8px;
    flex-shrink: 0;
}

.feature-text {
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.detail-card {
    background: rgba(17,24,39,0.65);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    backdrop-filter: blur(8px);
}

.detail-card-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #475569;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.02);
    margin-bottom: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.download-item:hover {
    border-color: rgba(0,188,212,0.3);
    background: rgba(0,188,212,0.04);
}

.download-filename {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    color: #00BCD4;
}

.download-desc {
    font-size: 0.8rem;
    color: #475569;
    margin-top: 2px;
}

/* ========================
   Stats
   ======================== */
.stat-card { text-align: center; padding: 2rem 1rem; }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00BCD4, #7C4DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'JetBrains Mono', monospace;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ========================
   Footer
   ======================== */
.site-footer {
    position: relative;
    z-index: 1;
    background: rgba(8, 11, 20, 0.96);
    border-top: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
}

.footer-logo { font-family: 'JetBrains Mono', monospace; font-size: 1.1rem; font-weight: 700; }

.footer-heading {
    color: #E2E8F0 !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase;
}

.footer-link {
    color: #475569 !important;
    font-size: 0.875rem !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.footer-link:hover { color: #00BCD4 !important; }

.footer-muted   { color: #334155 !important; font-size: 0.85rem !important; }
.footer-divider { border-color: rgba(255,255,255,0.04) !important; }

/* ========================
   Animations
   ======================== */
@keyframes gridDrift {
    from { transform: translate(0, 0); }
    to   { transform: translate(10px, 10px); }
}

@keyframes glowPulse {
    from { opacity: 0.6; transform: scale(1); }
    to   { opacity: 1;   transform: scale(1.08); }
}

.site-bg-particles .hero-particle {
    position: absolute;
    border-radius: 50%;
    background: #00BCD4;
    animation: particleFloat linear infinite;
    opacity: 0;
    will-change: transform, opacity;
}

@keyframes particleFloat {
    0%   { transform: translateY(100vh); opacity: 0; }
    8%   { opacity: 0.45; }
    92%  { opacity: 0.22; }
    100% { transform: translateY(-80px) translateX(18px); opacity: 0; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-up           { animation: fadeInUp 0.6s ease both; }
.animate-fade-up-delay-1   { animation: fadeInUp 0.6s ease 0.1s both; }
.animate-fade-up-delay-2   { animation: fadeInUp 0.6s ease 0.2s both; }
.animate-fade-up-delay-3   { animation: fadeInUp 0.6s ease 0.3s both; }
.animate-fade-up-delay-4   { animation: fadeInUp 0.6s ease 0.4s both; }
.animate-fade-up-delay-5   { animation: fadeInUp 0.6s ease 0.5s both; }

/* ========================
   Utility
   ======================== */
.text-gradient {
    background: linear-gradient(135deg, #00BCD4 0%, #7C4DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: rgba(17,24,39,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,188,212,0.3), transparent);
    margin: 2rem 0;
}

/* ========================
   Blazor Error UI
   ======================== */
#blazor-error-ui {
    background: rgba(239, 68, 68, 0.9);
    bottom: 0;
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    color: white;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
}

#blazor-error-ui .dismiss { cursor: pointer; font-weight: bold; margin-left: 0.75rem; }

/* ========================
   Responsive
   ======================== */
@media (max-width: 960px) {
    .hero-content { padding: 100px 0 60px; }
    .section      { padding: 70px 0; }
}

@media (max-width: 600px) {
    .hero-content  { padding: 90px 0 50px; }
    .section       { padding: 50px 0; }
    .hero-actions  { flex-direction: column; }
}
