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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
  overflow: hidden;
  transition: background 0.5s ease;
}

body.celebration {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.container {
  text-align: center;
  padding: 2rem;
}

.emoji {
  font-size: 5rem;
  margin-bottom: 1rem;
  animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.buttons {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  min-height: 100px;
}

button {
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.btn-yes {
  background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(86, 171, 47, 0.4);
  z-index: 10;
}

.btn-yes:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(86, 171, 47, 0.6);
}

.btn-no {
  background: linear-gradient(135deg, #eb3349 0%, #f45c43 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(235, 51, 73, 0.4);
  position: relative;
  transition: all 0.2s ease;
}

.btn-no:hover {
  transform: scale(1.05);
}

.btn-no.escaped {
  position: fixed;
  z-index: 100;
}

.celebration-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.celebration-screen.active {
  display: flex;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.celebration-emoji {
  font-size: 8rem;
  animation: celebrate 0.5s ease infinite alternate;
}

@keyframes celebrate {
  from { transform: rotate(-10deg) scale(1); }
  to { transform: rotate(10deg) scale(1.1); }
}

.celebration-text {
  font-size: 2.5rem;
  color: #333;
  margin-top: 1rem;
  font-weight: bold;
}

.celebration-subtext {
  font-size: 1.5rem;
  color: #666;
  margin-top: 0.5rem;
}

.confetti-emoji {
  position: fixed;
  font-size: 2rem;
  animation: fall linear forwards;
  pointer-events: none;
}

@keyframes fall {
  to {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}