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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  text-align: center;
  background: white;
  padding: 60px 80px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
}

.emoji {
  font-size: 120px;
  margin-bottom: 30px;
  display: inline-block;
  transition: transform 0.1s ease;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
  font-weight: 600;
}

.buttons {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  position: relative;
}

button {
  padding: 15px 40px;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

button:disabled {
  background-color: gray;
  transition: unset;
  cursor: unset;
  opacity: 0.2;
}

#yesBtn {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

#yesBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(245, 87, 108, 0.4);
}

#noBtn {
  color: white;
}

#noBtn:not(:disabled) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

#noBtn:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

@keyframes nod {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(-3deg);
  }
  75% {
    transform: translateY(8px) rotate(3deg);
  }
}

.nodding {
  animation: nod 0.5s ease-in-out infinite;
}

@keyframes jump {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

.jumping {
  animation: jump 0.4s ease-in-out infinite;
}

@keyframes cry {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.crying {
  animation: cry 0.3s ease-in-out infinite;
}

.haw-gif {
  font-size: 80px;
  font-weight: bold;
  color: #333;
  animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(-5px) rotate(-5deg);
  }
  75% {
    transform: translateX(5px) rotate(5deg);
  }
}
