.container {
	max-width: 500px;
	margin: 80px auto;
	background: linear-gradient(160deg, #111a25, #1a1f27);
	padding: 40px 30px;
	border: 1px solid #005f73;
	border-radius: 20px;
	transition: box-shadow 0.4s ease, border 0.3s , transform 0.4s ease;
}
.loc{
	font-family: 'Dancing Script', cursive;
	color: #cc00ff;
}

.container:hover {
	transform: scale(1.015);
	border: 1px solid #65e5ff;
}

h2 {
	text-align: center;
	color: #00d9ff;
	margin-bottom: 30px;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 1px;
	text-shadow: 0 0 8px rgba(0, 217, 255, 0.1);
}

label {
	font-size: 15px;
	margin-bottom: 6px;
	display: block;
	color: #b0c7d6;
}

input, select {
	width: 100%;
	padding: 12px;
	margin-bottom: 18px;
	border: 1px solid #2a2f35;
	border-radius: 12px;
	background: #1b1f26;
	color: #e4f4ff;
	font-size: 15px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus {
	border-color: #00d9ff;
	outline: none;
	box-shadow: 0 0 8px rgba(0, 217, 255, 0.25);
}

.error {
	color: #ff4d4d;
	font-size: 13px;
	margin-top: -10px;
	margin-bottom: 10px;
}

.price-box {
	text-align: center;
	font-size: 18px;
	padding: 12px;
	background: #101820;
	border-radius: 12px;
	color: #00d9ff;
	margin-bottom: 20px;
	box-shadow: inset 0 0 10px rgba(0, 217, 255, 0.08);
}

button {
	width: 100%;
	padding: 14px;
	font-size: 16px;
	color: #fff;
	border: none;
	background: linear-gradient(135deg, #16363d, #006d8f);
	border-radius: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
}

button:hover {
	background: linear-gradient(135deg, #161c1d, #005f73);
	transform: scale(1.04);
}

.payment-overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.payment-popup {
	background: linear-gradient(160deg, #151e28, #1a1a1a);
	border-radius: 20px;
	padding: 30px 20px;
	max-width: 600px;
	width: 95%;
	box-shadow: 0 0 20px rgba(0, 217, 255, 0.1);
	text-align: center;
	color: white;
	transition: 0.4s ease;
}

.popup-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.popup-header h3 {
	margin: 0;
	font-size: 20px;
	color: #00d9ff;
}

.popup-header button {
	background: none;
	border: none;
	color: #ff1c1c;
	width:50px;
	font-size: 22px;
	cursor: pointer;
	transition: color 0.3s , background 0.3s;
}
.popup-header button:hover{
	color: #fff;
}

.payment-options {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (min-width: 780px) {
	.payment-options {
		flex-direction: row;
		justify-content: center;
	}
}
.payment-popup{
	border-radius: 0px;
}

.payment-box {
	background-color: #242f3f;
	padding: 20px;
	border-radius: 14px;
	cursor: pointer;
	transition: 0.3s;
	flex: 1;
	width: 90%;
	margin: auto;
	box-shadow: 0 4px 10px rgba(0, 217, 255, 0.05);
}

.payment-box:hover {
	background-color: #2e3a4f;
	transform: scale(1.05);
}

.payment-box img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin-bottom: 10px;
	filter: drop-shadow(0 0 5px rgba(0, 217, 255, 0.3));
}

.payment-box h4 {
	margin: 10px 0 5px;
	color: #00d9ff;
	font-weight: 600;
}

.payment-box p {
	margin: 0;
	font-size: 14px;
	color: #ccc;
}

/*   eccp   */

.eccp {
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(6px);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
	box-sizing: border-box;
}

.eccp .popup {
	background: linear-gradient(160deg, #111a25, #1a1f27);
	border-radius: 0px;
	padding: 30px 25px;
	width: 100%;
	height: 100%;
	overflow: auto;
	max-width: 480px;
	box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
	animation: fadeIn 0.4s ease;
}
.eccp .popup::-webkit-scrollbar {
	width: 7px;
  }
  
  .eccp .popup::-webkit-scrollbar-track {
	background: #1a1f27;
	border-radius: 0px;
  }
  
  .eccp .popup::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #00d9ff, #007bff);
	border-radius: 0px;
	box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.2);
  }
  
  .eccp .popup::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #00ffff, #0066ff);
  }
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
.eccp button{
		background: linear-gradient(135deg, #16363d, #006d8f);

}
.eccp h2 {
	text-align: center;
	color: #00d9ff;
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 600;
}

.eccp .info {
	background: #1a1f27;
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 25px;
	box-shadow: 0 0 12px rgba(0, 217, 255, 0.05);
	font-size: 15px;
	color: #c6d8e4;
	direction: rtl;
	line-height: 1.7;
  }
  
  .eccp .info p {
	margin: 10px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
  }
  
  .eccp .info .label {
	font-weight: bold;
	margin-inline-end: 6px;
	color: #00f7ff;
	white-space: nowrap;
  }
  
  .copy-btn {
	background: linear-gradient(135deg, #16363d, #006d8f);
	color: #0a0a0a;
	border: none;
	border-radius: 6px;
	padding: 4px 10px;
	margin-right: 10px;
	cursor: pointer;	
	transition: background 0.3s ease, transform 0.2s;
	font-size: 13px;
  }
  
  .copy-btn:hover {
	background: linear-gradient(135deg, #16363d, #006d8f);
	transform: scale(1.12);
  }
  

.upload-container {
	max-width: 400px;
	margin: 30px auto;
	padding: 20px;
	background: linear-gradient(160deg, #111a25, #1a1f27);
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 217, 255, 0.1);
	text-align: center;
  }
  
  .upload-label {
	display: block;
	font-size: 16px;
	color: #00d9ff;
	margin-bottom: 15px;
	cursor: pointer;
	font-weight: bold;
	transition: color 0.3s ease;
  }
  .upload-label:hover {
	color: #00ffff;
  }
  
  .upload-label .icon {
	font-size: 24px;
	margin-right: 8px;
	vertical-align: middle;
  }
  
  #paymentImage {
	display: none;
  }
  
  .preview-img {
	margin-top: 15px;
	max-width: 100%;
	max-height: 300px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 217, 255, 0.15);
	border: 2px solid #00d9ff33;
	transition: transform 0.3s ease;
  }
  
  .preview-img:hover {
	transform: scale(1.02);
  }
.cls{
	background-color: red;
}  

.eccp label {
	display: block;
	margin-bottom: 6px;
	font-weight: 500;
	color: #cdefff;
	font-size: 14px;
}

.eccp input[type="text"],
.eccp input[type="file"] {
	width: 100%;
	padding: 12px;
	margin-bottom: 16px;
	border-radius: 10px;
	border: 1px solid #2a2f35;
	background: #1b232c;
	color: #eafaff;
	font-size: 14px;
	box-sizing: border-box;
	transition: border-color 0.3s, box-shadow 0.3s;
}

.eccp input:focus {
	border-color: #00d9ff;
	outline: none;
	box-shadow: 0 0 6px rgba(0, 217, 255, 0.25);
}

.eccp .preview-img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border-radius: 10px;
	margin-top: 10px;
	display: none;
	box-shadow: 0 4px 10px rgba(0, 217, 255, 0.15);
	border: 1px solid #00d9ff;
}

.eccp button {
	width: 100%;
	background: linear-gradient(135deg, #16363d, #006d8f);
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	padding: 14px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s;
	box-shadow: 0 4px 15px rgba(0, 217, 255, 0.15);
}

.eccp button:hover {
	background: linear-gradient(135deg, #161c1d, #005f73);
	transform: scale(1.02);
}

.success-message {
	background: #122c33;
	padding: 16px;
	color: #00ffcc;
	text-align: center;
	border-radius: 12px;
	display: none;
	margin-top: 18px;
	font-size: 14px;
	box-shadow: 0 0 10px rgba(0, 255, 200, 0.15);
}

@media (max-width:750px) {
	.eccp .popup {
		background: linear-gradient(160deg, #111a25, #1a1f27);
		border-radius: 0px;
		padding: 30px 25px;
		width: 90%;
		height: 100%;
		overflow: auto;
		box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
		animation: fadeIn 0.4s ease;
	}
	.eccp {
		background: rgba(0, 0, 0, 0.7);
		backdrop-filter: blur(6px);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 9999;
		padding: 20px 0px;
		box-sizing: border-box;
	}
}

.success-alert {
	position: fixed;
	top: 30px;
	right: 30px;
	background: linear-gradient(135deg, #1a2b36, #123640);
	color: #00ffcc;
	padding: 14px 20px;
	border-radius: 12px;
	box-shadow: 0 0 15px rgba(0, 217, 255, 0.2);
	display: none;
	align-items: center;
	gap: 10px;
	z-index: 99999;
	animation: slideDown 0.4s ease forwards;
  }
  
  .success-alert .icon {
	font-size: 20px;
  }
  
  .success-alert .message {
	font-size: 15px;
	font-weight: 500;
  }
  
  /* عند إضافة .show تظهر */
  .success-alert.show {
	display: flex;
  }
  
  /* حركة نزول */
  @keyframes slideDown {
	from {
	  transform: translateY(-20px);
	  opacity: 0;
	}
	to {
	  transform: translateY(0);
	  opacity: 1;
	}
  }
  
  .popup-header a{
	color: #00d9ff;
  }

  

.tem{
	color: #4bf3ff;
}
.flexy {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: 20px;
  z-index: 888999;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}


.flexy .popup{
	background: linear-gradient(160deg, #111a25, #1a1f27);
	border-radius: 20px;
	padding: 30px 25px;
	width: 100%;
	height: 90%;
	overflow: auto;
	color: #fff;
    transform: translate(-50%,-50%);
	overflow: auto;
	top: 50%;
	left: 50%;
	position: fixed;	max-width: 480px;
	box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
	animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px); /* يبدأ من أسفل */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.flexy .popup::-webkit-scrollbar {
	width: 7px;
  }
  
  .flexy .popup::-webkit-scrollbar-track {
	background: #1a1f27;
	border-radius: 0px;
  }
  
  .flexy .popup::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #00d9ff, #007bff);
	border-radius: 0px;
	box-shadow: inset 0 0 4px rgba(255, 255, 255, 0.2);
  }
  
  .flexy .popup::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #00ffff, #0066ff);
  }
  
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.95);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.flexy .info {
	background: #1a1f27;
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 25px;
	box-shadow: 0 0 12px rgba(0, 217, 255, 0.05);
	font-size: 15px;
	color: #c6d8e4;
	direction: rtl;
	line-height: 1.7;
  }
  .tamdaf{
	transform: translate(-50%,-50%);
	position: fixed;
	top: 50%;
	left: 50%;
	background-color: rgb(0, 0, 0,0.5);
	width: 100%;
	height: 100%;
	z-index: 999;
	backdrop-filter: blur(10px);
	display: none;
  }
  .pouupdaf{
	transform: translate(-50%,-50%);
	position: fixed;
	top: 50%;
	left: 50%;
	background-color: #233d42;
	width: 80%;
	max-height: 90%;
	overflow: auto;
	border-radius: 20px;
	padding: 10px;
	text-align: center;
  }
  @keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.pouupdaf i {
  animation: spin 1s linear infinite;
}

@media (max-width:500px) {
	.flexy .popup{
	background: linear-gradient(160deg, #111a25, #1a1f27);
	border-radius: 20px;
	padding: 30px 25px;
	width: 80%;
	height: 90%;
	overflow: auto;
	color: #fff;
    transform: translate(-50%,-50%);
	top: 50%;
	left: 50%;
	position: fixed;	
	box-shadow: 0 10px 40px rgba(0, 217, 255, 0.1);
	animation: fadeIn 0.4s ease;
}
}

/* خلفية نصف شفافة مع تمويه */
.mazid {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 999999999;
  transition: opacity 0.3s ease;
}

/* نافذة المحتوى */
.morty {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(160deg, #111a25, #1a1f27);
  padding: 20px 25px;
  width: 100%;
  max-width: 700px;
  height: 100%;
  border-radius: 0px;
  color: #f1f1f1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  overflow: auto;
  animation: fadeIn 0.4s ease;
}

/* شريط تمرير أنيق */
.morty::-webkit-scrollbar {
  width: 6px;
}
.morty::-webkit-scrollbar-track {
  background: transparent;
}
.morty::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00d9ff, #007bff);
  border-radius: 3px;
}
.morty::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00ffff, #0066ff);
}

/* شريط عنوان النافذة */
.incu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  position: sticky;
  top: 0;
  background: linear-gradient(160deg, #111a25, #1a1f27);
  z-index: 10;
  padding: 10px 20px;
  border-radius: 50px;
}

.incu h3 {
  margin: 0;
  font-size: 18px;
  direction: rtl;
}
.incu button {
  background-color: transparent;
  border: none;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  width: 50px;
  transition: color 0.2s ease;
}
.incu button:hover {
  color: #00d9ff;
}

/* محتوى الفقرات */
.mazid p {
  direction: rtl;
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
  font-size: 16.5px;
  line-height: 1.8;
  color: #d4d4d4;
  text-align: justify;
  padding: 10px;
  margin-bottom: 16px;
}
.mazid h2 {
  direction: rtl;
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 20px;
  color: #00d9ff;
}

/* للموبايل */
@media (max-width: 700px) {
  .morty {
    width: 90%;
    height: 90%;
    border-radius: 20px;
    padding: 15px;
  }
}


.container h1 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #00c3ff;
  text-align: center;
  border-bottom: 1px solid #234;
  padding-bottom: 10px;
}

.container p {
  font-size: 16px;
  line-height: 1.8;
  color: #cfd8e2;
  margin-bottom: 16px;
  text-align: justify;
}

  .logo img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	z-index: 999999;
	border: 3px solid transparent;
	background: conic-gradient(from 0deg, #ff006a, #e100ff, #00e1e1, #ff006a);
	background-origin: border-box;
	background-clip: padding-box, border-box;
	box-shadow: 0 0 0 2px transparent;
	animation: rotate-border 2.5s linear infinite;
}

/* الحركة */
@keyframes rotate-border {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* حركة تأرجح (يسار ↔ يمين) */
@keyframes swing-rotate {
  0%   { transform: rotate(0deg); }
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}




 .weyte {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	z-index: 999999;
	border: 3px solid transparent;
	background-origin: border-box;
	background-clip: padding-box, border-box;
	box-shadow: 0 0 0 2px transparent;
	background: conic-gradient(from 0deg, #22373a, #1b2136, #1c2b2b, #313c4b);
	animation: rotate-border 0.1s linear infinite;
}

/* الحركة */
@keyframes rotate-border {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}