/* ── Loader overlay ─────────────────────────────────────────────────────────── */
#ft-loader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgb(229, 255, 235);
	transition: opacity 0.6s ease, visibility 0.6s ease;
}

#ft-loader.ft-loader--hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* ── Inner container ─────────────────────────────────────────────────────────── */
#ft-loader-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	width: 260px;
}

/* ── Coin ────────────────────────────────────────────────────────────────────── */
#ft-coin-wrap {
	width: 110px;
	height: 110px;
	perspective: 600px;
}

#ft-coin {
	width: 110px;
	height: 110px;
	animation: ft-coin-spin 1.4s linear infinite;
	transform-origin: center center;
}

@keyframes ft-coin-spin {
	0%   { transform: rotateY(0deg); }
	100% { transform: rotateY(360deg); }
}

/* Squash during edge-on phase */
#ft-coin-wrap {
	animation: ft-wrap-squash 1.4s linear infinite;
}

@keyframes ft-wrap-squash {
	0%   { transform: scaleX(1); }
	25%  { transform: scaleX(0.08); }
	50%  { transform: scaleX(1); }
	75%  { transform: scaleX(0.08); }
	100% { transform: scaleX(1); }
}

/* ── Progress bar ────────────────────────────────────────────────────────────── */
#ft-bar-track {
	width: 100%;
	height: 6px;
	background: rgba(22, 137, 54, 0.18);
	border-radius: 99px;
	overflow: hidden;
}

#ft-bar-fill {
	height: 100%;
	width: 0%;
	background: #168936;
	border-radius: 99px;
	transition: width 0.15s ease;
}

/* ── Label ───────────────────────────────────────────────────────────────────── */
#ft-bar-label {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #168936;
	opacity: 0.8;
}
