/* ==========================================================================
   BRYTESIKASTRATEGYAI - EBOLA TRACKER DESIGN SYSTEM
   ========================================================================== */

/* --- Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* --- Custom Variables & Theme Tokens --- */
:root {
    --bg-main: #04060b;
    --bg-card: rgba(10, 14, 26, 0.7);
    --bg-card-solid: #090c16;
    --bg-header: rgba(5, 7, 13, 0.9);
    
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-active: rgba(255, 0, 85, 0.4);
    
    --text-primary: #f5f8fc;
    --text-secondary: #8a9eb5;
    --text-muted: #536b82;
    
    /* Ebola Tracker Accent Colors */
    --color-ebola: #ff0055;
    --color-quarantine: #ff9100;
    --color-lab: #00e5ff;
    
    --glow-ebola: rgba(255, 0, 85, 0.35);
    --glow-quarantine: rgba(255, 145, 0, 0.3);
    --glow-lab: rgba(0, 229, 255, 0.3);

    --accent-current: var(--color-ebola);
    --glow-current: var(--glow-ebola);
    
    --shadow-premium: 0 10px 40px 0 rgba(0, 0, 0, 0.6);
    --transition-smooth: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) rgba(0, 0, 0, 0);
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* --- Scrollbars --- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-current);
}

/* --- Header Styling --- */
header {
    background: var(--bg-header);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-pulse {
    width: 10px;
    height: 10px;
    background-color: var(--color-ebola);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-ebola);
    animation: beacon-pulse-ebola 1.5s infinite;
}

.brand h1 {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff 40%, var(--color-ebola));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-status-badge {
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid rgba(255, 0, 85, 0.25);
    color: var(--color-ebola);
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header-metrics {
    display: flex;
    gap: 1.25rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

.metric-pill {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.metric-pill span.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #00ff88;
    box-shadow: 0 0 5px #00ff88;
}

/* --- Layout Grid --- */
main {
    flex: 1;
    display: grid;
    grid-template-columns: 420px 1fr 400px;
    height: calc(100vh - 65px);
    overflow: hidden;
    position: relative;
}

@media (max-width: 1300px) {
    main {
        grid-template-columns: 380px 1fr 360px;
    }
}

/* --- Panel Architecture --- */
.side-panel {
    background: var(--bg-card);
    border-right: 1px solid var(--border-subtle);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.side-panel.right {
    border-right: none;
    border-left: 1px solid var(--border-subtle);
}

.panel-header {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.panel-header h2 {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.panel-header h2::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 14px;
    background-color: var(--accent-current);
    border-radius: 2px;
}

.panel-section {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
}

.panel-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ==========================================================================
   AI DIAGNOSTIC UPLOADER (Left Panel - Centerpiece)
   ========================================================================== */
.uploader-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
}

.upload-zone {
    border: 2px dashed rgba(255, 0, 85, 0.25);
    background: rgba(255, 0, 85, 0.01);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.upload-zone:hover, .upload-zone.dragover {
    border-color: var(--color-ebola);
    background: rgba(255, 0, 85, 0.03);
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.08);
}

.upload-icon {
    width: 48px;
    height: 48px;
    fill: var(--text-secondary);
    transition: var(--transition-smooth);
}

.upload-zone:hover .upload-icon {
    fill: var(--color-ebola);
    transform: translateY(-3px);
}

.upload-text h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.upload-text p {
    font-size: 0.7rem;
    color: var(--text-muted);
}

#hiddenFileInput {
    display: none;
}

/* Sample Quick-Selector Cards */
.sample-selectors {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sample-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.sample-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 0, 85, 0.25);
    transform: translateX(3px);
}

.sample-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
}

/* Vision Telemetry Viewfinder */
.telemetry-viewfinder {
    position: relative;
    width: 100%;
    height: 180px;
    background-color: #000;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    display: none; /* Controlled by JS when file is uploaded */
}

.telemetry-viewfinder.active {
    display: block;
    animation: fade-in-slide 0.3s ease-out forwards;
}

.viewfinder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(0.5) contrast(1.2);
}

.viewfinder-hud {
    position: absolute;
    inset: 0;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: var(--color-ebola);
    pointer-events: none;
    z-index: 5;
    text-shadow: 0 1px 3px rgba(0,0,0,0.9);
}

