@font-face {
  font-family: 'Londrina Spark';
  src: url('../assets/fonts/Londrina_Spark.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.ff-feedback {
  max-width: 600px;
  margin: 20px auto;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.ff-title {
  font-family: 'Londrina Spark', sans-serif;
  font-size: 50px;
  margin-bottom: 20px;
  color: #000;
  line-height: 1em;
}

.ff-question {
  font-family: 'Special Elite', cursive;
  font-size: 24px;
  margin-bottom: 20px;
  color: #000;
}

.ff-controls button,
.ff-next,
.ff-start-btn,
.ff-restart-btn {
  margin-top: 20px;
  padding: 15px 30px;
  border: 2px solid #E0861F;
  background: #E0861F;
  color: #ffffff;
  border-radius: 100px;
  cursor: pointer;
  font-family: 'Londrina Spark', sans-serif;
  width: 100%;
  box-sizing: border-box;
  font-size: 22px;
  font-weight: normal;
  text-transform: uppercase;
  font-style: normal;
  text-decoration: none;
  line-height: 1em;
  letter-spacing: -0.2px;
  word-spacing: 0;
  fill: #ffffff;
  box-shadow: 0px 6px 16px -2px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
}

.ff-controls button:hover,
.ff-next:hover,
.ff-start-btn:hover,
.ff-restart-btn:hover {
  background: #cc770c;
  border-color: #cc770c;
  transform: translateY(-2px);
}

.ff-text-area textarea {
  width: 100%;
  height: 120px;
  padding: 10px;
  font-size: 16px;
  margin-top: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'Poppins', sans-serif;
}

.ff-draw-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin: 10px 0;
}

.ff-tool-btn,
.ff-brush-btn {
  padding: 10px 16px;
  font-size: 18px;
  border: 2px solid #ccc;
  background: #f5f5f5;
  cursor: pointer;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  transition: background 0.3s ease;
}

.ff-tool-btn.active,
.ff-brush-btn.active {
  background: #275d28;
  color: white;
  border-color: #275d28;
}

.ff-color-picker {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
}

.ff-canvas-container {
  width: 100%;
  height: 300px;
  border: 1px solid #ccc;
  background: #fff;
  margin-top: 10px;
  border-radius: 8px;
}

.ff-end-screen p {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

@media (max-width: 480px) {
  .ff-feedback {
    padding: 30px;
  }

  .ff-title {
    font-size: 36px;
  }

  .ff-question {
    font-size: 20px;
  }

  .ff-controls button,
  .ff-next,
  .ff-start-btn,
  .ff-restart-btn {
    width: 100%;
  }

  .ff-tool-btn,
  .ff-brush-btn {
    flex: 1 1 30%;
  }
}

.ff-download-badge {
  all: unset;
  display: inline-block;
  padding: 15px 30px !important;
  background: #285D28 !important;
  color: #ffffff !important;
  border-radius: 100px !important;
  cursor: pointer !important;
  font-family: 'Londrina Spark', sans-serif !important;
  font-size: 22px !important;
  font-weight: normal !important;
  text-transform: uppercase !important;
  text-align: center !important;
  line-height: 1em !important;
  box-sizing: border-box !important;
  box-shadow: 0px 6px 16px -2px rgba(0, 0, 0, 0.28) !important;
  margin: 20px auto !important;
  transition: transform 0.2s ease !important;
}

.ff-download-badge:hover {
  background: #204b20 !important;
  transform: translateY(-2px);
}

.ff-bounce {
  animation: bounce 1s infinite;
}

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


