* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa, #e4ecf7);
}

.container {
  position: relative;
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

h1 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 10px;
  font-family: "Autour One", system-ui;
}

.subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 25px;
}

.result {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.yes {
  font-size: 2.6rem;
  color: #2ecc71;
}

.no {
  font-size: 2.6rem;
  color: #e74c3c;
}

.loading {
  font-size: 0.6rem;
  color: #888;
  letter-spacing: 2px;
  animation: pulse 0.8s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.6;
  }
}

button {
  margin-top: 15px;
  padding: 12px 26px;
  border: none;
  border-radius: 12px;
  background: rgb(117, 117, 245);
  color: white;
  font-size: 0.9rem;
  cursor: pointer;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Small toggle button */
.mini-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  background: #6b7280;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-btn:hover {
  background: #4b5563;
}

/* Textbox animation */
.input-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  margin-top: 15px;
}

.input-wrapper.active {
  max-height: 120px;
}

textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
  resize: none;
  font-size: 0.85rem;
  outline: none;
}

.hint {
  margin-top: 15px;
  font-size: 0.85rem;
  color: #888;
}

.stats {
  margin-top: 25px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.Tyes {
  font-size: 1.3em;
  font-weight: 400;
  color: #000;
  background-color: rgba(0, 128, 0, 0.1);
  height: 70px;
  width: 64px;
  border-radius: 8px;
  span {
    color: rgb(6, 177, 6);
    font-size: 1.5em;
  }
}
.Tno {
  font-size: 1.3em;
  font-weight: 400;
  color: #000;
  background-color: rgba(255, 0, 0, 0.1);
  height: 70px;
  width: 64px;
  border-radius: 8px;
  span {
    color: rgb(231, 14, 14);
    font-size: 1.5em;
  }
}
.Tt {
  font-size: 1.3em;
  font-weight: 400;
  color: #000;
  background-color: rgba(128, 128, 128, 0.1);
  height: 70px;
  width: 64px;
  border-radius: 8px;
  span {
    font-size: 1.5em;
  }
}
