/* Font imports */
@font-face {
    font-family: 'Edu-SA';
    src: url('./assets/font/Edu_SA_Hand/static/EduSAHand-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Edu-SA';
    src: url('./assets/font/Edu_SA_Hand/static/EduSAHand-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Edu-SA';
    src: url('./assets/font/Edu_SA_Hand/static/EduSAHand-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Edu-SA';
    src: url('./assets/font/Edu_SA_Hand/static/EduSAHand-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Tiny5';
    src: url('./assets/font/Tiny5/Tiny5-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

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

body {
    background-color: #000;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

#game-container {
    position: relative;
    border: 2px solid #333;
}

#gameCanvas {
    display: block;
    background-color: #111;
    cursor: crosshair;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: pixelated;
}

#ui-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

/* Make UI elements inside overlay interactive */
#ui-overlay > * {
    pointer-events: auto;
}

/* Hide scrollbars */
::-webkit-scrollbar {
    display: none;
}

/* Prevent text selection */
canvas {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
} 