:root {
    --bg-color: #050014;
    --primary: #8a2be2;
    /* BlueViolet */
    --secondary: #00ffff;
    /* Cyan */
    --text: #e0e0e0;
    --font-stack: 'Share Tech Mono', monospace;
}

body {
    background-color: var(--bg-color);
    color: var(--text);
    font-family: var(--font-stack);
    margin: 0;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scan-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px);
    pointer-events: none;
    z-index: 10;
}

.hunt-container {
    text-align: left;
    width: 80%;
    max-width: 800px;
    border: 1px solid var(--primary);
    padding: 2rem;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    background: rgba(10, 0, 20, 0.9);
}

h1 {
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary);
}

.terminal-output {
    height: 300px;
    overflow-y: hidden;
    color: var(--secondary);
    font-size: 1.1rem;
    line-height: 1.4;
    white-space: pre-wrap;
}

/* Dashboard Specifics */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    gap: 1rem;
    width: 100%;
    height: 100%;
    padding: 1rem;
    box-sizing: border-box;
}

.header {
    grid-column: 1 / -1;
    border: 1px solid var(--primary);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    background: rgba(138, 43, 226, 0.1);
}

.panel {
    border: 1px solid #333;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.panel h2 {
    font-size: 1rem;
    background: var(--primary);
    color: #000;
    display: inline-block;
    padding: 2px 5px;
    margin: -1rem -1rem 1rem -1rem;
    width: calc(100% + 2rem);
    text-align: center;
}

.target-list li {
    list-style: none;
    padding: 5px;
    border-bottom: 1px solid #222;
    cursor: crosshair;
}

.target-list li:hover {
    background: var(--primary);
    color: #000;
}

.radar {
    width: 200px;
    height: 200px;
    border: 2px solid var(--secondary);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    background: radial-gradient(circle, transparent 20%, rgba(0, 255, 255, 0.1) 21%, transparent 22%);
    background-size: 40px 40px;
}

.radar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 50%;
    background: linear-gradient(90deg, transparent 50%, rgba(0, 255, 255, 0.4) 100%);
    transform-origin: 0 0;
    animation: radar-spin 3s infinite linear;
}

.blip {
    position: absolute;
    width: 6px;
    height: 6px;
    background: red;
    border-radius: 50%;
    box-shadow: 0 0 5px red;
}

@keyframes radar-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}