.hp-modal {
	display: none;
	position: fixed;
	z-index: 999999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	backdrop-filter: blur(4px);
}

.hp-modal-content {
	background-color: #fff;
	margin: 10% auto;
	padding: 0;
	border-radius: 16px;
	width: 90%;
	max-width: 400px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.2);
	overflow: hidden;
	position: relative;
}

.hp-close {
	position: absolute;
	right: 15px;
	top: 10px;
	color: #aaa;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
}

.hp-modal-header {
	background: #2271b1;
	color: #fff;
	padding: 20px;
	text-align: center;
}

.hp-modal-header h2 {
	margin: 0;
	font-size: 20px;
	color: #fff;
}

.hp-modal-body {
	padding: 30px;
	text-align: center;
}

.hp-step {
	display: none;
}

.hp-step.active {
	display: block;
}

.hp-loader {
	border: 3px solid #f3f3f3;
	border-top: 3px solid #2271b1;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	animation: spin 1s linear infinite;
	margin: 20px auto;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

#hp-otp-input {
	width: 100%;
	padding: 12px;
	font-size: 24px;
	text-align: center;
	letter-spacing: 10px;
	border: 2px solid #ddd;
	border-radius: 8px;
	margin: 20px 0;
}

.hp-btn-primary {
	background: #2271b1;
	color: #fff;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: background 0.3s;
}

.hp-btn-primary:hover {
	background: #1a5a8e;
}

.hp-error {
	color: #d32f2f;
	font-size: 14px;
	margin-top: 10px;
}

.hp-success-icon {
	width: 60px;
	height: 60px;
	background: #4caf50;
	color: #fff;
	border-radius: 50%;
	line-height: 60px;
	font-size: 30px;
	margin: 0 auto 20px;
}

.hp-mobile-display {
	font-weight: 600;
	color: #2271b1;
	margin-top: 5px;
}

.hp-btn-secondary {
	background: #f1f1f1;
	color: #333;
	border: 1px solid #ccc;
	padding: 10px 20px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: background 0.3s;
}

.hp-btn-secondary:hover {
	background: #e5e5e5;
}

#hp-topup-iframe {
	border: 1px solid #ddd;
	border-radius: 8px;
	margin-top: 15px;
}
