.controls-guide {
	margin-top: 20px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-evenly;
	color: var(--white);
}

/* Keyboard guide */
.kbd {
	display: inline-block;
	min-width: 32px;
	padding: 4px 12px;
	margin: 2px;
	border-radius: 6px;
	border: 2px solid var(--grey);
	background: linear-gradient(180deg, #fff 80%, #e0e0e0 100%);
	box-shadow: 0 2px 0 #bbb, 0 2px 8px #0002;
	color: #222;
	font-family: 'Consolas', 'Courier New', Courier, monospace;
	font-size: 18px;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	transition: background 0.2s, box-shadow 0.2s;
}
.kbd:active {
	background: #e0e0e0;
	box-shadow: 0 1px 0 #bbb;
}

.gamepad {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 24px 0;
}

/* Gamepad guild */
.gp-body {
	position: relative;
	width: 120px;
	height: 60px;
	background: var(--white);
	border-radius: 40px 40px 60px 60px / 50px 50px 60px 60px;
	box-shadow: 0 4px 16px #0006;
}
.gp-stick {
	position: absolute;
	width: 22px;
	height: 22px;
	background: var(--black2);
	border-radius: 50%;
	top: 32px;
}
.gp-stick-left {
	left: 32px;
}
.gp-stick-right {
	right: 32px;
}
.gp-dpad {
	position: absolute;
	left: 20px;
	top: 16px;
	width: 12px;
	height: 12px;
	background: #666;
	border-radius: 3px;
	box-shadow: 0 -10px 0 0 #666, 0 10px 0 0 #666, -10px 0 0 0 #666, 10px 0 0 0 #666;
}
.gp-buttons {
	position: absolute;
	right: 12px;
	top: 8px;
	width: 28px;
	height: 28px;
}
.gp-btn {
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #bbb;
	border: 2px solid #fff2;
}
.gp-btn-a {
	right: 0;
	top: 9px;
	background: #4caf50;
}
.gp-btn-b {
	right: 9px;
	top: 0;
	background: #f44336;
}
.gp-btn-x {
	left: 0;
	top: 9px;
	background: #2196f3;
}
.gp-btn-y {
	right: 9px;
	bottom: 0;
	background: #ffeb3b;
}
