.ending-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  position: relative;
  z-index: 10;
}

.yana-title {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  letter-spacing: 12px;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  margin-bottom: 30px;
  opacity: 0;
  animation: lineFadeIn 1.2s forwards 0.5s;
}

.end-line {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-muted);
  margin: 8px 0;
  opacity: 0;
}

.line1 { animation: lineFadeIn 1.2s forwards 1.8s; }
.line2 { animation: lineFadeIn 1.2s forwards 3.0s; color: var(--text-main); }

.end-author {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--accent-cyan);
  margin-top: 25px;
  opacity: 0;
  animation: lineFadeIn 1.2s forwards 4.2s;
}

.restart-box {
  margin-top: 60px;
  opacity: 0;
  animation: lineFadeIn 1.2s forwards 5.5s;
}

.btn-restart {
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.btn-restart:hover {
  color: var(--accent-cyan);
}