@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;600;700&family=Great+Vibes&family=Pirata+One&display=swap');

* {
	box-sizing: border-box;
}


html,
body {
	margin: 0;
	padding: 0;
	min-height: 100%;

	background: #05080c;

	color: #ffffff;

	font-family:
		Arial,
		Helvetica,
		sans-serif;
}


body {
	min-height: 100vh;
}


.member-page {
	display: flex;

	width: 100%;
	min-height: 100vh;

	background:
		radial-gradient(
			circle at 50% 0%,
			rgba(0, 140, 255, 0.15),
			transparent 38%
		),
		linear-gradient(
			180deg,
			#071019 0%,
			#05080c 45%,
			#030507 100%
		);

	flex-direction: column;
}


/* =========================================================
   HEADER
   ========================================================= */

.member-header {
	display: flex;

	width: 100%;
	min-height: 74px;

	padding: 15px 32px;

	border-bottom:
		1px solid rgba(0, 140, 255, 0.18);

	background:
		rgba(5, 10, 15, 0.94);

	box-shadow:
		0 8px 30px rgba(0, 0, 0, 0.24);

	align-items: center;
	justify-content: space-between;

	backdrop-filter: blur(12px);
}


.member-back {
	display: inline-flex;

	color:
		rgba(255, 255, 255, 0.72);

	align-items: center;

	gap: 9px;

	font-size: 0.85rem;
	font-weight: 700;

	text-decoration: none;

	transition: color 0.2s ease;
}


.member-back:hover {
	color: #008cff;
}


.member-header-label {
	color: #008cff;

	font-size: 0.78rem;
	font-weight: 900;

	letter-spacing: 0.16em;

	text-transform: uppercase;
}


/* =========================================================
   MAIN – VOLLE WEBSEITE
   ========================================================= */

.member-main {
	display: block;

	width: 100%;

	padding: 0;

	flex: 1;
}


/*
|--------------------------------------------------------------------------
| KEINE KARTE MEHR
|--------------------------------------------------------------------------
| Dieser Bereich ist jetzt die eigentliche Webseite.
|--------------------------------------------------------------------------
*/

.member-login-card {
	position: relative;

	overflow: hidden;

	width: 100%;
	min-height: calc(100vh - 74px);

	padding: 75px 5vw 90px;

	border: 0;
	border-radius: 0;

	background:
		radial-gradient(
			circle at 50% -80px,
			rgba(0, 140, 255, 0.17),
			transparent 32%
		),
		linear-gradient(
			180deg,
			rgba(10, 26, 40, 0.45) 0%,
			rgba(5, 8, 12, 0.35) 45%,
			rgba(3, 5, 7, 0.75) 100%
		);

	box-shadow: none;

	text-align: center;
}


/* Dekoration im Hintergrund */

.member-login-card::before {
	position: absolute;

	top: -390px;
	left: 50%;

	width: 760px;
	height: 760px;

	border:
		1px solid rgba(0, 140, 255, 0.06);

	border-radius: 50%;

	box-shadow:
		0 0 0 90px rgba(0, 140, 255, 0.018),
		0 0 0 180px rgba(0, 140, 255, 0.009);

	content: "";

	transform:
		translateX(-50%);
}


/* =========================================================
   KOPFBEREICH
   ========================================================= */

.member-icon {
	position: relative;

	display: grid;

	width: 84px;
	height: 84px;

	margin: 0 auto 22px;

	border:
		1px solid rgba(0, 140, 255, 0.45);

	border-radius: 50%;

	background:
		rgba(0, 140, 255, 0.10);

	box-shadow:
		0 0 35px rgba(0, 140, 255, 0.12);

	color: #008cff;

	place-items: center;

	font-size: 2rem;
}


.member-kicker {
	position: relative;

	display: block;

	margin: 0 auto 12px;

	color: #008cff;

	font-size: 0.78rem;
	font-weight: 900;

	letter-spacing: 0.17em;

	text-transform: uppercase;
}


.member-login-card h1 {
	position: relative;

	margin: 0 auto 18px;

	color: #ffffff;

	font-size:
		clamp(3rem, 7vw, 5.5rem);

	font-weight: 900;

	letter-spacing: -0.04em;

	line-height: 0.95;
}


/* =========================================================
   COMING SOON
   ========================================================= */

.member-coming-soon {
	position: relative;

	display: inline-flex;

	margin-bottom: 28px;

	padding: 10px 20px;

	border:
		1px solid rgba(0, 140, 255, 0.50);

	border-radius: 999px;

	background:
		rgba(0, 140, 255, 0.10);

	box-shadow:
		0 0 25px rgba(0, 140, 255, 0.09);

	color: #74c3ff;

	font-size: 0.8rem;
	font-weight: 900;

	letter-spacing: 0.16em;

	text-transform: uppercase;
}


.member-intro {
	position: relative;

	max-width: 700px;

	margin: 0 auto 55px;

	color:
		rgba(255, 255, 255, 0.68);

	font-size: 1.05rem;

	line-height: 1.75;
}


/* =========================================================
   FEATURES
   ========================================================= */

.member-features {
	position: relative;

	display: grid;

	width: min(1200px, 100%);

	margin: 0 auto 55px;

	grid-template-columns:
		repeat(3, minmax(0, 1fr));

	gap: 18px;

	text-align: left;
}


.member-feature {
	display: flex;

	min-height: 130px;

	padding: 24px;

	border:
		1px solid rgba(255, 255, 255, 0.10);

	border-radius: 16px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.045),
			rgba(255, 255, 255, 0.018)
		);

	box-shadow:
		0 15px 35px rgba(0, 0, 0, 0.18);

	align-items: center;

	gap: 18px;

	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		background 0.2s ease;
}


.member-feature:hover {
	transform: translateY(-3px);

	border-color:
		rgba(0, 140, 255, 0.38);

	background:
		rgba(0, 140, 255, 0.055);
}


.member-feature-icon {
	display: grid;

	width: 50px;
	height: 50px;

	border:
		1px solid rgba(0, 140, 255, 0.30);

	border-radius: 12px;

	background:
		rgba(0, 140, 255, 0.09);

	color: #008cff;

	flex-shrink: 0;

	place-items: center;

	font-size: 1.1rem;
}


.member-feature strong {
	display: block;

	margin-bottom: 6px;

	color: #ffffff;

	font-size: 0.95rem;
}


.member-feature span {
	display: block;

	color:
		rgba(255, 255, 255, 0.55);

	font-size: 0.82rem;

	line-height: 1.55;
}


/* =========================================================
   LOGIN BEREICH
   ========================================================= */

.member-login-preview {
	position: relative;

	width: min(760px, 100%);

	margin: 0 auto;

	padding: 32px;

	border:
		1px solid rgba(0, 140, 255, 0.28);

	border-radius: 18px;

	background:
		linear-gradient(
			145deg,
			rgba(0, 0, 0, 0.42),
			rgba(7, 18, 27, 0.55)
		);

	box-shadow:
		0 22px 50px rgba(0, 0, 0, 0.28);

	text-align: left;
}


.member-login-preview-title {
	display: flex;

	margin-bottom: 26px;

	color: #ffffff;

	align-items: center;

	gap: 10px;

	font-size: 1rem;
	font-weight: 900;
}


.member-login-preview-title i {
	color: #008cff;
}


.member-field {
	margin-bottom: 18px;
}


.member-field label {
	display: block;

	margin-bottom: 8px;

	color:
		rgba(255, 255, 255, 0.76);

	font-size: 0.8rem;
	font-weight: 800;
}


.member-input {
	display: flex;

	width: 100%;
	min-height: 54px;

	border:
		1px solid rgba(255, 255, 255, 0.12);

	border-radius: 11px;

	background:
		rgba(0, 0, 0, 0.32);

	align-items: center;
}


.member-input i {
	width: 48px;

	color:
		rgba(0, 140, 255, 0.75);

	text-align: center;
}


.member-input input {
	width: 100%;
	height: 52px;

	padding: 0 16px 0 0;

	border: 0;

	outline: 0;

	background: transparent;

	color:
		rgba(255, 255, 255, 0.50);

	font: inherit;
}


.member-input input::placeholder {
	color:
		rgba(255, 255, 255, 0.28);
}


.member-login-button {
	display: flex;

	width: 100%;
	min-height: 54px;

	margin-top: 22px;

	border:
		1px solid rgba(0, 140, 255, 0.30);

	border-radius: 11px;

	background:
		rgba(0, 140, 255, 0.11);

	color:
		rgba(255, 255, 255, 0.58);

	align-items: center;
	justify-content: center;

	font: inherit;

	font-size: 0.9rem;
	font-weight: 900;

	cursor: not-allowed;
}


