.radar-container {
    position: absolute;
    top: 50%;
    right: 25%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: -1;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.6
}

.radar-grid {
    position: relative;
    width: 100%;
    height: 100%
}

.grid-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(59, 130, 246, 0.5);
    border-radius: 50%;
    box-sizing: border-box
}

.c1 {
    width: 33%;
    height: 33%
}

.c2 {
    width: 66%;
    height: 66%
}

.c3 {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(59, 130, 246, 0.3)
}

.grid-axis {
    position: absolute;
    background-color: rgba(59, 130, 246, 0.3)
}

.grid-axis.x {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%)
}

.grid-axis.y {
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    transform: translateX(-50%)
}

.radar-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(transparent 0deg, transparent 200deg, rgba(59, 130, 246, 0.0) 300deg, rgba(59, 130, 246, 0.1) 340deg, rgba(59, 130, 246, 0.6) 360deg);
    animation: radar-spin 4s linear infinite;
    z-index: 2
}

.grid-tick {
    position: absolute;
    background-color: rgba(59, 130, 246, 0.4)
}

.t1 {
    top: 0;
    left: 50%;
    width: 1px;
    height: 10px;
    transform: translateX(-50%)
}

.t2 {
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 10px;
    transform: translateX(-50%)
}

.t3 {
    left: 0;
    top: 50%;
    width: 10px;
    height: 1px;
    transform: translateY(-50%)
}

.t4 {
    right: 0;
    top: 50%;
    width: 10px;
    height: 1px;
    transform: translateY(-50%)
}

.radar-blip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    animation: blip-fade 4s infinite
}

.blip-icon {
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--accent-gold)
}

.blip-text {
    font-family: var(--font-mono);
    font-size: 8px;
    color: var(--accent-gold);
    line-height: 1;
    opacity: 0.8
}

.blip-text span {
    font-size: 6px;
    opacity: 0.6
}

@keyframes radar-spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes blip-fade {
    0% {
        opacity: 0
    }

    20% {
        opacity: 1
    }

    40% {
        opacity: 0.8
    }

    100% {
        opacity: 0
    }
}

@media (max-width:1024px) {
    .radar-container {
        width: 450px;
        height: 450px;
        right: 10%;
        opacity: 0.5
    }

    .blip-text {
        font-size: 7px
    }
}

@media (max-width:768px) {
    .radar-container {
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        right: auto;
        width: 100vw;
        height: 100vw;
        max-width: 400px;
        max-height: 400px;
        opacity: 0.4
    }

    .radar-grid {
        max-width: 90%;
        max-height: 90%;
        margin: 0 auto
    }

    .blip-text {
        font-size: 6px;
        opacity: 0.7
    }

    .blip-text span {
        display: none
    }
}