/* Piece O Cake — Homepage */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: "Nunito", sans-serif;
	color: #fff;
	background: #1a1a1a;
	overflow-x: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

.poc-site {
	position: relative;
	min-height: 100vh;
	isolation: isolate;
}

/* Header */
.poc-header {
	position: relative;
	z-index: 20;
	background: linear-gradient(180deg, #7a0f4a 0%, #8b1458 100%);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
	overflow: visible;
}

.poc-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem 1.5rem;
	max-width: 100%;
	margin: 0;
	padding: 0.65rem 1.5rem;
	overflow: visible;
}

.poc-header__left {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-width: 0;
	justify-self: start;
	grid-column: 1;
}

.poc-header__center {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	justify-self: center;
	grid-column: 2;
}

.poc-is-subscribed .poc-subscribe-ui {
	display: none !important;
}

.poc-header__right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
	min-width: 0;
	justify-self: end;
	grid-column: 3;
}

.poc-header__translate {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 1.15rem;
}

.poc-header__translate-group {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 0.4rem;
	flex-shrink: 0;
}

.poc-header__translate-option {
	display: inline-flex;
	align-items: center;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	white-space: nowrap;
	transition: opacity 0.2s ease;
}

.poc-header__translate-option:hover {
	opacity: 0.85;
	background: transparent;
}

.poc-header__translate-option.is-active {
	background: transparent;
	border: none;
	box-shadow: none;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.poc-header__translate-label {
	white-space: nowrap;
}

.poc-header__translate-logo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
}

.poc-header__translate-logo-btn:hover,
.poc-header__translate-logo-btn.is-active {
	background: transparent;
	border: none;
	box-shadow: none;
}

.poc-header__translate-logo {
	display: block;
	height: 50px;
	width: auto;
	max-width: 155px;
	margin: -8px 0;
	object-fit: contain;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
	pointer-events: none;
}

.poc-header__access-note {
	margin: 0;
	max-width: 11rem;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
	text-align: left;
}

.poc-nav {
	display: flex;
	justify-content: flex-start;
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.poc-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.poc-nav__list a {
	display: inline-block;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	border: 1px solid transparent;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.poc-nav__list a:hover,
.poc-nav__list .current-menu-item > a,
.poc-nav__list .current_page_item > a,
.poc-nav__list .poc-nav__item--active > a {
	background: rgba(0, 0, 0, 0.28);
	border-color: rgba(0, 0, 0, 0.35);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 4px 12px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.poc-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem;
	flex-shrink: 0;
	margin-right: 0;
}

.poc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	font-weight: 800;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poc-btn--subscribe {
	padding: 0.55rem 1.35rem;
	background: #fff;
	color: #c62828;
	font-size: 0.95rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.poc-btn--subscribe:hover {
	transform: translateY(-1px);
}

.poc-header .poc-btn--subscribe,
.poc-header .poc-btn--subscribe:hover,
.poc-header .poc-btn--subscribe:focus,
.poc-header .poc-btn--subscribe:visited,
.poc-header .poc-btn--subscribe:active {
	background: #fff;
	color: #c62828;
	border: 1px solid transparent;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* Home background */
.poc-home {
	position: relative;
	z-index: 1;
	min-height: calc(100vh - 64px);
	padding: 1.5rem 1.25rem 3rem;
	overflow: visible;
}

.poc-home__bg {
	position: fixed;
	inset: 0;
	background:
		url("../images/bg-pattern.svg") repeat,
		linear-gradient(180deg, #ff9a2e 0%, #ffb347 18%, #c5d94d 55%, #7bc043 100%);
	background-size: 320px 320px, auto;
	z-index: -1;
}

.poc-home__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 45%),
		rgba(0, 0, 0, 0.2);
	pointer-events: none;
}

/* Hero */
.poc-hero {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1180px;
	margin: 0 auto 0.25rem;
	padding-top: 0.25rem;
	min-height: 280px;
}

.poc-hero__title {
	margin: 0 auto 0.85rem;
	padding: 0 1rem;
	width: 100%;
	max-width: 100%;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1.2rem, 2.6vw, 2.15rem);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	white-space: normal;
	color: #fff;
	text-shadow:
		3px 3px 0 #2d1240,
		-1px -1px 0 #2d1240,
		1px -1px 0 #2d1240,
		-1px 1px 0 #2d1240,
		0 6px 18px rgba(0, 0, 0, 0.25);
}

.poc-hero__content {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 2rem;
	padding: 0 2.5rem;
	margin-top: 0.15rem;
	max-width: 1180px;
	width: 100%;
}

.poc-hero__puppets {
	position: relative;
	flex-shrink: 0;
	width: min(340px, 27vw);
	margin-right: 0.5rem;
	margin-left: -11rem;
	margin-top: 0.75rem;
	align-self: center;
	pointer-events: none;
}

.poc-hero__puppets::after {
	content: "";
	position: absolute;
	left: 52%;
	bottom: -1.5rem;
	z-index: 0;
	width: 90%;
	height: 2.65rem;
	border-radius: 50%;
	background: radial-gradient(
		ellipse at center,
		rgba(0, 0, 0, 0.48) 0%,
		rgba(0, 0, 0, 0.3) 35%,
		rgba(0, 0, 0, 0.12) 55%,
		rgba(0, 0, 0, 0) 72%
	);
	transform: translateX(-50%) scaleY(0.5);
	filter: blur(5px);
	opacity: 0.9;
}

.poc-hero__puppets-image {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.18));
}

.poc-hero__video-wrap {
	flex-shrink: 0;
	width: min(100%, 420px);
	margin-left: -1.5rem;
}

.poc-youtube {
	position: relative;
	width: 100%;
}

.poc-youtube__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
	border: 4px solid rgba(255, 255, 255, 0.85);
	background: #000;
}

.poc-youtube__trigger {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: transform 0.25s ease;
}

.poc-youtube__trigger:hover {
	transform: scale(1.02);
}

.poc-youtube__trigger img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.poc-youtube__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.poc-hero__play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 58px;
	height: 58px;
	margin: -29px 0 0 -29px;
	border-radius: 50%;
	background: rgba(255, 0, 0, 0.92);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.poc-hero__play::after {
	content: "";
	position: absolute;
	left: 22px;
	top: 17px;
	border-style: solid;
	border-width: 12px 0 12px 20px;
	border-color: transparent transparent transparent #fff;
}

.poc-hero__text {
	flex: 1;
	text-align: left;
	max-width: 980px;
	min-width: 0;
	margin-top: 0.35rem;
	margin-left: -1rem;
}

.poc-hero__subtitle {
	margin: 0;
	font-size: clamp(1.15rem, 2.25vw, 1.45rem);
	font-weight: 800;
	line-height: 1.5;
	max-width: none;
	color: rgba(255, 255, 255, 0.96);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.22);
}

.poc-hero__character {
	position: absolute;
	z-index: 3;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
	pointer-events: none;
}

.poc-hero__character--puppet {
	left: 0;
	top: -10px;
	width: min(220px, 18vw);
}

/* Activity grid */
.poc-grid-section {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1220px;
	margin: -1.25rem auto 0;
	padding: 0 1.25rem 1rem;
	overflow: visible;
}

.poc-grid-outer {
	position: relative;
	max-width: 980px;
	margin: 0 auto;
	overflow: visible;
}

.poc-grid-layout {
	position: relative;
	z-index: 3;
	margin-bottom: 0;
}

.poc-grid__heading {
	margin: 0 0 0.85rem;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1.1rem, 2.2vw, 1.65rem);
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #fff;
	text-shadow:
		2px 2px 0 #2d1240,
		-1px -1px 0 #2d1240,
		1px -1px 0 #2d1240,
		-1px 1px 0 #2d1240,
		0 2px 8px rgba(0, 0, 0, 0.22);
}

.poc-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	width: 100%;
	position: relative;
	z-index: 3;
}

.poc-grid__robot-wrap {
	position: absolute;
	left: calc(100% - 1.25rem);
	top: 56%;
	transform: translateY(-50%);
	z-index: 4;
	width: 260px;
	pointer-events: none;
}

.poc-grid__robot {
	width: 260px;
	max-width: 260px;
	height: auto;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
}

.poc-card {
	position: relative;
	display: block;
	padding: 0;
	border: none;
	border-radius: 18px;
	background: transparent;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poc-card .poc-card__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
}

.poc-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.poc-card:active {
	transform: translateY(-1px) scale(0.99);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.poc-card__image {
	width: 100%;
	height: auto;
	margin: 0;
	opacity: 1;
}

/* Bottom actions */
.poc-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	max-width: 980px;
	margin: 1.35rem auto 0;
	position: relative;
	z-index: 3;
}

.poc-action-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	min-height: 58px;
	padding: 0.65rem 1.25rem;
	border-radius: 999px;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1rem, 1.8vw, 1.45rem);
	font-weight: 700;
	text-transform: uppercase;
	color: #fff;
	box-shadow:
		inset 0 -5px 0 rgba(0, 0, 0, 0.15),
		0 10px 24px rgba(0, 0, 0, 0.22);
	border: 3px solid rgba(255, 255, 255, 0.35);
	transition: transform 0.2s ease;
}

.poc-action-btn:hover {
	transform: translateY(-2px);
}

