body {
    background-color: #000010;
    font-family: 'Press Start 2P', cursive;
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a23, #000010);
    padding: 120px 0;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.neon-text {
    color: #00d9ff; /* ALTERADO PARA AZUL NEON */
    text-shadow: 0 0 10px #00d9ff, 0 0 20px #00d9ff, 0 0 30px #00d9ff;
}

.btn-neon {
    background: linear-gradient(90deg, #00d9ff, #17d4fc); /* Botão também em azul neon */
    color: black;
    border: none;
    font-weight: bold;
    padding: 10px 25px;
    border-radius: 25px;
    transition: 0.3s;
}

.btn-neon:hover {
    background: linear-gradient(90deg, #dc1fff, #17d4fc);
    color: white;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #dc1fff, #17d4fc);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #00d9ff, #17d4fc);
}

.gallery-img {
    transition: 0.3s;
}

.gallery-img:hover {
    transform: scale(1.1);
}
