:root {
  --primary: #4f46e5;
}

@keyframes led-border {
  0% { box-shadow: 0 0 0px #fff; }
  50% { box-shadow: 0 0 15px 5px var(--led-color); }
  100% { box-shadow: 0 0 0px #fff; }
}

.streaming-card {
  border-radius: 1rem;
  background: white;
  padding: 1.5rem;
  text-align: center;
  border: 3px solid var(--led-color);
  animation: led-border 3s infinite ease-in-out;
}

.streaming-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--led-color);
  margin-bottom: 0.5rem;
}

.streaming-card p {
  color: #333;
  margin-bottom: 1rem;
}

.streaming-btn {
  display: inline-block;
  background-color: var(--led-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
}

.streaming-btn:hover {
  background-color: #000;
}

.pin-card {
  border: 2px solid #ccc;
  border-radius: 0.75rem;
  padding: 1rem;
  background: #f9fafb;
  text-align: center;
}
