@font-face {
    font-family: 'Pixeltype';
    src: url('../font/Pixeltype.ttf') format('truetype');
    font-display: swap;
}

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

body {
    background: #1a1a2e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

#gameCanvas {
    border: 2px solid #333;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    margin-bottom: 10px;
}

.game-controls {
    width: 800px;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}

.mute-btn {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 15px;
    transition: all 0.2s;
    font-family: 'Pixeltype', sans-serif;
}

.mute-btn:hover {
    background: #e0e0e0;
    color: #1a1a2e;
}

.site-footer {
    text-align: center;
    font-family: 'Pixeltype', sans-serif;
    color: #e0e0e0;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.site-footer a {
    color: #e94560;
    text-decoration: none;
    transition: color 0.2s;
    margin-left: 15px;
}

.site-footer a:hover {
    color: #ff5277;
    text-decoration: underline;
}