.poc-action-btn--surprise {
	background: linear-gradient(180deg, #42a5ff 0%, #1565c0 100%);
}

.poc-action-btn--series {
	background: linear-gradient(180deg, #ff5252 0%, #c62828 100%);
}

.poc-action-btn__icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	position: relative;
	flex-shrink: 0;
}

.poc-action-btn__icon::after {
	content: "";
	position: absolute;
	left: 16px;
	top: 11px;
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent #1565c0;
}

/* Fallback page */
.poc-home--fallback .poc-hero--simple {
	padding: 4rem 1rem;
}

.poc-home--fallback .poc-hero__subtitle {
	color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
	.poc-hero__content {
		padding: 0 5rem;
	}

	.poc-grid-outer {
		max-width: 980px;
	}

	.poc-grid__robot-wrap {
		left: calc(100% - 1.75rem);
		width: 200px;
	}

	.poc-grid__robot {
		width: 200px;
		max-width: 200px;
	}

	.poc-actions {
		padding-right: 0;
	}

	.poc-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}
}

@media (max-width: 768px) {
	.poc-header__inner {
		grid-template-columns: 1fr;
		justify-items: stretch;
		gap: 0.75rem;
	}

	.poc-header__left {
		order: 2;
		justify-content: center;
		justify-self: center;
		grid-column: 1;
	}

	.poc-header__center {
		order: 1;
		justify-self: center;
		grid-column: 1;
	}

	.poc-header__right {
		order: 3;
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
		justify-self: center;
		grid-column: 1;
	}

	.poc-header__actions {
		width: auto;
		margin-right: 0;
		justify-content: center;
		flex-wrap: wrap;
	}

	.poc-header__translate {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.65rem 0.85rem;
	}

	.poc-header__translate-group {
		flex-direction: row;
		align-items: center;
	}

	.poc-header__translate-option {
		font-size: 0.72rem;
	}

	.poc-header__translate-logo {
		height: 40px;
		max-width: 122px;
		margin: -6px 0;
	}

	.poc-header__access-note {
		max-width: none;
		text-align: center;
		flex: 1 1 100%;
	}

	.poc-nav {
		width: auto;
	}

	.poc-hero__title {
		font-size: clamp(0.95rem, 3.5vw, 1.35rem);
		white-space: normal;
	}

	.poc-hero__content {
		flex-direction: column;
		padding: 0 1rem;
	}

	.poc-hero__video-wrap {
		margin-left: 0;
	}

	.poc-hero__puppets {
		width: min(270px, 68vw);
		margin-right: 0;
	}

	.poc-grid__robot-wrap,
	.poc-about .poc-about__robot-wrap {
		display: none;
	}

	.poc-actions {
		padding-right: 0;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.poc-nav__list {
		gap: 1rem;
	}

	.poc-grid {
		grid-template-columns: 1fr;
	}
}

/* Inner pages */
.poc-page {
	padding-bottom: 3rem;
}

.poc-page-hero {
	position: relative;
	z-index: 2;
	padding: 2rem 1.5rem 1rem;
}

.poc-page-hero__inner {
	display: flex;
	align-items: center;
	gap: 2rem;
	max-width: 980px;
	margin: 0 auto;
}

.poc-page-hero__media {
	flex-shrink: 0;
	width: min(100%, 420px);
}

.poc-page-hero__image {
	width: 100%;
	border-radius: 24px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.poc-page-hero__content {
	flex: 1;
	min-width: 0;
}

.poc-page-hero__title {
	margin: 0 0 0.85rem;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	line-height: 1.15;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.22);
}

.poc-page-hero__intro {
	margin: 0;
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 700;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.96);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.poc-page-body {
	position: relative;
	z-index: 2;
	padding: 0 1.5rem 1rem;
}

.poc-page-body__inner {
	max-width: 980px;
	margin: 0 auto;
}

.poc-page-body__inner--content {
	padding: 1rem 0 2rem;
	font-size: 1.05rem;
	line-height: 1.65;
	font-weight: 600;
}

.poc-page-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.poc-page-card {
	padding: 1.25rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.92);
	color: #4a154b;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.poc-page-card--compact {
	padding: 1rem;
}

.poc-page-card__media {
	display: flex;
	justify-content: center;
	margin-bottom: 0.85rem;
}

.poc-page-card__media img {
	width: 96px;
	height: 96px;
}

.poc-page-card__title {
	margin: 0 0 0.55rem;
	font-family: "Fredoka", sans-serif;
	font-size: 1.25rem;
	color: #7a0f4a;
}

.poc-page-card__text {
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.55;
	font-weight: 600;
	color: #5b2b5d;
}

.poc-page-card__text a {
	color: #1565c0;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

.poc-page-banner {
	margin-top: 1.5rem;
	text-align: center;
}

.poc-page-banner svg,
.poc-page-banner__image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 24px;
}

.poc-page-banner__text {
	margin: 0.75rem 0 0;
	font-size: 0.92rem;
	font-weight: 700;
	opacity: 0.9;
}

.poc-contact-layout {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.poc-contact-info {
	display: grid;
	gap: 1rem;
}

.poc-contact-form {
	padding: 1.35rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.92);
	color: #4a154b;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.poc-contact-form__title {
	margin: 0 0 1rem;
	font-family: "Fredoka", sans-serif;
	font-size: 1.45rem;
	color: #7a0f4a;
}

.poc-contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 0.9rem;
	font-weight: 700;
}

.poc-contact-form__field input,
.poc-contact-form__field textarea {
	width: 100%;
	padding: 0.75rem 0.9rem;
	border: 2px solid rgba(122, 15, 74, 0.18);
	border-radius: 14px;
	font: inherit;
	color: #4a154b;
	background: #fff;
}

.poc-contact-form__field input:focus,
.poc-contact-form__field textarea:focus {
	outline: none;
	border-color: #7a0f4a;
	box-shadow: 0 0 0 3px rgba(122, 15, 74, 0.12);
}

.poc-contact-form__submit {
	width: 100%;
	margin-top: 0.35rem;
	border: none;
	cursor: pointer;
}

.poc-contact-form__notice {
	margin: 0 0 1rem;
	padding: 0.75rem 0.95rem;
	border-radius: 14px;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.45;
}

.poc-contact-form__notice--success {
	background: rgba(76, 175, 80, 0.16);
	color: #1b5e20;
}

.poc-contact-form__notice--error {
	background: rgba(255, 77, 109, 0.16);
	color: #8b1030;
}

.poc-contact-form .poc-signin__turnstile-wrap {
	display: flex;
	justify-content: flex-start;
	margin: 0 0 0.9rem;
}

.poc-contact-form .poc-signin__turnstile-placeholder {
	margin: 0;
	padding: 0.65rem 0.85rem;
	border-radius: 14px;
	background: rgba(122, 15, 74, 0.08);
	color: #4a154b;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.4;
}

.poc-contact-form .poc-signin__turnstile-dev-note {
	display: none;
}

.poc-contact-faq {
	margin-bottom: 1.75rem;
	padding: 1.35rem 1.5rem 1.5rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.94);
	color: #3d3d3d;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.poc-contact-faq__title {
	margin: 0 0 1.15rem;
	font-family: "Fredoka", sans-serif;
	font-size: 1.55rem;
	color: #7a0f4a;
	text-align: center;
}

.poc-contact-faq__list {
	display: grid;
	gap: 0.75rem;
}

.poc-contact-faq__item {
	border: 1px solid rgba(122, 15, 74, 0.22);
	border-radius: 16px;
	background: #faf7fb;
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.poc-contact-faq__item[open] {
	border-color: rgba(122, 15, 74, 0.38);
	box-shadow: 0 4px 14px rgba(122, 15, 74, 0.08);
	background: #fff;
}

.poc-contact-faq__question {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.85rem;
	padding: 1rem 1.15rem;
	font-family: "Nunito", sans-serif;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.5;
	color: #6b1145;
	cursor: pointer;
	list-style: none;
}

.poc-contact-faq__question::-webkit-details-marker {
	display: none;
}

.poc-contact-faq__question::after {
	content: "+";
	flex-shrink: 0;
	margin-top: 0.1rem;
	font-family: "Fredoka", sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1;
	color: #7a0f4a;
}

.poc-contact-faq__item[open] .poc-contact-faq__question::after {
	content: "−";
}

.poc-contact-faq__item[open] .poc-contact-faq__question {
	color: #7a0f4a;
	border-bottom: 1px solid rgba(122, 15, 74, 0.12);
}

.poc-contact-faq__answer {
	padding: 0.85rem 1.15rem 1.1rem;
	font-family: "Nunito", sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.65;
	color: #3a3a3a;
	white-space: pre-line;
}

/* About page */
.poc-about {
	position: relative;
	z-index: 2;
	padding: 1.25rem 1rem 3rem;
	min-height: calc(100vh - 64px);
}

.poc-about__scene {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.25rem;
	overflow: visible;
}

.poc-about__outer {
	position: relative;
	max-width: 1100px;
	margin: -1rem auto 0;
	overflow: visible;
}

.poc-about__puppet {
	position: absolute;
	z-index: 5;
	top: -0.4rem;
	left: 50%;
	margin-left: calc(-590px - 19rem);
	width: min(540px, 38vw);
	pointer-events: none;
}

.poc-about__puppet::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 2.05rem;
	z-index: 0;
	width: 35%;
	height: 1.35rem;
	border-radius: 50%;
	background: radial-gradient(
		ellipse at center,
		rgba(0, 0, 0, 0.4) 0%,
		rgba(0, 0, 0, 0.22) 42%,
		rgba(0, 0, 0, 0) 72%
	);
	transform: translateX(-50%);
	filter: blur(4px);
}

