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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.gradient-header {
  background: linear-gradient(135deg, #FF6B9D 0%, #C96EFF 100%);
}

.beauty-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.beauty-card:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1), 0 16px 24px rgba(0, 0, 0, 0.1);
}

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

.confetti-container::before,
.confetti-container::after {
  content: "✨";
  position: absolute;
  font-size: 2rem;
  animation: confetti-fall 3s ease-out;
}

.confetti-container::before {
  left: 20%;
  animation-delay: 0s;
}

.confetti-container::after {
  left: 80%;
  animation-delay: 0.5s;
}

@keyframes confetti-fall {
  0% {
    top: -10%;
    opacity: 1;
    transform: rotate(0deg);
  }
  100% {
    top: 100%;
    opacity: 0;
    transform: rotate(720deg);
  }
}

input:focus, textarea:focus, button:focus {
  outline: none;
}

button {
  cursor: pointer;
  user-select: none;
}

button:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  .beauty-card {
    border-radius: 12px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
}