body {
  background-color: #ffffff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.container {
  margin: 120px auto;
  max-width: 600px;
}

header {
  margin-bottom: 25px;
  text-align: center;
}

h1 {
  font-size: 40px;
  line-height: 1.5;
  color: #cc770f;
}

p {
  text-align: center;
}

.form-container {
  padding: 18px 28px;
  background-color: #85c20b;
  border-radius: 40px;
  text-align: center;
  margin-bottom: 30px;
}

form {
  display: inline-flexbox;
}

.hint {
  line-height: 1.5;
  font-size: 14px;
  margin-top: 6px;
  opacity: 0.7;
  color: #ffffff;
  font-weight: 600;
}

.instructions {
  padding: 16px;
  border: 1px solid rgba(40, 22, 60, 0.5);
  width: 60%;
  font-size: 18px;
  border-radius: 48px;
  line-height: 20px;
}

.button {
  background: #ffffff;
  color: #85c20b;
  font-weight: 800;
  border: none;
  border-radius: 20px;
  line-height: 50px;
  width: 120px;
}

.recipe {
  font-size: 14px;
  background-color: #fff;
  padding: 20px;
  line-height: 24px;
  border-left: 3px solid #cc770f;
  box-shadow: 0px 4px 30px 0px rgba(30, 33, 66, 0.03);
}

.hidden {
  display: none;
}

.action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.action-buttons.show {
  opacity: 1;
}

.action-btn {
  background: #ffffff;
  color: #666;
  font-weight: 600;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.action-btn:hover {
  border-color: #cc770f;
  color: #cc770f;
  transform: translateY(-2px);
}

footer {
  text-align: center;
  font-size: 14px;
  margin-top: 10pc;
}

footer a {
  color: #cc770f;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #85c20b;
  text-decoration: underline;
}

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}
