.good-luck-effect {
  animation: pulse 1.5s infinite;
  margin-top: 10px;
}

.good-luck-link {
  color: #e66b00;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  background: linear-gradient(90deg, #fff8e1, #ffe0b2);
  padding: 8px 16px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 195, 0, 0.8);
  transition: all 0.3s ease;
  display: inline-block;
}

.good-luck-link:hover {
  transform: scale(1.1) rotate(-1deg);
  box-shadow: 0 0 20px rgba(255, 180, 0, 0.9);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
