* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #ffe6e9;
  font-family: "Quicksand", sans-serif;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 1rem;
}

.local-gif {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  margin-bottom: 2rem;
  pointer-events: none;
}

.question {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  background-color: #ff6b81;
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 129, 0.5);
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #ffa4b1;
  transform: scale(1.1);
  text-shadow: 1px 1px 5px rgba(255, 182, 193, 0.8);
}

.result-container {
  display: none;
}

.gif-result {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.result-container h2 {
  font-size: clamp(1.5rem, 5vw, 3.2rem);
  padding: 0 1rem;
  word-break: break-word;
}

.tap-prompt {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* Heart loader full screen center */
.cssload-main {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 230, 233, 0.85);
  z-index: 9999;
}

/* Placeholder animation styles */
.cssload-heart,
.cssload-heartL,
.cssload-heartR,
.cssload-square,
.cssload-shadow {
  width: 2em;
  height: 2em;
  background: red;
  border-radius: 50%;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .question {
    font-size: 2rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .button-container {
    flex-direction: column;
  }
}
