#gradient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    filter: brightness(1.1) contrast(1.1);
}

.content-section {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    max-width: 650px;
    color: rgba(235, 235, 245, 0.6);
}

footer p {
    font-size: 0.75rem;
}