.creature {
  position: relative;
  transform-origin: center bottom;
}

.creature.blob .body {
  width: 100px;
  height: 100px;
  border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
  position: relative;
  animation: blob-morph 3s ease-in-out infinite, creature-float 2s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 -20px 40px rgba(0, 0, 0, 0.2), inset 0 20px 40px rgba(255, 255, 255, 0.1);
}

.creature.blob .eyes {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.creature.blob .eye {
  width: 18px;
  height: 22px;
  background: white;
  border-radius: 50%;
  position: relative;
}

.creature.blob .eye::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #1a1a2e;
  border-radius: 50%;
  top: 8px;
  left: 4px;
  animation: blink 3s infinite;
}

.creature.blob .mouth {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 10px;
  border-radius: 0 0 20px 20px;
  background: rgba(0, 0, 0, 0.3);
}

.creature.blob .highlight {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 15px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.creature.slime .body {
  width: 110px;
  height: 75px;
  border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
  position: relative;
  animation: slime-jiggle 0.5s ease-in-out infinite;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), inset 0 -15px 30px rgba(0, 0, 0, 0.2), inset 0 10px 20px rgba(255, 255, 255, 0.2);
}

.creature.slime .eyes {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
}

.creature.slime .eye {
  width: 16px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: relative;
}

.creature.slime .eye::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  background: #1a1a2e;
  border-radius: 50%;
  top: 7px;
  left: 4px;
}

