 .source-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .source-list li {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #ff00ff;
    border-radius: 4px;
    margin-bottom: 1rem;
    padding: 1rem;
    transition: 0.3s ease;
  }
  
  .source-list li:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  .source-list a {
    color: #00ffff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .source-list a:hover {
    color: #ff00ff;
  }
  