.member-note {
	position: relative;

	margin: 28px auto 0;

	color:
		rgba(255, 255, 255, 0.40);

	font-size: 0.78rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

.member-footer {
	display: flex;

	width: 100%;

	padding: 21px 32px;

	border-top:
		1px solid rgba(255, 255, 255, 0.07);

	background:
		#030507;

	color:
		rgba(255, 255, 255, 0.36);

	justify-content: space-between;

	font-size: 0.72rem;
	font-weight: 700;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

	.member-features {
		grid-template-columns: 1fr;
		max-width: 760px;
	}

	.member-feature {
		min-height: auto;
	}

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

	.member-header {
		min-height: 65px;

		padding:
			13px 16px;
	}


	.member-header-label {
		font-size: 0.62rem;

		letter-spacing: 0.12em;
	}


	.member-back {
		font-size: 0.74rem;
	}


	.member-login-card {
		min-height:
			calc(100vh - 65px);

		padding:
			45px 16px 60px;
	}


	.member-login-card h1 {
		font-size:
			clamp(2.8rem, 15vw, 4rem);
	}


	.member-icon {
		width: 68px;
		height: 68px;

		font-size: 1.55rem;
	}


	.member-intro {
		margin-bottom: 38px;

		font-size: 0.94rem;
	}


	.member-features {
		margin-bottom: 38px;

		grid-template-columns: 1fr;

		gap: 12px;
	}


	.member-feature {
		padding: 18px;
	}


	.member-login-preview {
		padding:
			24px 17px;

		border-radius: 15px;
	}


	.member-footer {
		padding:
			17px 16px;

		flex-direction: column;

		gap: 6px;

		text-align: center;
	}

}



/* =========================================================
   REGISTRIERUNG
   ========================================================= */

.member-register-main {
	width: 100%;
	padding: 70px 5vw 90px;

	flex: 1;
}


.member-register-section {
	width: min(1200px, 100%);
	margin: 0 auto;
}


.member-register-heading {
	margin-bottom: 55px;

	text-align: center;
}


.member-register-heading h1 {
	margin: 0 0 18px;

	color: #ffffff;

	font-size: clamp(2.8rem, 7vw, 5rem);
	font-weight: 900;

	letter-spacing: -0.04em;

	line-height: 1;
}


.member-register-heading p {
	max-width: 650px;

	margin: 0 auto;

	color: rgba(255, 255, 255, 0.65);

	font-size: 1rem;
	line-height: 1.7;
}


.member-register-layout {
	display: grid;

	grid-template-columns:
		minmax(0, 0.9fr)
		minmax(400px, 1.1fr);

	gap: 45px;

	align-items: start;
}


/* Linke Seite */

.member-register-info {
	padding: 35px;
}


.member-register-info-kicker {
	display: inline-block;

	margin-bottom: 12px;

	color: #008cff;

	font-size: 0.76rem;
	font-weight: 900;

	letter-spacing: 0.16em;

	text-transform: uppercase;
}


.member-register-info h2 {
	margin: 0 0 18px;

	color: #ffffff;

	font-size: clamp(2rem, 4vw, 3rem);

	line-height: 1.1;
}


.member-register-info > p {
	margin: 0 0 32px;

	color: rgba(255, 255, 255, 0.62);

	line-height: 1.7;
}


.member-register-benefits {
	display: grid;

	gap: 14px;
}


.member-register-benefit {
	display: flex;

	padding: 18px;

	border:
		1px solid rgba(255, 255, 255, 0.09);

	border-radius: 14px;

	background:
		rgba(255, 255, 255, 0.025);

	align-items: center;

	gap: 15px;
}


.member-register-benefit > i {
	display: grid;

	width: 46px;
	height: 46px;

	border:
		1px solid rgba(0, 140, 255, 0.28);

	border-radius: 11px;

	background:
		rgba(0, 140, 255, 0.09);

	color: #008cff;

	flex-shrink: 0;

	place-items: center;
}


.member-register-benefit strong {
	display: block;

	margin-bottom: 4px;

	color: #ffffff;

	font-size: 0.9rem;
}


.member-register-benefit span {
	display: block;

	color:
		rgba(255, 255, 255, 0.52);

	font-size: 0.78rem;

	line-height: 1.45;
}


/* Formular */

.member-register-form-card {
	padding: 34px;

	border:
		1px solid rgba(0, 140, 255, 0.30);

	border-radius: 20px;

	background:
		linear-gradient(
			145deg,
			rgba(0, 0, 0, 0.42),
			rgba(7, 18, 27, 0.58)
		);

	box-shadow:
		0 22px 50px rgba(0, 0, 0, 0.30);
}


.member-register-form-title {
	display: flex;

	margin-bottom: 28px;

	align-items: center;

	gap: 13px;
}


.member-register-form-title > i {
	display: grid;

	width: 46px;
	height: 46px;

	border:
		1px solid rgba(0, 140, 255, 0.30);

	border-radius: 11px;

	background:
		rgba(0, 140, 255, 0.09);

	color: #008cff;

	place-items: center;
}


.member-register-form-title strong {
	display: block;

	margin-bottom: 3px;

	color: #ffffff;

	font-size: 1rem;
}


.member-register-form-title span {
	display: block;

	color:
		rgba(255, 255, 255, 0.45);

	font-size: 0.76rem;
}


.member-register-checkbox {
	display: flex;

	margin-top: 22px;

	align-items: flex-start;

	gap: 11px;

	cursor: pointer;
}


.member-register-checkbox input {
	margin-top: 3px;

	accent-color: #008cff;
}


.member-register-checkbox span {
	color:
		rgba(255, 255, 255, 0.56);

	font-size: 0.76rem;

	line-height: 1.5;
}


.member-register-submit {
	display: flex;

	width: 100%;
	min-height: 54px;

	margin-top: 25px;

	padding: 12px 20px;

	border:
		1px solid rgba(0, 140, 255, 0.38);

	border-radius: 11px;

	background:
		rgba(0, 140, 255, 0.12);

	color:
		rgba(255, 255, 255, 0.65);

	align-items: center;
	justify-content: center;

	gap: 9px;

	font: inherit;

	font-size: 0.9rem;
	font-weight: 900;

	cursor: pointer;
}


.member-register-login-link {
	margin-top: 24px;

	padding-top: 22px;

	border-top:
		1px solid rgba(255, 255, 255, 0.08);

	color:
		rgba(255, 255, 255, 0.48);

	font-size: 0.8rem;

	text-align: center;
}


.member-register-login-link a {
	margin-left: 5px;

	color: #008cff;

	font-weight: 800;

	text-decoration: none;
}


.member-register-login-link a:hover {
	text-decoration: underline;
}


@media (max-width: 850px) {

	.member-register-main {
		padding:
			50px 20px 70px;
	}


	.member-register-layout {
		grid-template-columns: 1fr;

		gap: 25px;
	}


	.member-register-info {
		padding: 10px 0;
	}


	.member-register-form-card {
		width: min(650px, 100%);

		margin: 0 auto;
	}

}


@media (max-width: 600px) {

	.member-register-main {
		padding:
			40px 15px 60px;
	}


	.member-register-heading {
		margin-bottom: 38px;
	}


	.member-register-form-card {
		padding:
			25px 17px;

		border-radius: 16px;
	}

}

/* =========================================================
   INPUT-FELDER IMMER DUNKEL
   ========================================================= */

.member-input {
	background: #05080c;
}


.member-input input {
	background: #05080c !important;
	color: #ffffff !important;

	-webkit-text-fill-color: #ffffff;

	caret-color: #008cff;
}


/* Fokus */

.member-input:focus-within {
	border-color: rgba(0, 140, 255, 0.75);

	background: #05080c;

	box-shadow:
		0 0 0 3px rgba(0, 140, 255, 0.08);
}


.member-input input:focus {
	background: #05080c !important;
	color: #ffffff !important;

	outline: none;
}


/* Chrome / Opera / Edge Autofill */

.member-input input:-webkit-autofill,
.member-input input:-webkit-autofill:hover,
.member-input input:-webkit-autofill:focus,
.member-input input:-webkit-autofill:active {
	-webkit-text-fill-color: #ffffff !important;

	-webkit-box-shadow:
		0 0 0 1000px #05080c inset !important;

	box-shadow:
		0 0 0 1000px #05080c inset !important;

	caret-color: #008cff !important;

	transition:
		background-color 9999s ease-out 0s;
}

.member-login-button-active {
	cursor: pointer !important;
	pointer-events: auto !important;

	color: #ffffff;

	background:
		rgba(0, 140, 255, 0.15);
}


.member-login-button-active:hover {
	transform: translateY(-2px);

	border-color: #008cff;

	background: #008cff;

	box-shadow:
		0 12px 28px rgba(0, 140, 255, 0.22);
}

.member-header-actions {
	display: flex;

	align-items: center;

	gap: 18px;
}


.member-logout {
	display: inline-flex;

	padding:
		9px 14px;

	border:
		1px solid rgba(255, 255, 255, 0.12);

	border-radius: 9px;

	background:
		rgba(255, 255, 255, 0.035);

	color:
		rgba(255, 255, 255, 0.72);

	align-items: center;

	gap: 8px;

	font-size: 0.78rem;
	font-weight: 800;

	text-decoration: none;

	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease;
}


.member-logout:hover {
	border-color:
		rgba(255, 80, 80, 0.55);

	background:
		rgba(255, 80, 80, 0.08);

	color: #ff8b8b;
}


@media (max-width: 600px) {

	.member-header-actions {
		gap: 8px;
	}


	.member-header-label {
		display: none;
	}


	.member-logout {
		padding:
			8px 10px;

		font-size: 0.72rem;
	}

}

/* =========================================================
   MEMBER DASHBOARD
   ========================================================= */

.member-dashboard {
	width: 100%;

	padding:
		55px 0 80px;

	flex: 1;
}


.member-dashboard-welcome {
	width:
		min(1100px, calc(100% - 48px));

	margin:
		0 auto 38px;

	text-align: left;
}


.member-dashboard-welcome h1 {
	margin:
		7px 0 12px;

	color: #ffffff;

	font-size:
		clamp(2.5rem, 6vw, 4.5rem);

	font-weight: 900;

	letter-spacing:
		-0.04em;
}


.member-dashboard-welcome p {
	margin:
		0 auto;

	color:
		rgba(255, 255, 255, 0.62);

	font-size:
		1rem;

	line-height:
		1.7;
}


/* =========================================================
   EXKLUSIVE HÖRPROBE
   ========================================================= */

.thorty-exclusive-preview-section {
	padding:
		20px 24px 70px;
}


.thorty-exclusive-preview-inner {
	display: grid;

	width:
		min(1100px, 100%);

	margin:
		0 auto;

	padding:
		34px;

	border:
		1px solid rgba(0, 140, 255, 0.38);

	border-radius:
		22px;

	background:
		radial-gradient(
			circle at top right,
			rgba(0, 140, 255, 0.13),
			transparent 42%
		),
		linear-gradient(
			135deg,
			rgba(0, 140, 255, 0.08),
			rgba(255, 255, 255, 0.025)
		);

	box-shadow:
		0 22px 55px rgba(0, 0, 0, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.05);

	grid-template-columns:
		minmax(260px, 390px)
		minmax(0, 1fr);

	gap:
		48px;

	align-items:
		center;
}


.thorty-exclusive-preview-cover {
	position:
		relative;
}


.thorty-exclusive-preview-cover img {
	display:
		block;

	width:
		100%;

	border-radius:
		16px;

	box-shadow:
		0 18px 45px rgba(0, 0, 0, 0.42);
}


.thorty-exclusive-preview-badge {
	position:
		absolute;

	top:
		16px;

	left:
		16px;

	padding:
		8px 13px;

	border:
		1px solid rgba(0, 140, 255, 0.5);

	border-radius:
		999px;

	background:
		rgba(0, 0, 0, 0.8);

	color:
		#ffffff;

	font-size:
		0.75rem;

	font-weight:
		800;

	letter-spacing:
		0.08em;

	text-transform:
		uppercase;
}


.thorty-exclusive-preview-kicker {
	display:
		inline-block;

	margin-bottom:
		12px;

	color:
		#008cff;

	font-size:
		0.82rem;

	font-weight:
		800;

	letter-spacing:
		0.14em;

	text-transform:
		uppercase;
}


.thorty-exclusive-preview-content h2 {
	margin:
		0 0 14px;

	color:
		#ffffff;

	font-size:
		clamp(2.2rem, 6vw, 4rem);

	line-height:
		1.05;
}


.thorty-exclusive-preview-description {
	margin:
		0 0 18px;

	color:
		rgba(255, 255, 255, 0.9);

	font-size:
		1.08rem;

	font-weight:
		600;

	line-height:
		1.7;
}


.thorty-exclusive-preview-content p {
	margin:
		0 0 18px;

	color:
		rgba(255, 255, 255, 0.72);

	font-size:
		1rem;

	line-height:
		1.75;
}


.thorty-exclusive-preview-note {
	display:
		inline-flex;

	margin:
		4px 0 24px;

	padding:
		9px 14px;

	border:
		1px solid rgba(0, 140, 255, 0.35);

	border-radius:
		999px;

	background:
		rgba(0, 140, 255, 0.10);

	color:
		#ffffff;

	font-size:
		0.85rem;

	font-weight:
		700;
}


.thorty-exclusive-preview-website-note {
	margin:
		0 0 12px;

	color:
		#008cff;

	font-size:
		0.9rem;

	font-weight:
		800;
}


.thorty-exclusive-preview-listens {
	display:
		flex;

	width:
		100%;

	min-height:
		54px;

	margin-top:
		14px;

	padding:
		11px 16px;

	border:
		1px solid rgba(0, 140, 255, 0.38);

	border-radius:
		14px;

	background:
		linear-gradient(
			135deg,
			rgba(0, 140, 255, 0.14),
			rgba(255, 255, 255, 0.025)
		);

	align-items:
		center;

	justify-content:
		center;

	gap:
		7px;
}


.thorty-exclusive-preview-listens-icon {
	display:
		grid;

	width:
		30px;

	height:
		30px;

	border:
		1px solid rgba(0, 140, 255, 0.35);

	border-radius:
		50%;

	background:
		rgba(0, 140, 255, 0.12);

	place-items:
		center;
}


.thorty-exclusive-preview-listens-label {
	color:
		rgba(255, 255, 255, 0.78);

	font-size:
		0.88rem;

	font-weight:
		700;
}


.thorty-exclusive-preview-listens strong {
	color:
		#008cff;

	font-size:
		1.05rem;

	font-weight:
		900;
}


.thorty-exclusive-preview-status-row {
	display:
		flex;

	margin:
		4px 0 18px;

	gap:
		12px;

	align-items:
		center;

	flex-wrap:
		wrap;
}


.thorty-exclusive-preview-status-row
.thorty-exclusive-preview-note {
	margin:
		0;
}


.thorty-exclusive-preview-premiere-button {
	display:
		inline-flex;

	min-height:
		38px;

	padding:
		8px 14px;

	border:
		1px solid #008cff;

	border-radius:
		999px;

	background:
		rgba(0, 140, 255, 0.10);

	color:
		#ffffff;

	align-items:
		center;

	justify-content:
		center;

	font-size:
		0.82rem;

	font-weight:
		800;

	text-decoration:
		none;
}


.thorty-exclusive-preview-premiere-button:hover {
	transform:
		translateY(-2px);

	background:
		#008cff;
}


/* COUNTDOWN */

.thorty-exclusive-preview-countdown {
	margin:
		8px 0 24px;

	padding:
		14px 18px;

	border:
		1px solid rgba(0, 140, 255, 0.35);

	border-radius:
		16px;

	background:
		rgba(0, 140, 255, 0.06);

	text-align:
		center;
}


.thorty-exclusive-preview-countdown-title {
	margin-bottom:
		10px;

	color:
		#ffffff;

	font-size:
		0.85rem;

	font-weight:
		800;

	letter-spacing:
		0.08em;

	text-transform:
		uppercase;
}


.thorty-exclusive-preview-countdown-grid {
	display:
		grid;

	grid-template-columns:
		repeat(4, minmax(0, 1fr));

	gap:
		10px;
}


.thorty-exclusive-preview-countdown-item {
	padding:
		10px 8px;

	border:
		1px solid rgba(0, 140, 255, 0.32);

	border-radius:
		12px;

	background:
		rgba(0, 0, 0, 0.18);
}


.thorty-exclusive-preview-countdown-value {
	display:
		block;

	color:
		#ffffff;

	font-size:
		1.8rem;

	font-weight:
		900;

	line-height:
		1;
}


.thorty-exclusive-preview-countdown-label {
	display:
		block;

	margin-top:
		6px;

	color:
		#008cff;

	font-size:
		0.68rem;

	font-weight:
		800;

	text-transform:
		uppercase;
}


/* PLAYER */

.thorty-exclusive-preview-player {
	width:
		100%;

	height:
		54px;

	margin-bottom:
		24px;

	border:
		1px solid rgba(0, 140, 255, 0.35);

	border-radius:
		999px;

	background:
		rgba(0, 140, 255, 0.10);

	color-scheme:
		dark;
}


/* MOBILE */

@media (max-width: 800px) {

	.thorty-exclusive-preview-section {
		padding:
			20px 15px 52px;
	}


	.thorty-exclusive-preview-inner {
		padding:
			28px;

		grid-template-columns:
			1fr;

		gap:
			38px;
	}


	.thorty-exclusive-preview-cover {
		width:
			min(420px, 100%);

		margin:
			0 auto;
	}


	.thorty-exclusive-preview-content {
		text-align:
			center;
	}


	.thorty-exclusive-preview-status-row {
		justify-content:
			center;
	}

}


@media (max-width: 600px) {

	.member-dashboard {
		padding-top:
			38px;
	}


	.member-dashboard-welcome {
		width:
			calc(100% - 30px);
	}


	.thorty-exclusive-preview-countdown {
		padding:
			12px;
	}


	.thorty-exclusive-preview-countdown-grid {
		gap:
			7px;
	}


	.thorty-exclusive-preview-countdown-item {
		padding:
			9px 5px;
	}


	.thorty-exclusive-preview-countdown-value {
		font-size:
			1.45rem;
	}


	.thorty-exclusive-preview-countdown-label {
		font-size:
			0.58rem;
	}

}

.member-dashboard-logo {
	display: block;

	width: 220px;
	height: 220px;

	margin:
		0 0 28px 0;

	border-radius: 50%;

	object-fit: cover;

	box-shadow:
		0 0 35px rgba(0, 140, 255, 0.30);

	filter:
		drop-shadow(
			0 10px 28px rgba(0, 140, 255, 0.18)
		);
}


@media (max-width: 600px) {

	.member-dashboard-logo {
		width: 160px;
		height: 160px;

		margin-bottom:
			22px;
	}

}


.member-directory-list {
	scrollbar-width: thin;
	scrollbar-color: #0b78c9 #08121a;
}

.member-directory-list::-webkit-scrollbar {
	width: 8px;
}

.member-directory-list::-webkit-scrollbar-track {
	background: #08121a;
	border-radius: 10px;
}

.member-directory-list::-webkit-scrollbar-thumb {
	background: linear-gradient(
		180deg,
		#008cff,
		#005a9e
	);
	border: 2px solid #08121a;
	border-radius: 10px;
}

.member-directory-list::-webkit-scrollbar-thumb:hover {
	background: #008cff;
}




.member-news-audio-box {
	margin-top: 18px;
	padding: 14px 16px;
	border: 1px solid rgba(0, 140, 255, 0.18);
	border-radius: 16px;
	background:
		linear-gradient(
			145deg,
			rgba(0, 140, 255, 0.06),
			rgba(255, 255, 255, 0.015)
		);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.03),
		0 10px 24px rgba(0, 0, 0, 0.18);
}

