/* 🔥 SENPAI'S SHARINGAN LOADER 🔥 */
/* =============================== */

/* 🔴 SHARINGAN LOADER — Enhanced Fade + Scale + Blur */
.sharingan-loader {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 1s ease, transform 1s ease, filter 1s ease;
  backdrop-filter: blur(0px);
}

.sharingan-loader.hidden {
  opacity: 0;
  transform: scale(1.2);
  filter: blur(10px);
  pointer-events: none;
}

/* 🌀 Sharingan Animation */
.sharingan {
  width: 6em;
  height: 6em;
  background-color: red;
  border: 6px solid black;
  border-radius: 50%;
  animation: rot 1.2s linear infinite;
  position: relative;
  box-shadow: 0 0 20px rgba(0,0,0,0.25);
}

.ring {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 3.5em;
  height: 3.5em;
  border: 4px solid rgba(110, 13, 13, 0.5);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.to, .circle {
  position: absolute;
  width: 0.9em;
  height: 0.9em;
  background-color: black;
  border-radius: 50%;
}

.to:nth-child(1) {
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
}

.to:nth-child(2) {
  bottom: 0.5em;
  left: -0.4em;
  transform: rotate(-120deg);
}

.to:nth-child(3) {
  bottom: 0.5em;
  right: -0.4em;
  transform: rotate(120deg);
}

.circle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px 1px black;
  width: 1em;
  height: 1em;
}

@keyframes rot {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* =============================== */
