.turbatomic-player {
	position: relative;
	width: 100%;
	max-width: 100%;
	line-height: 0;
	overflow: hidden;
	background: #000;
	user-select: none;
	-webkit-user-select: none;
}

.turbatomic-player video {
	display: block;
	width: 100%;
	height: auto;
}

.tap-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	background: transparent;
}

.tap-overlay img {
	max-width: 90%;
	max-height: 90%;
	pointer-events: none;
}

.tap-play-default {
	width: 45%;
	height: auto;
	max-height: 80%;
	filter: drop-shadow(0 6px 24px rgba(0, 0, 0, .6));
	transition: transform .15s ease;
	pointer-events: none;
}

.tap-overlay:hover .tap-play-default {
	transform: scale(1.08);
}

.tap-pause-overlay {
	background: rgba(0, 0, 0, .65);
}

.tap-pause-text {
	color: #e53935;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: clamp(28px, 7vw, 72px);
	font-weight: 900;
	line-height: 1.25;
	text-align: center;
	text-transform: uppercase;
	padding: 0 4%;
	text-shadow: 0 2px 10px rgba(0, 0, 0, .8);
	pointer-events: none;
}

.tap-progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 8px;
	background: rgba(255, 255, 255, .25);
	z-index: 6;
	pointer-events: none;
}

.tap-progress-fill {
	height: 100%;
	width: 0;
	transition: width .25s linear;
}

.tap-context-menu {
	position: fixed;
	z-index: 999999;
	background: #1e1e1e;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 13px;
	padding: 8px 16px;
	border-radius: 6px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
	pointer-events: none;
	white-space: nowrap;
}

.tap-hidden {
	display: none !important;
}
