/* Formes géométriques - Prismes */
.shape {
    position: fixed;
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 50%, #00ff0091 100%);
    transition: transform 0.1s ease-out;
    will-change: transform; /* Optimisation performance */
}


/* Prismes sortant du côté GAUCHE */
.shape1 {
    filter: blur(50px);
    width: 30%;
    height: 40%;
    top: -5px;
    left: -5px;
    opacity: 0.8;
    clip-path: polygon(0% 0%, 0% 40%, 100% 100%, 80% 0%);
    z-index: 2;
}


.shape2 {
    width: 20%;
    height: 40%;
    top: 4%;
    left: -5px;
    opacity: 0.9;
    filter: blur(70px);
    background: linear-gradient(135deg, #00ff00 0%, #00dd00 100%);
    clip-path: polygon(0% 0%, 100% 100%, 0 80%);
    z-index: 1;
}

.shape3 {
    width: 23%;
    height: 35%;
    top: 70%;
    left: -5px;
    opacity: 0.8;
    filter: blur(50px);
    background: linear-gradient(-135deg, #00ff00 0%, #00cc00 50%, #00c200 100%);
    clip-path: polygon(0 30%, 0 100%, 100% 0%);
    z-index:2;
}

.shape4 {
    width: 26%;
    height: 35%;
    top: 70%;
    left: -5px;
    opacity: 0.9;
    filter: blur(100px);
    background: linear-gradient(-135deg, rgba(0, 255, 0, 0.9) 0%, rgba(0, 220, 0, 0.9) 100%);
    clip-path: polygon(0 30%, 0 100%, 100% 30%);
    z-index: 1;
}

.shape5 {
    width: 10%;
    height: 50%;
    top: 30%;
    left: -5px;
    opacity: 0.8;
    filter: blur(50px);
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.9) 0%, rgba(0, 200, 0, 0.9) 100%);
    clip-path: polygon(0% 0, 0% 100%, 100% 70%);
    z-index: 3;
}



/* Prismes sortant du côté DROIT */

.shape6 {
    width: 30%;
    height: 25%;
    top: -5px;
    right: -5px;
    opacity: 0.8;
    filter: blur(50px);
    clip-path: polygon(100% 25%, 100% 0%, 30% 0%, 10% 100%);
    z-index: 1;
}

.shape7 {
    width: 30%;
    height: 35%;
    top: 125px;
    right: -5px;
    opacity: 0.75;
    filter: blur(80px);
    background: linear-gradient(180deg, #00ff00 0%, #00cc00 100%);
    clip-path: polygon(0 60%, 100% 100%, 100% 0);
    z-index: 2;
}

.shape8 {
    width: 20%;
    height: 55%;
    bottom: 230px;
    right: -5px;
    opacity: 0.85;
    filter: blur(110px);
    background: linear-gradient(0deg, #00ff00 0%, #00cc00 100%);
    clip-path: polygon(0% 80%, 100% 0, 100% 100%);
    z-index: 1;
}


.shape9 {
    width: 25%;
    height: 15%;
    bottom: 0%;
    right: -5px;
    opacity: 0.8;
    filter: blur(50px);
    clip-path: polygon(0 0, 20% 100%, 100% 100%, 100% 30%);
    z-index: 1;
}

@media (max-width: 768px) {
    .shape {
        display: none;
    }
}
