:root {
    --text: #f1f1f0;
    --background: #150E10; /* Updated background color */
    --primary: #77888C; /* Updated primary color */
    --secondary: #5f5845;
    --accent: #a69a78;
}

@font-face {
    font-family: 'Centrion';
    src: url('./assets/fonts/centrion/Centrion-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Chivo';
    src: url('./assets/fonts/chivo/Chivo-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HeinzHeinrich';
    src: url('./assets/fonts/heinzheinrich/HeinzHeinrich-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'dungeon-mode';
    src: url('./assets/fonts/dungeon-mode/dungeon-mode.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'dungeon-mode-inverted';
    src: url('./assets/fonts/dungeon-mode/dungeon-mode-inverted.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Pixeled English Font';
    src: url('./assets/fonts/pixeled-english/Pixeled English Font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Chivo is now loaded from Google Fonts in the HTML head */


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

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

body {
    font-family: 'Centrion', Arial, sans-serif;
    color: rgba(255, 255, 255, 0.87);
    background-color: #150E10; /* Changed to our main background color */
    margin: 0;
    padding: 0;
}

#app {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    background-color: #150E10; /* Added background color */
}

#game-container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #150E10; /* Added background color */
}

#game-container canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
}