/* FanBolt PWA install banner — top of viewport (Mediavine adhesion owns the bottom). */

.fanbolt-pwa-banner {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	padding-top: calc(12px + env(safe-area-inset-top, 0px));
	background: #1e2132;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 14px;
	line-height: 1.4;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
	transform: translateY(-110%);
	transition: transform 0.3s ease;
}

.fanbolt-pwa-banner.is-visible {
	transform: translateY(0);
}

.fanbolt-pwa-banner__text {
	flex: 1;
	min-width: 0;
}

.fanbolt-pwa-banner__text strong {
	color: #00aed3;
}

.fanbolt-pwa-banner__install {
	flex-shrink: 0;
	background: #00aed3;
	color: #fff;
	border: 0;
	border-radius: 6px;
	padding: 8px 16px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.fanbolt-pwa-banner__close {
	flex-shrink: 0;
	background: transparent;
	border: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 22px;
	line-height: 1;
	padding: 4px 8px;
	cursor: pointer;
}

/* iOS share icon (square with up arrow), drawn inline so no image request. */
.fanbolt-pwa-share-icon {
	display: inline-block;
	width: 16px;
	height: 16px;
	vertical-align: -2px;
	background-color: #00aed3;
	-webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12v7a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7"/><polyline points="16 6 12 2 8 6"/><line x1="12" y1="2" x2="12" y2="15"/></svg>') no-repeat center / contain;
	mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12v7a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7"/><polyline points="16 6 12 2 8 6"/><line x1="12" y1="2" x2="12" y2="15"/></svg>') no-repeat center / contain;
}
