.banner-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #0a0a1f;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, 
                rgba(10, 10, 31, 0) 0%, 
                rgba(10, 10, 31, 0.5) 50%,
                rgba(10, 10, 31, 0.95) 100%);
    z-index: 1;
}

#banner-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#globe-canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.6);
    z-index: 0;
    mix-blend-mode: screen;
    pointer-events: none;
    filter: brightness(1.2) contrast(1.1);
}

.banner-content {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    text-align: center;
}

.banner-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4),
                 0 0 40px rgba(255, 0, 255, 0.2);
    animation: glow 3s ease-in-out infinite alternate;
    position: relative;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.banner-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, 
                rgba(0, 255, 255, 0.05) 0%, 
                rgba(255, 0, 255, 0.05) 50%,
                transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}

.banner-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(168, 178, 209, 0.9);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 255, 255, 0.2);
    letter-spacing: 1px;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 20px rgba(0, 255, 255, 0.4),
                     0 0 40px rgba(255, 0, 255, 0.2);
    }
    100% {
        text-shadow: 0 0 30px rgba(0, 255, 255, 0.6),
                     0 0 50px rgba(255, 0, 255, 0.3),
                     0 0 70px rgba(255, 0, 255, 0.2);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
    
    #globe-canvas {
        transform: translate(-50%, -50%) scale(1.2);
    }
}
