body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0e0e0e;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    overflow: hidden;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at center, #1a1a1d, #0e0e0e);
}

.container {
    text-align: center;
    z-index: 2;
    position: relative;
    animation: fadeIn 2s ease-in-out;
}

.content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    margin-top: 30vh;
    letter-spacing: 3px;
    background: linear-gradient(to right, #00ffcc, #0099ff);
    -webkit-background-clip: text;
    color: transparent;
    animation: textPopUp 1.5s ease-in-out;
    font-weight: 700;
}

.content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 1.2px;
    animation: textFadeIn 2s ease-in-out;
    max-width: 600px;
    margin: 0 auto 30px;
}

.glow {
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #00ffcc;
    text-shadow: 0 0 20px #00ffcc, 0 0 30px #00ffcc, 0 0 40px #0099ff, 0 0 50px #0099ff, 0 0 60px #00ffcc, 0 0 70px #0099ff;
    animation: glowing 1.5s infinite alternate, textPulse 3s infinite;
}

@keyframes glowing {
    from {
        text-shadow: 0 0 20px #00ffcc, 0 0 30px #00ffcc, 0 0 40px #0099ff, 0 0 50px #0099ff;
    }
    to {
        text-shadow: 0 0 30px #00ffcc, 0 0 40px #00ffcc, 0 0 50px #0099ff, 0 0 60px #0099ff;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes textPopUp {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes textFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