.member-news-audio-label {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
	color: #58b7ff;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.03em;
}

.member-news-audio-label i {
	color: #1c95ff;
	font-size: 0.95rem;
}

.member-news-audio-player {
	display: block;
	width: 100%;
	height: 44px;
	border: 1px solid rgba(0, 140, 255, 0.22);
	border-radius: 999px;
	background: #0b1722;
	color-scheme: dark;
}

.member-news-audio-player:focus {
	outline: none;
}

/* Chrome / Edge / Opera */
.member-news-audio-player::-webkit-media-controls-panel {
	background: #0b1722;
	border-radius: 999px;
}

.member-news-audio-player::-webkit-media-controls-play-button {
	border-radius: 50%;
	background-color: rgba(0, 140, 255, 0.18);
	filter: invert(1);
}

.member-news-audio-player::-webkit-media-controls-mute-button {
	filter: invert(1);
}

.member-news-audio-player::-webkit-media-controls-current-time-display,
.member-news-audio-player::-webkit-media-controls-time-remaining-display {
	color: #ffffff;
	font-weight: 700;
	text-shadow: none;
}

.member-news-audio-player::-webkit-media-controls-timeline {
	border-radius: 999px;
	filter: invert(1);
}

.member-news-audio-player::-webkit-media-controls-volume-slider {
	filter: invert(1);
}

