/* Command Deck Overlay - Top Right */

#command-deck {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 320px;
    max-height: 80vh;
    background: var(--panel-bg);
    border: 3px solid var(--neon-cyan);
    border-radius: 4px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow:
        0 0 50px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1),
        0 0 20px rgba(255, 0, 255, 0.2);
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
}

.command-deck-header {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: var(--neon-cyan);
    text-shadow:
        0 0 15px var(--neon-cyan),
        0 0 30px var(--neon-magenta);
    letter-spacing: 2px;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--neon-magenta);
    margin-bottom: 8px;
}

/* Stats Display */
.stat-display {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    background: rgba(0, 255, 255, 0.05);
    padding: 15px;
    border: 2px solid var(--neon-cyan);
    border-radius: 0;
    box-shadow:
        0 0 15px rgba(0, 255, 255, 0.3),
        inset 0 0 10px rgba(0, 255, 255, 0.1);
}

.stat-val {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

/* Cooldown Bar */
#cd-container {
    height: 8px;
    background: rgba(0, 255, 255, 0.2);
    width: 100%;
    margin: 5px 0 20px 0;
    border: 1px solid var(--neon-cyan);
    border-radius: 0;
    overflow: hidden;
    box-shadow:
        0 0 10px rgba(0, 255, 255, 0.4),
        inset 0 0 5px rgba(0, 255, 255, 0.2);
}

#cd-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--neon-magenta), var(--neon-cyan));
    box-shadow:
        0 0 10px var(--neon-magenta),
        inset 0 0 5px rgba(255, 255, 255, 0.3);
    transition: width 3s linear;
    border-radius: 0;
}
