/* =========================================================
   Parkplatzdetection — Operator Dashboard Styles
   Modern dark UI with glassmorphism, gradients & micro-animations
   Integrates Leaflet map + Apache ECharts panels
   ========================================================= */

/* ----- Design Tokens ----- */
:root {
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --bg: #0c0e14;
    --bg-surface: rgba(20, 22, 34, 0.85);
    --bg-glass: rgba(30, 33, 50, 0.55);
    --border: rgba(99, 102, 241, 0.15);
    --border-hover: rgba(99, 102, 241, 0.35);
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --accent: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.25);
    --green: #22c55e;
    --green-glow: rgba(34, 197, 94, 0.2);
    --red: #ef4444;
    --red-glow: rgba(239, 68, 68, 0.2);
    --yellow: #eab308;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Reset ----- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.5;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(139, 92, 246, 0.08), transparent);
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ----- Header ----- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-icon svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.header h1 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #e2e8f0, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 400;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
}

.sep {
    opacity: 0.3;
}

/* ----- Summary Bar ----- */
.summary-bar {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    overflow-x: auto;
}

.summary-card {
    flex: 1;
    min-width: 130px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: border-color var(--transition), transform var(--transition);
}

.summary-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.summary-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.summary-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.highlight-free .summary-value {
    color: var(--green);
    text-shadow: 0 0 20px var(--green-glow);
}

.highlight-occupied .summary-value {
    color: var(--red);
    text-shadow: 0 0 20px var(--red-glow);
}

/* ----- Dashboard Main (Map + Charts) ----- */
.dashboard-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1.25rem;
    padding: 0 2rem;
    margin-bottom: 1.25rem;
}

.panel {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: border-color var(--transition);
}

.panel:hover {
    border-color: var(--border-hover);
}

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

.panel-header h2 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.panel-badge {
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    background: var(--accent-glow);
    color: var(--accent);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

/* Leaflet Map */
#map {
    height: 420px;
    background: #0f1119;
}

/* Override Leaflet popup for dark theme */
.leaflet-popup-content-wrapper {
    background: rgba(20, 22, 34, 0.95) !important;
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow) !important;
}

.leaflet-popup-tip {
    background: rgba(20, 22, 34, 0.95) !important;
}

.leaflet-popup-content {
    font-family: var(--font) !important;
    font-size: 0.85rem !important;
}

.leaflet-popup-content b {
    color: #a5b4fc;
}

/* Panel stack (right side) */
.panel-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.chart-container {
    width: 100%;
    height: 180px;
    padding: 0.5rem;
}

.panel-gauge .chart-container {
    height: 200px;
}

/* ----- Section Header ----- */
.section-header {
    padding: 1.25rem 2rem 0.5rem;
}

.section-header h2 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

/* ----- Site Cards Grid ----- */
.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.25rem;
    padding: 0.5rem 2rem 2rem;
}

.site-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    animation: fadeInUp 0.4s ease-out both;
}

.site-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 4px 24px var(--accent-glow);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.site-name {
    font-size: 1.05rem;
    font-weight: 600;
}

.site-location {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.status-badge {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    white-space: nowrap;
}

.badge-available {
    background: var(--green-glow);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-busy {
    background: rgba(234, 179, 8, 0.15);
    color: var(--yellow);
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.badge-full {
    background: var(--red-glow);
    color: var(--red);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Occupancy bar */
.occupancy-bar-container {
    margin-bottom: 0.75rem;
}

.occupancy-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.occupancy-bar-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.occupancy-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.6s ease-out, background 0.4s ease;
    background: linear-gradient(90deg, var(--green), var(--green));
}

.occupancy-bar-fill.bar-medium {
    background: linear-gradient(90deg, var(--yellow), #f59e0b);
}

.occupancy-bar-fill.bar-high {
    background: linear-gradient(90deg, var(--red), #dc2626);
}

/* Stats row */
.site-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

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

.dot-free {
    background: var(--green);
}

.dot-occupied {
    background: var(--red);
}

.dot-total {
    background: var(--accent);
}

.site-updated {
    margin-top: 0.75rem;
    font-size: 0.68rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ----- Loading State ----- */
.loading-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ----- Footer ----- */
.footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    opacity: 0.5;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .dashboard-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .summary-bar {
        padding: 1rem;
    }

    .sites-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem 1rem;
    }

    .dashboard-main {
        padding: 0 1rem;
    }

    #map {
        height: 300px;
    }
}

/* ----- Leaflet dark tile layer adjustments ----- */
.leaflet-container {
    background: #0f1119;
}

/* ----- Clickable Site Cards ----- */
.site-card-clickable {
    cursor: pointer;
}

.site-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
}

.detail-link-hint {
    font-size: 0.72rem;
    color: var(--accent);
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
    transform: translateX(-4px);
}

.site-card:hover .detail-link-hint {
    opacity: 1;
    transform: translateX(0);
}

/* =========================================================
   Detail View Styles
   ========================================================= */

/* Detail Navigation */
.detail-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem 0.75rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent);
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: var(--bg-glass);
    backdrop-filter: blur(8px);
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.back-link:hover {
    border-color: var(--accent);
    background: var(--accent-glow);
    text-decoration: none;
    transform: translateX(-2px);
}

.detail-nav h2 {
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e2e8f0, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Detail Info Bar */
.detail-info-bar {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 2rem 1.25rem;
    overflow-x: auto;
}

/* Detail Main Layout */
.detail-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.25rem;
    padding: 0 2rem;
    margin-bottom: 1.25rem;
}

/* Zone Grid → Parking Lot Visual Map */
.zone-grid {
    padding: 0;
    overflow: hidden;
    border-radius: 0 0 var(--radius) var(--radius);
}

/* Parking Lot Map */
.parking-lot-map {
    position: relative;
    width: 100%;
    min-height: 420px;
    overflow: hidden;
}

.parking-lot-bg {
    position: absolute;
    inset: 0;
    background: url('/static/assets/parking_lot_bg.png') center/cover no-repeat;
    opacity: 0.35;
    filter: brightness(0.6) saturate(0.5);
    z-index: 0;
}

.parking-lot-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(12, 14, 20, 0.5) 0%,
            rgba(12, 14, 20, 0.2) 50%,
            rgba(12, 14, 20, 0.5) 100%);
}