.member-dashboard-hero {
	display: grid;
	width: min(1400px, calc(100% - 48px));
	margin: 0 auto 34px;
	padding: 34px;
	border: 1px solid rgba(0, 140, 255, 0.28);
	border-radius: 22px;
	background:
		linear-gradient(
			135deg,
			rgba(0, 140, 255, 0.13),
			rgba(0, 140, 255, 0.035)
		);
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 38px;
	align-items: center;
	box-sizing: border-box;
}

.member-dashboard-hero-logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.member-dashboard-hero .member-dashboard-logo {
	width: 190px;
	height: 190px;
	margin: 0;
	border-radius: 50%;
	object-fit: cover;
	box-shadow:
		0 0 0 1px rgba(0, 140, 255, 0.28),
		0 18px 38px rgba(0, 0, 0, 0.38),
		0 0 34px rgba(0, 140, 255, 0.12);
}

.member-dashboard-hero-content {
	text-align: left;
}

.member-dashboard-hero-content .member-kicker {
	display: inline-block;
	margin-bottom: 10px;
}

.member-dashboard-hero-content h1 {
	margin: 0 0 13px;
	color: #ffffff;
	font-size: clamp(2rem, 4.6vw, 3.6rem);
	line-height: 1.05;
}

.member-dashboard-hero-content > p {
	max-width: 780px;
	margin: 0;
	color: rgba(255, 255, 255, 0.68);
	font-size: 1rem;
	line-height: 1.7;
}

.member-hero-tags {
	display: flex;
	margin-top: 20px;
	gap: 9px;
	flex-wrap: wrap;
}

.member-hero-tags span {
	display: inline-flex;
	padding: 8px 11px;
	border: 1px solid rgba(0, 140, 255, 0.24);
	border-radius: 999px;
	background: rgba(0, 140, 255, 0.07);
	align-items: center;
	gap: 7px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.77rem;
	font-weight: 800;
}

.member-hero-tags i {
	color: #008cff;
}

@media (max-width: 950px) {

	.member-dashboard-hero {
		grid-template-columns: 170px minmax(0, 1fr);
		gap: 28px;
	}

	.member-dashboard-hero .member-dashboard-logo {
		width: 150px;
		height: 150px;
	}

}

