/* Configuration */
:root {
    --black: rgba(0,0,0,1);
    --white: rgba(184,183,200,1);
    --white50: rgba(184,183,200,.7);
    --yellow: rgba(183,137,28,1);
    --blue: rgba(25,39,62,1);
    --green: rgba(200,188,67,1);
    --items: 32;
    --backface: yes;
    --border: no;
    --bg: no;
    --glow: yes;
    --dir: Y;
    --size: 500;
    --color: black;
    --glow-color1: rgba(50, 50, 50, 0.02);
    --glow-color2: rgba(50, 50, 50, 0.02);
    --perspective: 222;
}

/* Lien d'évitement (accessibilité clavier) : masqué visuellement mais
   accessible au clavier/lecteur d'écran, révélé au focus. */
.visually-hidden-focusable {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    background: var(--black);
    color: var(--white);
    padding: 10px 20px;
}
.visually-hidden-focusable:focus {
    left: 10px;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: rgb(0, 0, 0) radial-gradient(rgb(36, 46, 71), rgb(0, 0, 0));
}
body a{
    text-decoration: none;
}
