/* Dual Task Styles */

.game-canvas {
    width: 100%;
    height: 400px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: none; /* Hide default cursor */
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

/* Primary Task: Tracking */
#tracker-target {
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent); /* Use theme accent */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: all 0.1s linear;
    box-shadow: 0 0 10px var(--accent);
}

#tracker-cursor {
    width: 10px;
    height: 10px;
    background: #e74c3c; /* Red needs to be distinct from blue/cyan */
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    z-index: 10;
    box-shadow: 0 0 5px #e74c3c;
}

/* Secondary Task: Monitoring */
.monitor-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 150px;
    height: 100px;
    background: #000;
    border: 2px solid var(--text-secondary);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#monitor-canvas {
    width: 100%;
    height: 100%;
}

/* The ALARM Light */
#monitor-alarm {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 15px;
    height: 15px;
    background: #333;
    border-radius: 50%;
}

#monitor-alarm.active {
    background: #f1c40f; /* Yellow Light */
    box-shadow: 0 0 10px #f1c40f;
    animation: pulse 0.2s infinite alternate;
}

@keyframes pulse {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

.stats-hud {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--text-primary);
    font-family: monospace;
    font-size: 0.9rem;
    opacity: 0.7;
    background: rgba(0,0,0,0.5);
    padding: 5px;
    border-radius: 4px;
}
