/* // <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 400 to 900 */
:root {
    /* --background-color: #1A1A40;
    --primary-ball: #FF073A;
    --secondary-ball: #00D1FF;
    --obstacles: #E0E0E0;
    --accent-1: #39FF14;
    --accent-2: #9F00FF; */

    /* --background-color: #121212;
    --primary-ball: #FF0000;
    --secondary-ball: #00FFFF;
    --obstacles: #FFFF00;
    --accent-1: #FF00FF;
    --accent-2: #00FF00; */

    /* --background-color: #E6E6FA;
    --primary-ball: #FF6F61;
    --secondary-ball: #B0E0E6;
    --obstacles: #FFDAB9;
    --accent-1: #FFFFE0;
    --accent-2: #FFB6C1; */
    /* 
    --green: #39FF14;
    --purple: #FF00FF;
    --orange: #FF6F00;
    --yellow: #FFEB3B; */
    /* --dark-gray: #1C1C1C; */
    /* --cyan: #00FFFF;
    --pink: #FF69B4; */

    --aqua: #00FFFF;
    /* Aqua for one player ball */
    --lime: #BFFF00;
    /* Lime for the other player ball */
    --bright-orange: #FF5722;
    /* Bright orange for obstacles */
    --violet: #8A2BE2;
    /* Violet for secondary obstacles or highlights */
    --deep-space: #0A0A0A;
    /* Deep space black for the background */
    --bright-yellow: #FFEA00;
    /* Bright yellow for UI elements or trajectory lines */
    --turquoise: #40E0D0;
    /* Turquoise for additional effects or accents */
    --light-gray: #D3D3D3;
    /* Light gray for softer UI elements */




}

.none {
    display: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
}

.orbitron-game-over {
    font-family: "Orbitron", system-ui;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}


#canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background-color: var(--deep-space);
}

.game-over {
    height: 100svh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: red;
}