.okwin-floating-btn {
	position: fixed;
	left: 15px;
	bottom: 20px;
	background: linear-gradient(135deg, #ff7a18, #ff3d00);
	color: #ffffff;
	padding: 13px 20px;
	border: 2px dashed #000;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	z-index: 99999;
	line-height: 1.2;
	box-shadow: 0 4px 0 #000;
	animation: pulseGlow 1.6s infinite;
	transition: all 0.25s ease;
}

/* Hover effect */
.okwin-floating-btn:hover {
	transform: scale(1.08) rotate(-1deg);
	box-shadow: 0 6px 0 #000;
}

/* Pulse + glow animation */
@keyframes pulseGlow {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 90, 30, 0.7);
	}

	50% {
		transform: scale(1.06);
		box-shadow: 0 0 18px 6px rgba(255, 90, 30, 0.8);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 90, 30, 0.7);
	}
}

.img-cov {
	width: 100%;
	height: 100%;
	max-width: 900px;
	margin: 15px auto;
}
.img-cov img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	margin: 0 !important;
}
.img-cov.m {
	max-width: 300px;
}
.table {
	width: 100%;
	overflow-x: auto;
	margin: 15px auto;
}
