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

body {
	font-family: 'Arial', sans-serif;
	background: #77aaee;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	overflow: hidden;
}


#start_image_container {
	position: absolute;
	left:10vw;
	height:80vh;
	top: 10vh;
}
#start_image {
	height:100%;
}


#startScreen {
	position: absolute;
	right:10vw;
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	text-align: center;
	max-width: 40vw;
	max-height:80vh;
}

#startScreen h1 {
	color: #114488; /*#667eea;*/
	margin-bottom: 2vh;
	font-size: 2.5em;
}

#startScreen p {
	color: #666;
	margin-bottom: 1vh;
	font-size: 1.1em;
}

.version-button {
	display: block;
	width: 100%;
	padding: 20px;
	margin: 15px 0;
	font-size: 1.3em;
	font-weight: bold;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: white;
}

.version-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

#version1 {
	background-color: #3c85e7;
	color: #f3e2cb;
	/*background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);*/
}

#version2 {
	background-color: #f3e2cb;
	color: #114488;
	/*background: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);*/
}

#version3 {
	background-color: #eebb77;
	color: #114488;
	/*background: linear-gradient(135deg, #A8E6CF 0%, #3EECAC 100%);*/
}

#gameContainer {
	display: none;
	position: relative;
}

#gameContainer.active {
	display: block;
}

#gameCanvas {
	border-radius: 10px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

#infoTop {
	display: block;
	margin-bottom: 3vh;
	text-align: center;
}

#infoBottom {
	display: block;
	margin-top: 3vh;
}

#scoreDisplay {
	position: relative;
	display: inline-block;
	float:right;
	/*position: absolute;
	top: 20px;
	right: 20px;*/
	background: rgba(255,255,255,0.9);
	padding: 15px 25px;
	border-radius: 10px;
	font-size: 1.2em;
	font-weight: bold;
	color: #333;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#vowelDisplay {
	position: relative;
	display: inline-block;
	/*position: absolute;
	top: 20px;
	right: 20px;*/
	background: rgba(255,255,255,0.9);
	padding: 15px 25px;
	border-radius: 10px;
	font-size: 1.5em;
	font-weight: bold;
	color: #667eea;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#pauseOverlay {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(255,255,255,0.95);
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	z-index: 10;
}

#pauseOverlay.active {
	display: block;
}

#pauseOverlay h2 {
	color: #FF6B6B;
	font-size: 2em;
	margin-bottom: 20px;
}

#backButton {
	display: inline-block;
	padding: 15px 30px;
	font-size: 1.1em;
	background: #ee77aa;
	color: white;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#backButton:hover {
	background: #e63380;
	transform: translateY(-2px);
}

.end_animation {
	position: absolute;
	left:0;
	right:0;
	margin-left: auto;
	margin-right: auto;
	width: 60vw;
}


.end_animation_text {
	display: inline-block;
	float: right;
	width: 50%;
	background: white;
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	text-align: center;
}


.end_animation p {
	color: #666;
	margin-bottom: 1vh;
	font-size: 1.1em;
}

.end_animation_headline {
	color: #114488; /*#667eea;*/
	margin-bottom: 2vh;
	font-size: 2.5em;
	font-weight: bold;
}

.evaluation {
	margin-bottom: 3vh;
}

.end_animation_pic_wrapper {
	display: inline-block;
	float: left;
	width: 40%;
}

.end_image {
	max-width: 100%;
}

.play_again {
	padding-left: 5vh;
	padding-right: 5vh;
	padding-top: 1vh;
	padding-bottom: 1vh;
	text-align: center;
	background: #eebb77;
	color: #114488;
	border-radius: 20px;
	cursor: pointer;
	width: 50%;
	margin-top: 4vh;
	font-size: 150%;

}




