﻿/* =========================================================================
   Component: _coverage-ultra.css
   Phong cách: Satellite Dispatch Center (Đỉnh cao công nghệ)
   ========================================================================= */

.coverage-ultra-section {
    padding: 100px 0;
    background-color: #030303;
}

/* Status Label chuyên nghiệp */
.system-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 15px;
    border-radius: 50px;
}

.status-pulse-green {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: blink 1s infinite;
}

.status-label {
    color: #888;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* --- Dashboard Container --- */
.dispatch-dashboard {
    height: 650px;
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5);
}

/* --- Overlay Data Boxes --- */
.map-data-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.data-box {
    background: rgba(15, 15, 18, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
}

    .data-box small {
        display: block;
        color: var(--brand-yellow);
        font-size: 0.6rem;
        font-weight: 800;
        margin-bottom: 4px;
    }

.data-value {
    color: #fff;
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 700;
}

/* --- Sidebar & Station Cards --- */
.dispatch-sidebar {
    background: #0e0e11;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-scroll {
    flex: 1;
    padding: 20px;
}

.station-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .station-card.active {
        background: rgba(255, 193, 7, 0.05);
        border-color: var(--brand-yellow);
    }

.station-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.station-id {
    font-size: 0.65rem;
    color: #444;
    font-weight: 800;
    font-family: monospace;
}

.station-distance {
    font-size: 0.65rem;
    color: var(--brand-yellow);
    font-weight: 700;
}

.station-name {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.station-stats {
    display: flex;
    gap: 15px;
}

.stat {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
}

    .stat i {
        color: var(--brand-red);
        margin-right: 5px;
    }

/* --- Radar & Map --- */
.radar-scan {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, rgba(255, 193, 7, 0.1) 0%, transparent 10%);
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
    animation: rotate-radar 6s linear infinite;
}

@keyframes rotate-radar {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

/* CTA Button */
.btn-dispatch-call {
    margin: 20px;
    padding: 18px;
    background: var(--brand-red);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

    .btn-dispatch-call:hover {
        background: #fff;
        color: #000;
        transform: translateY(-3px);
    }

/* Animation flicker cho cảm giác Dashboard điện tử */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.animate-flicker {
    animation: blink 2s infinite;
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
}
