* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: #000000;
  color: #ffffff;
}

.loading-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.loader {
  text-align: center;
}

.medallion {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.medallion::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: #ffffff;
  border-radius: 50%;
  z-index: 0;
}

.ball {
  position: relative;
  width: 260px;
  height: 260px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ball-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spin 40s linear infinite;
  display: block;
  background: transparent;
}

.logo-ring {
  display: none;
}

body {
  background: #000000;
  color: #ffffff;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0px,
    transparent 180px,
    rgba(255, 255, 255, 0.12) 180px,
    rgba(255, 255, 255, 0.12) 184px
  );
  background-size: 200px 200px;
}

.progress-bar {
  width: 180px;
  height: 8px;
  margin: 28px auto 0;
  border-radius: 999px;
  background: rgba(255, 215, 0, 0.15);
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ffd700 0%, #ffcc00 50%, #ffd700 100%);
  animation: progressBar 3s ease-in-out infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes progressBar {
  0% {
    width: 0%;
  }
  50% {
    width: 70%;
  }
  100% {
    width: 100%;
  }
}
