/* Reset e Base */
#bubble-section {
    position: relative;
    z-index: 100;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #000810 0%, #0062be 100%);
    overflow: hidden;
    font-family: 'Inter', system-ui, sans-serif;
    height: 70vh;
}

@media (min-width: 1024px) {
    #bubble-section {
        height: 85vh;
    }
}

#bubble-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.bubble-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    /* Espansione Width: rimosso il padding eccessivo e aumentata la max-width */
    width: 100%;
    max-width: 1400px;
    padding: 0 5%;
    pointer-events: none;
}

.bubble-content h1 {
    height: 100%;
    font-size: clamp(3.5rem, 14vw, 10rem);
    font-weight: 900;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1;
    background: linear-gradient(to bottom, #ffffff 40%, rgb(3 177 185 / 54%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgb(0 243 255 / 0%);
    width: 100%;
}

.bubble-content p {
    /* Espansione paragrafo per allinearsi alla larghezza del titolo */
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    max-width: 1000px; 
    margin: 30px auto;
    line-height: 1.4;
}

.button-wrapper {
    margin-top: 40px;
    width: 100%;
}

.bubble-content button {
    pointer-events: auto;
    /* Pulsante più largo */
    padding: clamp(15px, 2vw, 22px) clamp(50px, 10vw, 100px);
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 100px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.bubble-content button:hover {
    background: white;
    color: black;
    box-shadow: 0 0 60px rgba(255,255,255,0.4);
    
}