.poc-about__puppet-image {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
}

.poc-about__wrap {
	position: relative;
	max-width: 1100px;
	margin: 0 auto;
}

.poc-about__panel {
	position: relative;
	overflow: visible;
	line-height: 0;
}

.poc-about__panel-image {
	width: 100%;
	height: auto;
	display: block;
	max-width: 1100px;
	margin: 0 auto;
}

.poc-about__overlay {
	position: absolute;
	inset: 0;
}

.poc-about__header {
	position: absolute;
	top: 8.75%;
	left: 9%;
	right: 9%;
	height: 9.5%;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.poc-about__title {
	position: static;
	width: 100%;
	margin: 0;
	padding: 0 0.35rem;
	box-sizing: border-box;
	text-align: center;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1.05rem, 2.55vw, 2.35rem);
	font-weight: 700;
	line-height: 1.12;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.035em;
	text-shadow:
		-2px -2px 0 #5c2a1a,
		2px -2px 0 #5c2a1a,
		-2px 2px 0 #5c2a1a,
		2px 2px 0 #5c2a1a,
		-1px 0 0 #5c2a1a,
		1px 0 0 #5c2a1a,
		0 -1px 0 #5c2a1a,
		0 1px 0 #5c2a1a,
		0 3px 0 #5c2a1a,
		0 6px 14px rgba(92, 42, 26, 0.35);
}

.poc-about__copy {
	position: absolute;
	top: 20.5%;
	right: 8.5%;
	bottom: 12%;
	left: 45.5%;
	width: auto;
	max-height: none;
	overflow: auto;
	overflow-x: hidden;
	overflow-wrap: normal;
	word-wrap: normal;
	word-break: normal;
	hyphens: none;
	padding: 0.15rem 0.4rem 0.3rem 0.35rem;
	box-sizing: border-box;
}

.poc-about__heading {
	margin: 0 0 0.35rem;
	max-width: 100%;
	overflow-wrap: normal;
	word-wrap: normal;
	word-break: normal;
	hyphens: none;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(0.95rem, 1.55vw, 1.18rem);
	font-weight: 700;
	line-height: 1.15;
	color: #5c2a1a;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.poc-about__heading:not(:first-child) {
	margin-top: 0.85rem;
}

.poc-about__text {
	margin: 0 0 0.5rem;
	max-width: 100%;
	overflow-wrap: normal;
	word-wrap: normal;
	word-break: normal;
	hyphens: none;
	font-size: clamp(0.82rem, 1.22vw, 0.94rem);
	line-height: 1.4;
	font-weight: 700;
	color: #2f2014;
}

html[lang="af"] .poc-about__text,
html[lang="en"] .poc-about__text {
	white-space: pre-line;
}

.poc-about__text:last-of-type {
	margin-bottom: 0.35rem;
}

.poc-about__cta {
	display: inline-block;
	max-width: 100%;
	margin-top: 0.35rem;
	text-align: left;
	text-decoration: none;
	transition: transform 0.2s ease;
}

.poc-about__cta:hover {
	transform: translateY(-2px) scale(1.02);
}

.poc-about__cta-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 1.75rem;
	border-radius: 999px;
	background: linear-gradient(90deg, #f5c842 0%, #f07a8a 55%, #e85a9a 100%);
	color: #fff;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(0.95rem, 1.45vw, 1.15rem);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.poc-about .poc-about__robot-wrap {
	left: calc(100% - 4.5rem);
}

.poc-about__footnote {
	margin: 0.5rem 0 0;
	max-width: 100%;
	overflow-wrap: normal;
	word-wrap: normal;
	word-break: normal;
	hyphens: none;
	font-size: clamp(0.82rem, 1.22vw, 0.94rem);
	line-height: 1.4;
	font-weight: 700;
	color: #2f2014;
	text-align: left;
}

@media (max-width: 1180px) {
	.poc-about__puppet {
		left: max(0.5rem, calc(50% - 16.5rem - min(140px, 16vw)));
		margin-left: -17.5rem;
		width: min(420px, 42vw);
	}
}

@media (max-width: 900px) {
	.poc-about .poc-about__robot-wrap {
		display: none;
	}

	.poc-page-hero__inner,
	.poc-contact-layout,
	.poc-page-grid {
		grid-template-columns: 1fr;
	}

	.poc-page-hero__inner {
		flex-direction: column;
	}

	.poc-page-grid {
		display: grid;
	}
}

@media (max-width: 768px) {
	.poc-about {
		padding: 0.75rem 0.5rem 2rem;
	}

	.poc-about__scene {
		padding: 0 0.35rem;
	}

	.poc-about__outer {
		margin-top: 0;
	}

	.poc-about__puppet {
		top: -0.35rem;
		left: max(0.25rem, calc(50% - 13.5rem - min(100px, 14vw)));
		margin-left: -13.5rem;
		width: min(315px, 38vw);
	}

	.poc-about__overlay {
		position: absolute;
		inset: 0;
	}

	.poc-about__header {
		top: 7.25%;
		left: 6%;
		right: 6%;
		height: auto;
		max-height: 10%;
	}

	.poc-about__title {
		font-size: clamp(0.62rem, 3.6vw, 1rem);
		line-height: 1.06;
		letter-spacing: 0.02em;
	}

	.poc-about__copy {
		position: absolute;
		top: 16%;
		right: 6.5%;
		bottom: 6.5%;
		left: 38%;
		width: auto;
		margin: 0;
		padding: 0 0.12rem;
		background: transparent;
		border-radius: 0;
		overflow-y: auto;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}

	.poc-about__heading {
		font-size: clamp(0.56rem, 2.5vw, 0.8rem);
		margin-bottom: 0.15rem;
		line-height: 1.12;
	}

	.poc-about__heading:not(:first-child) {
		margin-top: 0.35rem;
	}

	.poc-about__text,
	.poc-about__footnote {
		font-size: clamp(0.5rem, 2.1vw, 0.7rem);
		line-height: 1.32;
		margin-bottom: 0.22rem;
	}

	.poc-about__text:last-of-type {
		margin-bottom: 0.2rem;
	}

	.poc-about__cta {
		margin-top: 0.18rem;
	}

	.poc-about__cta-text {
		min-height: 28px;
		padding: 0 0.65rem;
		font-size: clamp(0.5rem, 2.1vw, 0.66rem);
	}

	.poc-about__footnote {
		margin-top: 0.25rem;
	}
}

@media (max-width: 480px) {
	.poc-about__header {
		top: 6.75%;
		left: 5%;
		right: 5%;
		max-height: 11%;
	}

	.poc-about__title {
		font-size: clamp(0.54rem, 4vw, 0.78rem);
	}

	.poc-about__copy {
		top: 15.5%;
		right: 6%;
		bottom: 6%;
		left: 36%;
	}

	.poc-about__heading {
		font-size: clamp(0.52rem, 2.8vw, 0.72rem);
	}

	.poc-about__text,
	.poc-about__footnote {
		font-size: clamp(0.46rem, 2.3vw, 0.62rem);
	}

	.poc-about__cta-text {
		min-height: 24px;
		padding: 0 0.55rem;
		font-size: clamp(0.46rem, 2.3vw, 0.58rem);
	}
}

@media (max-width: 360px) {
	.poc-about__copy {
		left: 34%;
		right: 5.5%;
	}
}

/* Sign In page */
.poc-signin {
	position: relative;
	z-index: 2;
	padding: 1.5rem 1rem 3rem;
	min-height: calc(100vh - 64px);
}

.poc-signin__scene {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.25rem;
	overflow: visible;
}

.poc-signin__outer {
	position: relative;
	max-width: 540px;
	margin: 0 auto;
	overflow: visible;
}

.poc-signin__welcome {
	margin: -0.75rem 0 0.85rem;
	text-align: center;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1.15rem, 2.8vw, 2rem);
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-shadow:
		-1px -1px 0 #5c2a1a,
		1px -1px 0 #5c2a1a,
		-1px 1px 0 #5c2a1a,
		1px 1px 0 #5c2a1a,
		0 3px 0 #5c2a1a,
		0 6px 14px rgba(92, 42, 26, 0.35);
}

.poc-signin__puppet {
	position: absolute;
	z-index: 5;
	top: 7.15rem;
	left: 50%;
	margin-left: calc(-270px - 21.5rem);
	width: min(390px, 32vw);
	pointer-events: none;
}

.poc-signin__puppet::after {
	content: "";
	position: absolute;
	left: 52%;
	bottom: -1.55rem;
	z-index: 0;
	width: 88%;
	height: 2.75rem;
	border-radius: 50%;
	background: radial-gradient(
		ellipse at center,
		rgba(0, 0, 0, 0.48) 0%,
		rgba(0, 0, 0, 0.3) 35%,
		rgba(0, 0, 0, 0.12) 55%,
		rgba(0, 0, 0, 0) 72%
	);
	transform: translateX(-50%) scaleY(0.5);
	filter: blur(5px);
	opacity: 0.9;
}