@media (max-width: 700px) {

	.member-dashboard-hero {
		width: calc(100% - 30px);
		padding: 22px 18px;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.member-dashboard-hero-logo {
		justify-content: flex-start;
	}

	.member-dashboard-hero .member-dashboard-logo {
		width: 125px;
		height: 125px;
	}

	.member-dashboard-hero-content h1 {
		font-size: 2rem;
	}

}


.member-footer-expanded {
	display: grid;
	width: 100%;
	padding: 30px 32px;
	border-top: 1px solid rgba(0, 140, 255, 0.16);
	background:
		linear-gradient(
			135deg,
			rgba(0, 140, 255, 0.035),
			rgba(0, 0, 0, 0.18)
		);
	grid-template-columns:
		minmax(280px, 1.2fr)
		minmax(380px, 1fr)
		minmax(220px, 0.8fr);
	align-items: center;
	gap: 32px;
	box-sizing: border-box;
}


/* LINKER BEREICH */

.member-footer-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.member-footer-title {
	display: block;
	margin-bottom: 7px;
	color: #008cff;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.member-footer-brand p {
	max-width: 430px;
	margin: 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 0.78rem;
	line-height: 1.6;
}

.member-footer-copyright {
	display: block;
	margin-top: 11px;
	color: rgba(255, 255, 255, 0.27);
	font-size: 0.68rem;
	font-weight: 700;
}


/* MITTLERE NAVIGATION */

.member-footer-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.member-footer-navigation a {
	display: inline-flex;
	padding: 8px 11px;
	border: 1px solid rgba(0, 140, 255, 0.22);
	border-radius: 999px;
	background: rgba(0, 140, 255, 0.055);
	color: rgba(255, 255, 255, 0.68);
	align-items: center;
	gap: 7px;
	text-decoration: none;
	font-size: 0.72rem;
	font-weight: 800;
	transition:
		border-color 0.18s ease,
		background 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease;
}

.member-footer-navigation a i {
	color: #008cff;
}

.member-footer-navigation a:hover {
	border-color: rgba(0, 140, 255, 0.52);
	background: rgba(0, 140, 255, 0.12);
	color: #ffffff;
	transform: translateY(-1px);
}


/* RECHTER ACCOUNT-BEREICH */

.member-footer-account {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	text-align: right;
}

.member-footer-account-label {
	margin-bottom: 4px;
	color: rgba(255, 255, 255, 0.34);
	font-size: 0.66rem;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.member-footer-username {
	display: flex;
	color: #ffffff;
	align-items: center;
	gap: 6px;
	font-size: 0.88rem;
}

.member-footer-username i {
	color: #37df7b;
}

.member-footer-member-note {
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.28);
	font-size: 0.67rem;
	font-weight: 700;
}

.member-footer-logout {
	display: inline-flex;
	margin-top: 9px;
	color: #58b7ff;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	font-size: 0.72rem;
	font-weight: 800;
}

.member-footer-logout:hover {
	color: #ffffff;
}


/* TABLET */

@media (max-width: 950px) {

	.member-footer-expanded {
		grid-template-columns: 1fr 1fr;
	}

	.member-footer-navigation {
		grid-column: 1 / -1;
		grid-row: 2;
		justify-content: flex-start;
	}

}


/* HANDY */

@media (max-width: 650px) {

	.member-footer-expanded {
		padding: 25px 18px;
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.member-footer-navigation {
		grid-column: auto;
		grid-row: auto;
		justify-content: flex-start;
	}

	.member-footer-account {
		align-items: flex-start;
		text-align: left;
	}

}

	.member-chat-input-wrapper {
		position: relative;
		width: 100%;
	}


	.member-chat-input-wrapper textarea {
		padding-right: 52px;
	}


	.member-chat-emoji-button {
		position: absolute;
		right: 13px;
		bottom: 13px;
		display: flex;
		width: 30px;
		height: 30px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: transparent;
		color: #58b7ff;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		font-size: 1.05rem;
	}


	.member-chat-emoji-button:hover {
		background: rgba(0, 140, 255, 0.12);
		color: #ffffff;
	}


	.member-chat-emoji-picker {
		position: absolute;
		right: 8px;
		bottom: 58px;
		z-index: 50;
		display: grid;
		width: 250px;
		padding: 12px;
		border: 1px solid rgba(0, 140, 255, 0.28);
		border-radius: 15px;
		background: #08131d;
		box-shadow:
			0 18px 45px rgba(0, 0, 0, 0.55);
		grid-template-columns: repeat(6, 1fr);
		gap: 5px;
	}


	.member-chat-emoji-picker[hidden] {
		display: none;
	}


	.member-chat-emoji-picker button {
		display: flex;
		width: 34px;
		height: 34px;
		padding: 0;
		border: 0;
		border-radius: 8px;
		background: transparent;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		font-size: 1.25rem;
	}


	.member-chat-emoji-picker button:hover {
		background: rgba(0, 140, 255, 0.14);
		transform: scale(1.12);
	}

/* =========================================================
   THORTY MEMBER HEADER TICKER
   ========================================================= */

.member-header {
	position: relative;
	/* MEMBER_HEADER_TICKER_OVERFLOW_FIX_V2 */
        overflow: visible;
}


.member-header-ticker {
	position: absolute;

	left: 260px;
	right: 670px;
	top: 0;
	bottom: 0;

	display: flex;
	align-items: center;

	overflow: hidden;
	white-space: nowrap;

	pointer-events: none;

	mask-image: linear-gradient(
		to right,
		transparent,
		black 5%,
		black 95%,
		transparent
	);
}


.member-header-ticker-track {
	position: absolute;

	top: 50%;
	left: 100%;

	width: max-content;
	min-width: max-content;

	color: rgba(255, 255, 255, 0.88);

	font-family: "Pirata One", serif;
	font-size: 1.15rem;
	font-weight: 400;
	letter-spacing: 0.04em;

	white-space: nowrap;

	animation: thorty-member-ticker 32s linear infinite;

	will-change: left, transform;
}


@keyframes thorty-member-ticker {

	0% {
		left: 100%;
		transform: translate(0, -50%);
	}

	100% {
		left: 0;
		transform: translate(-100%, -50%);
	}

}


.member-header-ticker-track span {
	margin: 0 12px;
	color: #008cff;
}


/* Handy */
@media (max-width: 900px) {

	.member-header-ticker {
		display: none;
	}

}

/* =========================================================
   MEMBER FOOTER – KOMPAKTE 2-SPALTEN-VERSION
   ========================================================= */

.member-footer-expanded {
	position: relative;
	display: grid;

	width: 100%;

	padding:
	30px
	clamp(24px, 4vw, 70px);

	border-top:
	1px solid rgba(0, 140, 255, 0.22);

	background:
	radial-gradient(
		circle at 75% 0%,
		rgba(0, 140, 255, 0.065),
		transparent 36%
	),
	linear-gradient(
		180deg,
		#04080c,
		#020406
	);

	grid-template-columns:
	minmax(280px, 0.75fr)
	minmax(550px, 1.45fr);

	align-items: center;
	gap: 55px;

	box-sizing: border-box;
}


/* Linker Bereich */

.member-footer-expanded .member-footer-brand {
	min-width: 0;
}

.member-footer-expanded .member-footer-title {
	margin-bottom: 8px;

	color: #008cff;

	font-size: 0.80rem;
	font-weight: 900;

	letter-spacing: 0.15em;
}

.member-footer-expanded .member-footer-brand p {
	max-width: 430px;
	margin: 0;

	color: rgba(255, 255, 255, 0.52);

	font-size: 0.76rem;
	line-height: 1.65;
}

.member-footer-expanded .member-footer-copyright {
	margin-top: 10px;

	color: rgba(255, 255, 255, 0.28);

	font-size: 0.66rem;
}


/* Navigation */

.member-footer-expanded .member-footer-navigation {
	display: grid;

	width: min(850px, 100%);
	margin-left: auto;

	grid-template-columns:
	repeat(4, minmax(0, 1fr));

	gap: 9px;
}

.member-footer-expanded .member-footer-navigation a {
	display: flex;

	min-height: 42px;

	padding:
	9px
	13px;

	border:
	1px solid rgba(0, 140, 255, 0.20);

	border-radius: 11px;

	background:
	rgba(0, 140, 255, 0.045);

	color:
	rgba(255, 255, 255, 0.72);

	align-items: center;
	justify-content: flex-start;

	gap: 8px;

	box-sizing: border-box;

	font-size: 0.72rem;
	font-weight: 800;

	text-decoration: none;
	white-space: nowrap;

	transition:
	border-color 0.18s ease,
	background 0.18s ease,
	color 0.18s ease,
	transform 0.18s ease;
}

.member-footer-expanded .member-footer-navigation a i {
	width: 16px;

	color: #008cff;

	text-align: center;

	flex: 0 0 auto;
}

.member-footer-expanded .member-footer-navigation a:hover {
	border-color:
	rgba(0, 140, 255, 0.52);

	background:
	rgba(0, 140, 255, 0.12);

	color: #ffffff;

	transform: translateY(-1px);
}


/* Tablet */

@media (max-width: 1100px) {

	.member-footer-expanded {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.member-footer-expanded .member-footer-navigation {
		width: 100%;
		margin-left: 0;

		grid-template-columns:
		repeat(3, minmax(0, 1fr));
	}

}


/* Handy */

@media (max-width: 700px) {

	.member-footer-expanded {
		padding:
		25px
		18px;

		gap: 22px;
	}

	.member-footer-expanded .member-footer-navigation {
		grid-template-columns:
		1fr
		1fr;
	}

	.member-footer-expanded .member-footer-navigation a {
		min-height: 40px;

		padding:
		8px
		10px;

		font-size: 0.68rem;

		white-space: normal;
	}

}


@media (max-width: 430px) {

	.member-footer-expanded .member-footer-navigation {
		grid-template-columns: 1fr;
	}

}



/* =========================================================
   MEMBER FOOTER – COMPACT PREMIUM
   ========================================================= */

.member-footer-expanded {
	display: grid;

	width: 100%;

	padding:
	22px
	clamp(24px, 3vw, 48px);

	border-top:
	1px solid rgba(0, 140, 255, 0.18);

	background:
	linear-gradient(
		180deg,
		#04080c,
		#020405
	);

	grid-template-columns:
	minmax(280px, 380px)
	minmax(0, 1fr);

	align-items: center;

	gap: 45px;

	box-sizing: border-box;
}


/* =========================
   LINKER BEREICH
   ========================= */

.member-footer-expanded .member-footer-brand {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
}

.member-footer-expanded .member-footer-title {
	margin: 0 0 5px;

	color: #008cff;

	font-size: 0.76rem;
	font-weight: 900;

	letter-spacing: 0.15em;

	text-transform: uppercase;
}

.member-footer-expanded .member-footer-brand p {
	max-width: 380px;

	margin: 0;

	color:
	rgba(255, 255, 255, 0.45);

	font-size: 0.70rem;

	line-height: 1.5;
}

.member-footer-expanded .member-footer-copyright {
	margin-top: 7px;

	color:
	rgba(255, 255, 255, 0.24);

	font-size: 0.62rem;
	font-weight: 700;
}


/* =========================
   RECHTE NAVIGATION
   ========================= */

.member-footer-expanded .member-footer-navigation {
	display: flex;

	width: 100%;

	margin: 0;

	align-items: center;
	justify-content: flex-end;

	gap:
	5px
	8px;

	flex-wrap: wrap;
}


/* Links bewusst KEINE großen Karten mehr */

.member-footer-expanded .member-footer-navigation a {
	display: inline-flex;

	min-height: 0;

	padding:
	7px
	9px;

	border: 1px solid transparent;

	border-radius: 8px;

	background: transparent;

	color:
	rgba(255, 255, 255, 0.58);

	align-items: center;
	justify-content: center;

	gap: 6px;

	font-size: 0.68rem;
	font-weight: 800;

	text-decoration: none;

	white-space: nowrap;

	transition:
	color 0.18s ease,
	background 0.18s ease,
	border-color 0.18s ease,
	transform 0.18s ease;
}


/* Icons */

.member-footer-expanded .member-footer-navigation a i {
	width: auto;

	color:
	rgba(0, 140, 255, 0.85);

	font-size: 0.72rem;

	text-align: center;
}


/* Hover */

.member-footer-expanded .member-footer-navigation a:hover {
	border-color:
	rgba(0, 140, 255, 0.18);

	background:
	rgba(0, 140, 255, 0.07);

	color: #ffffff;

	transform:
	translateY(-1px);
}

.member-footer-expanded .member-footer-navigation a:hover i {
	color: #008cff;
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1050px) {

	.member-footer-expanded {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.member-footer-expanded .member-footer-navigation {
		justify-content: flex-start;
	}

}


/* =========================
   HANDY
   ========================= */

@media (max-width: 650px) {

	.member-footer-expanded {
		padding:
		20px
		16px;

		gap: 15px;
	}

	.member-footer-expanded .member-footer-navigation {
		gap: 4px;
	}

	.member-footer-expanded .member-footer-navigation a {
		padding:
		6px
		7px;

		font-size: 0.65rem;

		white-space: normal;
	}

}



/* =========================================================
   MEMBER FOOTER – FINAL MIT THORTY LOGO
   ========================================================= */

.member-footer-expanded {
	display: grid;

	width: 100%;

	padding:
	22px
	clamp(28px, 3vw, 50px);

	border-top:
	1px solid rgba(0, 140, 255, 0.20);

	background:
	radial-gradient(
		circle at 88% 50%,
		rgba(0, 140, 255, 0.045),
		transparent 23%
	),
	linear-gradient(
		180deg,
		#04080c,
		#020405
	);

	grid-template-columns:
	minmax(300px, 390px)
	minmax(0, 1fr)
	120px;

	align-items: center;

	gap: 34px;

	box-sizing: border-box;
}


/* =========================
   LINKER BEREICH
   ========================= */

.member-footer-expanded .member-footer-brand {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
}

.member-footer-expanded .member-footer-title {
	margin: 0 0 5px;

	color: #008cff;

	font-size: 0.76rem;
	font-weight: 900;

	letter-spacing: 0.16em;

	text-transform: uppercase;
}

.member-footer-expanded .member-footer-brand p {
	max-width: 390px;

	margin: 0;

	color:
	rgba(255, 255, 255, 0.48);

	font-size: 0.70rem;

	line-height: 1.55;
}

.member-footer-expanded .member-footer-copyright {
	margin-top: 7px;

	color:
	rgba(255, 255, 255, 0.25);

	font-size: 0.62rem;
	font-weight: 700;
}


/* =========================
   NAVIGATION
   ========================= */

.member-footer-expanded .member-footer-navigation {
	display: flex;

	width: 100%;
	margin: 0;

	align-items: center;
	justify-content: center;

	gap:
	4px
	7px;

	flex-wrap: wrap;
}

.member-footer-expanded .member-footer-navigation a {
	display: inline-flex;

	min-height: 0;

	padding:
	7px
	8px;

	border:
	1px solid transparent;

	border-radius: 7px;

	background: transparent;

	color:
	rgba(255, 255, 255, 0.60);

	align-items: center;

	gap: 6px;

	font-size: 0.67rem;
	font-weight: 800;

	text-decoration: none;

	white-space: nowrap;

	transition:
	color 0.18s ease,
	background 0.18s ease,
	border-color 0.18s ease;
}

.member-footer-expanded .member-footer-navigation a i {
	width: auto;

	color:
	rgba(0, 140, 255, 0.90);

	font-size: 0.71rem;
}

.member-footer-expanded .member-footer-navigation a:hover {
	border-color:
	rgba(0, 140, 255, 0.17);

	background:
	rgba(0, 140, 255, 0.065);

	color: #ffffff;
}


/* =========================
   THORTY LOGO RECHTS
   ========================= */

.member-footer-logo {
	display: flex;

	min-width: 0;

	padding-left: 22px;

	border-left:
	1px solid rgba(0, 140, 255, 0.13);

	align-items: center;
	justify-content: center;
}

.member-footer-logo-link {
	display: flex;

	align-items: center;
	justify-content: center;

	text-decoration: none;
}

.member-footer-logo img {
	display: block;

	width: 100%;
	max-width: 185px;

	max-height: 115px;

	object-fit: contain;

	opacity: 0.88;

	filter:
		drop-shadow(
			0 0 16px rgba(0, 140, 255, 0.16)
		);

	transition:
		opacity 0.18s ease,
		transform 0.18s ease,
		filter 0.18s ease;
}

.member-footer-logo-link:hover img {
	opacity: 1;

	transform:
	scale(1.04);

	filter:
	drop-shadow(
		0 0 16px rgba(0, 140, 255, 0.20)
	);
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 1100px) {

	.member-footer-expanded {
		grid-template-columns:
		1fr
		auto;

		gap: 20px;
	}

	.member-footer-expanded .member-footer-brand {
		grid-column: 1;
	}

	.member-footer-expanded .member-footer-navigation {
		grid-column: 1;
		justify-content: flex-start;
	}

	.member-footer-logo {
		grid-column: 2;
		grid-row: 1 / span 2;
	}

}


/* =========================
   HANDY
   ========================= */

@media (max-width: 650px) {

	.member-footer-expanded {
		padding:
		22px
		18px;

		grid-template-columns: 1fr;

		gap: 14px;
	}

	.member-footer-expanded .member-footer-brand,
	.member-footer-expanded .member-footer-navigation,
	.member-footer-logo {
		grid-column: 1;
		grid-row: auto;
	}

	.member-footer-expanded .member-footer-navigation {
		justify-content: flex-start;
	}

	.member-footer-logo {
		padding:
		14px
		0
		0;

		border-left: 0;

		border-top:
		1px solid rgba(0, 140, 255, 0.10);

		justify-content: flex-start;
	}

	.member-footer-logo img {
		max-width: 85px;
		max-height: 55px;
	}

}


/* =========================================================
   VIP MEMBER-DARSTELLUNG – ZENTRAL
   ========================================================= */

/*
 * Nur der Membername übernimmt Farbe und Schrift des VIP.
 */

.thorty-member-display-name {
	color: inherit;
	font-weight: inherit;
}

.thorty-member-display-name.is-vip {
	display: inline;
	font-weight: 400;
	letter-spacing: 0;
	text-shadow: none;
	-webkit-text-stroke: 0;
}


/*
 * Das VIP-Badge bleibt immer neutral und gut lesbar.
 */

.thorty-member-vip-mini {
	display: inline-flex;
	margin-left: 7px;
	padding: 3px 7px;

	border:
		1px solid rgba(255, 205, 82, 0.62);

	border-radius: 999px;

	background:
		rgba(255, 196, 48, 0.10);

	color: #ffd76a;

	align-items: center;
	justify-content: center;
	gap: 4px;

	font-family:
		Arial,
		Helvetica,
		sans-serif !important;

	font-size: 0.60rem;
	font-style: normal;
	font-weight: 900;
	letter-spacing: 0.03em;
	line-height: 1;

	text-shadow: none;
	-webkit-text-stroke: 0;

	white-space: nowrap;
	vertical-align: middle;
}

.thorty-member-vip-mini i {
	color: #ffd76a;

	font-family:
		"Font Awesome 6 Free" !important;

	font-size: 0.56rem;
	font-weight: 900;
}


/* =========================================================
   FEED
   ========================================================= */

.member-feed-author a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.member-feed-author .thorty-member-display-name.is-vip {
	font-size: 1.05rem;
	line-height: 1.25;
}

.member-feed-composer .thorty-member-display-name.is-vip {
	font-size: 0.92rem;
	line-height: 1.25;
}


/* =========================================================
   CHAT
   ========================================================= */

.member-chat-message-head {
	display: flex;
	align-items: center;
	gap: 8px;
}

.member-chat-message-head > a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.member-chat-message-head .thorty-member-display-name.is-vip {
	font-size: 1rem;
	line-height: 1.25;
}


/* =========================================================
   CHAT PRESENCE
   ========================================================= */

.member-chat-presence-name {
	min-width: 0;
}

.member-chat-presence-name.thorty-member-display-name.is-vip {
	font-size: 0.90rem;
	line-height: 1.25;
}


/* =========================================================
   MEMBER ONLINE
   ========================================================= */

.member-directory-name .thorty-member-display-name.is-vip {
	font-size: 0.95rem;
	line-height: 1.25;
}


/* VIP Badge im Feed nicht auf volle Breite ziehen */

.member-feed-composer .thorty-member-vip-mini {
	width: auto !important;
	min-width: 0 !important;
	max-width: max-content !important;

	flex: 0 0 auto !important;

	margin-left: 6px !important;

	padding:
		3px 8px !important;

	white-space: nowrap !important;
}



/* =========================================================
   VIP SCHRIFTART-DROPDOWN – VORSCHAU
   ========================================================= */

.vip-font-preview-default {
	font-family:
		Arial,
		Helvetica,
		sans-serif;
}

.vip-font-preview-rock {
	font-family:
		"Arial Black",
		Arial,
		sans-serif;
	font-weight: 900;
}

.vip-font-preview-serif {
	font-family:
		Georgia,
		"Times New Roman",
		serif;
}

.vip-font-preview-mono {
	font-family:
		"Courier New",
		Courier,
		monospace;
}

.vip-font-preview-oldenglish {
	font-family:
		"Pirata One",
		"Old English Text MT",
		serif;
	font-weight: 400;
	font-size: 1.12rem;
}



/* =========================================================
   VIP SCHRIFTART – CUSTOM DROPDOWN
   ========================================================= */

.vip-font-native-select {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: 0 !important;
	padding: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
	overflow: hidden !important;
}


.vip-font-dropdown {
	position: relative;
	width: 100%;
}


.vip-font-dropdown-trigger {
	display: flex;
	width: 100%;
	min-height: 54px;
	padding: 10px 16px;

	border: 1px solid rgba(0, 140, 255, 0.55);
	border-radius: 12px;

	background: #11171d;
	color: #ffffff;

	align-items: center;
	justify-content: space-between;
	gap: 12px;

	cursor: pointer;
	text-align: left;

	font-size: 1rem;
}


.vip-font-dropdown-trigger i {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.75rem;
	transition: transform 0.18s ease;
}


.vip-font-dropdown.is-open
.vip-font-dropdown-trigger i {
	transform: rotate(180deg);
}


.vip-font-dropdown-menu {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	left: 0;
	z-index: 500;

	display: grid;
	padding: 8px;

	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;

	background: #11171d;

	box-shadow:
		0 20px 45px rgba(0, 0, 0, 0.60);

	gap: 5px;
}


.vip-font-dropdown-menu[hidden] {
	display: none !important;
}


.vip-font-dropdown-option {
	display: flex;
	width: 100%;
	min-height: 48px;
	padding: 9px 13px;

	border: 0;
	border-radius: 9px;

	background: rgba(255, 255, 255, 0.035);
	color: #ffffff;

	align-items: center;

	cursor: pointer;
	text-align: left;

	font-size: 1rem;
}


.vip-font-dropdown-option:hover,
.vip-font-dropdown-option.is-selected {
	background: rgba(0, 140, 255, 0.12);

	box-shadow:
		inset 3px 0 0 #008cff;
}


/* Standard */

.vip-font-preview-default {
	font-family:
		Arial,
		Helvetica,
		sans-serif !important;
}


/* Rock */

.vip-font-preview-rock {
	font-family:
		"Arial Black",
		Arial,
		sans-serif !important;

	font-weight: 900 !important;
}


/* Klassisch */

.vip-font-preview-serif {
	font-family:
		Georgia,
		"Times New Roman",
		serif !important;
}


/* Monospace */

.vip-font-preview-mono {
	font-family:
		"Courier New",
		Courier,
		monospace !important;
}


/* Old English */

.vip-font-preview-oldenglish {
	font-family:
		"Pirata One",
		"Old English Text MT",
		serif !important;

	font-size: 1.30rem !important;
	font-weight: 400 !important;
	letter-spacing: 0.02em !important;
}


/* Native VIP-Schriftart-Auswahl vollständig ausblenden */

.vip-font-native-select {
	display: none !important;
}



/* VIP Vorschau – Handschrift */

.vip-font-preview-handwriting {
	font-family: "Dancing Script", "Segoe Script", "Lucida Handwriting", cursive !important;
	font-size: 1.32rem !important;
	font-weight: 600 !important;
	letter-spacing: 0 !important;
}


/* VIP Vorschau – Elegant */

.vip-font-preview-elegant {
	font-family: "Great Vibes", "Monotype Corsiva", "Segoe Script", "Brush Script MT", cursive !important;
	font-size: 1.55rem !important;
	font-weight: 400 !important;
	letter-spacing: 0.01em !important;
}


/* =========================================================
   THORTY VIP AVATAR FRAMES – GLOBAL
   ========================================================= */

.vip-avatar-frame-neon,
.vip-avatar-frame-gold,
.vip-avatar-frame-electric {
	position: relative;
	isolation: isolate;
	overflow: hidden !important;
	border-radius: 50% !important;
}


/* NEON – stärker, lebendiger, weniger langweilig */

.vip-avatar-frame-neon {
	border-color: transparent !important;

	box-shadow:
		0 0 0 3px #00d8ff,
		0 0 13px rgba(0, 216, 255, 0.85),
		0 0 27px rgba(0, 140, 255, 0.65),
		0 0 42px rgba(117, 57, 255, 0.38);

	animation:
		thortyVipNeonFrame 2s ease-in-out infinite;
}

@keyframes thortyVipNeonFrame {

	0%,
	100% {
		box-shadow:
			0 0 0 2px #00d8ff,
			0 0 10px rgba(0, 216, 255, 0.65),
			0 0 20px rgba(0, 140, 255, 0.45),
			0 0 32px rgba(117, 57, 255, 0.24);
	}

	50% {
		box-shadow:
			0 0 0 3px #38f3ff,
			0 0 17px rgba(0, 229, 255, 1),
			0 0 32px rgba(0, 140, 255, 0.80),
			0 0 52px rgba(117, 57, 255, 0.48);
	}

}


/* GOLD VIP */

.vip-avatar-frame-gold {
	border-color: transparent !important;

	box-shadow:
		0 0 0 3px #ffd65c,
		0 0 13px rgba(255, 214, 92, 0.82),
		0 0 27px rgba(255, 174, 0, 0.56),
		0 0 42px rgba(255, 132, 0, 0.30);

	animation:
		thortyVipGoldFrame 2.5s ease-in-out infinite;
}

@keyframes thortyVipGoldFrame {

	0%,
	100% {
		box-shadow:
			0 0 0 2px #ffc83d,
			0 0 10px rgba(255, 200, 61, 0.62),
			0 0 20px rgba(255, 174, 0, 0.38),
			0 0 30px rgba(255, 132, 0, 0.20);
	}

	50% {
		box-shadow:
			0 0 0 4px #fff1a3,
			0 0 18px rgba(255, 235, 150, 0.95),
			0 0 34px rgba(255, 195, 55, 0.75),
			0 0 52px rgba(255, 153, 0, 0.42);
	}

}


/* ELECTRIC */

.vip-avatar-frame-electric {
	border-color: transparent !important;

	box-shadow:
		0 0 0 3px #7b2cff,
		0 0 14px rgba(123, 44, 255, 0.82),
		0 0 28px rgba(255, 44, 141, 0.52);

	animation:
		thortyVipElectricFrame 1.5s linear infinite;
}

@keyframes thortyVipElectricFrame {

	0% {
		box-shadow:
			0 0 0 3px #00b8ff,
			0 0 16px rgba(0, 184, 255, 0.90),
			0 0 32px rgba(0, 140, 255, 0.45);
	}

	25% {
		box-shadow:
			0 0 0 3px #713cff,
			0 0 18px rgba(113, 60, 255, 0.95),
			0 0 36px rgba(113, 60, 255, 0.48);
	}

	50% {
		box-shadow:
			0 0 0 3px #ff2c8d,
			0 0 18px rgba(255, 44, 141, 0.95),
			0 0 36px rgba(255, 44, 141, 0.48);
	}

	75% {
		box-shadow:
			0 0 0 3px #ff8c18,
			0 0 18px rgba(255, 140, 24, 0.95),
			0 0 36px rgba(255, 140, 24, 0.46);
	}

	100% {
		box-shadow:
			0 0 0 3px #00b8ff,
			0 0 16px rgba(0, 184, 255, 0.90),
			0 0 32px rgba(0, 140, 255, 0.45);
	}

}

/* =========================================================
   THORTY_GLOBAL_SCROLLBAR_SYSTEM_V1

   Standard:
   THORTY-Blau für alle Scrollbars im Memberbereich.

   VIP:
   Gold für member-vip-* Bereiche und VIP-Profilbesucher.
   ========================================================= */


/* ---------------------------------------------------------
   NORMALER MEMBERBEREICH
   Firefox
   --------------------------------------------------------- */

* {
        scrollbar-color:
                #008cff
                #08121a !important;
}


/* ---------------------------------------------------------
   NORMALER MEMBERBEREICH
   Chromium / Chrome / Edge / Opera / Safari
   --------------------------------------------------------- */

*::-webkit-scrollbar-track {
        background:
                #08121a !important;
}

*::-webkit-scrollbar-thumb {
        background:
                #008cff !important;

        border-color:
                #08121a !important;

        border-radius:
                999px;
}

*::-webkit-scrollbar-thumb:hover {
        background:
                #58b7ff !important;
}


/* =========================================================
   VIP SCROLLBARS
   ========================================================= */


/* Firefox */

[class*="member-vip-"],
.member-profile-visitors-list {
        scrollbar-color:
                #ffd45f
                #18140a !important;
}


/* Chromium / Chrome / Edge / Opera / Safari */

[class*="member-vip-"]::-webkit-scrollbar-track,
.member-profile-visitors-list::-webkit-scrollbar-track {
        background:
                #18140a !important;
}

[class*="member-vip-"]::-webkit-scrollbar-thumb,
.member-profile-visitors-list::-webkit-scrollbar-thumb {
        background:
                linear-gradient(
                        180deg,
                        #ffd45f,
                        #b88916
                ) !important;

        border-color:
                #18140a !important;

        border-radius:
                999px;
}

[class*="member-vip-"]::-webkit-scrollbar-thumb:hover,
.member-profile-visitors-list::-webkit-scrollbar-thumb:hover {
        background:
                #ffd45f !important;
}




/* MEMBER_NEWS_IMAGE_GALLERY_V1 */

.member-news-image-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 4px;
}

.member-news-image-gallery.is-single {
    grid-template-columns: minmax(0, 1fr);
}

.member-news-image-link {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.24);
}

.member-news-image-link img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition:
        transform 0.18s ease,
        opacity 0.18s ease;
}

.member-news-image-link:hover img {
    transform: scale(1.015);
    opacity: 0.94;
}

.member-news-image-gallery.is-single
.member-news-image-link img {
    height: auto;
    max-height: 620px;
    object-fit: contain;
}

@media (max-width: 650px) {

    .member-news-image-gallery {
        grid-template-columns: minmax(0, 1fr);
    }

    .member-news-image-link img {
        height: auto;
        max-height: 520px;
        object-fit: contain;
    }
}


/* MEMBER_NEWS_BERND_POSTER_STYLE_V1 */

.member-news-poster {
        display: flex;
        width: 100%;
        margin: 0 0 18px;
        align-items: center;
        gap: 12px;
}

.member-news-poster-avatar {
        position: relative;
        display: flex;
        width: 48px;
        height: 48px;
        border: 2px solid rgba(0, 140, 255, 0.62);
        border-radius: 50%;
        background:
                linear-gradient(
                        145deg,
                        rgba(0, 140, 255, 0.18),
                        rgba(0, 0, 0, 0.35)
                );
        box-shadow:
                0 0 0 3px rgba(0, 140, 255, 0.08),
                0 5px 18px rgba(0, 0, 0, 0.25);
        align-items: center;
        justify-content: center;
        flex: 0 0 48px;
        overflow: hidden;
        text-decoration: none;
}

.member-news-poster-avatar-fallback {
        position: absolute;
        inset: 0;
        display: flex;
        color: #008cff;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
}

.member-news-poster-avatar img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: #0d1620;
        object-fit: cover;
}

