.main-footer {
	background: #111a1f;
	color: #ccc;
	padding: 40px 20px 25px;
	font-size: 14px;
	border-top: 1px solid #222;
	text-align: center;
	direction: rtl;
	z-index: 9999;
  }
  
  .footer-content {
	max-width: 960px;
	margin: auto;
  }
  
  .footer-logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	margin-bottom: 25px;
  }
  
	.footer-logo img {
  width: 60px;
  height: 60px;
  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: swing-rotate 2s ease-in-out infinite;
  transform-origin: center center;
}

/* حركة تأرجح (يسار ↔ يمين) */
@keyframes swing-rotate {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(90deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-90deg); }
  100% { transform: rotate(0deg); }
}
  
  .footer-logo .site-name {
	font-size: 16px;
	font-weight: bold;
	color: #00e1e1;
  }
  
  .footer-links {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 25px;
	margin: 0 0 20px;
  }
  
  .footer-links a {
	position: relative;
	color: #00e1e1;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s;
  }
  
  .footer-links a::after {
	content: "";
	position: absolute;
	bottom: -2px;
	right: 0;
	width: 0;
	height: 2px;
	background-color: #00ffff;
	transition: width 0.4s ease;
  }
  
  .footer-links a:hover {
	color: #00a2ff;
  }
  
  .footer-links a:hover::after {
	width: 100%;
	left: 0;
	right: auto;
  }
  
  
  .main-footer span {
	color: #00e1e1;
	font-weight: bold;
  }
  
  @media (max-width: 600px) {
	.footer-links {
	  flex-direction: column;
	  gap: 10px;
	}
  }
  .icon{
	user-select: none;
  }
  
  .icon img.social-icon {
	user-select: none;
	width: 30px;
	height: 30px;
	margin-right: 10px;
	transition: 0.3s ease;
  }
  
  .icon img.social-icon:hover {
	opacity: 0.7;
	transform: scale(1.1);
  }
  