.game-top-notification,
#turn-banner {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
	z-index: 10;
	box-sizing: border-box;

	background: #0d0f10;
	padding: 12px 16px;
	width: fit-content;
	height: 48px;
	color: #fff;
	font-weight: 400;
	font-size: 12px;
	line-height: 18px;
	white-space: nowrap;
}

.game-field {
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%;
	justify-content: center;
	align-items: center;
	transform: translate(-50%, -50%);
	z-index: 1;
	box-sizing: border-box;
	background: #00597b;
	width: 600px;
	height: 360px;
}

.game-field-text {
	display: flex;
	position: absolute;
	top: 21px;
	left: 25px;
	align-items: center;
	margin: 0;
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.15px;
}

.game-field-center {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	z-index: 1;
	padding-top: 189px;
	color: var(--text-secondary);
	font-weight: 500;
	font-size: 18px;
	line-height: 28px;
	letter-spacing: 0.15px;
}

.player-nameplate {
	display: flex;
	position: absolute;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	z-index: 5;
	background: rgba(166, 176, 242, 0.2);
	padding: 16px 24px;
	width: auto;
	min-width: 80px;
	height: auto;
	pointer-events: none;
	text-align: center;
}

.player-nameplate.no-detail {
	gap: 0;
}

.player-nameplate.is-empty {
	background: transparent;
	padding: 0;
	width: 60px;
	min-width: 60px;
	height: 60px;
	min-height: 60px;
}

.player-nameplate.is-empty::before {
	display: block;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.02);
	width: 100%;
	height: 100%;
	content: "";
}

.nameplate-inner {
	display: contents;
}

.player-nameplate.is-turn {
	box-shadow: none;
}

.player-nameplate.is-own {
	z-index: 7;
}

.player-nameplate.nameplate-own {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.player-nameplate.nameplate-right {
	top: 50%;
	left: calc(75% + (var(--table-width) / 4));
	transform: translate(-50%, -50%);
}

.player-nameplate.nameplate-left {
	top: 50%;
	left: calc(25% - (var(--table-width) / 4));
	transform: translate(-50%, -50%);
}

.player-nameplate.nameplate-top {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.nameplate-name {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	width: 100%;
	color: var(--text-primary);
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	white-space: nowrap;
}

.nameplate-cards {
	width: 100%;
	color: var(--text-secondary);
	font-weight: 600;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
	white-space: nowrap;
}
.game-player-active-icon {
	position: absolute;
	top: 20px;
	left: -6px;
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
	background: var(--cyan);
	width: 14px;
	height: 14px;
}

.game-player-passed-icon {
	position: absolute;
	top: 20px;
	left: -6px;
	z-index: 1;
	clip-path: polygon(
		20% 0%,
		0% 20%,
		30% 50%,
		0% 80%,
		20% 100%,
		50% 70%,
		80% 100%,
		100% 80%,
		70% 50%,
		100% 20%,
		80% 0%,
		50% 30%
	);
	background: red;
	width: 14px;
	height: 14px;
	color: red;
}

.game-player-landlord-icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border: 1.5px solid #e2b42b;
	border-radius: 6px;
	background: #391c08;
	padding: 0 6px;
	width: 45px;
	height: 24px;
	color: #e2b42b;
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.15px;
}

.game-player-you {
	position: absolute;
	top: 384px;
	left: 50%;
	transform: translate(-50%);
}

.game-player-right {
	position: absolute;
	top: 50%;
	left: 624px;
	transform: translateY(-50%);
}

.game-player-top {
	position: absolute;
	bottom: 384px;
	left: 50%;
	transform: translate(-50%);
}

.game-player-left {
	position: absolute;
	top: 50%;
	right: 624px;
	transform: translateY(-50%);
}
