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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2d1b4e 0%, #1a0a2e 50%, #0d0520 100%);
  font-family: 'Segoe UI', system-ui, sans-serif;
}

.container {
  text-align: center;
}

.poop-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 3rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2rem;
  border: 3px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  user-select: none;
}

.poop-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 200, 100, 0.3);
  border-color: rgba(255, 220, 150, 0.4);
}

.poop-card:active {
  transform: scale(0.98);
}

.poop-emoji {
  font-size: 10rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.click-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.05em;
}

.message {
  margin-top: 2rem;
  min-height: 4rem;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 800;
  color: #ffd54f;
  text-shadow: 0 0 30px rgba(255, 213, 79, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.message.visible {
  opacity: 1;
  animation: pop 0.4s ease;
}

@keyframes pop {
  0% { transform: scale(0.8); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
