.tp-ft-wrap {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.tp-ft-card {
	position: relative;
	flex: 1 1 340px;
	background: var(--tp-panel);
	border: 1px solid var(--tp-border);
	border-radius: var(--tp-radius);
	box-shadow: var(--tp-shadow);
	padding: 32px 28px;
	text-align: center;
}

.tp-ft-sound-toggle {
	position: absolute;
	top: 14px;
	right: 14px;
	background: transparent;
	border: none;
	color: var(--tp-text-dim);
	cursor: pointer;
	padding: 6px;
	border-radius: 8px;
	display: flex;
	transition: color 0.15s ease, background 0.15s ease;
}

.tp-ft-sound-toggle:hover {
	color: var(--tp-text);
	background: var(--tp-panel-raised);
}

.tp-ft-sound-toggle.is-muted {
	color: var(--tp-text-faint);
}

.tp-ft-round-label {
	font-size: 13px;
	color: var(--tp-text-dim);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 6px;
}

.tp-ft-clock {
	font-family: var(--tp-font);
	font-size: 72px;
	font-weight: 600;
	color: var(--tp-text);
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
	margin: 10px 0 26px;
}

.tp-ft-controls {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-bottom: 18px;
}

.tp-ft-side {
	flex: 0 1 260px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.tp-ft-progress-dots {
	display: flex;
	gap: 10px;
	justify-content: center;
	background: var(--tp-panel);
	border: 1px solid var(--tp-border);
	border-radius: var(--tp-radius);
	padding: 16px;
	box-shadow: var(--tp-shadow);
}

.tp-ft-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--tp-panel-raised);
	border: 1px solid var(--tp-border);
}

.tp-ft-dot.is-filled {
	background: var(--tp-gold);
	border-color: var(--tp-gold-dim);
}

.tp-ft-boxes {
	text-align: center;
	background: linear-gradient(160deg, var(--tp-panel), var(--tp-panel-alt));
	border: 1px solid var(--tp-border);
	border-radius: var(--tp-radius);
	padding: 20px;
	box-shadow: var(--tp-shadow);
}

.tp-ft-box {
	position: relative;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 42px;
	line-height: 1;
	padding: 6px;
	animation: tp-ft-pulse 2.2s ease-in-out infinite;
}

.tp-ft-box:hover {
	animation-play-state: paused;
	transform: scale(1.1);
}

@keyframes tp-ft-pulse {
	0%,
	100% {
		transform: scale(1);
		filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
	}
	50% {
		transform: scale(1.08);
		filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.55));
	}
}

.tp-ft-box-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	background: var(--tp-danger);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	min-width: 18px;
	height: 18px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

.tp-ft-box-caption {
	margin: 10px 0 0;
	font-size: 12px;
	color: var(--tp-text-dim);
}

.tp-ft-stats {
	display: flex;
	justify-content: space-around;
	background: var(--tp-panel);
	border: 1px solid var(--tp-border);
	border-radius: var(--tp-radius);
	padding: 16px;
	box-shadow: var(--tp-shadow);
}

.tp-ft-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}

.tp-ft-stat-value {
	font-size: 20px;
	font-weight: 800;
	color: var(--tp-gold);
	font-variant-numeric: tabular-nums;
}

.tp-ft-stat-label {
	font-size: 11px;
	color: var(--tp-text-faint);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.tp-ft-reveal-content {
	text-align: center;
}

.tp-ft-reveal-icon {
	font-size: 48px;
	margin-bottom: 12px;
}

.tp-ft-reveal-message {
	font-size: 16px;
	color: var(--tp-text);
	line-height: 1.5;
	margin: 0 0 8px;
}

@media (max-width: 640px) {
	.tp-ft-clock {
		font-size: 52px;
	}
}
