body {
    margin: 0;
    padding: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
}

#game-container {
    width: 800px;
    height: 600px;
    position: relative;
    border: 8px solid #333;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    overflow: hidden;
    z-index: 10;
    background: #000;
}

.arcade-cabinet {
    position: absolute;
    width: 1000px;
    height: 1200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    display: flex;
    justify-content: center;
}

.arcade-cabinet::after {
    content: '';
    position: absolute;
    width: 850px;
    height: 700px;
    top: 100px;
    background: #000;
    border-radius: 10px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
}

.cabinet-base {
    position: absolute;
    width: 850px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 350px);
    background: #000;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    z-index: -3;
}

#arcade-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}