.edp-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.edp-popup {
	background: #fff;
	max-width: 420px;
	width: 100%;
	border-radius: 14px;
	padding: 36px 28px 28px;
	position: relative;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
	animation: edpPopIn 0.25s ease-out;
}

@keyframes edpPopIn {
	from { opacity: 0; transform: scale(0.92); }
	to { opacity: 1; transform: scale(1); }
}

.edp-close {
	position: absolute;
	top: 10px;
	right: 14px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #999;
}
.edp-close:hover {
	color: #333;
}

.edp-title {
	font-size: 22px;
	margin: 0 0 12px;
	color: #222;
	font-weight: 700;
}

.edp-text {
	font-size: 15px;
	color: #555;
	margin: 0 0 18px;
	line-height: 1.5;
}

.edp-amount {
	display: inline-block;
	background: #e11d48;
	color: #fff;
	font-size: 26px;
	font-weight: 800;
	padding: 10px 24px;
	border-radius: 999px;
	margin-bottom: 22px;
	letter-spacing: 0.5px;
}

.edp-claim-btn {
	display: inline-block;
	width: 100%;
	background: #16a34a;
	color: #fff;
	border: none;
	padding: 14px 20px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.15s ease;
}
.edp-claim-btn:hover {
	background: #15803d;
}
.edp-claim-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.edp-claim-message {
	margin-top: 14px;
	font-size: 14px;
	font-weight: 600;
}
.edp-claim-message.edp-success {
	color: #16a34a;
}
.edp-claim-message.edp-error {
	color: #dc2626;
}

@media (max-width: 480px) {
	.edp-popup {
		padding: 28px 20px 22px;
	}
	.edp-title {
		font-size: 19px;
	}
	.edp-amount {
		font-size: 22px;
	}
}
