/* Styles pour centrer le contenu de la section hero */
.hero-content.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content.centered .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.hero-content.centered .glow-text {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 25px;
}

.glow-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: -1;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: rgba(0, 194, 255, 0.3);
    top: 20%;
    right: 10%;
}

.glow-2 {
    width: 250px;
    height: 250px;
    background: rgba(208, 0, 255, 0.25);
    bottom: 10%;
    left: 10%;
}
