.bloomtimes-fvp-player {
	position: relative;
	overflow: hidden;
	background: #000;
}

.bloomtimes-fvp-cover {
	position: absolute;
	inset: 0;
	z-index: 1000;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	border-radius: 0;
	background: #000;
	color: #fff;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.bloomtimes-fvp-cover__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	object-position: center;
	user-select: none;
	-webkit-user-drag: none;
}

.bloomtimes-fvp-cover::after {
	position: absolute;
	inset: 0;
	content: "";
	background:
		linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0.06) 0%,
			rgba(0, 0, 0, 0.02) 55%,
			rgba(0, 0, 0, 0.28) 100%
		);
}

.bloomtimes-fvp-cover__play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: flex;
	width: clamp(64px, 8vw, 90px);
	aspect-ratio: 1;
	align-items: center;
	justify-content: center;
	border: 3px solid rgba(255, 255, 255, 0.92);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.72);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
	transform: translate(-50%, -50%);
	transition:
		transform 160ms ease,
		background-color 160ms ease,
		border-color 160ms ease;
}

.bloomtimes-fvp-cover__triangle {
	display: block;
	width: 0;
	height: 0;
	margin-left: 7%;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 19px solid #f5c518;
}

.bloomtimes-fvp-cover:hover .bloomtimes-fvp-cover__play,
.bloomtimes-fvp-cover:focus-visible .bloomtimes-fvp-cover__play {
	border-color: #f5c518;
	background: rgba(0, 0, 0, 0.88);
	transform: translate(-50%, -50%) scale(1.08);
}

.bloomtimes-fvp-cover:focus {
	outline: 3px solid #f5c518;
	outline-offset: -3px;
}

.bloomtimes-fvp-cover:focus-visible {
	outline: 3px solid #f5c518;
	outline-offset: -3px;
}

@supports selector(:focus-visible) {
	.bloomtimes-fvp-cover:focus:not(:focus-visible) {
		outline: 0;
	}
}

@media (max-width: 575.98px) {
	.bloomtimes-fvp-cover__play {
		width: 64px;
		border-width: 2px;
	}

	.bloomtimes-fvp-cover__triangle {
		border-top-width: 10px;
		border-bottom-width: 10px;
		border-left-width: 16px;
	}
}

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