.poc-signin__puppet-image {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.18));
}

.poc-signin__wrap {
	position: relative;
	max-width: 540px;
	margin: 0 auto;
}

.poc-signin__panel {
	position: relative;
	overflow: visible;
	line-height: 0;
}

.poc-signin__panel-image {
	width: 100%;
	height: auto;
	display: block;
	max-width: 540px;
	margin: 0 auto;
}

.poc-signin__overlay {
	position: absolute;
	inset: 0;
	line-height: normal;
}

.poc-signin__header {
	position: absolute;
	top: 9.5%;
	left: 10%;
	right: 10%;
	height: 11%;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.poc-signin__title {
	margin: 0;
	padding: 0 0.5rem;
	box-sizing: border-box;
	text-align: center;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1.05rem, 2.2vw, 1.65rem);
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	text-shadow:
		-1px -1px 0 #5c2a1a,
		1px -1px 0 #5c2a1a,
		-1px 1px 0 #5c2a1a,
		1px 1px 0 #5c2a1a,
		0 2px 0 #5c2a1a,
		0 4px 10px rgba(92, 42, 26, 0.35);
}

.poc-signin__body {
	position: absolute;
	top: 24%;
	right: 10%;
	bottom: 8%;
	left: 10%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	padding: 0.25rem 0.5rem 0.5rem;
	line-height: normal;
	-webkit-overflow-scrolling: touch;
}

.poc-signin__form {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.55rem;
	width: 100%;
	max-width: 88%;
	margin: 0 auto;
}

.poc-signin__field {
	position: relative;
	display: block;
	margin: 0;
}

.poc-signin__field input {
	width: 100%;
	padding: 0.7rem 0.95rem;
	border: 2px solid #c8c8c8;
	border-radius: 14px;
	background: #fff;
	font-family: "Nunito", sans-serif;
	font-size: clamp(0.85rem, 1.3vw, 1rem);
	font-weight: 600;
	color: #2f2014;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
}

.poc-signin__field input::placeholder {
	color: #888;
	font-weight: 600;
}

.poc-signin__field input:focus {
	outline: none;
	border-color: #2196f3;
	box-shadow:
		inset 0 1px 3px rgba(0, 0, 0, 0.06),
		0 0 0 3px rgba(33, 150, 243, 0.15);
}

.poc-signin__actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	flex-wrap: wrap;
	margin-top: 0.15rem;
	width: 100%;
}

