.genres {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.genres-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  flex-wrap: nowrap;
  flex: 1;
}

.genres-scroll::-webkit-scrollbar {
  display: none;
}

.genre {
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  background: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.genre:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}

.genre.active {
  background: rgba(232,105,42,0.15);
  border-color: rgba(232,105,42,0.5);
  color: #e8692a;
  font-weight: 600;
}

.genre-more {
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  background: none;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: all 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.genre-more:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}

.genre-more .arrow {
  font-size: 10px;
  transition: transform 0.2s;
  display: inline-block;
}

.genre-more.open .arrow {
  transform: rotate(180deg);
}

.genre-dropdown {
  display: none;
  position: fixed;
  background: #1a1b24;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 8px;
  min-width: 180px;
  z-index: 9999;
  flex-direction: column;
  gap: 2px;
}

.genre-more.open .genre-dropdown {
  display: flex;
}

/* Godine popup — 4 kolumne */
#godineBtn .genre-dropdown {
  display: none;
  flex-direction: unset;
  grid-template-columns: repeat(4, 1fr);
  width: 260px;
  padding: 10px;
  gap: 2px;
}

#godineBtn.open .genre-dropdown {
  display: grid;
}

#godineBtn .dropdown-item {
  text-align: center;
  padding: 7px 4px;
}

.dropdown-item {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.scroll-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  background: rgba(232,105,42,0.15);
  border: 1px solid rgba(232,105,42,0.4);
  border-radius: 8px;
  margin-left: 6px;
  transition: all 0.15s;
}

.scroll-arrow:hover {
  background: rgba(232,105,42,0.3);
  border-color: rgba(232,105,42,0.7);
  color: #e8692a;
}
.scroll-arrow-left {
  margin-left: 0;
  margin-right: 6px;
}