.viewfinder-sweep {
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--color-ebola);
    top: 0;
    left: 0;
    box-shadow: 0 0 12px var(--color-ebola);
    animation: scanning-sweep 3s linear infinite;
    z-index: 4;
}

/* AI Vision Diagnosis Report Card */
.ai-diagnosis-report {
    background: rgba(255, 0, 85, 0.02);
    border: 1px solid rgba(255, 0, 85, 0.15);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fade-in-slide 0.3s ease-out forwards;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 0, 85, 0.15);
    padding-bottom: 0.5rem;
}

.report-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-ebola);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.triage-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.triage-critical {
    background: rgba(255, 0, 85, 0.15);
    color: var(--color-ebola);
    border: 1px solid rgba(255, 0, 85, 0.3);
    box-shadow: 0 0 5px var(--glow-ebola);
}

.triage-monitoring {
    background: rgba(255, 145, 0, 0.15);
    color: var(--color-quarantine);
    border: 1px solid rgba(255, 145, 0, 0.3);
}

.triage-secure {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.report-item {
    font-size: 0.75rem;
    line-height: 1.4;
}

.report-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.report-list-item {
    font-size: 0.75rem;
    line-height: 1.45;
    padding-left: 0.8rem;
    position: relative;
}

.report-list-item::before {
    content: '▶';
    font-size: 0.5rem;
    color: var(--color-ebola);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

/* ==========================================================================
   CENTER PANEL (Global GIS Map)
   ========================================================================== */
.map-panel {
    position: relative;
    height: 100%;
}

#map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.map-control-overlay {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    background: rgba(5, 7, 13, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 250px;
}

.map-control-overlay h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0.35rem 0.6rem;
    align-items: center;
    gap: 0.4rem;
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 0.75rem;
    font-family: 'Outfit', sans-serif;
    width: 100%;
}

.search-box button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
}

.search-box button:hover {
    color: var(--color-ebola);
}

/* Legend Map Overlay */
.map-legend-overlay {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 10;
    background: rgba(5, 7, 13, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 160px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.critical {
    background: var(--color-ebola);
    box-shadow: 0 0 6px var(--color-ebola);
}

.legend-dot.quarantine {
    background: var(--color-quarantine);
    box-shadow: 0 0 6px var(--color-quarantine);
}

.legend-dot.lab {
    background: var(--color-lab);
    box-shadow: 0 0 6px var(--color-lab);
}

.coordinates-hud {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 10;
    background: rgba(5, 7, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-premium);
}

.coordinates-hud span strong {
    color: var(--color-ebola);
}

/* ==========================================================================
   RIGHT PANEL (Cloudflare Workers AI Chat & Street View)
   ========================================================================== */
.right-panel-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.chat-console {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-feed {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.message {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    max-width: 90%;
    animation: fade-in-slide 0.25s ease-out forwards;
}

.message.aisha { align-self: flex-start; }
.message.sarah { align-self: flex-start; }
.message.kwame { align-self: flex-start; }
.message.user {
    align-self: flex-end;
    max-width: 80%;
}

.msg-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.msg-body {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    padding: 0.7rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    line-height: 1.4;
}

.message.user .msg-body {
    background: rgba(255, 0, 85, 0.06);
    border-color: rgba(255, 0, 85, 0.2);
    color: var(--text-primary);
    border-radius: 12px 12px 2px 12px;
}

.message.aisha .msg-body { border-left: 3px solid var(--color-ebola); }
.message.sarah .msg-body { border-left: 3px solid var(--color-quarantine); }
.message.kwame .msg-body { border-left: 3px solid var(--color-lab); }

.msg-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: var(--text-muted);
}

.chat-input-area {
    padding: 0.8rem 1.25rem;
    border-top: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.15);
}

.chat-form {
    display: flex;
    gap: 0.5rem;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    outline: none;
    transition: var(--transition-smooth);
}

.chat-input:focus {
    border-color: var(--color-ebola);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 8px rgba(255, 0, 85, 0.15);
}

.chat-submit {
    background: var(--color-ebola);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.chat-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px var(--glow-ebola);
}

.chat-submit svg {
    width: 13px;
    height: 13px;
    fill: #fff;
}

/* --- Street View Section (Bottom Right) --- */
.streetview-section {
    padding: 1.25rem;
    background: rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid var(--border-subtle);
}

.viewport-hud {
    position: relative;
    width: 100%;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    background: #000;
}

.viewport-hud::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: rgba(255, 0, 85, 0.25);
    top: 0;
    left: 0;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.7);
    animation: scanning-sweep 4s linear infinite;
    z-index: 5;
    pointer-events: none;
}

