/*
Theme Name: Pastel Mini
Description: Tema minimalista para pastel.guru. Solo un pastel.
Version: 1.0
Author: pastelguru
*/

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

html, body {
  height: 100%;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffeaf2 0%, #fff5e6 50%, #f0e6ff 100%);
}

.cake {
  font-size: clamp(120px, 30vw, 280px);
  filter: drop-shadow(0 20px 40px rgba(255, 100, 150, 0.25));
  animation: float 4s ease-in-out infinite;
  user-select: none;
}

.brand {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #b08aa0;
  font-weight: 300;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .cake { animation: none; }
}