.poc-signin__submit {
	flex: 0 1 auto;
	min-width: min(100%, 180px);
	padding: 0.85rem 2rem;
	border: none;
	border-radius: 999px;
	background: linear-gradient(180deg, #42a5f5 0%, #1e88e5 55%, #1565c0 100%);
	box-shadow:
		0 4px 0 #0d47a1,
		0 8px 18px rgba(13, 71, 161, 0.35);
	font-family: "Fredoka", sans-serif;
	font-size: clamp(0.95rem, 1.5vw, 1.15rem);
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.poc-signin__submit:hover {
	transform: translateY(-1px);
	box-shadow:
		0 5px 0 #0d47a1,
		0 10px 22px rgba(13, 71, 161, 0.4);
}

.poc-signin__submit:active {
	transform: translateY(2px);
	box-shadow:
		0 2px 0 #0d47a1,
		0 4px 10px rgba(13, 71, 161, 0.3);
}

.poc-signin__forgot {
	flex: 1 1 auto;
	font-size: clamp(0.82rem, 1.2vw, 0.95rem);
	font-weight: 700;
	color: #1565c0;
	text-decoration: underline;
	text-underline-offset: 0.14em;
	white-space: nowrap;
}

.poc-signin__forgot:hover {
	color: #0d47a1;
}

.poc-signin__robot-wrap {
	position: absolute;
	left: calc(100% - 3.5rem);
	top: 80%;
	transform: translateY(-50%);
	z-index: 4;
	width: min(400px, 32vw);
	pointer-events: none;
}

.poc-signin__robot {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
}

.poc-signin__register {
	position: relative;
	z-index: 3;
	margin: 1.25rem auto 0;
	max-width: 540px;
	text-align: center;
	font-size: clamp(0.95rem, 1.5vw, 1.1rem);
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.poc-signin__register a {
	margin-left: 0.35rem;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 0.14em;
	text-transform: uppercase;
}

.poc-signin__register a:hover {
	color: #ffe082;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
	white-space: nowrap;
}

@media (max-width: 1180px) {
	.poc-signin__puppet {
		top: 6.4rem;
		left: max(0.5rem, calc(50% - 21.5rem - min(250px, 22vw)));
		margin-left: -21.5rem;
		width: min(340px, 36vw);
	}

	.poc-signin__robot-wrap {
		width: min(320px, 34vw);
		left: calc(100% - 3rem);
		top: 82%;
	}

	.poc-page--register .poc-signin__robot-wrap {
		top: 315px;
		left: calc(100% - 3rem);
	}
}

@media (max-width: 900px) {
	.poc-signin__puppet,
	.poc-signin__robot-wrap {
		display: none;
	}

	.poc-signin__outer {
		max-width: min(540px, 100%);
	}
}

@media (max-width: 768px) {
	.poc-signin {
		padding: 1rem 0.5rem 2.5rem;
	}

	.poc-signin__scene {
		padding: 0 0.35rem;
	}

	.poc-signin__header {
		top: 9%;
		left: 8%;
		right: 8%;
		height: 10%;
	}

	.poc-signin__title {
		font-size: clamp(0.72rem, 3.8vw, 1.1rem);
	}

	.poc-signin__welcome {
		margin-top: -0.5rem;
		margin-bottom: 0.55rem;
		font-size: clamp(0.85rem, 4.2vw, 1.25rem);
	}

	.poc-signin__body {
		top: 25%;
		right: 8%;
		bottom: 10%;
		left: 8%;
		padding: 0.2rem 0.25rem 0.35rem;
	}

	.poc-signin__form {
		gap: 0.55rem;
		max-width: 92%;
	}

	.poc-signin__field input {
		padding: 0.6rem 0.75rem;
		border-radius: 10px;
		font-size: clamp(0.72rem, 3vw, 0.88rem);
	}

	.poc-signin__actions {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		margin-top: 0.15rem;
	}

	.poc-signin__submit {
		width: 100%;
		min-height: 40px;
		padding: 0.65rem 1rem;
		font-size: clamp(0.75rem, 3.2vw, 0.92rem);
	}

	.poc-signin__forgot {
		text-align: center;
		font-size: clamp(0.68rem, 2.8vw, 0.82rem);
	}

	.poc-signin__register {
		margin-top: 0.85rem;
		font-size: clamp(0.78rem, 3.2vw, 0.92rem);
	}
}

@media (max-width: 480px) {
	.poc-signin__header {
		top: 8.5%;
		height: 9%;
	}

	.poc-signin__title {
		font-size: clamp(0.58rem, 4.2vw, 0.82rem);
	}

	.poc-signin__body {
		top: 24%;
		right: 8%;
		bottom: 9%;
		left: 8%;
	}
}

/* Register page — taller panel for email + password + captcha */
.poc-page--register .poc-signin__panel-image {
	max-width: 540px;
	width: 100%;
	height: clamp(540px, 58vw, 580px);
	object-fit: fill;
}

.poc-page--register .poc-signin__robot-wrap {
	top: 315px;
	left: calc(100% - 3.5rem);
	transform: translateY(-50%);
}

.poc-page--register .poc-signin__body {
	top: 24%;
	bottom: 6%;
	justify-content: flex-start;
	align-items: center;
	padding-top: 0.65rem;
	padding-bottom: 0.35rem;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.poc-page--register .poc-signin__intro {
	margin: 0.25rem 0 0.55rem;
	font-size: clamp(0.72rem, 1.15vw, 0.86rem);
	font-weight: 700;
	line-height: 1.35;
	color: #2f2014;
	text-align: center;
	width: 100%;
}

.poc-page--register .poc-signin__form {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.42rem;
	width: 100%;
	max-width: 78%;
	margin: 0 auto;
}

.poc-page--register .poc-signin__field {
	width: 100%;
}

.poc-page--register .poc-signin__field input {
	padding: 0.62rem 0.85rem;
	border-radius: 12px;
	font-size: clamp(0.78rem, 1.15vw, 0.9rem);
	text-align: center;
}

.poc-page--register .poc-signin__field input::placeholder {
	text-align: center;
}

.poc-page--register .poc-signin__actions {
	justify-content: center;
	margin-top: 0.2rem;
	width: 100%;
}

.poc-page--register .poc-signin__submit {
	width: auto;
	min-width: min(100%, 200px);
}

.poc-page--register .poc-signin__cancel {
	width: 100%;
	margin: 0.35rem 0 0;
	text-align: center;
}

.poc-signin__cancel {
	margin: 0.35rem 0 0;
	text-align: center;
}

.poc-signin__cancel a {
	font-size: clamp(0.78rem, 1.1vw, 0.88rem);
	font-weight: 700;
	color: #2f2014;
	text-decoration: underline;
	text-underline-offset: 0.14em;
}

.poc-signin__cancel a:hover {
	color: #5c2a1a;
}

@media (max-width: 768px) {
	.poc-page--register .poc-signin__panel-image {
		height: clamp(520px, 118vw, 560px);
	}

	.poc-page--register .poc-signin__body {
		top: 22%;
		bottom: 6%;
		justify-content: flex-start;
		padding-top: 0.5rem;
	}

	.poc-page--register .poc-signin__intro {
		margin-top: 0.2rem;
		margin-bottom: 0.4rem;
		font-size: clamp(0.58rem, 2.4vw, 0.72rem);
	}

	.poc-page--register .poc-signin__form {
		max-width: 84%;
		gap: 0.38rem;
	}

	.poc-page--register .poc-signin__field input {
		padding: 0.48rem 0.62rem;
		font-size: clamp(0.62rem, 2.6vw, 0.76rem);
	}

	.poc-signin__cancel a {
		font-size: clamp(0.62rem, 2.5vw, 0.74rem);
	}
}

@media (max-width: 480px) {
	.poc-page--register .poc-signin__panel-image {
		height: clamp(500px, 128vw, 540px);
	}

	.poc-page--register .poc-signin__body {
		top: 18%;
		bottom: 5%;
	}

	.poc-page--register .poc-signin__intro {
		font-size: clamp(0.52rem, 2.2vw, 0.64rem);
	}
}

/* Forgot Password page */
.poc-page--forgot-password .poc-signin__outer {
	padding-top: 2.35rem;
}

.poc-page--forgot-password .poc-signin__intro {
	margin: 0 0 0.85rem;
	font-size: clamp(0.78rem, 1.25vw, 0.92rem);
	font-weight: 700;
	line-height: 1.45;
	color: #2f2014;
	text-align: center;
}

.poc-page--forgot-password .poc-signin__form {
	gap: 0.85rem;
}

.poc-page--forgot-password .poc-signin__submit {
	width: 100%;
}

@media (max-width: 768px) {
	.poc-page--forgot-password .poc-signin__outer {
		padding-top: 1.85rem;
	}

	.poc-page--forgot-password .poc-signin__intro {
		margin-bottom: 0.65rem;
		font-size: clamp(0.64rem, 2.8vw, 0.8rem);
		line-height: 1.35;
	}
}

@media (max-width: 480px) {
	.poc-page--forgot-password .poc-signin__intro {
		font-size: clamp(0.56rem, 2.5vw, 0.7rem);
	}
}

/* Subscribe page */
.poc-page--subscribe .poc-signin__outer {
	padding-top: 2.35rem;
}

.poc-page--subscribe .poc-signin__panel-image {
	max-width: 540px;
	width: 100%;
	height: clamp(468px, 50vw, 500px);
	object-fit: fill;
}

.poc-page--subscribe .poc-signin__header {
	top: 9.5%;
	left: 10%;
	right: 10%;
	height: 11%;
}

.poc-page--subscribe .poc-subscribe__title {
	font-size: clamp(0.92rem, 2vw, 1.35rem);
	line-height: 1.08;
	letter-spacing: 0.04em;
	text-align: center;
}

.poc-page--subscribe .poc-subscribe__body {
	top: 21%;
	right: 10%;
	bottom: 10%;
	left: 10%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	overflow: hidden;
	padding: 0.2rem 0.15rem;
	box-sizing: border-box;
}

.poc-subscribe__plans {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
	width: 100%;
	align-items: stretch;
}

.poc-subscribe__plan {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	min-width: 0;
	height: 100%;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.poc-subscribe__plan-head {
	padding: 0.5rem 0.4rem 0.55rem;
	text-align: center;
	color: #fff;
}

.poc-subscribe__plan-icon {
	display: block;
	font-size: 0.95rem;
	line-height: 1;
	margin-bottom: 0.15rem;
}

.poc-subscribe__plan-name {
	margin: 0;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(0.72rem, 1.25vw, 0.9rem);
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
}

.poc-subscribe__plan-price {
	margin: 0.2rem 0 0;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(0.9rem, 1.45vw, 1.1rem);
	font-weight: 700;
	line-height: 1;
}

.poc-subscribe__plan-features {
	flex: 1;
	margin: 0;
	padding: 0.4rem 0.5rem 0.35rem;
	list-style: none;
}

.poc-subscribe__plan-features li {
	position: relative;
	padding: 0.12rem 0 0.12rem 0.75rem;
	font-size: clamp(0.68rem, 1.15vw, 0.82rem);
	font-weight: 700;
	line-height: 1.3;
	color: #2f2014;
}

.poc-subscribe__plan-features li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 0.28rem;
	height: 0.28rem;
	border-radius: 50%;
	background: #7a0f4a;
}

.poc-subscribe__plan--parent {
	background: linear-gradient(180deg, #e8f4fc 0%, #d6ebfa 100%);
}

.poc-subscribe__plan--teacher {
	background: linear-gradient(180deg, #eaf6eb 0%, #d9eedb 100%);
}

.poc-subscribe__plan--parent .poc-subscribe__plan-features {
	background: transparent;
}

.poc-subscribe__plan--parent .poc-subscribe__plan-features li {
	color: #1a3d5c;
}

.poc-subscribe__plan--parent .poc-subscribe__plan-features li::before {
	background: #1e88e5;
}

.poc-subscribe__plan--teacher .poc-subscribe__plan-features {
	background: transparent;
}

.poc-subscribe__plan--teacher .poc-subscribe__plan-features li {
	color: #1b4332;
}

.poc-subscribe__plan--teacher .poc-subscribe__plan-features li::before {
	background: #43a047;
}

.poc-subscribe__plan-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: calc(100% - 0.75rem);
	margin: 0 auto 0.4rem;
	padding: 0.55rem 0.4rem;
	border: none;
	border-radius: 999px;
	text-align: center;
	text-decoration: none;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(0.78rem, 1.25vw, 0.95rem);
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
	transition: transform 0.15s ease;
}

.poc-subscribe__plan--parent .poc-subscribe__plan-head {
	background: linear-gradient(180deg, #42a5f5 0%, #1e88e5 100%);
}

.poc-subscribe__plan--teacher .poc-subscribe__plan-head {
	background: linear-gradient(180deg, #66bb6a 0%, #43a047 100%);
}

.poc-subscribe__plan-btn:hover {
	transform: translateY(-1px);
}

.poc-subscribe__plan-btn--parent {
	background: linear-gradient(180deg, #42a5f5 0%, #1565c0 100%);
}

.poc-subscribe__plan-btn--teacher {
	background: linear-gradient(180deg, #66bb6a 0%, #2e7d32 100%);
}

.poc-subscribe__notice,
.poc-subscribe__error {
	width: 100%;
	max-width: 92%;
	margin: 0 auto 0.55rem;
	padding: 0.55rem 0.75rem;
	border-radius: 12px;
	font-family: "Nunito", sans-serif;
	font-size: clamp(0.68rem, 1.05vw, 0.82rem);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.poc-subscribe__notice {
	background: rgba(255, 255, 255, 0.85);
	color: #5b2d82;
}

.poc-subscribe__error {
	background: rgba(255, 77, 109, 0.18);
	color: #8b1030;
}

.poc-subscribe__state,
.poc-payment__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	width: 100%;
	text-align: center;
}

.poc-subscribe__state-title,
.poc-payment__intro {
	margin: 0;
	font-family: "Nunito", sans-serif;
	font-size: clamp(0.95rem, 1.6vw, 1.15rem);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.01em;
	word-spacing: 0.06em;
	text-shadow: none;
	color: #2f2014;
}

.poc-subscribe__state-text,
.poc-payment__status {
	margin: 0;
	font-family: "Nunito", sans-serif;
	font-size: clamp(0.8rem, 1.15vw, 0.95rem);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.01em;
	word-spacing: 0.06em;
	text-shadow: none;
	color: #4a154b;
}

.poc-subscribe__state-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: min(100%, 200px);
	padding: 0.7rem 1.6rem;
	border-radius: 999px;
	background: linear-gradient(180deg, #42a5f5 0%, #1565c0 100%);
	box-shadow: 0 4px 0 #0d47a1;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(0.85rem, 1.35vw, 1rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
}

.poc-subscribe__state-btn:hover {
	transform: translateY(-1px);
}

.poc-subscribe__state-link {
	font-family: "Nunito", sans-serif;
	font-size: clamp(0.7rem, 1.05vw, 0.82rem);
	font-weight: 700;
	color: #2f2014;
	text-decoration: underline;
	text-underline-offset: 0.14em;
}

.poc-page--payment-success .poc-signin__panel,
.poc-page--payment-success .poc-signin__overlay,
.poc-page--payment-success .poc-signin__body,
.poc-page--payment-success .poc-payment__intro,
.poc-page--payment-success .poc-payment__status {
	line-height: 1.5;
}

.poc-page--payment-success .poc-signin__title {
	line-height: 1.1;
}

.poc-page--payment-success .poc-signin__body {
	justify-content: center;
	padding: 0.75rem 1rem;
	overflow: visible;
}

.poc-page--payment-success .poc-payment__intro,
.poc-page--payment-success .poc-payment__status {
	max-width: 22rem;
	white-space: normal;
}

.poc-payment__action[hidden] {
	display: none;
}

.poc-device-limit {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	padding: 4rem 1.25rem 5rem;
}

.poc-device-limit__card {
	max-width: 28rem;
	padding: 2rem 1.5rem;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
	text-align: center;
}

.poc-device-limit__title {
	margin: 0 0 0.75rem;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1.2rem, 2.4vw, 1.7rem);
	font-weight: 700;
	line-height: 1.25;
	color: #2f2014;
}

.poc-device-limit__text {
	margin: 0 0 0.85rem;
	font-family: "Nunito", sans-serif;
	font-size: clamp(0.9rem, 1.4vw, 1.05rem);
	font-weight: 700;
	line-height: 1.5;
	color: #4a154b;
}

@media (max-width: 768px) {
	.poc-page--subscribe .poc-signin__outer {
		padding-top: 1.85rem;
	}

	.poc-page--subscribe .poc-signin__panel-image {
		height: clamp(450px, 105vw, 490px);
	}

	.poc-page--subscribe .poc-subscribe__body {
		top: 20%;
		right: 9%;
		bottom: 9%;
		left: 9%;
		gap: 0.4rem;
	}

	.poc-page--subscribe .poc-subscribe__title {
		font-size: clamp(0.72rem, 3.8vw, 1.05rem);
	}

	.poc-subscribe__plans {
		grid-template-columns: 1fr;
		gap: 0.4rem;
	}
}

@media (max-width: 480px) {
	.poc-page--subscribe .poc-subscribe__title {
		font-size: clamp(0.72rem, 4vw, 0.95rem);
	}

	.poc-page--subscribe .poc-subscribe__body {
		top: 19%;
		right: 8.5%;
		bottom: 8.5%;
		left: 8.5%;
	}

	.poc-subscribe__plan-name {
		font-size: clamp(0.62rem, 3.2vw, 0.78rem);
	}

	.poc-subscribe__plan-price {
		font-size: clamp(0.75rem, 3.6vw, 0.92rem);
	}

	.poc-subscribe__plan-features li {
		font-size: clamp(0.58rem, 2.7vw, 0.72rem);
	}

	.poc-subscribe__plan-btn {
		font-size: clamp(0.62rem, 2.8vw, 0.78rem);
	}
}

/* Game detail page */
.poc-page--game.poc-home {
	padding: 1.5rem clamp(1.25rem, 3vw, 2.75rem) 2.75rem;
}

.poc-game {
	position: relative;
	z-index: 2;
	min-height: calc(100vh - 64px);
}

.poc-game__panel {
	max-width: min(1520px, 100%);
	margin: 0 auto;
	padding: 0;
	background: transparent;
	box-shadow: none;
	border-radius: 0;
	color: #fff;
}

.poc-game__title {
	color: #fff;
	text-shadow: 0 3px 0 #5c2a1a, 0 8px 18px rgba(0, 0, 0, 0.28);
}

.poc-game__head .poc-game__title {
	color: #7a0f4a;
	text-shadow: none;
	text-transform: uppercase;
}

.poc-game__description,
.poc-game__howto {
	color: #fff;
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.55),
		0 4px 14px rgba(0, 0, 0, 0.32);
}

.poc-game__howto:not(:empty) {
	color: #fff;
}

.poc-game__demo-label {
	color: #fff;
	text-shadow: 0 2px 0 #5c2a1a, 0 6px 14px rgba(0, 0, 0, 0.24);
}

.poc-game__subscribe-note {
	color: #fff;
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.5),
		0 3px 10px rgba(0, 0, 0, 0.28);
}

.poc-game__shot {
	border: 1px solid rgba(255, 255, 255, 0.4);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.poc-game__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
	gap: clamp(1.25rem, 2.5vw, 2rem);
	align-items: start;
}

.poc-game__left {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
	grid-template-areas:
		"intro intro"
		"demo cta";
	gap: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2.5vw, 2rem);
	align-items: center;
	min-width: 0;
}

.poc-game__intro {
	grid-area: intro;
	min-width: 0;
}

.poc-game__demo-block {
	grid-area: demo;
	min-width: 0;
	align-self: start;
}

.poc-game__head {
	display: flex;
	align-items: center;
	gap: 1rem;
	width: fit-content;
	max-width: 100%;
	margin-bottom: 0.85rem;
	padding: 0.2rem 1.25rem 0.2rem 0.2rem;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.85);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
	overflow: hidden;
}

.poc-game__icon-wrap {
	flex-shrink: 0;
	width: auto;
	padding: 0;
	background: transparent;
	border-radius: 20px 0 0 20px;
	border: 0;
	box-shadow: none;
	overflow: hidden;
}

.poc-game__icon {
	display: block;
	width: min(96px, 17vw);
	height: auto;
	border-radius: 20px 0 0 20px;
	filter: none;
}

.poc-game__copy {
	min-width: 0;
	max-width: none;
	padding: 0;
}

.poc-game__description,
.poc-game__howto {
	margin: 0;
	font-family: "Nunito", sans-serif;
	font-size: clamp(1.05rem, 1.55vw, 1.18rem);
	font-weight: 800;
	line-height: 1.55;
	white-space: pre-line;
}

.poc-game__title {
	margin: 0;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1.15rem, 2.2vw, 1.5rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0.035em;
}

.poc-game__title-prefix {
	margin-right: 0;
}

.poc-game__description + .poc-game__howto:not(:empty) {
	margin-top: 0.85rem;
}

.poc-game__howto:empty {
	display: none;
}

.poc-game__howto:not(:empty) {
	font-weight: 800;
}

.poc-game__shots {
	display: grid;
	gap: 0.9rem;
	align-content: start;
	width: 100%;
}

.poc-game__shots--triple {
	grid-template-columns: 1fr;
}

.poc-game__shot {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.poc-game__demo-label {
	margin: 0 0 0.45rem;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 700;
	letter-spacing: 0.02em;
}

.poc-game__video-wrap {
	min-width: 0;
	max-width: min(820px, 100%);
}

.poc-game__video-wrap .poc-youtube__frame {
	border-width: 4px;
	border-radius: 20px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.poc-game__video-wrap .poc-hero__play {
	width: 76px;
	height: 76px;
	margin: -38px 0 0 -38px;
}

.poc-game__video-wrap .poc-hero__play::after {
	left: 29px;
	top: 22px;
	border-width: 14px 0 14px 24px;
}

.poc-game__cta {
	grid-area: cta;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	align-self: center;
	gap: 0.85rem;
	min-width: 0;
}

.poc-game__subscribe-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.1rem;
	padding: 0.8rem 1.5rem;
	border-radius: 999px;
	background: linear-gradient(180deg, #8b1458 0%, #7a0f4a 100%);
	box-shadow: 0 8px 20px rgba(122, 15, 74, 0.28);
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1.05rem, 1.6vw, 1.15rem);
	font-weight: 700;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.poc-game__subscribe-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(122, 15, 74, 0.34);
	color: #fff;
}

.poc-game__subscribe-note {
	margin: 0;
	font-family: "Nunito", sans-serif;
	font-size: clamp(0.92rem, 1.3vw, 1rem);
	font-weight: 700;
	line-height: 1.6;
	text-align: left;
	max-width: none;
}

@media (max-width: 1100px) {
	.poc-game__layout {
		grid-template-columns: 1fr;
	}

	.poc-game__left {
		grid-template-columns: 1fr;
		grid-template-areas:
			"intro"
			"demo"
			"cta";
	}

	.poc-game__copy {
		max-width: none;
	}

	.poc-game__shots {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: 680px;
	}

	.poc-game__shots--triple {
		grid-template-columns: 1fr;
		max-width: none;
	}

	.poc-game__cta {
		align-self: auto;
		max-width: 420px;
	}
}

@media (max-width: 900px) {
	.poc-page--game.poc-home {
		padding: 1rem 1rem 2rem;
	}

	.poc-game__shots {
		grid-template-columns: 1fr;
		max-width: none;
	}

	.poc-game__cta {
		max-width: none;
		margin: 0 auto;
		width: 100%;
	}

	.poc-game__subscribe-note {
		text-align: center;
	}
}

/* Subscribed game library (Bunny.net) */
.poc-game__library {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: 100%;
}

.poc-game__library-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

.poc-game__library-head .poc-game__head {
	margin-bottom: 0;
}

.poc-game__head-main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 0.85rem;
	min-width: 0;
}

.poc-game__info-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	flex-shrink: 0;
	padding: 0.42rem 0.85rem 0.42rem 0.95rem;
	border: 2px solid #e63b7a;
	border-radius: 999px;
	background: #fff;
	color: #7a0f4a;
	font-family: "Nunito", sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition:
		background 0.18s ease,
		color 0.18s ease,
		border-color 0.18s ease,
		box-shadow 0.18s ease;
}

.poc-game__info-btn:hover,
.poc-game__info-btn:focus-visible {
	background: #e63b7a;
	border-color: #e63b7a;
	color: #fff;
	outline: none;
	box-shadow: 0 6px 16px rgba(230, 59, 122, 0.28);
}

.poc-game__info-btn-icon {
	display: inline-block;
	width: 0.55rem;
	height: 0.55rem;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-1px);
	transition: transform 0.22s ease;
}

.poc-game__info-btn[aria-expanded="true"] .poc-game__info-btn-icon {
	transform: rotate(-135deg) translateY(1px);
}

.poc-game__info-panel {
	width: 100%;
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.28s ease;
}

.poc-game__info-panel.is-open {
	grid-template-rows: 1fr;
}

.poc-game__info-panel-inner {
	overflow: hidden;
	min-height: 0;
}

.poc-game__info-panel.is-open .poc-game__info-panel-inner {
	padding-top: 0.85rem;
}

.poc-page--game-watch .poc-game__info-panel .poc-game__description,
.poc-page--game-watch .poc-game__info-panel .poc-game__howto {
	max-width: min(920px, 100%);
	margin: 0 auto;
	padding: 1rem 1.15rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.88);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
	color: #4a1630;
	text-shadow: none;
	font-weight: 700;
}

.poc-page--game-watch .poc-game__info-panel .poc-game__howto:not(:empty) {
	margin-top: 0.65rem;
	font-weight: 800;
}

.poc-game__library-player {
	position: relative;
	width: 100%;
	max-width: min(920px, 100%);
	aspect-ratio: 16 / 9;
	margin: 0 auto;
	border-radius: 1.15rem;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.45);
	border: 4px solid rgba(255, 255, 255, 0.92);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.poc-game__library-now-playing {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.55rem 0.85rem;
	max-width: min(920px, 100%);
	margin: 0 auto;
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: #5a1a2e;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.poc-game__library-now-playing-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.2rem 0.65rem;
	border-radius: 999px;
	background: #e63b7a;
	color: #fff;
	font-family: "Nunito", sans-serif;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.poc-game__library-now-playing-badge::before {
	content: "";
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
	animation: poc-now-playing-pulse 1.4s ease-out infinite;
}

.poc-game__library-now-playing-title {
	font-family: "Fredoka", sans-serif;
	font-size: clamp(0.95rem, 1.8vw, 1.15rem);
	font-weight: 700;
}

@keyframes poc-now-playing-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75);
	}

	70% {
		box-shadow: 0 0 0 0.45rem rgba(255, 255, 255, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.poc-game__library-player iframe,
.poc-game__library-iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.poc-game__library-stage {
	position: absolute;
	inset: 0;
}

.poc-game__library-stage:not(.is-playing) .poc-game__library-iframe {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.poc-game__library-stage.is-playing .poc-game__library-iframe {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.poc-game__library-buffering {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.38);
	pointer-events: none;
}

.poc-game__library-stage.is-buffering .poc-game__library-buffering {
	display: flex;
}

.poc-game__library-buffering span {
	width: 52px;
	height: 52px;
	border: 4px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: poc-library-spin 0.75s linear infinite;
}

.poc-game__library-poster {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	background: linear-gradient(145deg, #ffe8a3 0%, #ffb347 48%, #ff7a59 100%);
	cursor: pointer;
	transition: transform 0.2s ease;
}

.poc-game__library-poster:hover {
	transform: scale(1.01);
}

.poc-game__library-poster.is-launching {
	pointer-events: none;
	cursor: wait;
}

.poc-game__library-poster.is-launching::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.22);
	pointer-events: none;
}

.poc-game__library-poster.is-launching .poc-game__library-poster-play {
	opacity: 0;
	visibility: hidden;
}

.poc-game__library-poster.is-launching .poc-game__library-poster-spinner {
	opacity: 1;
	visibility: visible;
}

.poc-game__library-poster img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	padding: 1.25rem;
	box-sizing: border-box;
}

.poc-game__library-poster-fallback {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(145deg, #ffe8a3 0%, #ffb347 48%, #ff7a59 100%);
}

.poc-game__library-poster-play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 58px;
	height: 58px;
	margin: -29px 0 0 -29px;
	border-radius: 50%;
	background: rgba(255, 0, 0, 0.92);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
	transition: opacity 0.15s ease, visibility 0.15s ease;
}

.poc-game__library-poster-play::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -10px 0 0 -5px;
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent #fff;
}

