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

body {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
}

.main-text {
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: bold;
    color: #ffffff;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.1em;
    line-height: 1.2;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.3),
            0 0 20px rgba(255, 255, 255, 0.2),
            0 0 30px rgba(255, 255, 255, 0.1);
    }
    to {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.5),
            0 0 30px rgba(255, 255, 255, 0.3),
            0 0 40px rgba(255, 255, 255, 0.2);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-text {
        font-size: clamp(1.5rem, 6vw, 4rem);
        letter-spacing: 0.05em;
    }
    
    .container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-text {
        font-size: clamp(1.2rem, 5vw, 3rem);
    }
}