/* Floating Quote Drip Animation */
.floating-quote {
  position: absolute;
  top: 30px;
  left: 270px; /* next to PFP */
  max-width: 220px;
  background: linear-gradient(135deg, #FF00FF, #00FFFF);
  color: #000;
  font-size: 13px;
  font-weight: bold;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 0 15px #FF00FF, 0 0 25px #00FFFF;
  animation: floatDrip 4s ease-in-out infinite;
  z-index: 10;
  opacity: 0.9;
  backdrop-filter: blur(5px);
}

/* Float & drip animation */
@keyframes floatDrip {
  0%   { transform: translateY(0) rotate(-1deg); opacity: 0.8; }
  25%  { transform: translateY(-5px) rotate(1deg); opacity: 1; }
  50%  { transform: translateY(0) rotate(-1deg); opacity: 0.9; }
  75%  { transform: translateY(-3px) rotate(2deg); opacity: 1; }
  100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
}

.btn-writing {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(45deg, #FF00FF, #00FFFF);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 0 15px #FF00FF, 0 0 25px #00FFFF;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-writing:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #00FFFF, 0 0 35px #FF00FF;
}