.poc-game__library-poster-spinner {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 52px;
	height: 52px;
	margin: -26px 0 0 -26px;
	border: 4px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	animation: poc-library-spin 0.75s linear infinite;
}

.poc-game__library-heading {
	margin: 0;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1.2rem, 2vw, 1.45rem);
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.poc-game__library-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
	gap: 0.85rem;
	width: 100%;
}

.poc-game__library-item {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	padding: 0.45rem;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-radius: 0.85rem;
	background: rgba(255, 255, 255, 0.94);
	color: #5a1a2e;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.poc-game__library-item:hover,
.poc-game__library-item.is-active {
	border-color: #fff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
	transform: translateY(-2px);
}

.poc-game__library-item.is-active {
	background: #fff;
	border-color: #e63b7a;
	box-shadow: 0 0 0 2px rgba(230, 59, 122, 0.18), 0 10px 24px rgba(0, 0, 0, 0.18);
}

.poc-game__library-item.is-completed .poc-game__library-duration {
	color: #2f8f4e;
	opacity: 1;
}

.poc-game__library-item.is-in-progress:not(.is-active) {
	border-color: rgba(230, 59, 122, 0.45);
}

.poc-game__library-thumb {
	display: block;
	position: relative;
	border-radius: 0.55rem;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: rgba(255, 255, 255, 0.85);
}

.poc-game__library-progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: rgba(90, 26, 46, 0.18);
	pointer-events: none;
}

