* {
    box-sizing: border-box;
}

body {
    background-color: #050f05;
    background-image: none;
    font-family: 'Courier Prime', 'Courier New', monospace;
    margin: 0;
    padding: 0;
    color: #00cc44;
    overflow: hidden;
}

#arcade-marquee,
#arcade-marquee-bottom {
    display: block;
    width: 800px;
}

#arcade-wrap {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: 100vh;
}

#arcade-left,
#arcade-right {
    flex: 1;
    min-width: 0;
    object-fit: cover;
    object-position: center;
    display: block;
}

#arcade-center {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 0.65rem;
    color: #004422;
    padding: 0.4rem 0.8rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

footer a {
    color: #006633;
    text-decoration: none;
}

footer button {
    background: transparent;
    border: 1px solid #00cc44;
    color: #00cc44;
    font-family: 'Courier Prime', 'Courier New', monospace;
    font-size: 0.65rem;
    padding: 0.15rem 0.5rem;
    cursor: pointer;
}

footer button:hover {
    background: #001a00;
}

/* le canvas ne doit pas avoir de border ni padding — coords souris */
#canvas {
    padding-right: 0;
    display: block;
    border: 0px none;
    visibility: hidden;
}
