body {
    margin: 0;
    background: black;
    overflow: hidden;
}

/* Star canvas */
#stars {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.arcade-container {
    position: absolute;
    top: 50%;
    left: 50%;
}

/* Smaller size */
#arcadeMachine {
    width: clamp(160px, 18vw, 300px);
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
}

/* Hover = slight grow ONLY (no position shift) */
#arcadeMachine:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px red);
}