.member-news-poster-info {
        min-width: 0;
        display: flex;
        flex: 1 1 auto;
        flex-direction: column;
}

.member-news-poster-name {
        display: inline-block;
        width: fit-content;
        max-width: 100%;
        color: #ffffff;
        font-size: 0.95rem;
        font-weight: 900;
        line-height: 1.25;
        text-decoration: none;
        overflow-wrap: anywhere;
}

.member-news-poster-name:hover {
        color: #58b7ff;
}

.member-news-poster-date {
        display: flex;
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.44);
        align-items: center;
        gap: 6px;
        font-size: 0.72rem;
        font-weight: 600;
}

.member-news-poster-date i {
        color: rgba(0, 140, 255, 0.78);
}

.member-news-poster-pinned {
        display: inline-flex;
        padding: 6px 9px;
        border: 1px solid rgba(0, 140, 255, 0.25);
        border-radius: 999px;
        background: rgba(0, 140, 255, 0.08);
        color: #58b7ff;
        align-items: center;
        gap: 6px;
        flex: 0 0 auto;
        font-size: 0.69rem;
        font-weight: 800;
}

@media (max-width: 650px) {

        .member-news-poster {
                gap: 10px;
        }

        .member-news-poster-avatar {
                width: 44px;
                height: 44px;
                flex-basis: 44px;
        }

        .member-news-poster-name {
                font-size: 0.89rem;
        }

        .member-news-poster-pinned {
                padding: 5px 7px;
        }
}


