* {
	box-sizing: border-box;
}

body {
	font-family: "Fredoka", sans-serif;
	margin: 0;
	padding: 20px;
	background: #042A2B;
	color: #FCFCFC;
	min-height: 100dvh;
	font-size: 18px;
	display: flex;
	justify-content: center;
}

#gameCard {
	width: 100%;
	max-width: 420px;
}

h1 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

label {
	display: block;
	font-size: 1.25rem;
	margin: 10px 0;
}

input[type=text] {
	width: 100%;
	padding: 16px;
	margin: 10px 0;
	font-size: 1.125rem;
	font-family: inherit;
	background-color: #FCFCFC;
	border: 3px solid #5EB1BF;
	border-radius: 8px;
	color: #042A2B;
}

input[type=text]:hover {
	border-color: #54F2F2;
}

input[type=text]:focus {
	border-color: #F4E04D;
	box-shadow: 0 0 6px rgba(244, 224, 77, 0.6);
	outline: none;
}

button {
	display: block;
	width: 100%;
	padding: 16px 24px;
	margin: 15px 0;
	font-size: 1.25rem;
	font-family: inherit;
	font-weight: 600;
	background: #5EB1BF;
	color: #042A2B;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

button:hover {
	background: #54F2F2;
}

button:active {
	background: #F4E04D;
	transform: scale(0.98);
}

button:disabled {
	background: #555;
	color: #999;
	cursor: not-allowed;
}

#status {
	font-size: 1.25rem;
	margin: 20px 0;
}

.hidden {
	display: none;
}

#reactContainer {
	margin-top: 20px;
}

#reactGrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.react-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: none;
	aspect-ratio: 1;
	padding: 0;
	margin: 0;
	font-size: 2.5rem;
	background: #5EB1BF;
	border: none;
	border-radius: 12px;
	cursor: pointer;
}

.react-btn:hover {
	background: #54F2F2;
}

.react-btn:active {
	background: #F4E04D;
	transform: scale(0.95);
}

#choiceContainer {
	margin-top: 20px;
}

#choiceGrid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}

.choice-btn {
	width: 100%;
	max-width: none;
	padding: 16px 20px;
	margin: 0;
	font-size: 1.125rem;
	text-align: left;
	background: #5EB1BF;
	border: none;
	border-radius: 8px;
	cursor: pointer;
}