.laura-bunny-player {
	position: relative;
	display: grid;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #111214;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: clamp(16px, 2vw, 24px);
	box-shadow: 0 24px 70px rgba(26, 8, 12, 0.28);
	isolation: isolate;
}

.laura-bunny-player iframe,
.laura-bunny-player__poster,
.laura-bunny-player__shade {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.laura-bunny-player--portrait {
	aspect-ratio: 9 / 16;
}

.laura-bunny-player--portrait-card {
	aspect-ratio: 4 / 5;
}

.laura-bunny-player--square {
	aspect-ratio: 1 / 1;
}

.laura-bunny-player__poster {
	object-fit: cover;
}

.laura-bunny-player__shade {
	background:
		linear-gradient(180deg, rgba(12, 13, 14, 0.08), rgba(12, 13, 14, 0.58)),
		radial-gradient(circle at 50% 45%, rgba(221, 45, 74, 0.08), transparent 48%);
}

.laura-bunny-player__play {
	position: relative;
	z-index: 2;
	place-self: center;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-height: 52px;
	padding: 12px 22px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(136, 13, 30, 0.9);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
	backdrop-filter: blur(10px);
	transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

/* Hello Elementor loads its button reset later. Keep only the icon/label
 * layout more specific, without overriding the site's button appearance. */
.laura-bunny-player > .laura-bunny-player__play {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.laura-bunny-player__play:hover,
.laura-bunny-player__play:focus-visible {
	transform: translateY(-2px);
	background: #dd2d4a;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

.laura-bunny-player__play:focus-visible {
	outline: 3px solid rgba(244, 156, 187, 0.75);
	outline-offset: 4px;
}

.laura-bunny-player__play:disabled {
	cursor: wait;
	opacity: 0.8;
}

.laura-bunny-player__play-icon {
	display: block;
	flex: 0 0 auto;
	line-height: 0;
	width: 0;
	height: 0;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid currentColor;
	transform: translateX(1px);
}

.laura-bunny-player__play.is-loading .laura-bunny-player__play-icon {
	width: 17px;
	height: 17px;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: laura-bunny-spin 750ms linear infinite;
	transform: none;
}

.laura-bunny-player__status {
	position: absolute;
	z-index: 3;
	left: 20px;
	right: 20px;
	bottom: 14px;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	line-height: 1.4;
	text-align: center;
}

.laura-bunny-player__status.is-error {
	color: #fff;
}

.laura-bunny-player__notice {
	display: grid;
	gap: 8px;
	padding: 24px;
	border: 1px solid rgba(136, 13, 30, 0.18);
	border-radius: 16px;
	background: #f9f9f9;
	color: #2d2d2d;
}

.laura-bunny-player__notice a {
	color: #880d1e;
	font-weight: 700;
}

@keyframes laura-bunny-spin {
	to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
	.laura-bunny-player {
		border-radius: 14px;
	}

	.laura-bunny-player__play {
		min-height: 46px;
		padding: 10px 16px;
		font-size: 14px;
	}
}

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