/* 1. Gölge veren before veya box-shadow varsa kaldır */
.sidebar__link--casino::before,
.sidebar__link--sportsbook::before {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important;
  box-shadow: none !important;
}

/* 2. Box-shadow ve arka plan temizlensin */
.sidebar__link--casino,
.sidebar__link--sportsbook {
  background-size: contain !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;

  height: 60px !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;

  display: flex !important;
  align-items: center;
  justify-content: center;

  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  transition: filter 0.3s ease;
}

/* 3. Hover/Active sadece PNG üzerinde parlama efekti yapsın */
.sidebar__link--casino:hover,
.sidebar__link--casino:active,
.sidebar__link--sportsbook:hover,
.sidebar__link--sportsbook:active {
  filter: brightness(1.3) saturate(1.15); /* Hafif parlama */
  background-color: transparent !important;
  box-shadow: none !important;
}

/* 4. Metni tamamen kaldır */
.sidebar__link--casino span,
.sidebar__link--sportsbook span {
  display: none !important;
}
