@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

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

body {
  min-height: 100vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Mono', monospace;
  overflow: hidden;
}

.container {
  text-align: center;
  animation: appear 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cat-art {
  font-size: clamp(11px, 2vw, 16px);
  line-height: 1.5;
  color: #fff;
  display: inline-block;
  text-align: left;
  animation: float 5s ease-in-out infinite;
  opacity: 0.9;
}

.name {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 0.15em;
  animation: flicker 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes flicker {
  0%, 95%, 100% { opacity: 1; }
  96%           { opacity: 0.85; }
  97%           { opacity: 1; }
  98%           { opacity: 0.9; }
  99%           { opacity: 1; }
}
