/* -----------------------------
PUN / PICKUP LINE GENERATOR
----------------------------- */

.pickup-line {
  padding: 65px 20px;
  background: linear-gradient(135deg, #f7971e, #ffd200);
  border-radius: 25px;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  margin-top: 50px;
  color: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.line-card {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  border-radius: 25px;
  padding: 40px 25px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  color: #333;
  position: relative;
}

.generate-btn, .restart-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.generate-btn {
  background: linear-gradient(135deg, #ff512f, #dd2476);
  box-shadow: 0 6px 18px rgba(221,36,118,0.4);
}

.generate-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 22px rgba(221,36,118,0.55);
}

.restart-btn {
  background: linear-gradient(135deg, #43cea2, #185a9d);
  box-shadow: 0 6px 18px rgba(56,206,162,0.4);
}

.restart-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 22px rgba(56,206,162,0.55);
}

.result-text {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 20px;
  min-height: 50px;
}

.fade {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
