#game {
	overflow: scroll;
}
#games {
	display: block;
	font-size: 1.125rem;
}
#games .selector {
	display: flex;
	border-bottom: 0.5rem solid #777;
}
#games .selector .option {
	flex: 0 0 50%; position: relative;
	padding: 1rem;
	background: #333c; border-radius: 1rem 1rem 0 0;
	-webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
	font-size: 1.125rem; text-align: center; color: #999;
	cursor: pointer;
}
#games .selector .option.active {
	background: #777d;
	color: #eee; font-weight: 700;
}
#games .list {
	display: none;
}
#games .list.active {
	display: block;
}
#games .list .game {
	display: flex; align-items: center;
	padding: 1rem 0;
	border-bottom: 1px solid #999;
}
#games .list .game.null {
	font-style: italic;
}
#games .list .game .icon {
	flex: 0 0 4rem;
	width: 4rem; height: 4rem; margin-right: 1rem;
	font-size: 1.25rem; line-height: 4rem; text-align: center;
}
#games .list .game .icon i {
}
#games .list .game .info {
	flex: 1 1 auto;
	font-size: 0.9375rem; color: #ccc;
}
#games .list .game .info .status {
	font-size: 1.125rem; color: #fff;
}
#games .list .game .info .wait {
	margin-top: 0.25rem;
}
#games .list .game .info .details {
	margin-top: 0.25rem;
}
#games .list .game .link {
	flex: 0 0 3rem;
	margin-left: 1rem;
	font-size: 1.5rem; line-height: 4rem; text-align: center;
}
#games .list .game .link.active {
	font-size: 3rem;
}

#games .list .game.new {
	flex-wrap: wrap;
}
.create-options {
	display: flex; flex-direction: column; gap: 0.5rem;
	margin-top: 0.5rem;
}
.create-human,
.create-cpu-toggle {
	width: 100%;
}
.create-cpu-toggle.active {
	border-color: #aaa;
}
.cpu-levels {
	display: none;
	grid-template-columns: repeat(4, 1fr); gap: 0.375rem;
}
.cpu-levels.active {
	display: grid;
}
.cpu-levels .create-cpu {
	padding: 0.5rem 0;
	font-size: 0.875rem; text-align: center;
}
.create-cpu.disabled {
	opacity: 0.35;
	pointer-events: none;
}

.uicon {
	display: block; position: relative; overflow: hidden;
	width: 100%; padding-bottom: 100%;
	border-radius: 48px; box-shadow: 0 0 1px 1px #0009;
}
.uicon img {
	position: absolute;
	top: 0; left: 0; width: 100%; height: 100%;
}
