/* Fond dégradé */
body {
    margin: 0;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0B0B1A 0%, #1A1B3C 30%, #2A2A4C 70%, #1E1E3F 100%) !important;
    background-attachment: fixed !important;
    min-height: 100vh;
}

/* Conteneur WebGL */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Masquer les anciennes étoiles */
.floating-stars,
.star {
    display: none !important;
}

/* Assurer que le contenu est au-dessus du fond */
.content-section,
.glass-nav,
.glass-container {
    position: relative;
    z-index: 1;
}
