/* Loading screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 0, 182, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loading-screen p {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
}

.loader {
  display: none;
  /* Hide the old loader */
}

/* Стили для SVG спиннера */
svg polygon {
  stroke-dasharray: 150;
  stroke: #FF0000;
  fill: transparent;
  stroke-width: 8;
  animation: borderSnakePolygonStar 1.2s linear infinite;
}

@keyframes borderSnakePolygonStar {
  to {
    stroke-dashoffset: 300;
  }
}