body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Arial', sans-serif;
}

.container {
    text-align: center;
}

.nexus-title {
    font-size: 150px;
    font-weight: bold;
    color: white;
    text-shadow: 
        0 0 10px rgba(255,255,255,0.8),
        0 0 20px rgba(255,255,255,0.6),
        0 0 30px rgba(255,255,255,0.4),
        0 5px 15px rgba(0,0,0,0.3);
    letter-spacing: 15px;
    animation: glow 2s ease-in-out infinite alternate;
    margin: 0;
}

.coming-soon {
    font-size: 40px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-top: 30px;
    opacity: 0.9;
    font-weight: 300;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px rgba(255,255,255,0.8),
            0 0 20px rgba(255,255,255,0.6),
            0 0 30px rgba(255,255,255,0.4),
            0 5px 15px rgba(0,0,0,0.3);
    }
    to {
        text-shadow: 
            0 0 20px rgba(255,255,255,1),
            0 0 30px rgba(255,255,255,0.8),
            0 0 40px rgba(255,255,255,0.6),
            0 5px 20px rgba(0,0,0,0.4);
    }
}

@media (max-width: 768px) {
    .nexus-title {
        font-size: 80px;
        letter-spacing: 8px;
    }
    
    .coming-soon {
        font-size: 25px;
        letter-spacing: 5px;
    }
}