/* MEMBER_NEWS_BERND_LIBRARY_STYLE_V1 */

.member-news-bernd-library {
        margin-top: 24px;
        padding-top: 22px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.member-news-bernd-library-head {
        display: flex;
        margin-bottom: 15px;
        align-items: center;
        gap: 11px;
}

.member-news-bernd-library-icon {
        display: flex;
        width: 38px;
        height: 38px;
        border: 1px solid rgba(0, 140, 255, 0.28);
        border-radius: 10px;
        background: rgba(0, 140, 255, 0.08);
        color: #008cff;
        align-items: center;
        justify-content: center;
        flex: 0 0 38px;
}

.member-news-bernd-library-head strong {
        display: block;
        color: #ffffff;
        font-size: 0.92rem;
        font-weight: 900;
}

.member-news-bernd-library-head span {
        display: block;
        margin-top: 3px;
        color: rgba(255, 255, 255, 0.45);
        font-size: 0.74rem;
        line-height: 1.35;
}

.member-news-bernd-library-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 11px;
}

.member-news-bernd-library-option {
        position: relative;
        display: block;
        min-width: 0;
        cursor: pointer;
}

.member-news-bernd-library-option > input {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
}

.member-news-bernd-library-card {
        position: relative;
        display: block;
        border: 2px solid rgba(255, 255, 255, 0.08);
        border-radius: 13px;
        background: rgba(255, 255, 255, 0.025);
        overflow: hidden;
        transition:
                border-color 0.16s ease,
                box-shadow 0.16s ease,
                transform 0.16s ease;
}

.member-news-bernd-library-card:hover {
        border-color: rgba(0, 140, 255, 0.42);
        transform: translateY(-2px);
}

.member-news-bernd-library-card img {
        display: block;
        width: 100%;
        aspect-ratio: 4 / 5;
        background: #070c12;
        object-fit: cover;
}

.member-news-bernd-library-caption {
        display: block;
        min-height: 39px;
        padding: 9px 8px;
        color: rgba(255, 255, 255, 0.76);
        font-size: 0.70rem;
        font-weight: 800;
        line-height: 1.25;
        text-align: center;
        overflow-wrap: anywhere;
}

.member-news-bernd-library-check {
        position: absolute;
        top: 7px;
        right: 7px;
        display: flex;
        width: 25px;
        height: 25px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.76);
        color: transparent;
        align-items: center;
        justify-content: center;
        font-size: 0.68rem;
        opacity: 0.72;
}

.member-news-bernd-library-option > input:checked +
.member-news-bernd-library-card {
        border-color: #008cff;
        box-shadow:
                0 0 0 2px rgba(0, 140, 255, 0.12),
                0 0 20px rgba(0, 140, 255, 0.16);
}

.member-news-bernd-library-option > input:checked +
.member-news-bernd-library-card
.member-news-bernd-library-check {
        border-color: #008cff;
        background: #008cff;
        color: #ffffff;
        opacity: 1;
}

.member-news-bernd-library-card.is-none {
        display: flex;
        min-height: 100%;
        aspect-ratio: 4 / 5;
        flex-direction: column;
        align-items: center;
        justify-content: center;
}

