/* Parrot Room — page-scoped, not in global bundle */

.parrot-page {
	padding-bottom: 32px;
}

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

.parrot-hero {
	text-align: center;
	margin-bottom: 28px;
}

.parrot-hero__title {
	margin: 0 0 6px;
	font-size: clamp(22px, 4vw, 32px);
	line-height: 1.2;
	color: #1b2a4a;
}

.parrot-hero__tagline {
	margin: 0 auto 20px;
	max-width: 420px;
	font-size: 15px;
	line-height: 1.45;
	color: rgba(27, 42, 74, 0.75);
}

.parrot-stage {
	position: relative;
	display: inline-block;
	max-width: min(100%, 520px);
	margin: 0 auto;
}

.parrot-stage__frame {
	padding: 8px;
	border-radius: 12px;
	background: #fff;
	cursor: pointer;
}

.parrot-stage__frame:hover,
.parrot-stage__frame.is-squawking {
	animation: parrot-shake 0.4s ease;
}

.parrot-stage__frame img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.parrot-bubble {
	position: absolute;
	top: -4px;
	right: -4px;
	z-index: 2;
	max-width: min(240px, 55vw);
	padding: 10px 14px;
	border: 1px solid rgba(27, 42, 74, 0.15);
	border-radius: 14px 14px 4px 14px;
	background: #fff;
	color: #1b2a4a;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	box-shadow: 0 6px 18px rgba(27, 42, 74, 0.12);
	animation: parrot-bubble-pop 0.3s ease;
}

.parrot-bubble::after {
	content: '';
	position: absolute;
	right: 24px;
	bottom: -10px;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-top-color: #fff;
	border-right-color: #fff;
}

.parrot-stage__hint {
	margin-top: 12px;
	font-size: 13px;
	color: rgba(27, 42, 74, 0.6);
}

.parrot-comments {
	padding-top: 8px;
	border-top: 1px solid rgba(27, 42, 74, 0.12);
}

.parrot-comments h2 {
	margin: 0 0 14px;
	font-size: 18px;
	color: #1b2a4a;
}

@keyframes parrot-shake {
	0%, 100% { transform: rotate(0deg); }
	25% { transform: rotate(-2deg); }
	75% { transform: rotate(2deg); }
}

@keyframes parrot-bubble-pop {
	from { transform: scale(0.85); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

@media (max-width: 640px) {
	.parrot-bubble {
		position: static;
		margin: 0 auto 12px;
		max-width: 100%;
	}

	.parrot-bubble::after {
		display: none;
	}
}
