/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #00563f, #000000); /* گرادیەنتی مۆدێرن */
 }


/* لوگۆ لە ناو بۆردەر */
.logo-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
}

/* بۆردەرێکی چرخەیی بە گرادیەنت */
.spinning-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgb(246, 166, 54),
    rgb(54, 235, 72),
    rgb(255, 255, 99)
  );
  animation: spinBorder 3s linear infinite;
  z-index: 1;
}

/* ناوەڕۆکی ناوخۆی بۆردەر */
.logo-content {
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background: white;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  width: 95%;
  height: 95%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

/* Animation */
@keyframes spinBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-wrapper {
    width: 180px;
    height: 180px;
  }

  .logo-content {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
  }
}

@media (max-width: 480px) {
  .logo-wrapper {
    width: 150px;
    height: 150px;
  }

  .logo-content {
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
  }
}
