/* NEXUS Engine Banner */
.nexus-engine-banner {
    padding: 60px 0;
    background-color: #050505;
    position: relative;
    overflow: hidden;
}

.nexus-engine-banner .banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.nexus-engine-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
    border-radius: 24px;
}

.nexus-engine-banner .glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
}

.nexus-engine-banner .nexus-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 30px;
    color: #0066FF;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.nexus-engine-banner .nexus-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.nexus-engine-banner .nexus-title span {
    background: linear-gradient(135deg, #0066FF 0%, #00ccff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nexus-engine-banner .nexus-desc {
    font-size: 18px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 40px;
}

.nexus-engine-banner .nexus-desc strong {
    color: #fff;
    font-weight: 600;
}

/* Button */
.nexus-engine-banner .nexus-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background: linear-gradient(135deg, #0055ff 0%, #0088ff 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.nexus-engine-banner .nexus-btn:hover {
    transform: translateY(-2px);
}

.nexus-engine-banner .btn-txt {
    position: relative;
    z-index: 2;
}

.nexus-engine-banner .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
    transition: 0.5s ease;
}

.nexus-engine-banner .nexus-btn:hover .btn-glow {
    left: 200%;
}

@media (max-width: 768px) {
    .nexus-engine-banner {
        padding: 40px 20px;
    }
    
    .nexus-engine-banner .banner-inner {
        padding: 40px 20px;
    }

    .nexus-engine-banner .nexus-title {
        font-size: 32px;
    }
    
    .nexus-engine-banner .nexus-desc {
        font-size: 16px;
    }
    
    .nexus-engine-banner .nexus-btn {
        padding: 16px 32px;
        font-size: 15px;
    }
}
