/* EVE Tactical Interface - Nine Lives Theme */
:root {
    --bg-dark: #0a0b0d;
    --panel-bg: rgba(16, 20, 24, 0.85);
    --cyan-accent: #00f2ff;
    --cyan-glow: rgba(0, 242, 255, 0.3);
    --text-main: #e0e6ed;
    --text-dim: #94a3b8;
    --danger-red: #ff3e3e;
    --border-style: 1px solid var(--cyan-accent);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Segoe UI', 'Courier New', monospace;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(0, 242, 255, 0.05) 0%, transparent 80%);
}

.intel-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 20px;
    gap: 20px;
}

/* Header Section */
header {
    border-bottom: var(--border-style);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

header h1 {
    font-size: 1.5rem;
    letter-spacing: 4px;
    color: var(--cyan-accent);
    text-shadow: 0 0 10px var(--cyan-glow);
}

.status-bar {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
}

/* Main Layout */
main {
    display: grid;
    grid-template-columns: 300px 1fr 350px;
    gap: 20px;
    flex-grow: 1;
}

section {
    background: var(--panel-bg);
    border: 1px solid rgba(0, 242, 255, 0.1);
    padding: 20px;
    border-radius: 4px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

h3 {
    font-size: 0.9rem;
    color: var(--cyan-accent);
    margin-bottom: 20px;
    border-left: 3px solid var(--cyan-accent);
    padding-left: 10px;
    text-transform: uppercase;
}

/* Controls & Inputs */
.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 5px;
    text-transform: uppercase;
}

input[type="number"], select {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #334155;
    color: var(--cyan-accent);
    padding: 8px;
    font-family: monospace;
    outline: none;
}

input:focus {
    border-color: var(--cyan-accent);
    box-shadow: 0 0 5px var(--cyan-glow);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 0.85rem;
    cursor: pointer;
}

/* Heatmap Canvas Area */
.visualizer {
    position: relative;
    justify-content: center;
}

/* Intel Feed/OCR Output */
.intel-feed {
    border-right: 2px solid var(--cyan-accent); /* Asymmetric detail */
}

#ocrOutput {
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    color: var(--text-dim);
    line-height: 1.6;
    overflow-y: auto;
}

.target-row {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.2s;
}

.target-row:hover {
    background: rgba(0, 242, 255, 0.05);
}

.hit-chance-high { color: var(--cyan-accent); font-weight: bold; }
.hit-chance-med { color: #facc15; }
.hit-chance-low { color: var(--danger-red); }

/* Scrollbar Styling */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--cyan-accent); }

/* Add this to hitcalculator.css */
@keyframes sonarPing {
    0% { background: rgba(0, 242, 255, 0.2); }
    100% { background: transparent; }
}

.target-row {
    animation: sonarPing 1s ease-out;
    /* ... rest of your styles ... */
}
