<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Importiere Jigsaw-Schriftart nur fÃ¼r Loader-Bereich */
@import url('https://fonts.cdnfonts.com/css/jigsaw');

/* ðŸŽ¯ Loader Hauptcontainer */
.loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background: #440000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  font-family: 'Jigsaw', sans-serif;
}

/* ðŸ”´ Ã„uÃŸerer Kreis */
.outer {
  width: 300px;
  height: 300px;
  background: transparent;
  border: 10px solid #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ðŸ”´ Innerer Kreis */
.inner {
  width: 275px;
  height: 275px;
  background: #440000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ðŸ”¢ Lade-Prozentanzeige */
.inner span.percent {
  font-size: 60px;
  font-weight: 800;
  color: #000000;
  text-shadow: 2px 2px 5px #ffffff, -2px -2px 5px #ffffff;
  z-index: 1;
  position: relative;
}

/* âœ… Ladeabschluss-Meldung */
.loading-complete-message {
  position: absolute;
  text-align: center;
  font-size: 18px;
  color: white;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease;
  font-family: 'Jigsaw', sans-serif;
}

.loading-complete-message.visible {
  opacity: 1;
}

/* âœ… GrÃ¼ner Check-Icon nach dem Laden */
.checkmark {
  width: 50px;
  height: 50px;
  stroke: #40ff00;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  margin-top: 10px;
  animation: checkmark-draw 1s ease-out forwards;
}

/* âœ… Check-Icon Animation */
@keyframes checkmark-draw {
  from {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
  }
  to {
    stroke-dasharray: 100;
    stroke-dashoffset: 0;
  }
}
</pre></body></html>