.poc-game__library-progress span {
	display: block;
	height: 100%;
	background: linear-gradient(90deg, #e63b7a 0%, #ff7eb3 100%);
	border-radius: 0 2px 2px 0;
}

.poc-game__library-playing-icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(90, 26, 46, 0.42);
	pointer-events: none;
}

.poc-game__library-playing-icon::before {
	content: "";
	width: 0;
	height: 0;
	border-top: 0.55rem solid transparent;
	border-bottom: 0.55rem solid transparent;
	border-left: 0.9rem solid #fff;
	margin-left: 0.15rem;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
}

.poc-game__library-loading-icon {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(90, 26, 46, 0.28);
	pointer-events: none;
}

.poc-game__library-loading-icon::before {
	content: "";
	width: 1.35rem;
	height: 1.35rem;
	border: 3px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: poc-library-spin 0.8s linear infinite;
}

.poc-game__library-item.is-loading {
	pointer-events: none;
	opacity: 0.88;
}

@keyframes poc-library-spin {
	to {
		transform: rotate(360deg);
	}
}

.poc-game__library-watched-badge {
	position: absolute;
	top: 0.35rem;
	right: 0.35rem;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background: #2f8f4e;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	pointer-events: none;
}

.poc-game__library-watched-badge::before {
	content: "";
	position: absolute;
	top: 0.34rem;
	left: 0.42rem;
	width: 0.28rem;
	height: 0.48rem;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
}

.poc-game__library-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0.2rem;
}

.poc-game__library-meta,
.poc-game__library-caption {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.35rem 0.15rem 0.1rem;
	min-width: 0;
}

.poc-game__library-episode {
	font-family: "Nunito", sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.2;
}

.poc-game__library-duration {
	font-family: "Nunito", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	opacity: 0.72;
}

.poc-game__library-loading,
.poc-game__library-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 1rem;
	border-radius: 0.85rem;
	background: rgba(255, 255, 255, 0.9);
	color: #5a1a2e;
	text-align: center;
}

@media (max-width: 900px) {
	.poc-game__library-list {
		grid-template-columns: repeat(auto-fill, minmax(118px, 1fr));
	}
}

/* Site footer */
.poc-footer {
	position: relative;
	z-index: 2;
	padding: 1.25rem 1.5rem 1.5rem;
}

.poc-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	max-width: 980px;
	margin: 0 auto;
	padding: 0.85rem 1.1rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}

.poc-footer__copy {
	margin: 0;
	font-family: "Nunito", sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	color: #5a1a2e;
}

.poc-footer__links {
	display: flex;
	flex: 1 1 420px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.75rem 1rem;
}

.poc-footer__paia-wrap {
	margin-right: auto;
}

.poc-footer__links-main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.55rem 1rem;
}

.poc-footer__links a {
	font-family: "Nunito", sans-serif;
	font-size: 0.85rem;
	font-weight: 800;
	color: #e63b7a;
	text-decoration: none;
}

.poc-footer__links a:hover,
.poc-footer__links a:focus-visible {
	text-decoration: underline;
}

.poc-footer__paia-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.45rem 0.85rem;
	border-radius: 999px;
	background: #e63b7a;
	color: #fff !important;
	font-family: "Nunito", sans-serif;
	font-size: 0.82rem;
	font-weight: 800;
	text-decoration: none !important;
	white-space: nowrap;
	transition: background 0.18s ease, transform 0.18s ease;
}

.poc-footer__paia-link:hover,
.poc-footer__paia-link:focus-visible {
	background: #c92f67;
	color: #fff !important;
	transform: translateY(-1px);
	outline: none;
	text-decoration: none !important;
}

.poc-footer__paia-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Legal pages */
.poc-legal-doc {
	padding: 0.5rem 0 1.5rem;
	color: rgba(255, 255, 255, 0.96);
}

.poc-legal-doc__updated {
	margin: 0 0 1.25rem;
	font-family: "Nunito", sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	opacity: 0.85;
}

