/* Turbine Technical Specs Overlay */
.turbine-specs-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary-cyan);
    border-radius: 12px;
    padding: 20px;
    width: 280px;
    color: white;
    font-family: 'Exo 2', sans-serif;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    /* Let clicks pass through to canvas if needed, or set auto if interactive */
}

.specs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.specs-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: #00ff9d;
    background: rgba(0, 255, 157, 0.1);
    padding: 4px 8px;
    border-radius: 20px;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: #00ff9d;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff9d;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.spec-label {
    color: var(--text-muted);
}

.spec-value {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: white;
}

.highlight {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}