.novasoft-logo {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
}

.logo-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-brain {
    position: absolute;
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Neural network connections */
.neural-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.connection {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    height: 2px;
    transform-origin: center;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.logo-letter {
    position: relative;
    color: white;
    font-size: 42px;
    font-weight: 700;
    z-index: 2;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.circuit-lines {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: rotate 20s linear infinite;
}

.circuit-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Dark mode version */
.dark-mode .logo-brain {
    background: linear-gradient(135deg, #1d4ed8, #7c3aed);
}

.dark-mode .circuit-dot {
    background: #34d399;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .novasoft-logo {
        width: 120px;
        height: 120px;
    }
    
    .logo-letter {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .novasoft-logo {
        width: 100px;
        height: 100px;
    }
    
    .logo-letter {
        font-size: 30px;
    }
}