/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #F5F3EF;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Layout */
.container {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Dragon Image */
.dragon-image {
  width: 120px;
  height: 90px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

/* Text Group */
.text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Typography */
.title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 4px;
  text-align: center;
}

.title span {
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

.title span:nth-child(1) { animation-delay: 0s; }
.title span:nth-child(2) { animation-delay: 0.1s; }
.title span:nth-child(3) { animation-delay: 0.2s; }
.title span:nth-child(4) { animation-delay: 0.3s; }
.title span:nth-child(5) { animation-delay: 0.4s; }
.title span:nth-child(6) { animation-delay: 0.5s; }
.title span:nth-child(7) { animation-delay: 0.6s; }

@keyframes bounce {
  0%, 60%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
}

.subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #888888;
  letter-spacing: 6px;
  text-transform: uppercase;
  text-align: center;
}

/* Responsive */
@media (max-width: 640px) {
  .title {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .subtitle {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .content {
    gap: 32px;
  }

  .dragon-image {
    width: 96px;
    height: 72px;
  }
}

/* Animation */
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.dragon-image {
  animation: breathe 3s ease-in-out infinite;
}