.member-news-bernd-library-none-icon {
        display: flex;
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.045);
        color: rgba(255, 255, 255, 0.36);
        align-items: center;
        justify-content: center;
        font-size: 1rem;
}

.member-news-bernd-library-card.is-none
.member-news-bernd-library-caption {
        min-height: auto;
        color: rgba(255, 255, 255, 0.50);
}

.member-news-bernd-library-note {
        margin: 11px 0 0;
        color: rgba(255, 255, 255, 0.38);
        font-size: 0.70rem;
        line-height: 1.45;
}

@media (max-width: 950px) {

        .member-news-bernd-library-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
        }
}

@media (max-width: 650px) {

        .member-news-bernd-library-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 9px;
        }
}


/* MEMBER_NEWS_BERND_LIBRARY_NONE_FIX_V2 */

.member-news-bernd-library-card.is-none {
        width: 100%;
        min-width: 0;
        min-height: 0;
        aspect-ratio: auto;
        justify-content: flex-start;
}

.member-news-bernd-library-card.is-none::before {
        content: "";
        display: block;
        width: 100%;
        aspect-ratio: 4 / 5;
}

.member-news-bernd-library-card.is-none
.member-news-bernd-library-none-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: 0;
        transform: translate(-50%, -90%);
}

.member-news-bernd-library-card.is-none
.member-news-bernd-library-caption {
        width: 100%;
        min-height: 39px;
        padding: 9px 8px;
        box-sizing: border-box;
}


/* MEMBER_NEWS_READ_CONFIRMATION_STYLE_V1 */

.member-news-read-row {
        display: flex;
        width: 100%;
        margin-top: 18px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        align-items: center;
        justify-content: space-between;
        gap: 12px;
}

.member-news-read-form {
        margin: 0;
}

.member-news-read-button {
        display: inline-flex;
        min-height: 36px;
        padding: 7px 13px;
        border: 1px solid rgba(0, 140, 255, 0.30);
        border-radius: 999px;
        background: rgba(0, 140, 255, 0.06);
        color: rgba(255, 255, 255, 0.72);
        align-items: center;
        justify-content: center;
        gap: 7px;
        font-family: inherit;
        font-size: 0.78rem;
        font-weight: 800;
        line-height: 1;
        cursor: pointer;
        transition:
                background 0.18s ease,
                border-color 0.18s ease,
                color 0.18s ease,
                transform 0.18s ease;
}

.member-news-read-button:hover:not(:disabled) {
        border-color: rgba(0, 140, 255, 0.68);
        background: rgba(0, 140, 255, 0.13);
        color: #ffffff;
        transform: translateY(-1px);
}

.member-news-read-button i {
        color: #008cff;
}

.member-news-read-button.is-read {
        border-color: rgba(0, 140, 255, 0.62);
        background: rgba(0, 140, 255, 0.14);
        color: #58b7ff;
}

.member-news-read-button.is-read i {
        color: #58b7ff;
}

.member-news-read-button:disabled {
        opacity: 1;
        cursor: default;
}

.member-news-read-count {
        display: inline-flex;
        color: rgba(255, 255, 255, 0.43);
        align-items: center;
        gap: 6px;
        font-size: 0.73rem;
        font-weight: 600;
}

.member-news-read-count i {
        color: rgba(0, 140, 255, 0.72);
}

.member-news-read-count strong {
        color: rgba(255, 255, 255, 0.74);
        font-weight: 800;
}

@media (max-width: 520px) {

        .member-news-read-row {
                align-items: flex-start;
                flex-direction: column;
                gap: 9px;
        }

}


/* MEMBER_NEWS_READ_CONFIRMATION_AJAX_STYLE_V2 */

.member-news-read-row {
        justify-content: flex-start;
        flex-wrap: wrap;
}

.member-news-read-count {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-left: 2px;
        white-space: nowrap;
}

.member-news-read-count
[data-member-news-read-count] {
        display: inline;
        color: rgba(255, 255, 255, 0.62);
        font-weight: 700;
}

@media (max-width: 520px) {

        .member-news-read-row {
                flex-direction: row;
                align-items: center;
        }

}

/* =========================================================
   MEMBER_GLOBAL_MOBILE_OPTIMIZATION_V1

   Globale Touch-/Handy-Optimierungen.
   Desktop bleibt unverändert.
   ========================================================= */

@media (max-width: 650px) {

        /*
         * Footer:
         * größere Touchflächen + sauberes Umbrechen.
         */

        .member-footer-expanded
        .member-footer-navigation a {

                min-height: 44px !important;

                padding:
                        9px
                        10px !important;

                box-sizing: border-box;

                white-space: normal !important;

                line-height: 1.3;

        }


        /*
         * News "Gelesen":
         * bessere Touchfläche.
         */

        .member-news-read-button {

                min-height: 44px;

                padding:
                        9px
                        14px;

        }


        /*
         * Chat Emoji-Button:
         * Fingerfreundlicher.
         */

        .member-chat-input-wrapper textarea {

                padding-right: 62px;

        }


        .member-chat-emoji-button {

                width: 44px;
                height: 44px;

                right: 8px;
                bottom: 8px;

        }


        /*
         * Emoji-Auswahl:
         * etwas größere Trefferflächen.
         */

        .member-chat-emoji-picker button {

                min-width: 38px;
                min-height: 38px;

        }

}


/*
 * Menschen mit reduzierter Bewegung:
 * keine dauerhaften VIP-Glow-Animationen.
 */

@media (prefers-reduced-motion: reduce) {

        .vip-avatar-frame-neon,
        .vip-avatar-frame-gold,
        .vip-avatar-frame-electric {

                animation: none !important;

        }

}

/* =========================================================
   MEMBER_GLOBAL_MOBILE_FORM_TOUCH_V2

   Verhindert iPhone-Zoom bei Texteingaben
   und verbessert Touchflächen im Feed.
   ========================================================= */

@media (max-width: 650px) {

        /*
         * Safari/iPhone:
         * Texteingaben mindestens 16px.
         */

        .member-input input,

        .member-chat-composer textarea,

        .member-vip-chat-compose textarea,

        .member-feed-textarea,

        .member-feed-comment-textarea,

        .member-profile-field input:not([type="checkbox"]):not([type="color"]):not([type="file"]),

        .member-profile-field textarea,

        .member-profile-field select,

        .member-news-field input[type="text"],

        .member-news-field textarea {

                font-size: 16px !important;

        }


        /*
         * Feed senden:
         * mindestens fingerfreundliche 44px.
         */

        .member-feed-submit {

                min-height: 44px !important;

        }


        /*
         * Feed-Reaktionen:
         * größere Touchfläche.
         */

        .member-feed-reaction-option {

                min-width: 48px !important;

                height: 44px !important;
                min-height: 44px !important;

        }


        /*
         * Kommentar-Emoji:
         * nicht mehr winzige 28px.
         */

        .member-feed-comment-emoji-toggle {

                width: 44px !important;
                height: 44px !important;

                top: 5px !important;
                right: 5px !important;

        }


        /*
         * Platz für den größeren Emoji-Button.
         */

        .member-feed-comment-textarea {

                padding-right: 56px !important;

        }

}


/* =========================================================
   ONLY_MEMBERS_AVATAR_VISUAL_V1

   Einheitlichere und besser erkennbare kleine Profilbilder.
   Große Profilbilder bleiben unverändert.
   ========================================================= */

/* Member online + neu registriert */
.member-directory-avatar {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
}

.member-directory-avatar img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/* Profilbesucher */
.member-profile-visitor-avatar {
    width: 48px !important;
    height: 48px !important;
    flex: 0 0 48px !important;
}

.member-profile-visitor-avatar img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/* Freunde */
.member-profile-friend-avatar {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
}

.member-profile-friend-avatar img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center center !important;
}

/* VIP-Supporter */
.member-vip-supporter-avatar {
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
}

.member-vip-supporter-avatar img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center center !important;
}


/* =========================================================
   ONLY_MEMBERS_AVATAR_SQUARE_FIX_V2
   Kleine Memberbilder immer exakt quadratisch/rund.
   ========================================================= */

/* Member online + neue Mitglieder */
.member-directory-avatar {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;

    flex: 0 0 44px !important;

    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;

    overflow: hidden !important;
    box-sizing: border-box !important;
}

.member-directory-avatar img {
    display: block !important;

    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;

    aspect-ratio: 1 / 1 !important;

    border-radius: 50% !important;

    object-fit: cover !important;
    object-position: 50% 50% !important;

    box-sizing: border-box !important;
}


/* Profilbesucher */
.member-profile-visitor-avatar {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;

    flex: 0 0 48px !important;

    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;

    overflow: hidden !important;
    box-sizing: border-box !important;
}

.member-profile-visitor-avatar img {
    display: block !important;

    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    max-width: 48px !important;
    max-height: 48px !important;

    aspect-ratio: 1 / 1 !important;

    border-radius: 50% !important;

    object-fit: cover !important;
    object-position: 50% 50% !important;

    box-sizing: border-box !important;
}


/* Freunde */
.member-profile-friend-avatar {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;

    flex: 0 0 44px !important;

    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;

    overflow: hidden !important;
    box-sizing: border-box !important;
}

.member-profile-friend-avatar img {
    display: block !important;

    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;

    aspect-ratio: 1 / 1 !important;

    border-radius: 50% !important;

    object-fit: cover !important;
    object-position: 50% 50% !important;

    box-sizing: border-box !important;
}


/* VIP Supporter */
.member-vip-supporter-avatar {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;

    flex: 0 0 46px !important;

    aspect-ratio: 1 / 1 !important;
    border-radius: 50% !important;

    overflow: hidden !important;
    box-sizing: border-box !important;
}

.member-vip-supporter-avatar img {
    display: block !important;

    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    max-width: 46px !important;
    max-height: 46px !important;

    aspect-ratio: 1 / 1 !important;

    border-radius: 50% !important;

    object-fit: cover !important;
    object-position: 50% 50% !important;

    box-sizing: border-box !important;
}

