body {
    background-color: #0c0c18;
    margin: 0;
    font-family: Arial, sans-serif;
    padding: 50px 20px 100px;
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.neon-text {
    color: #fff;
    font-size: 4rem;
    font-weight: bold;
    text-transform: uppercase;
    animation: glow 1.5s ease-in-out infinite alternate;
    line-height: 1.2;
}

@keyframes glow {
    from {
        text-shadow:
            0 0 5px #fff,
            0 0 10px #fff,
            0 0 15px #1F51FF,
            0 0 20px #1F51FF,
            0 0 25px #1F51FF,
            0 0 30px #1F51FF,
            0 0 35px #1F51FF;
    }
    to {
        text-shadow:
            0 0 10px #fff,
            0 0 20px #fff,
            0 0 30px #1F51FF,
            0 0 40px #1F51FF,
            0 0 50px #1F51FF,
            0 0 60px #1F51FF,
            0 0 70px #1F51FF;
    }
}

.subtitle {
    color: #a0cfff;
    margin-top: 20px;
    font-size: 1.5rem;
    text-shadow:
        0 0 2px #1F51FF,
        0 0 8px #1F51FF,
        0 0 12px #1F51FF;
}

.neon-button {
    display: inline-block;
    padding: 15px 30px;
    color: #1F51FF;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    background: transparent;
    border: 2px solid #1F51FF;
    border-radius: 5px;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s;
    cursor: pointer;
    z-index: 1000;
    background-color: #0c0c18;
}

.neon-button:hover {
    color: white;
    background: #1F51FF;
    box-shadow:
        0 0 5px #1F51FF,
        0 0 25px #1F51FF,
        0 0 50px #1F51FF,
        0 0 100px #1F51FF;
}

.paragraph {
    color: #a0cfff;
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    text-shadow:
        0 0 2px #1F51FF,
        0 0 8px #1F51FF,
        0 0 12px #1F51FF;
    display: flex;
    align-items: center;
    gap: 15px;
}

.paragraph img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}