.viewport-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transition: var(--transition-smooth);
    filter: saturate(0.2) contrast(1.1) brightness(0.9);
}

.hud-overlay {
    position: absolute;
    inset: 0;
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: #ff3838;
    z-index: 4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    pointer-events: none;
}

.hud-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hud-tag {
    background: rgba(0, 0, 0, 0.7);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 0, 85, 0.3);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hud-blip {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--color-ebola);
    box-shadow: 0 0 5px var(--color-ebola);
    animation: beacon-pulse-ebola 1s infinite;
}

.hud-grid {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 15px 15px;
    pointer-events: none;
    z-index: 2;
}

.streetview-launch-btn {
    background: linear-gradient(135deg, var(--color-ebola), #b3003b);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(255, 0, 85, 0.25);
}

.streetview-launch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 85, 0.4);
}

.streetview-launch-btn svg {
    width: 13px;
    height: 13px;
    fill: #fff;
}

/* --- Leaflet Marker Animations --- */
.pulse-marker-ebola-critical {
    background: var(--color-ebola);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.7);
    animation: marker-pulse-critical-ebola 1.8s infinite;
}

.pulse-marker-ebola-quarantine {
    background: var(--color-quarantine);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 145, 0, 0.7);
    animation: marker-pulse-quarantine-ebola 1.8s infinite;
}

.pulse-marker-ebola-lab {
    background: var(--color-lab);
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.7);
    animation: marker-pulse-lab-ebola 1.8s infinite;
}

/* --- Keyframe Animations --- */
@keyframes beacon-pulse-ebola {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.5);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 0, 85, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 85, 0);
    }
}

@keyframes scanning-sweep {
    0% { top: 0; }
    50% { top: 100%; }
    100% { top: 0; }
}

@keyframes fade-in-slide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes marker-pulse-critical-ebola {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0.8); }
    70% { box-shadow: 0 0 0 14px rgba(255, 0, 85, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 85, 0); }
}

@keyframes marker-pulse-quarantine-ebola {
    0% { box-shadow: 0 0 0 0 rgba(255, 145, 0, 0.8); }
    70% { box-shadow: 0 0 0 14px rgba(255, 145, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 145, 0, 0); }
}

@keyframes marker-pulse-lab-ebola {
    0% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.8); }
    70% { box-shadow: 0 0 0 14px rgba(0, 229, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0); }
}

/* Tooltip Leaflet Styling override */
.custom-leaflet-tooltip {
    background: rgba(5, 7, 13, 0.95) !important;
    border: 1px solid rgba(255, 0, 85, 0.25) !important;
    color: var(--text-primary) !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 0.75rem !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5) !important;
}

/* System Alerts */
.system-alert {
    animation: alert-glow 2s infinite ease-in-out;
}

@keyframes alert-glow {
    0% { border-color: rgba(255,0,85,0.25); box-shadow: 0 0 5px rgba(255,0,85,0.05); }
    50% { border-color: rgba(255,0,85,0.5); box-shadow: 0 0 10px rgba(255,0,85,0.15); }
    100% { border-color: rgba(255,0,85,0.25); box-shadow: 0 0 5px rgba(255,0,85,0.05); }
}

/* ==========================================================================
   FOOTER STYLING (BryteSikaStrategyAI Rebrand)
   ========================================================================== */
footer {
    background: rgba(5, 7, 13, 0.95);
    border-top: 1px solid var(--border-subtle);
    padding: 0.5rem 1.5rem;
    font-size: 0.65rem;
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1000;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-separator {
    color: var(--color-ebola);
    text-shadow: 0 0 5px var(--glow-ebola);
}
