.widget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.widget-tags a {
  padding: 8px 16px;
  border-radius: 25px;
  border: 2px solid #ddd;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  color: #495057;
  font-size: 0.9em;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.widget-tags a:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease
}
.widget-tags a:hover {
  background: linear-gradient(135deg, #00a369 0%, #00c97a 100%);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 163, 105, 0.3)
}
.widget-tags a:hover:before {
  left: 100%
}
.widget-tags a:active {
  transform: translateY(-1px) scale(1.02);
  transition: all 0.1s ease
}
.widget-tags a:nth-child(odd) {
  animation: fadeInUp 0.6s ease forwards
}
.widget-tags a:nth-child(even) {
  animation: fadeInUp 0.6s ease 0.1s forwards
}
.widget-tags a.class0 {
  border-color: #fd7e14
}
.widget-tags a.class0:hover {
  background: linear-gradient(135deg, #fd7e14 0%, #ff922b 100%);
  box-shadow: 0 8px 20px rgba(253, 126, 20, 0.3);
  border-color: #fd7e14
}
.widget-tags a.class1 {
  border-color: #6f42c1
}
.widget-tags a.class1:hover {
  background: linear-gradient(135deg, #6f42c1 0%, #8662d1 100%);
  box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
  border-color: #6f42c1
}
.widget-tags a.class2 {
  border-color: #e83e8c
}
.widget-tags a.class2:hover {
  background: linear-gradient(135deg, #e83e8c 0%, #ea5aa3 100%);
  box-shadow: 0 8px 20px rgba(232, 62, 140, 0.3);
  border-color: #e83e8c
}
.widget-tags a.class4 {
  border-color: #20c997
}
.widget-tags a.class4:hover {
  background: linear-gradient(135deg, #20c997 0%, #36d1a7 100%);
  box-shadow: 0 8px 20px rgba(32, 201, 151, 0.3);
  border-color: #20c997
}
.widget-tags a.class7 {
  border-color: #17a2b8
}
.widget-tags a.class7:hover {
  background: linear-gradient(135deg, #17a2b8 0%, #2ab5cc 100%);
  box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
  border-color: #17a2b8
}
.widget-tags a.class9 {
  border-color: #dc3545
}
.widget-tags a.class9:hover {
  background: linear-gradient(135deg, #dc3545 0%, #e15765 100%);
  box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
  border-color: #dc3545
}