.parking-lot-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1.25rem 1rem;
    min-height: 420px;
    justify-content: center;
}

/* Parking Rows */
.parking-row {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem 0;
}

/* Lane between rows */
.parking-lane {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.6rem 0;
    margin: 0.25rem 0;
    border-top: 2px dashed rgba(255, 255, 255, 0.08);
    border-bottom: 2px dashed rgba(255, 255, 255, 0.08);
}

.lane-arrow {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.15);
    animation: lanePulse 2s ease-in-out infinite;
}

@keyframes lanePulse {

    0%,
    100% {
        opacity: 0.15;
        transform: translateX(0);
    }

    50% {
        opacity: 0.35;
        transform: translateX(4px);
    }
}

.lane-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.12);
    font-weight: 500;
}

/* Parking Slot (polygon) */
.parking-slot {
    position: relative;
    width: 72px;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
    cursor: default;
    transition: all var(--transition);
    animation: fadeInUp 0.4s ease-out both;
}

.parking-slot:hover {
    transform: scale(1.08);
    z-index: 10;
}

/* Polygon background (the colored overlay) */
.slot-polygon {
    position: absolute;
    inset: 2px;
    border-radius: 3px;
    border: 2px solid transparent;
    transition: all var(--transition);
}

/* Free slot */
.slot-free .slot-polygon {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: inset 0 0 12px rgba(34, 197, 94, 0.08);
}

.slot-free:hover .slot-polygon {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.7);
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.2), inset 0 0 16px rgba(34, 197, 94, 0.12);
}

/* Truck occupied */
.slot-truck .slot-polygon {
    background: rgba(239, 68, 68, 0.18);
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: inset 0 0 16px rgba(239, 68, 68, 0.12);
}

.slot-truck:hover .slot-polygon {
    background: rgba(239, 68, 68, 0.28);
    border-color: rgba(239, 68, 68, 0.8);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.25), inset 0 0 20px rgba(239, 68, 68, 0.15);
}

/* Car occupied */
.slot-car .slot-polygon {
    background: rgba(234, 179, 8, 0.15);
    border-color: rgba(234, 179, 8, 0.5);
    box-shadow: inset 0 0 12px rgba(234, 179, 8, 0.08);
}

.slot-car:hover .slot-polygon {
    background: rgba(234, 179, 8, 0.25);
    border-color: rgba(234, 179, 8, 0.7);
    box-shadow: 0 0 16px rgba(234, 179, 8, 0.2), inset 0 0 16px rgba(234, 179, 8, 0.12);
}

/* Bus occupied */
.slot-bus .slot-polygon {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: inset 0 0 12px rgba(249, 115, 22, 0.08);
}

.slot-bus:hover .slot-polygon {
    background: rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.7);
    box-shadow: 0 0 16px rgba(249, 115, 22, 0.2), inset 0 0 16px rgba(249, 115, 22, 0.12);
}

/* Slot content */
.slot-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 4px;
    text-align: center;
    gap: 2px;
}

.slot-id {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.slot-vehicle-icon {
    font-size: 1.6rem;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.slot-conf {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    padding: 1px 5px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.3);
}

.slot-class {
    font-size: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.5);
}

.slot-free-icon {
    font-size: 1.2rem;
    color: var(--green);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.slot-free-label {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    opacity: 0.8;
}

/* HUD overlay */
.parking-lot-hud {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hud-item {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.hud-live {
    color: var(--green);
    animation: pulse 2s ease-in-out infinite;
}

/* Card fallback layout (when no background image) */
.zone-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.5rem;
    padding: 1rem;
}

.zone-card {
    position: relative;
    width: 100%;
    height: 110px;
    border-radius: 6px;
    overflow: hidden;
    transition: all var(--transition);
    animation: fadeInUp 0.4s ease-out both;
}

.zone-card:hover {
    transform: scale(1.06);
    z-index: 5;
}

/* Zone Legend */
.zone-legend-section {
    padding: 0.75rem 2rem;
}

.zone-legend {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

/* Detail Mini Map */
.panel-minimap #detail-map {
    background: #0f1119;
}

/* Responsive Detail */
@media (max-width: 1024px) {
    .detail-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .detail-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 1rem;
    }

    .detail-info-bar {
        padding: 0.5rem 1rem;
    }

    .detail-main {
        padding: 0 1rem;
    }

    .zone-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 0.5rem;
        padding: 0.75rem;
    }
}

/* =========================================================
   AI Detection Showcase
   ========================================================= */

.section-subtitle {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    font-weight: 400;
}

.showcase-section {
    padding: 0.5rem 2rem 2rem;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.25rem;
}

.showcase-card {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.showcase-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px var(--accent-glow);
    transform: translateY(-4px);
}

.showcase-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-card:hover .showcase-image {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
}

.showcase-badge {
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    background: rgba(34, 197, 94, 0.2);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.3);
    backdrop-filter: blur(8px);
}

.showcase-badge-night {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.3);
}

.showcase-badge-wide {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    border-color: rgba(99, 102, 241, 0.3);
}

.showcase-info {
    padding: 1.25rem;
}

.showcase-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.showcase-info p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.showcase-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.showcase-stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-section {
        padding: 0.5rem 1rem 1rem;
    }
}