/* Drop Console Styles */
.drop-section {
    background-color: #050505;
    padding: 6rem 0;
    font-family: 'Courier New', Courier, monospace;
    /* Terminal vibe */
    color: #00ff00;
}

.console-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 2px solid #333;
    background: #000;
    box-shadow: 0 0 50px rgba(0, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.console-header {
    background: #111;
    padding: 1rem;
    border-bottom: 2px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.console-title {
    font-weight: bold;
    letter-spacing: 2px;
}

.status-light {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff00;
    animation: blink-status 2s infinite;
}

.radar-interface {
    display: grid;
    grid-template-columns: 1fr 300px;
    height: 500px;
}

/* Radar View (Left) */
.radar-screen {
    position: relative;
    background: url('../assets/tactical_map.png') no-repeat center center/cover;
    overflow: hidden;
    border-right: 2px solid #333;
}

.radar-sweep {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 255, 0, 0.8) 100%);
    transform-origin: 0 0;
    animation: radar-spin 4s infinite linear;
    z-index: 10;
}

.radar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, #000 120%);
    pointer-events: none;
}

.grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.target-point {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #ff0000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px #ff0000;
    display: none;
    /* Hidden until drop found */
}

.target-point::before,
.target-point::after {
    content: '';
    position: absolute;
    background: #ff0000;
}

.target-point::before {
    top: -10px;
    left: 50%;
    height: 40px;
    width: 1px;
    transform: translateX(-50%);
}

.target-point::after {
    left: -10px;
    top: 50%;
    width: 40px;
    height: 1px;
    transform: translateY(-50%);
}

/* Info Panel (Right) */
.info-panel {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 20, 0, 0.9);
}

.log-screen {
    height: 200px;
    font-size: 0.9rem;
    color: rgba(0, 255, 0, 0.7);
    overflow: hidden;
    margin-bottom: 2rem;
}

.log-entry {
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: log-fade 0.3s forwards;
}

.drop-result {
    text-align: center;
    border: 1px solid #00ff00;
    padding: 1rem;
    margin-bottom: 2rem;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 255, 0, 0.05);
}

.location-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px #00ff00;
    margin-bottom: 0.5rem;
}

.risk-level {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.risk-high {
    color: #ff3333;
    text-shadow: 0 0 10px #ff0000;
}

.risk-med {
    color: #ffaa00;
    text-shadow: 0 0 10px #ffaa00;
}

.risk-low {
    color: #0088ff;
    text-shadow: 0 0 10px #0088ff;
}

.init-btn {
    background: transparent;
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 1rem;
    font-family: inherit;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.init-btn:hover {
    background: #00ff00;
    color: #000;
    box-shadow: 0 0 30px #00ff00;
}

.init-btn:disabled {
    border-color: #555;
    color: #555;
    cursor: not-allowed;
    background: transparent;
    box-shadow: none;
}

@keyframes radar-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes blink-status {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

@keyframes log-fade {
    to {
        opacity: 1;
    }
}