/* rebuild/client/css/main.css (Organized) */

/* --- IMPORT OTHER STYLESHEETS --- */
@import url("menu.css");
@import url("game.css");
@import url("hud-modern.css");


/* --- GLOBAL VARIABLES --- */
:root {
    --bg-color: #1a1c20;
    --primary-color: #00aaff;
    --secondary-color: #4a4e57;
    --green-accent: #32CD32;
    --red-accent: #FF4136;
    --gray-accent: #888;
    --light-text: #e0e0e0;
}


/* --- GLOBAL ELEMENT STYLES --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background-color: var(--bg-color);
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


/* --- SHARED UTILITY CLASSES --- */
.hidden {
    display: none !important;
}