#threejs-cube {
    position: relative;
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    width: 600px;
    height: 600px;
}

#threejs-cube canvas {
    width: 100%;
    height: 100%;
    outline: none;
    display: block;
    filter: drop-shadow(0 0 10px rgba(0, 255, 157, 0.3));
}

.face-label {
    position: absolute;
    color: var(--neon-green);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    pointer-events: none;
    text-shadow: 0 0 5px rgba(0, 255, 157, 0.5);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 4em;
}

/* Media Queries pour la responsivité */
@media (max-width: 1024px) {
    #threejs-cube {
        width: 500px;
        height: 500px;
    }
}

@media (max-width: 800px) {
    #threejs-cube {
        width: 400px;
        height: 400px;
    }

    .contact-grid {
        padding: 3em !important;
    }
}

@media (max-width: 480px) {
    #threejs-cube {
        width: 300px;
        height: 300px;
        padding: 10px;
    }
}
