@font-face {
    font-family: 'DogicaBold';
    src: url('../games/game1/assets/dogicabold.ttf') format('truetype');
}

/* CSS Reset */
* {
    box-sizing: border-box;
}

html {
    height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.87);
    background-color: #000000;
    overflow: hidden; /* Prevent scrollbars */
}

#app {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#game-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 700px;
}

#pixi-container {
    position: relative;
    width: 1030px;
    height: 700px;
}

/* Sidebar Panel Styles */
.sidebar-panel {
    width: 160px;
    height: 700px;
    background-color: #1a1a1a;
    border: 1px solid #333;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
}

.left-panel {
    order: 1;
}

.right-panel {
    order: 3;
}

#pixi-container {
    order: 2;
}
