/* Non-blocking banner: a slim bar, not a full-page modal/overlay */
.gec-banner {
	position: fixed;
	left: 16px;
	right: 16px;
	bottom: 16px;
	max-width: 560px;
	margin: 0 auto;
	z-index: 9999;
	background: #1f2328;
	color: #f5f5f5;
	border-radius: 10px;
	padding: 14px 18px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	line-height: 1.4;
}
.gec-banner[hidden] {
	display: none;
}
.gec-banner__text {
	flex: 1 1 260px;
	margin: 0;
}
.gec-banner__text a {
	color: #8ab4ff;
}
.gec-banner__actions {
	display: flex;
	gap: 8px;
	flex: 0 0 auto;
}

.gec-btn {
	border: 0;
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 16px;
	cursor: pointer;
}
.gec-btn--reject {
	background: transparent;
	color: #f5f5f5;
	border: 1px solid #565b62;
}
.gec-btn--accept {
	background: #2f7dff;
	color: #fff;
}

.gec-settings-toggle {
	position: fixed;
	left: 16px;
	bottom: 16px;
	z-index: 9998;
	background: #1f2328;
	color: #f5f5f5;
	border: 0;
	border-radius: 999px;
	padding: 8px 14px;
	font-size: 12px;
	cursor: pointer;
	opacity: 0.85;
}
.gec-settings-toggle:hover {
	opacity: 1;
}

/* Facade */
.gec-facade {
	position: absolute;
	top: 0;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gec-facade__thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
}
.gec-facade__play {
	position: relative;
	z-index: 1;
	width: 68px;
	height: 48px;
	background: #f00;
	border: 0;
	border-radius: 12px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gec-facade__play-icon {
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 16px solid #fff;
	margin-left: 4px;
}
.gec-facade__label {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	text-align: center;
	color: #fff;
	font-size: 14px;
	margin: 0;
	z-index: 1;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.gec-facade iframe {
	border: 0;
	width: 100%;
	height: 100%;
}
