.sk-favicon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sk-favicon-logo {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.22));
  animation: sk-favicon-spin 1.8s linear infinite;
}
.sk-favicon-pulse {
  position: absolute;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 3px solid rgba(96, 165, 250, 0.35);
  animation: sk-favicon-pulse 1.8s ease-in-out infinite;
}
@keyframes sk-favicon-spin {
  0% { transform: rotate(0deg); }
  40% { transform: rotate(150deg) scale(1.05); }
  70% { transform: rotate(300deg) scale(1.0); }
  100% { transform: rotate(360deg); }
}
@keyframes sk-favicon-pulse {
  0% { transform: scale(0.85); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.25; }
  100% { transform: scale(0.85); opacity: 0.6; }
}
