@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Press Start 2P', monospace;
    background-color: #E8E8E8; /* Zmienione z #f0f0f0 na kolor tła gry */
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Fallback dla starszych przeglądarek */
    min-height: 100dvh; /* Dynamic viewport height - nowa jednostka CSS */
    min-height: 100svh; /* Small viewport height - alternatywa */
    border: 20px solid #000000; /* Czarny border wokół całego okna przeglądarki */
}

/* Wsparcie dla przeglądarek bez dvh/svh */
@supports not (height: 100dvh) {
    body {
        min-height: calc(100vh - env(keyboard-inset-height, 0px));
        min-height: calc(100vh - env(safe-area-inset-bottom, 0px));
    }
}

.contact-section {
    text-align: center;
    padding: 20px;
    background-color: #E8E8E8; /* Zmienione z #f0f0f0 na kolor tła gry */
}

.contact-label {
    color: #333;
    font-size: 10px;
    margin-bottom: 10px;
}

.email {
    margin-bottom: 15px;
    text-align: center;
    padding: 20px;
    background-color: #E8E8E8; /* Zmienione z #f0f0f0 na kolor tła gry */
}

.email a {
    color: #333;
    text-decoration: none;
    font-size: 12px;
}

.email a:hover {
    text-decoration: underline;
}

.or-label {
    color: #333;
    font-size: 10px;
    margin-bottom: 10px;
}

.game-label {
    color: #333;
    font-size: 10px;
    margin-bottom: 15px;
    text-align: center;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.game-container {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: -20px; /* Przesunięcie gry w dół żeby podłoga wyrównała się z borderem body */
}

#gameCanvas {
    border: none;
    background-color: #E8E8E8;
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 400px;
    max-width: 100%;
}

.game-info {
    margin-bottom: 10px;
    color: #333;
}

.game-info p {
    margin: 5px 0;
    font-size: 8px;
}