.creature.slime .highlight {
  position: absolute;
  top: 12px;
  right: 25px;
  width: 18px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.creature.ghost .body {
  width: 85px;
  height: 110px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 100%);
  border-radius: 42px 42px 20px 20px;
  position: relative;
  animation: ghost-float 2s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

.creature.ghost .eyes {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
}

.creature.ghost .eye {
  width: 14px;
  height: 18px;
  background: #1a1a2e;
  border-radius: 50%;
  animation: ghost-look 4s ease-in-out infinite;
}

.creature.ghost .blush {
  position: absolute;
  top: 55px;
  width: 15px;
  height: 8px;
  background: rgba(255, 150, 150, 0.5);
  border-radius: 50%;
}

.creature.ghost .blush.left { left: 12px; }
.creature.ghost .blush.right { right: 12px; }

.creature.flame .body {
  width: 80px;
  height: 100px;
  background: linear-gradient(180deg, #fbbf24 0%, #f97316 50%, #ef4444 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  position: relative;
  animation: flame-flicker 0.3s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.5), 0 0 60px rgba(249, 115, 22, 0.3);
}

.creature.flame .eyes {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.creature.flame .eye {
  width: 12px;
  height: 15px;
  background: #1a1a2e;
  border-radius: 50%;
}

.creature.crystal .body {
  width: 80px;
  height: 100px;
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
  animation: crystal-rotate 4s ease-in-out infinite, creature-float 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.creature.crystal .eyes {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.creature.crystal .eye {
  width: 10px;
  height: 14px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.creature.cloud .body {
  width: 120px;
  height: 70px;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 50px;
  position: relative;
  animation: cloud-drift 3s ease-in-out infinite;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.creature.cloud .body::before {
  content: '';
  position: absolute;
  top: -25px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #f1f5f9;
  border-radius: 50%;
}

.creature.cloud .body::after {
  content: '';
  position: absolute;
  top: -35px;
  left: 45px;
  width: 60px;
  height: 60px;
  background: #f8fafc;
  border-radius: 50%;
}

.creature.cloud .eyes {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
  z-index: 1;
}

.creature.cloud .eye {
  width: 8px;
  height: 8px;
  background: #64748b;
  border-radius: 50%;
}

.creature.shadow .body {
  width: 90px;
  height: 120px;
  background: linear-gradient(180deg, #374151 0%, #1f2937 50%, transparent 100%);
  border-radius: 45px 45px 50% 50%;
  position: relative;
  animation: shadow-waver 2s ease-in-out infinite;
  filter: blur(1px);
}

.creature.shadow .eyes {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
}

.creature.shadow .eye {
  width: 20px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.8);
}

.creature.spark .body {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #fef08a 0%, #fbbf24 100%);
  border-radius: 50%;
  position: relative;
  animation: spark-pulse 0.5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.6), 0 0 40px rgba(251, 191, 36, 0.3);
}

.creature.spark .bolt {
  position: absolute;
  font-size: 1.5rem;
  color: #fbbf24;
  filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.8));
  animation: bolt-flicker 0.1s infinite;
}

.creature.spark .bolt:nth-child(1) { top: -15px; left: 50%; transform: translateX(-50%); }
.creature.spark .bolt:nth-child(2) { top: 50%; right: -15px; transform: translateY(-50%) rotate(90deg); }
.creature.spark .bolt:nth-child(3) { top: 50%; left: -15px; transform: translateY(-50%) rotate(-90deg); }

.creature.spark .eyes {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.creature.spark .eye {
  width: 10px;
  height: 12px;
  background: #1a1a2e;
  border-radius: 50%;
}

.creature.aqua .body {
  width: 80px;
  height: 100px;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.9) 0%, rgba(14, 116, 144, 0.9) 100%);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  position: relative;
  animation: aqua-wobble 2s ease-in-out infinite;
  box-shadow: 0 15px 30px rgba(6, 182, 212, 0.3), inset 0 -20px 30px rgba(0, 0, 0, 0.1), inset 10px 10px 30px rgba(255, 255, 255, 0.3);
}

.creature.aqua .highlight {
  position: absolute;
  top: 20px;
  left: 15px;
  width: 20px;
  height: 25px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.creature.aqua .eyes {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.creature.aqua .eye {
  width: 12px;
  height: 15px;
  background: white;
  border-radius: 50%;
  position: relative;
}

.creature.aqua .eye::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  background: #0e4f5c;
  border-radius: 50%;
  top: 5px;
  left: 3px;
}

.creature.plant .body {
  width: 70px;
  height: 60px;
  background: linear-gradient(180deg, #86efac 0%, #22c55e 100%);
  border-radius: 50%;
  position: relative;
  animation: plant-sway 2s ease-in-out infinite;
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
}

.creature.plant .leaf {
  position: absolute;
  width: 25px;
  height: 40px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.creature.plant .leaf:nth-child(1) {
  top: -30px;
  left: 50%;
  transform: translateX(-50%) rotate(-10deg);
  animation: leaf-wave 2s ease-in-out infinite;
}

.creature.plant .leaf:nth-child(2) {
  top: -25px;
  left: 10px;
  transform: rotate(-30deg);
  animation: leaf-wave 2s ease-in-out infinite 0.2s;
}

.creature.plant .leaf:nth-child(3) {
  top: -25px;
  right: 10px;
  transform: rotate(30deg);
  animation: leaf-wave 2s ease-in-out infinite 0.4s;
}

.creature.plant .eyes {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.creature.plant .eye {
  width: 10px;
  height: 12px;
  background: #1a1a2e;
  border-radius: 50%;
}

.creature.plant .smile {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 8px;
  border: 3px solid #1a1a2e;
  border-top: none;
  border-radius: 0 0 15px 15px;
}

.creature.star .body {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #fef08a 0%, #fbbf24 100%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  position: relative;
  animation: star-twinkle 1s ease-in-out infinite, star-spin 10s linear infinite;
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.5);
}

.creature.star .eyes {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
}

.creature.star .eye {
  width: 8px;
  height: 10px;
  background: #92400e;
  border-radius: 50%;
}

.creature.void .body {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #1e1b4b 0%, #0f0f1a 70%, transparent 100%);
  border-radius: 50%;
  position: relative;
  animation: void-pulse 3s ease-in-out infinite;
  box-shadow: 0 0 50px rgba(99, 102, 241, 0.3), inset 0 0 50px rgba(139, 92, 246, 0.2);
}

.creature.void .eyes {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.creature.void .eye {
  width: 15px;
  height: 6px;
  background: #a855f7;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.8);
}

.creature.whale .body {
  width: 130px;
  height: 80px;
  background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 60px 60px 50px 50px;
  position: relative;
  animation: whale-swim 3s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.creature.whale .body::before {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 106px;
  height: 30px;
  background: #93c5fd;
  border-radius: 50px;
}

.creature.whale .tail {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 35px;
  background: #3b82f6;
  border-radius: 0 50% 50% 0;
  animation: tail-wag 1s ease-in-out infinite;
}

.creature.whale .fin {
  position: absolute;
  top: -15px;
  left: 40px;
  width: 25px;
  height: 30px;
  background: #2563eb;
  border-radius: 50% 50% 0 0;
}

.creature.whale .eyes {
  position: absolute;
  top: 25px;
  left: 30px;
}

.creature.whale .eye {
  width: 18px;
  height: 22px;
  background: white;
  border-radius: 50%;
  position: relative;
}

.creature.whale .eye::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 6px;
  width: 10px;
  height: 10px;
  background: #1e3a5f;
  border-radius: 50%;
}

.creature.dragon {
  width: 140px;
  height: 120px;
  position: relative;
}

.creature.dragon .body {
  width: 90px;
  height: 70px;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border-radius: 35px;
  position: absolute;
  bottom: 15px;
  left: 25px;
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
  animation: dragon-hover 2s ease-in-out infinite;
}

.creature.dragon .head {
  width: 55px;
  height: 50px;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
  border-radius: 25px 30px 20px 20px;
  position: absolute;
  bottom: 55px;
  right: 15px;
}

.creature.dragon .eyes {
  position: absolute;
  top: 15px;
  left: 10px;
  display: flex;
  gap: 12px;
}

.creature.dragon .eye {
  width: 12px;
  height: 14px;
  background: white;
  border-radius: 50%;
  position: relative;
}

.creature.dragon .eye::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 8px;
  background: #1a1a2e;
  border-radius: 50%;
}

.creature.dragon .wing {
  position: absolute;
  width: 50px;
  height: 60px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 5px 40px 5px 5px;
  bottom: 55px;
  left: 25px;
  transform-origin: bottom right;
  animation: wing-flap 0.3s ease-in-out infinite;
}

.creature.size-tiny { transform: scale(0.6); }
.creature.size-small { transform: scale(0.75); }
.creature.size-medium { transform: scale(0.9); }
.creature.size-large { transform: scale(1); }
.creature.size-huge { transform: scale(1.15); }
.creature.size-colossal { transform: scale(1.3); }

.accessory-crown {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  animation: crown-bob 2s ease-in-out infinite;
}

.accessory-halo {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 15px;
  border: 3px solid #fbbf24;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.aura-none { display: none; }

.aura-faint {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
}

.aura-glowing {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
  animation: aura-pulse 2s ease-in-out infinite;
}

.aura-blazing {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, rgba(249, 115, 22, 0.15) 50%, transparent 70%);
  animation: aura-blaze 1s ease-in-out infinite;
}
