body {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    margin: 0;
    min-height: 100vh;
}

.console-body {
    height: 600px;
    width: 350px;
    background: lightgray;
    border-radius: 3rem;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
}

.screen-bezel {
    background: darkgray;
    padding: 2em;
    border-radius: 20px;
}

.glowing-screen {
    height: 200px;
    background: linear-gradient(#9bbc0f, #306230);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.d-pad {
    height: 120px;
    width: 120px;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
}

.up {
    grid-row: 1;
    grid-column: 2;
    cursor: pointer;
}

.down {
    grid-row: 3;
    grid-column: 2;
    cursor: pointer;
}

.left {
    grid-row: 2;
    grid-column: 1;
    cursor: pointer;
}

.right {
    grid-row: 2;
    grid-column: 3;
    cursor: pointer;
}

.up, .down, .left, .right {
    background: #2a2a2a;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.6);
}

.up:active, .down:active, .left:active, .right:active {
    transform: scale(0.6);
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.A, .B {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background: #d90429;
    box-shadow: 0px 6px 12px rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
}

.A:active, .B:active {
    transform: translateY(12px);
}