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

body {
    font-family: monospace;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vmin;
    height: 70vmin;
    background-image: url('../../../images/logo-badge-transparent.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.07;
    pointer-events: none;
    z-index: 2;
}

.home-logo {
    position: fixed;
    top: 16px;
    left: 16px;
    opacity: 0.6;
    transition: opacity 0.2s;
    display: block;
    z-index: 10;
}
.home-logo:hover { opacity: 1; }
.home-logo img {
    height: 36px;
    width: auto;
    display: block;
}

.game-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    zoom: 1.5;
}

#game-hud {
    width: 448px;
    background: #0a0a0a;
    border: 3px solid #00cc44;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 16px;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.05em;
}

.hud-item { color: #aaa; }
.hud-item span { color: #fff; margin-left: 4px; }
.hud-hi span { color: #ffdd00; }
.hud-timer span { color: #00cc44; }

.arcade-cabinet {
    background: #000;
    border: 3px solid #00cc44;
    box-shadow: 0 0 20px rgba(0, 204, 68, 0.5);
}

#gameCanvas {
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
