/* Interactive Station Interface */
.station-interface {
    position: relative;
    width: 100%;
    height: 70vh;
    margin-top: -100px;
}

/* Hotspot Base Styles */
.hotspot {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-zone {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.12);
    border: 2px solid rgba(0, 255, 255, 0.6);
    border-radius: 12px;
    padding: 15px 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.interactive-zone:hover {
    background: rgba(0, 255, 255, 0.25);
    border-color: rgba(0, 255, 255, 0.9);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
}

.hotspot-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.interactive-zone:hover .hotspot-glow {
    opacity: 1;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hotspot-label {
    font-family: 'Audiowide', sans-serif;
    font-size: 0.9rem;
    color: rgba(0, 255, 255, 0.9);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    z-index: 2;
}

/* Position hotspots over background elements */
.hotspot-left-monitor {
    top: 45%;
    left: 3%;
    width: 180px;
    height: 100px;
}

.hotspot-center-desk {
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 450px;
}

.hotspot-right-panel {
    top: 40%;
    right: 5%;
    width: 160px;
    height: 90px;
}

/* Station Input Field */
.station-input {
    width: 100%;
    padding: 12px 20px;
    background: rgba(10, 22, 40, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 8px;
    color: #e8f4f8;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    text-align: center;
    z-index: 2;
    position: relative;
}

.station-input:focus {
    outline: none;
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.station-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Transmit Button */
.transmit-btn {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    font-family: 'Audiowide', sans-serif;
}

.transmit-btn .hotspot-label {
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .station-interface {
        height: 50vh;
    }

    .hotspot-left-monitor,
    .hotspot-right-panel {
        width: 150px;
        height: 80px;
    }

    .hotspot-center-desk {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .station-interface {
        position: relative;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .hotspot {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
    }
}