/* ===== ЦЕНТРАЛЬНОЕ «СОЛНЦЕ» (неоновый фон за логотипом) ===== */
.sun-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sun {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%,
    rgba(255, 224, 178, 0.32),
    rgba(201, 168, 106, 0.16) 38%,
    rgba(155, 140, 196, 0.08) 62%,
    transparent 72%);
  filter: blur(8px);
  animation: sunBreathe 7s ease-in-out infinite;
  pointer-events: auto;
}

.sun::before,
.sun::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 106, 0.16);
}

.sun::after {
  inset: 18%;
  border-color: rgba(201, 168, 106, 0.1);
  animation: sunSpin 22s linear infinite;
}

@keyframes sunBreathe {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes sunSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
