/* =========================================================
   TABS – GRUNDSTRUKTUR
   ========================================================= */

.tabs {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;

	overflow: hidden;

	background: transparent;
	border-top: 1px solid rgba(165, 195, 200, 0.12);
	border-bottom: 1px solid rgba(165, 195, 200, 0.12);
}

.tabs button {
	position: relative;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 46px;
	padding: 0 18px;

	color: rgba(197, 207, 203, 0.55);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;

	background: transparent;
	border: 0;
	border-right: 1px solid rgba(165, 195, 200, 0.08);
	outline: none;

	cursor: pointer;

	transition:
		color 0.18s ease,
		background 0.18s ease,
		border-color 0.18s ease;
}

.tabs button:last-child {
	border-right: 0;
}

.tabs button::after {
	content: "";

	position: absolute;
	right: 18px;
	bottom: -1px;
	left: 18px;

	height: 1px;

	background: transparent;

	transition: background 0.18s ease;
}

.tabs button:hover {
	color: rgba(239, 242, 240, 0.94);

	background: rgba(178, 139, 173, 0.035);
}

.tabs button.active {
	color: #fff;

	background:
		linear-gradient(
			to right,
			rgba(178, 139, 173, 0.07),
			rgba(112, 150, 154, 0.025)
		);
}

.tabs button.active::after {
	background:
		linear-gradient(
			to right,
			var(--fire-accent),
			var(--accent)
		);
}


/* =========================================================
   TAB-INHALT
   ========================================================= */

.tabcontent {
	display: none;

	padding: 30px 10px;

	border-top: 0;
}

.tabcontent.active,
.tabcontent[style*="display: block"] {
	animation: tabcontent-fade 0.25s ease;
}

@keyframes tabcontent-fade {
	from {
		opacity: 0;
		transform: translateY(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* =========================================================
   SPIELERLISTE – CONTAINER
   ========================================================= */

.spielerliste-container {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
padding:10px;
	width: 100%;
}

.spieler-box {
	position: relative;
	min-width: 250px;
	padding: 20px;
	box-sizing: border-box;
	color: var(--txt);

	background:
		linear-gradient(
			to bottom right,
			rgba(178, 139, 173, 0.035),
			transparent 55%
		),
		rgba(255, 255, 255, 0.01);

	border: 1px solid rgba(165, 195, 200, 0.11);
	border-radius: 0;

	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.spieler-box::before,
.spieler-box::after {
	content: "";

	position: absolute;

	width: 20px;
	height: 20px;

	pointer-events: none;
}

.spieler-box::before {
	top: 7px;
	left: 7px;

	border-top: 1px solid rgba(178, 139, 173, 0.38);
	border-left: 1px solid rgba(178, 139, 173, 0.38);
}

.spieler-box::after {
	right: 7px;
	bottom: 7px;

	border-right: 1px solid rgba(112, 150, 154, 0.3);
	border-bottom: 1px solid rgba(112, 150, 154, 0.3);
}

.spieler-box:hover {
	background:
		linear-gradient(
			to bottom right,
			rgba(178, 139, 173, 0.05),
			transparent 60%
		),
		rgba(255, 255, 255, 0.015);

	border-color: rgba(178, 139, 173, 0.23);

	transform: translateY(-2px);
}

.spieler-box ul {
	margin: 0;
	padding: 12px 0 0 18px;

	color: rgba(209, 217, 214, 0.68);
	font-size: 12px;
	line-height: 1.75;
}

.spieler-box li::marker {
	color: var(--fire-accent);
}


/* =========================================================
   SPIELERLISTE – ÜBERSCHRIFT
   ========================================================= */

.h1spielerliste {
	margin: 0 0 22px;
	color: var(--accent);
	font-family: var(--fire-display);
	font-size: clamp(20px, 3vw, 38px);
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 1;
}


/* =========================================================
   FORTSCHRITTSANZEIGE
   ========================================================= */

.meter {
	position: relative;

	width: min(100%, 160px);
	height: 6px;
	margin: 8px 0;
	padding: 2px;

	overflow: hidden;

	background: transparent;
	border: 1px solid rgba(165, 195, 200, 0.16);
}

.meter > span {
	position: relative;

	display: block;

	height: 100%;
	overflow: hidden;

	background:
		linear-gradient(
			to right,
			var(--fire-accent),
			var(--accent)
		);
}

.meter > span::after {
	content: "";

	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			to right,
			transparent,
			rgba(255, 255, 255, 0.14),
			transparent
		);

	transform: translateX(-100%);

	animation: meter-shine 2.8s ease-in-out infinite;
}

@keyframes meter-shine {
	0%,
	55% {
		transform: translateX(-100%);
	}

	100% {
		transform: translateX(100%);
	}
}


/* =========================================================
   KLEINE DESIGNÜBERSCHRIFT
   ========================================================= */

.designh4 {
	margin: 0 0 13px;

	color: rgba(232, 236, 234, 0.84);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.5;
	text-align: left;
	text-transform: uppercase;
}


/* =========================================================
   LISTENKATEGORIEN
   ========================================================= */

.listcat {
	padding: 8px 10px;

	color: rgba(232, 236, 234, 0.84);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	line-height: 1.4;
	text-transform: uppercase;
	border-top: 1px solid rgba(178, 139, 173, 0.18);
	border-bottom: 1px solid rgba(165, 195, 200, 0.09);
}


/* =========================================================
   LISTENZELLEN
   ========================================================= */

.listtd {
	padding: 13px 14px;

	color: rgba(209, 217, 214, 0.72);
	font-size: 12px;
	line-height: 1.7;
	text-align: left;

	background: rgba(255, 255, 255, 0.008);
	border-bottom: 1px solid rgba(165, 195, 200, 0.07);
}

.listlink a,
.listlink a:link,
.listlink a:visited {
	color: rgba(209, 217, 214, 0.66);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;

	border-bottom: 1px solid transparent;
}

.listlink a:hover {
	color: #fff;

	border-bottom-color: rgba(178, 139, 173, 0.52);
}

.listtrow {
	padding: 20px;

	background: transparent;
}


/* =========================================================
   ORT UND RESERVIERUNG
   ========================================================= */

.ort {
	width: 250px;
	padding: 12px 14px;

	color: rgba(209, 217, 214, 0.72);

	background: rgba(255, 255, 255, 0.008);
	border-right: 1px solid rgba(165, 195, 200, 0.08);
}

.reservierung {
	width: 500px;
	padding: 18px 20px;

	color: rgba(209, 217, 214, 0.72);

	background: rgba(255, 255, 255, 0.012);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

	.spielerliste-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

}

@media (max-width: 700px) {

	.tabs {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.tabs button {
		width: 100%;
		min-height: 42px;

		border-bottom: 1px solid rgba(165, 195, 200, 0.08);
	}

	.spielerliste-container {
		grid-template-columns: 1fr;
	}

	.spieler-box {
		padding: 18px 16px;
	}

	.ort,
	.reservierung {
		display: block;

		width: 100%;
		box-sizing: border-box;
	}

	.ort {
		border-right: 0;
		border-bottom: 1px solid rgba(165, 195, 200, 0.08);
	}

}

@media (max-width: 430px) {

	.tabs {
		grid-template-columns: 1fr;
	}

	.tabs button {
		justify-content: flex-start;

		padding-right: 14px;
		padding-left: 14px;
	}

}