.pink {
  color: rgb(241, 91, 116);
}

/* Light Mode */
.playground {
  display: block;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  color: #111827;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.playground:hover {
  background: #e9ecef;
  transform: scale(1.05);
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  body {
    background: #1f2937;
    color: white;
  }
  .playground {
    background: #2d3748;
    color: white;
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.1);
  }
  .playground:hover {
    background: #4a5568;
  }
}

/* Smooth theme transition */
.transition-colors {
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
