* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
    background: #000;
    font-family: 'Arial', sans-serif;
}

#galaxy {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
}

.glow {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 0 2rem;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(147, 197, 253, 0.6),
        0 0 30px rgba(96, 165, 250, 0.4),
        0 0 40px rgba(59, 130, 246, 0.3);
    animation: pulse 3s ease-in-out infinite;
    letter-spacing: 2px;
}

@keyframes pulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(147, 197, 253, 0.6),
            0 0 30px rgba(96, 165, 250, 0.4),
            0 0 40px rgba(59, 130, 246, 0.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 1),
            0 0 30px rgba(147, 197, 253, 0.8),
            0 0 40px rgba(96, 165, 250, 0.6),
            0 0 50px rgba(59, 130, 246, 0.5),
            0 0 60px rgba(37, 99, 235, 0.4);
    }
}