.poc-legal-doc__notice {
	margin: 0 0 1.35rem;
	padding: 1.15rem 1.25rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.94);
	color: #4a154b;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
	font-family: "Nunito", sans-serif;
	font-size: 0.95rem;
	line-height: 1.55;
}

.poc-legal-doc__notice p {
	margin: 0;
}

.poc-legal-doc__section {
	margin-bottom: 1.35rem;
	padding: 1.15rem 1.25rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.94);
	color: #4a154b;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.poc-legal-doc__heading {
	margin: 0 0 0.65rem;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 700;
	color: #5a1a2e;
}

.poc-legal-doc__body p,
.poc-legal-doc__body ul {
	margin: 0 0 0.75rem;
	font-family: "Nunito", sans-serif;
	font-size: 0.95rem;
	line-height: 1.65;
	font-weight: 600;
}

.poc-legal-doc__body ul {
	padding-left: 1.25rem;
}

.poc-legal-doc__body li + li {
	margin-top: 0.35rem;
}

.poc-legal-doc__body a {
	color: #e63b7a;
	font-weight: 800;
}

.poc-legal-doc__related {
	margin: 0;
	font-family: "Nunito", sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
}

.poc-legal-doc__related a {
	color: #fff;
	font-weight: 800;
}

.poc-legal-doc__table-wrap {
	overflow-x: auto;
	margin: 0 0 0.85rem;
}

.poc-legal-doc__table {
	width: 100%;
	min-width: 640px;
	border-collapse: collapse;
	font-family: "Nunito", sans-serif;
	font-size: 0.88rem;
	line-height: 1.55;
}

.poc-legal-doc__table th,
.poc-legal-doc__table td {
	padding: 0.65rem 0.75rem;
	border: 1px solid rgba(90, 26, 46, 0.16);
	vertical-align: top;
	text-align: left;
}

.poc-legal-doc__table th {
	background: rgba(230, 59, 122, 0.1);
	color: #5a1a2e;
	font-weight: 800;
}

.poc-legal-doc__table ul {
	margin: 0;
	padding-left: 1rem;
}

.poc-legal-doc__table li + li {
	margin-top: 0.35rem;
}

.poc-legal-doc__paia {
	margin-top: 1.35rem;
	padding: 1rem 1.15rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.94);
	color: #4a154b;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.poc-legal-doc__paia-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	background: #e63b7a;
	color: #fff;
	font-family: "Nunito", sans-serif;
	font-size: 0.92rem;
	font-weight: 800;
	text-decoration: none;
	transition: background 0.18s ease, transform 0.18s ease;
}

.poc-legal-doc__paia-link:hover,
.poc-legal-doc__paia-link:focus-visible {
	background: #c92f67;
	color: #fff;
	transform: translateY(-1px);
	outline: none;
}

.poc-legal-doc__paia-link[aria-disabled="true"] {
	opacity: 0.72;
	cursor: not-allowed;
	pointer-events: none;
}

.poc-legal-doc__paia-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.poc-legal-doc__paia-note {
	margin: 0.65rem 0 0;
	font-family: "Nunito", sans-serif;
	font-size: 0.88rem;
	line-height: 1.55;
	font-weight: 600;
	color: #5a1a2e;
}

/* Cookie notice */
.poc-cookie-notice {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 120;
	padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
	background: rgba(74, 21, 75, 0.96);
	box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.22);
}

.poc-cookie-notice__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.85rem 1rem;
	max-width: 980px;
	margin: 0 auto;
}

.poc-cookie-notice__text {
	margin: 0;
	flex: 1 1 280px;
	font-family: "Nunito", sans-serif;
	font-size: 0.88rem;
	line-height: 1.55;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.96);
}

.poc-cookie-notice__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.65rem 0.85rem;
}

.poc-cookie-notice__link {
	font-family: "Nunito", sans-serif;
	font-size: 0.85rem;
	font-weight: 800;
	color: #ffb8d4;
	text-decoration: none;
}

.poc-cookie-notice__link:hover,
.poc-cookie-notice__link:focus-visible {
	text-decoration: underline;
}

.poc-cookie-notice__reject,
.poc-cookie-notice__accept {
	border: 0;
	border-radius: 999px;
	padding: 0.55rem 1rem;
	font-family: "Nunito", sans-serif;
	font-size: 0.85rem;
	font-weight: 800;
	cursor: pointer;
}

.poc-cookie-notice__reject {
	background: transparent;
	color: rgba(255, 255, 255, 0.96);
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.72);
}

.poc-cookie-notice__reject:hover,
.poc-cookie-notice__reject:focus-visible {
	background: rgba(255, 255, 255, 0.12);
}

.poc-cookie-notice__accept {
	background: #fff;
	color: #5a1a2e;
}

.poc-has-cookie-notice .poc-footer {
	padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 720px) {
	.poc-footer__inner {
		border-radius: 1rem;
		justify-content: center;
		text-align: center;
	}

	.poc-footer__links {
		justify-content: center;
	}

	.poc-footer__paia-wrap {
		margin-right: 0;
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.poc-footer__links-main {
		justify-content: center;
	}
}

.poc-page--all-episodes .poc-game__title--series {
	justify-content: center;
	text-align: center;
	width: 100%;
}

.poc-page--all-episodes .poc-game__library-head .poc-game__head {
	justify-content: center;
}

/* Surprise Me fullscreen player */
body.poc-page--surprise {
	overflow: hidden;
	background: #140810;
}

body.poc-page--surprise .poc-header,
body.poc-page--surprise .poc-footer,
body.poc-page--surprise .poc-cookie-notice {
	display: none !important;
}

.poc-surprise {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
	padding: 0.85rem clamp(0.85rem, 2.5vw, 1.35rem) 1rem;
	background: radial-gradient(circle at top, rgba(230, 59, 122, 0.18), transparent 42%), #140810;
	color: #fff;
}

.poc-surprise__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.85rem;
	z-index: 2;
}

.poc-surprise__back {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.55rem 0.95rem 0.55rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	color: #5a1a2e;
	font-family: "Nunito", sans-serif;
	font-size: 0.92rem;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.poc-surprise__back:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.26);
}

.poc-surprise__back-icon {
	display: inline-block;
	width: 0.55rem;
	height: 0.55rem;
	border-left: 3px solid #e63b7a;
	border-bottom: 3px solid #e63b7a;
	transform: rotate(45deg);
	margin-left: 0.15rem;
}

.poc-surprise__label {
	margin: 0;
	font-family: "Fredoka", sans-serif;
	font-size: clamp(1rem, 2.2vw, 1.25rem);
	font-weight: 700;
	color: rgba(255, 255, 255, 0.92);
	text-align: right;
}

.poc-surprise__meta {
	margin: 0 0 0.65rem;
	text-align: center;
	font-family: "Nunito", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.82);
}

.poc-surprise__player {
	position: relative;
	flex: 1 1 auto;
	width: 100%;
	min-height: calc(100dvh - 7.5rem);
	border-radius: 1rem;
	overflow: hidden;
	background: #000;
	border: 4px solid rgba(255, 255, 255, 0.92);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.poc-surprise__player iframe,
.poc-surprise__player .poc-surprise__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.poc-surprise__stage {
	position: absolute;
	inset: 0;
	background: #000;
}

.poc-surprise__stage:not(.is-playing) .poc-surprise__iframe {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.poc-surprise__stage.is-playing .poc-surprise__iframe {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.poc-surprise__cover {
	position: absolute;
	inset: 0;
	z-index: 5;
	background: #000;
	pointer-events: none;
}

.poc-surprise__stage.is-playing .poc-surprise__cover {
	opacity: 0;
	visibility: hidden;
}

.poc-surprise__launch {
	position: absolute;
	inset: 0;
	z-index: 6;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	background: #000;
	cursor: pointer;
}

.poc-surprise__launch.is-launching {
	pointer-events: none;
	cursor: wait;
}

.poc-surprise__launch-play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 58px;
	height: 58px;
	margin: -29px 0 0 -29px;
	border-radius: 50%;
	background: rgba(255, 0, 0, 0.92);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
	transition: opacity 0.15s ease, visibility 0.15s ease;
}

.poc-surprise__launch-play::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -10px 0 0 -5px;
	border-style: solid;
	border-width: 10px 0 10px 16px;
	border-color: transparent transparent transparent #fff;
}

.poc-surprise__launch-spinner {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	width: 52px;
	height: 52px;
	margin: -26px 0 0 -26px;
	border: 4px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	animation: poc-library-spin 0.75s linear infinite;
}

.poc-surprise__launch.is-launching .poc-surprise__launch-play {
	opacity: 0;
	visibility: hidden;
}

.poc-surprise__launch.is-launching .poc-surprise__launch-spinner {
	opacity: 1;
	visibility: visible;
}

.poc-surprise__loading,
.poc-surprise__error {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	text-align: center;
	font-family: "Nunito", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.88);
	background: #000;
}

.poc-surprise__error {
	color: #ffb8d0;
}

@media (max-width: 720px) {
	.poc-surprise {
		padding-top: max(0.85rem, env(safe-area-inset-top, 0px));
		padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
	}

	.poc-surprise__toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.poc-surprise__label {
		text-align: center;
	}
}
