/* TRANNYPACK style — TS Pantyhose full-screen entry layer.
   Uses site-specific identifiers to avoid Brave cosmetic filtering. */

:root {
	--tph-coral: #f55e44;
	--tph-coral-hover: #ff7159;
	--tph-light: #dacece;
	--tph-white: #ffffff;
	--tph-dark: #171719;
}

html.tph-lock,
body.tph-lock {
	overflow: hidden;
}

body.tph-lock > header,
body.tph-lock > main,
body.tph-lock > footer {
	pointer-events: none;
	user-select: none;
}

.tph_entry {
	position: fixed;
	inset: 0;
	z-index: 2147483646;
	display: grid;
	place-items: center;
	box-sizing: border-box;
	min-height: 100dvh;
	overflow-y: auto;
	padding: clamp(30px, 6vh, 72px) 24px;
	background:
		radial-gradient(circle at 50% 12%, rgba(245, 94, 68, 0.16), transparent 42%),
		linear-gradient(135deg, rgba(23, 23, 25, 0.74), rgba(12, 12, 14, 0.67));
	-webkit-backdrop-filter: blur(11px) brightness(0.58) saturate(0.82);
	backdrop-filter: blur(11px) brightness(0.58) saturate(0.82);
	color: var(--tph-white);
	font-family: "Source Sans Pro", Arial, sans-serif;
}

.tph_entry.is-hidden {
	display: none;
}

.tph_content {
	width: min(850px, 100%);
	margin: auto;
	text-align: center;
}

.tph_logo {
	display: block;
	width: min(400px, 76vw);
	height: auto;
	margin: 0 auto clamp(46px, 7vh, 84px);
	filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.5));
}

.tph_title {
	margin: 0 0 clamp(28px, 4vh, 42px);
	color: var(--tph-white);
	font-size: clamp(32px, 4.6vw, 58px);
	font-weight: 400;
	line-height: 1.08;
	letter-spacing: 0.015em;
	text-transform: uppercase;
	text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.tph_text {
	max-width: 820px;
	margin: 0 auto;
	color: var(--tph-light);
	font-size: clamp(17px, 2vw, 25px);
	font-weight: 400;
	line-height: 1.52;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.tph_actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 42px;
	margin-top: clamp(42px, 6vh, 68px);
}

.tph_enter {
	min-width: min(330px, 100%);
	padding: 16px 36px;
	border: 0;
	background-color: var(--tph-coral);
	color: var(--tph-white);
	font-size: clamp(18px, 2vw, 23px);
	font-weight: 700;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
	cursor: pointer;
	transition: transform 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}

.tph_enter:hover,
.tph_enter:focus-visible {
	transform: translateY(-2px);
	background-color: var(--tph-coral-hover);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
}

.tph_exit {
	appearance: none;
	-webkit-appearance: none;
	padding: 5px 12px;
	border: 0;
	background: transparent;
	color: var(--tph-light);
	font: inherit;
	font-size: clamp(15px, 1.5vw, 18px);
	font-weight: 400;
	cursor: pointer;
}

.tph_exit:hover,
.tph_exit:focus-visible {
	color: var(--tph-coral);
	text-decoration: underline;
}

.tph_enter:focus-visible,
.tph_exit:focus-visible {
	outline: 2px solid var(--tph-white);
	outline-offset: 5px;
}

@media (max-width: 600px) {
	.tph_entry {
		place-items: start center;
		padding: 34px 20px 42px;
		-webkit-backdrop-filter: blur(9px) brightness(0.56) saturate(0.82);
		backdrop-filter: blur(9px) brightness(0.56) saturate(0.82);
	}

	.tph_content {
		margin: auto 0;
	}

	.tph_logo {
		width: min(300px, 78vw);
		margin-bottom: 44px;
	}

	.tph_title {
		margin-bottom: 26px;
	}

	.tph_text {
		font-size: 17px;
		line-height: 1.47;
	}

	.tph_actions {
		gap: 30px;
		margin-top: 38px;
	}

	.tph_enter {
		width: 100%;
		min-width: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tph_enter {
		transition: none;
	}
}
