html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: url('/images/body_top.jpg') top center repeat-x, #992d05;
    background-size: auto, auto;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

/* LOGO NAD H1 */
.page-logo {
    margin-top: 20px;
    margin-bottom: 10px;
}

/* HERNÍ OBLAST */
canvas {
    display: block;
    margin: 20px auto;
    background: rgba(0,0,0,0.15); /* lehké ztmavení pro kontrast */
    border: 2px solid #000;
    border-radius: 8px;
}

/* WRAPPER aby nebylo vše u okrajů */
.content-wrapper {
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px;
}

/* zobrazíme jen na mobilních obrazovkách */
#mobile-controls {
    display: flex;
    justify-content: center;
    gap: 150px;
    position: fixed;
    bottom: 10px;
    width: 100%;
    z-index: 1000;
}

#mobile-controls button {
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background: rgba(0,0,0,0.7);
    color: white;
}
