.explore-tabs{
  padding:20px;
  background:#111;
  color:#fff;
}

.tab-buttons{
  display:flex;
  gap:10px;
  margin-bottom:20px;
}

.tab-btn{
  border:0;
  padding:10px 16px;
  border-radius:8px;
  cursor:pointer;
  background:#222;
  color:#fff;
}

.tab-btn.active{
  background:#e50914;
}

.tab-content{
  display:none;
}

.tab-content.active{
  display:block;
}

.link-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:20px;
}

.link-list a{
  color:#ddd;
  text-decoration:none;
  padding:6px 10px;
  background:#1a1a1a;
  border-radius:6px;
  font-size:13px;
}

.link-list a:hover{
  color:#fff;
  background:#222;
}

h3{
  margin:20px 0 10px;
  font-size:16px;
}
