/* Základné štýly */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background: #333333; /*Úmyselne rovnaká farba akú má aj canvas-container aby pri resizovaní neboli prebliky. Pre rozpoznanie sa hodí #f0f0f0;*/
    overflow: hidden;
}

/* Úvodná obrazovka */
.intro-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
		background: url('grass.png') repeat;
		background-size: 256px 256px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}
.intro-screen h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.intro-screen p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
}
.intro-screen input {
    font-size: 18px;
    padding: 2px;
    width: 60px;
    text-align: center;
    margin-bottom: 20px;
}
.game-logo {
    max-width: 320px;
    max-height: 145px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}
.button-container {
    display: flex;
    gap: 20px; /* Medzera medzi tlačidlami */
    margin-bottom: 20px; /* Zachovanie pôvodného odsadenia */
}

.button-ready {
	padding: 15px 30px;
	font-size: 18px;
	background: #b4271f;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	color: #fff;
}
.button-menu {
	padding: 15px 30px;
	font-size: 18px;
	background: #686868;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	color: #fff;
}

/* Container pre canvas */
#canvas-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333333;
}

/* Herný canvas */
#gameCanvas {
    aspect-ratio: 16 / 9;
    max-width: 100%;
    max-height: 100%;
    background-color: #557755;
    visibility: hidden;
}

.player {
    position: absolute;
    width: 30px;
    height: 30px;
}

/* HUD */
.hud {
    position: absolute;
    top: 10px;
    left: 10px;
    color: white;
    font-size: 18px;
    z-index: 5;
}