*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0f;
  font-family: 'Georgia', serif;
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, #1a0a2e 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 30% 70%, #0d1f3a 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 30%, #1a0a2e 0%, transparent 60%);
  pointer-events: none;
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  z-index: 1;
}

.glow-ring {
  position: absolute;
  width: 520px;
  height: 200px;
  border-radius: 50%;
  background: transparent;
  box-shadow:
    0 0 80px 40px rgba(180, 60, 255, 0.15),
    0 0 160px 80px rgba(60, 100, 255, 0.08);
  filter: blur(8px);
  animation: pulse 3s ease-in-out infinite;
  pointer-events: none;
}

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

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  line-height: 1;
  user-select: none;
}

.word {
  display: block;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeSlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.peppe {
  background: linear-gradient(135deg, #e040fb 0%, #7c4dff 50%, #40c4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(180, 60, 255, 0.7));
  animation-delay: 0s;
}

.spegni {
  background: linear-gradient(135deg, #40c4ff 0%, #7c4dff 50%, #e040fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(60, 180, 255, 0.7));
  animation-delay: 0.15s;
}

.sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(200, 180, 255, 0.45);
  letter-spacing: 0.35em;
  text-transform: lowercase;
  font-style: italic;
  animation: fadeSlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Particelle decorative */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px, 100px 100px;
  background-position: 0 0, 30px 30px;
  pointer-events: none;
}
